diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d48e070..1ab92e0d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file. - vector: Remove version `0.39.0` ([#802]). - airflow: Remove versions `2.6.3`, `2.8.1`, `2.8.4` ([#809]). - kafka: Remove versions `3.4.1`, `3.6.1`, `3.6.2` ([#813]). +- hbase: Reorganize folder structure to allow patching Phoenix, exclude old `jackson-databind` dependency from Phoenix SNAPSHOT ([#820]). - trino: Remove versions `414`, `442` ([#822]). - trino-cli: Remove version `451` ([#822]). @@ -38,6 +39,7 @@ All notable changes to this project will be documented in this file. [#809]: https://github.com/stackabletech/docker-images/pull/809 [#811]: https://github.com/stackabletech/docker-images/pull/811 [#813]: https://github.com/stackabletech/docker-images/pull/813 +[#820]: https://github.com/stackabletech/docker-images/pull/820 [#815]: https://github.com/stackabletech/docker-images/pull/815 [#818]: https://github.com/stackabletech/docker-images/pull/818 [#819]: https://github.com/stackabletech/docker-images/pull/819 diff --git a/hbase/Dockerfile b/hbase/Dockerfile index 29abe4b0d..118fb0031 100644 --- a/hbase/Dockerfile +++ b/hbase/Dockerfile @@ -44,11 +44,8 @@ RUN --mount=type=cache,id=maven-hbase-${PRODUCT},uid=1000,target=/stackable/.m2/ ### curl --fail -L "https://repo.stackable.tech/repository/packages/hbase/hbase-${PRODUCT}-src.tar.gz" | tar -xzC . mv hbase-${PRODUCT} hbase-${PRODUCT}-src - -chmod +x patches/apply_patches.sh -patches/apply_patches.sh ${PRODUCT} - cd /stackable/hbase-${PRODUCT}-src/ +/stackable/patches/apply_patches.sh /stackable/patches/hbase/${PRODUCT} # The release scripts of HBase also run the build twice (three times in fact, once again to build the site which we skip here). # I chose to replicate that exact behavior for consistency so please don't merge the two mvn runs into one unless you really know what you're doing! @@ -229,15 +226,15 @@ COPY --chown=stackable:stackable hbase/stackable/patches /stackable/patches USER stackable WORKDIR /stackable +COPY --chown=stackable:stackable hbase/stackable/patches /stackable/patches + RUN --mount=type=cache,id=maven-phoenix,uid=1000,target=/stackable/.m2/repository <<EOF cd /stackable curl --fail -L "https://repo.stackable.tech/repository/packages/phoenix/phoenix-${PHOENIX}-src.tar.gz" | tar -xzC . mv phoenix-${PHOENIX} phoenix-${PHOENIX}-src +cd /stackable/phoenix-${PHOENIX}-src/ +/stackable/patches/apply_patches.sh /stackable/patches/phoenix/${PHOENIX} -chmod +x patches/apply_patches.sh -patches/apply_patches.sh phoenix/${PHOENIX} phoenix-${PHOENIX}-src - -# Passing "-f" means it'll build in the phoenix source directory without cding into it # The Maven command can be found inside of the scripts in the create-release folder (release-util.sh as of Phoenix 5.2.0) # https://github.com/apache/phoenix/tree/5.2.0/dev/create-release mvn \ @@ -249,16 +246,14 @@ mvn \ -DskipTests \ -Dcheckstyle.skip=true \ -Prelease \ - -fphoenix-${PHOENIX}-src \ clean \ package # We need the "*" here as the directory won't be the same as the final tar file for SNAPSHOTs which we currently have to use for 2.6 # And we're stripping the top level directory while extracting because it may be called different than the folder name when it's a SNAPSHOT mkdir /stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin -tar -xz -f phoenix-${PHOENIX}-src/phoenix-assembly/target/phoenix-hbase-*-bin.tar.gz -C /stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin/ --strip-components=1 -mv phoenix-${PHOENIX}-src/phoenix-assembly/target/bom.json /stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin/phoenix-${HBASE_PROFILE}-${PHOENIX}.cdx.json -rm -rf /stackable/phoenix-${PHOENIX}-src +tar -xz -f phoenix-assembly/target/phoenix-hbase-*-bin.tar.gz -C /stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin/ --strip-components=1 +mv phoenix-assembly/target/bom.json /stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin/phoenix-${HBASE_PROFILE}-${PHOENIX}.cdx.json ln -s "/stackable/phoenix-${HBASE_PROFILE}-${PHOENIX}-bin" /stackable/phoenix diff --git a/hbase/README.md b/hbase/README.md index c69869715..ab3358b03 100644 --- a/hbase/README.md +++ b/hbase/README.md @@ -4,26 +4,37 @@ As of SDP 24.7 we do include HBase 2.6 support in an experimental state. ## Phoenix -At the time of this writing (July 12, 2024) there is no Phoenix release that supports HBase 2.6 so the script `upload_new_phoenix_version.sh` will not work. +At the time of this writing (August 29, 2024) there is no Phoenix release that supports HBase 2.6 so the script `upload_new_phoenix_version.sh` will not work. HBase 2.6 support [was added](https://github.com/apache/phoenix/pull/1793) with [PHOENIX-7172](https://issues.apache.org/jira/browse/PHOENIX-7172). SDP 24.7 includes Phoenix built from the master branch from commit [4afe457](https://github.com/apache/phoenix/tree/4afe4579bb3ab01725e4939746d0b7b807b438ac). +Prepare the Phoenix source tarball: + ```bash # clone the Phoenix repo git clone git@github.com:apache/phoenix.git cd phoenix -git checkout 4afe457 +git checkout master +# Save the commit ID of the patched Phoenix version for later +COMMIT_ID=$(git rev-parse --short HEAD) # ca21a87dd6 # create a tarball -mkdir ../phoenix-5.3.0-4afe457 -git archive --format=tar --output ../phoenix-5.3.0-4afe457/phoenix.tar 4afe457 -cd ../phoenix-5.3.0-4afe457 +mkdir "../phoenix-5.3.0-$COMMIT_ID" +git archive --format=tar --output "../phoenix-5.3.0-$COMMIT_ID/phoenix.tar" "$COMMIT_ID" +cd "../phoenix-5.3.0-$COMMIT_ID" tar xf phoenix.tar rm phoenix.tar -echo 4afe457 > git-commit +echo "$COMMIT_ID" > git-commit cd .. -tar -c phoenix-5.3.0-4afe457 | gzip > phoenix-5.3.0-4afe457-src.tar.gz +tar -c "phoenix-5.3.0-$COMMIT_ID" | gzip > "phoenix-5.3.0-$COMMIT_ID-src.tar.gz" +``` + +Upload the tar.gz file to the packages/phoenix folder in Nexus via `curl`: + +```sh +curl --fail -u "$NEXUS_USER" --upload-file "phoenix-5.3.0-$COMMIT_ID-src.tar.gz" 'https://repo.stackable.tech/repository/packages/phoenix/' +# you will be prompted for the password ``` ## HBase operator tools diff --git a/hbase/stackable/patches/apply_patches.sh b/hbase/stackable/patches/apply_patches.sh old mode 100644 new mode 100755 index 8a67f04ec..65a58f2f2 --- a/hbase/stackable/patches/apply_patches.sh +++ b/hbase/stackable/patches/apply_patches.sh @@ -4,20 +4,13 @@ set -eu set -o pipefail -# Check if $1 (VERSION) is provided +# Check if $1 (patch directory) is provided if [ -z "${1-}" ]; then - echo "Please provide a value for VERSION as the first argument." + echo "Please provide a value for patch directory as the first argument." exit 1 fi -VERSION="$1" -PATCH_DIR="patches/$VERSION" -SRC_DIR="hbase-${VERSION}-src" - -# if a second argument is provided, use it as the source directory instead of the default -if [ -n "${2-}" ]; then - SRC_DIR="$2" -fi +PATCH_DIR="$1" # Check if version-specific patches directory exists if [ ! -d "$PATCH_DIR" ]; then @@ -40,7 +33,7 @@ echo "Found ${#patch_files[@]} patches, applying now" # Iterate through sorted patch files for patch_file in "${patch_files[@]}"; do echo "Applying $patch_file" - git apply --directory "$SRC_DIR" "$patch_file" || { + git apply "$patch_file" || { echo "Failed to apply $patch_file" exit 1 } diff --git a/hbase/stackable/patches/2.4.12/001-HBASE-27292-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/001-HBASE-27292-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/001-HBASE-27292-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/001-HBASE-27292-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.12/002-HBASE-27860-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/002-HBASE-27860-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/002-HBASE-27860-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/002-HBASE-27860-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.12/003-HBASE-25292-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/003-HBASE-25292-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/003-HBASE-25292-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/003-HBASE-25292-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.12/004-HBASE-25336-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/004-HBASE-25336-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/004-HBASE-25336-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/004-HBASE-25336-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.12/005-HBASE-27027-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/005-HBASE-27027-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/005-HBASE-27027-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/005-HBASE-27027-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.12/006-HBASE-28242-2.4.12.patch b/hbase/stackable/patches/hbase/2.4.12/006-HBASE-28242-2.4.12.patch similarity index 100% rename from hbase/stackable/patches/2.4.12/006-HBASE-28242-2.4.12.patch rename to hbase/stackable/patches/hbase/2.4.12/006-HBASE-28242-2.4.12.patch diff --git a/hbase/stackable/patches/2.4.17/001-HBASE-27860-2.4.17.patch b/hbase/stackable/patches/hbase/2.4.17/001-HBASE-27860-2.4.17.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/001-HBASE-27860-2.4.17.patch rename to hbase/stackable/patches/hbase/2.4.17/001-HBASE-27860-2.4.17.patch diff --git a/hbase/stackable/patches/2.4.17/002-HBASE-25292-2.4.17.patch b/hbase/stackable/patches/hbase/2.4.17/002-HBASE-25292-2.4.17.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/002-HBASE-25292-2.4.17.patch rename to hbase/stackable/patches/hbase/2.4.17/002-HBASE-25292-2.4.17.patch diff --git a/hbase/stackable/patches/2.4.17/003-HBASE-25336-2.4.17.patch b/hbase/stackable/patches/hbase/2.4.17/003-HBASE-25336-2.4.17.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/003-HBASE-25336-2.4.17.patch rename to hbase/stackable/patches/hbase/2.4.17/003-HBASE-25336-2.4.17.patch diff --git a/hbase/stackable/patches/2.4.17/004-HBASE-27103-2.4.17.patch b/hbase/stackable/patches/hbase/2.4.17/004-HBASE-27103-2.4.17.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/004-HBASE-27103-2.4.17.patch rename to hbase/stackable/patches/hbase/2.4.17/004-HBASE-27103-2.4.17.patch diff --git a/hbase/stackable/patches/2.4.17/005-HBASE-28242-2.4.17.patch b/hbase/stackable/patches/hbase/2.4.17/005-HBASE-28242-2.4.17.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/005-HBASE-28242-2.4.17.patch rename to hbase/stackable/patches/hbase/2.4.17/005-HBASE-28242-2.4.17.patch diff --git a/hbase/stackable/patches/2.4.17/006-patch-cyclonedx-plugin.patch b/hbase/stackable/patches/hbase/2.4.17/006-patch-cyclonedx-plugin.patch similarity index 100% rename from hbase/stackable/patches/2.4.17/006-patch-cyclonedx-plugin.patch rename to hbase/stackable/patches/hbase/2.4.17/006-patch-cyclonedx-plugin.patch diff --git a/hbase/stackable/patches/2.4.18/01-HBASE-27103.patch b/hbase/stackable/patches/hbase/2.4.18/01-HBASE-27103.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/01-HBASE-27103.patch rename to hbase/stackable/patches/hbase/2.4.18/01-HBASE-27103.patch diff --git a/hbase/stackable/patches/2.4.18/02-HBASE-28242.patch b/hbase/stackable/patches/hbase/2.4.18/02-HBASE-28242.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/02-HBASE-28242.patch rename to hbase/stackable/patches/hbase/2.4.18/02-HBASE-28242.patch diff --git a/hbase/stackable/patches/2.4.18/03-HBASE-28379.patch b/hbase/stackable/patches/hbase/2.4.18/03-HBASE-28379.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/03-HBASE-28379.patch rename to hbase/stackable/patches/hbase/2.4.18/03-HBASE-28379.patch diff --git a/hbase/stackable/patches/2.4.18/04-HBASE-28511.patch b/hbase/stackable/patches/hbase/2.4.18/04-HBASE-28511.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/04-HBASE-28511.patch rename to hbase/stackable/patches/hbase/2.4.18/04-HBASE-28511.patch diff --git a/hbase/stackable/patches/2.4.18/05-patch-updates.patch b/hbase/stackable/patches/hbase/2.4.18/05-patch-updates.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/05-patch-updates.patch rename to hbase/stackable/patches/hbase/2.4.18/05-patch-updates.patch diff --git a/hbase/stackable/patches/2.4.18/06-patch-cyclonedx-plugin.patch b/hbase/stackable/patches/hbase/2.4.18/06-patch-cyclonedx-plugin.patch similarity index 100% rename from hbase/stackable/patches/2.4.18/06-patch-cyclonedx-plugin.patch rename to hbase/stackable/patches/hbase/2.4.18/06-patch-cyclonedx-plugin.patch diff --git a/hbase/stackable/patches/2.4.18/series b/hbase/stackable/patches/hbase/2.4.18/series similarity index 100% rename from hbase/stackable/patches/2.4.18/series rename to hbase/stackable/patches/hbase/2.4.18/series diff --git a/hbase/stackable/patches/2.6.0/01-HBASE-28242.patch b/hbase/stackable/patches/hbase/2.6.0/01-HBASE-28242.patch similarity index 100% rename from hbase/stackable/patches/2.6.0/01-HBASE-28242.patch rename to hbase/stackable/patches/hbase/2.6.0/01-HBASE-28242.patch diff --git a/hbase/stackable/patches/2.6.0/02-HBASE-28567.patch b/hbase/stackable/patches/hbase/2.6.0/02-HBASE-28567.patch similarity index 100% rename from hbase/stackable/patches/2.6.0/02-HBASE-28567.patch rename to hbase/stackable/patches/hbase/2.6.0/02-HBASE-28567.patch diff --git a/hbase/stackable/patches/2.6.0/03-patch-updates.patch b/hbase/stackable/patches/hbase/2.6.0/03-patch-updates.patch similarity index 100% rename from hbase/stackable/patches/2.6.0/03-patch-updates.patch rename to hbase/stackable/patches/hbase/2.6.0/03-patch-updates.patch diff --git a/hbase/stackable/patches/2.6.0/04-include-dataformat-xml.patch b/hbase/stackable/patches/hbase/2.6.0/04-include-dataformat-xml.patch similarity index 100% rename from hbase/stackable/patches/2.6.0/04-include-dataformat-xml.patch rename to hbase/stackable/patches/hbase/2.6.0/04-include-dataformat-xml.patch diff --git a/hbase/stackable/patches/2.6.0/05-patch-cyclonedx-plugin.patch b/hbase/stackable/patches/hbase/2.6.0/05-patch-cyclonedx-plugin.patch similarity index 100% rename from hbase/stackable/patches/2.6.0/05-patch-cyclonedx-plugin.patch rename to hbase/stackable/patches/hbase/2.6.0/05-patch-cyclonedx-plugin.patch diff --git a/hbase/stackable/patches/2.6.0/series b/hbase/stackable/patches/hbase/2.6.0/series similarity index 100% rename from hbase/stackable/patches/2.6.0/series rename to hbase/stackable/patches/hbase/2.6.0/series diff --git a/hbase/stackable/patches/phoenix/5.2.0/01-exclude-old-jackson-databind.patch b/hbase/stackable/patches/phoenix/5.2.0/01-exclude-old-jackson-databind.patch new file mode 100644 index 000000000..73015fb9f --- /dev/null +++ b/hbase/stackable/patches/phoenix/5.2.0/01-exclude-old-jackson-databind.patch @@ -0,0 +1,51 @@ +diff --git a/phoenix-core-client/pom.xml b/phoenix-core-client/pom.xml +index f711b0f6fd..360d1b7150 100644 +--- a/phoenix-core-client/pom.xml ++++ b/phoenix-core-client/pom.xml +@@ -366,6 +366,12 @@ + <dependency> + <groupId>org.apache.htrace</groupId> + <artifactId>htrace-core</artifactId> ++ <exclusions> ++ <exclusion> ++ <groupId>com.fasterxml.jackson.core</groupId> ++ <artifactId>jackson-databind</artifactId> ++ </exclusion> ++ </exclusions> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> +diff --git a/phoenix-core-server/pom.xml b/phoenix-core-server/pom.xml +index d5032ece29..49daed0de4 100644 +--- a/phoenix-core-server/pom.xml ++++ b/phoenix-core-server/pom.xml +@@ -131,6 +131,12 @@ + <dependency> + <groupId>org.apache.htrace</groupId> + <artifactId>htrace-core</artifactId> ++ <exclusions> ++ <exclusion> ++ <groupId>com.fasterxml.jackson.core</groupId> ++ <artifactId>jackson-databind</artifactId> ++ </exclusion> ++ </exclusions> + </dependency> + <dependency> + <groupId>com.google.protobuf</groupId> +diff --git a/pom.xml b/pom.xml +index bce239830f..e8e7badcb8 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -1585,6 +1585,12 @@ + <groupId>org.apache.htrace</groupId> + <artifactId>htrace-core</artifactId> + <version>${htrace.version}</version> ++ <exclusions> ++ <exclusion> ++ <groupId>com.fasterxml.jackson.core</groupId> ++ <artifactId>jackson-databind</artifactId> ++ </exclusion> ++ </exclusions> + </dependency> + <dependency> + <groupId>commons-codec</groupId> diff --git a/hbase/stackable/patches/phoenix/5.3.0-ca21a87dd6/01-phoenix-5215.patch b/hbase/stackable/patches/phoenix/5.3.0-ca21a87dd6/01-phoenix-5215.patch new file mode 100644 index 000000000..6b0a618b5 --- /dev/null +++ b/hbase/stackable/patches/phoenix/5.3.0-ca21a87dd6/01-phoenix-5215.patch @@ -0,0 +1,78603 @@ +diff --git a/bin/phoenix_sandbox.py b/bin/phoenix_sandbox.py +index 596083100..2cbf05ad3 100755 +--- a/bin/phoenix_sandbox.py ++++ b/bin/phoenix_sandbox.py +@@ -25,7 +25,17 @@ import subprocess + import sys + import phoenix_utils + ++# Since sandbox is used exclusively for development and debugging, it is easiest to ++# unconditionally enable tracing ++def set_sandbox_tracing(): ++ global sandbox_trace_opts ++ sandbox_trace_opts = os.environ.get("PHOENIX_TRACE_OPTS") ++ if sandbox_trace_opts is None or phoenix_trace_opts == "": ++ sandbox_trace_opts = " -javaagent:" + phoenix_utils.opentelemetry_agent_jar + " -Dotel.metrics.exporter=none -Dotel.instrumentation.jdbc.enabled=false" ++ return "" ++ + phoenix_utils.setPath() ++set_sandbox_tracing() + + base_dir = os.path.join(phoenix_utils.current_dir, '..') + phoenix_target_dir = os.path.join(base_dir, 'phoenix-core', 'target') +@@ -44,9 +54,10 @@ cp_components = [phoenix_target_dir + "/*"] + with open(cp_file_path, 'r') as cp_file: + cp_components.append(cp_file.read()) + +-java_cmd = ("java $PHOENIX_OPTS -Dlog4j2.configurationFile=file:%s " + +- "-cp %s org.apache.phoenix.Sandbox") % ( +- logging_config, ":".join(cp_components)) ++java_cmd = ("java -Dlog4j2.configurationFile=file:%s " + ++ ' ' + sandbox_trace_opts + ' -Dotel.service.name="phoenix-sandbox" ' + ++ "-cp %s org.apache.phoenix.Sandbox") % ( ++ logging_config, ":".join(cp_components)) + + proc = subprocess.Popen(java_cmd, shell=True) + try: +diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py +index 6f8469b74..d2d746d2d 100755 +--- a/bin/phoenix_utils.py ++++ b/bin/phoenix_utils.py +@@ -33,14 +33,14 @@ def find(pattern, classPaths): + # remove * if it's at the end of path + if ((path is not None) and (len(path) > 0) and (path[-1] == '*')) : + path = path[:-1] +- ++ + for root, dirs, files in os.walk(path): + # sort the file names so *-client always precedes *-thin-client + files.sort() + for name in files: + if fnmatch.fnmatch(name, pattern): + return os.path.join(root, name) +- ++ + return "" + + def tryDecode(input): +@@ -87,11 +87,14 @@ def setPath(): + LOGGING_JAR_PATTERN2 = "log4j-api*.jar" + LOGGING_JAR_PATTERN3 = "log4j-1.2-api*.jar" + SQLLINE_WITH_DEPS_PATTERN = "sqlline-*-jar-with-dependencies.jar" +- ++ OPENTELEMETRY_AGENT_PATTERN = "opentelemetry-javaagent*.jar" ++ OPENTELEMETRY_AGENT_EXTENSION_PATTERN = "phoenix-opentelemetry-trace-sampler-*[!s].jar" + + OVERRIDE_SLF4J_BACKEND = "OVERRIDE_SLF4J_BACKEND_JAR_LOCATION" + OVERRIDE_LOGGING = "OVERRIDE_LOGGING_JAR_LOCATION" + OVERRIDE_SQLLINE = "OVERRIDE_SQLLINE_JAR_LOCATION" ++ OVERRIDE_OPENTELEMETRY_AGENT = "OVERRIDE_OPENTELEMETRY_AGENT_JAR_LOCATION" ++ OVERRIDE_OPENTELEMETRY_AGENT_EXTENSION = "OVERRIDE_OPENTELEMETRY_AGENT_EXTENSION_JAR_LOCATION" + + # Backward support old env variable PHOENIX_LIB_DIR replaced by PHOENIX_CLASS_PATH + global phoenix_class_path +@@ -186,14 +189,37 @@ def setPath(): + global logging_jar + logging_jar = os.environ.get(OVERRIDE_LOGGING) + if logging_jar is None or logging_jar == "": +- logging_jar = findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN, os.path.join(current_dir, "..","lib")) +- logging_jar += ":"+findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN2, os.path.join(current_dir, "..","lib")) +- logging_jar += ":"+findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN3, os.path.join(current_dir, "..","lib")) ++ logging_jar = findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN, os.path.join(current_dir, "..", "lib")) ++ logging_jar += ":"+findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN2, os.path.join(current_dir, "..", "lib")) ++ logging_jar += ":"+findFileInPathWithoutRecursion(LOGGING_JAR_PATTERN3, os.path.join(current_dir, "..", "lib")) ++ ++ global opentelemetry_agent_jar ++ opentelemetry_agent_jar = os.environ.get(OVERRIDE_OPENTELEMETRY_AGENT) ++ if opentelemetry_agent_jar is None or opentelemetry_agent_jar == "": ++ opentelemetry_agent_jar = findFileInPathWithoutRecursion(OPENTELEMETRY_AGENT_PATTERN, os.path.join(current_dir, "..", "lib/tracing")) ++ ++ global opentelemetry_agent_extension_jar ++ opentelemetry_agent_extension_jar = os.environ.get(OVERRIDE_OPENTELEMETRY_AGENT_EXTENSION) ++ if opentelemetry_agent_extension_jar is None or opentelemetry_agent_extension_jar == "": ++ opentelemetry_agent_extension_jar = findFileInPathWithoutRecursion(OPENTELEMETRY_AGENT_EXTENSION_PATTERN, os.path.join(current_dir, "..", "lib/tracing")) ++ if opentelemetry_agent_extension_jar is None or opentelemetry_agent_extension_jar == "": ++ opentelemetry_agent_extension_jar = findFileInPathWithoutRecursion(OPENTELEMETRY_AGENT_EXTENSION_PATTERN, os.path.join(current_dir, "..", "phoenix-opentelemetry-trace-sampler", "target")) + + __set_java_home() + __set_jvm_flags() ++ + return "" + ++def set_tracing(): ++ global phoenix_trace_opts ++ phoenix_trace_opts = os.environ.get("PHOENIX_TRACE_OPTS") ++ if phoenix_trace_opts is None or phoenix_trace_opts == "": ++ phoenix_trace_opts = " -javaagent:" + opentelemetry_agent_jar + \ ++ " -Dotel.javaagent.extensions=" + opentelemetry_agent_extension_jar + \ ++ " -Dotel.metrics.exporter=none -Dotel.instrumentation.jdbc.enabled=false -Dotel.traces.sampler=phoenix_hintable_sampler " ++ return "" ++ ++ + def shell_quote(args): + """ + Return the platform specific shell quoted string. Handles Windows and *nix platforms. +@@ -287,6 +313,9 @@ def common_sqlline_args(parser): + parser.add_argument('-fc', '--fastconnect', + help='Fetch all schemas on initial connection', + action="store_true") ++ parser.add_argument('--trace', help='Load and set up Opentelemetry agent', ++ action="store_true") ++ parser.add_argument('--traceratio', help='Default trace ratio') + + if __name__ == "__main__": + setPath() +@@ -301,6 +330,8 @@ if __name__ == "__main__": + print("sqlline_with_deps_jar:", sqlline_with_deps_jar) + print("slf4j_backend_jar:", slf4j_backend_jar) + print("logging_jar:", logging_jar) ++ print("opentelemetry_agent_jar:", opentelemetry_agent_jar) ++ print("opentelemetry_agent_extension_jar:", opentelemetry_agent_extension_jar) + print("java_home:", java_home) + print("java:", java) + print("jvm_module_flags:", jvm_module_flags) +diff --git a/bin/sqlline.py b/bin/sqlline.py +index 0a15265df..bd3ef91a7 100755 +--- a/bin/sqlline.py ++++ b/bin/sqlline.py +@@ -46,6 +46,7 @@ def kill_child(): + atexit.register(kill_child) + + phoenix_utils.setPath() ++phoenix_utils.set_tracing() + + parser = argparse.ArgumentParser(description='Launches the Apache Phoenix Client.') + # Positional argument 'zookeepers' is optional. The PhoenixDriver will automatically populate +@@ -99,13 +100,14 @@ java_cmd = phoenix_utils.java + ' ' + phoenix_utils.jvm_module_flags + ' $PHOENI + phoenix_utils.phoenix_client_embedded_jar + \ + '" -Dlog4j2.configurationFile=file:' + os.path.join(phoenix_utils.current_dir, "log4j2.properties") + \ + disable_jna + \ +- " sqlline.SqlLine -d org.apache.phoenix.jdbc.PhoenixDriver" + \ +- (not args.noconnect and " -u " + phoenix_utils.shell_quote([jdbc_url]) or "") + \ +- " -n none -p none --color=" + \ +- (args.color and "true" or "false") + \ +- " --fastConnect=" + (args.fastconnect and "true" or "false") + \ +- " --verbose=" + (args.verbose and "true" or "false") + \ +- " --incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile ++ ((phoenix_utils.phoenix_trace_opts + ' -Dotel.service.name="phoenix-sqlline" ') if args.trace else "" ) + \ ++ ("" if args.traceratio is None else "-Dotel.traces.sampler.arg=" + args.traceratio) + \ ++ " sqlline.SqlLine -d org.apache.phoenix.jdbc.PhoenixDriver " + \ ++ ("" if args.noconnect else (" -u " + phoenix_utils.shell_quote([jdbc_url]))) + \ ++ " -n none -p none --color=" + ("true" if args.color else "false") + \ ++ " --fastConnect=" + ("true" if args.fastconnect else "false") + \ ++ " --verbose=" + ( "true" if args.verbose else "false") + \ ++ " --incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile + + if args.verbose_command: + print("Executing java command: " + java_cmd) +diff --git a/phoenix-assembly/pom.xml b/phoenix-assembly/pom.xml +index 0ff54a34f..a7ae54874 100644 +--- a/phoenix-assembly/pom.xml ++++ b/phoenix-assembly/pom.xml +@@ -205,11 +205,11 @@ + </dependency> + <dependency> + <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix-pherf</artifactId> ++ <artifactId>phoenix-opentelemetry-trace-sampler</artifactId> + </dependency> + <dependency> + <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix-tracing-webapp</artifactId> ++ <artifactId>phoenix-pherf</artifactId> + </dependency> + <dependency> + <groupId>sqlline</groupId> +@@ -217,7 +217,26 @@ + <version>${sqlline.version}</version> + <classifier>jar-with-dependencies</classifier> + </dependency> +- ++ <dependency> ++ <groupId>io.opentelemetry.javaagent</groupId> ++ <artifactId>opentelemetry-javaagent</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>org.apache.logging.log4j</groupId> ++ <artifactId>log4j-api</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>org.apache.logging.log4j</groupId> ++ <artifactId>log4j-core</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>org.apache.logging.log4j</groupId> ++ <artifactId>log4j-slf4j-impl</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>org.apache.logging.log4j</groupId> ++ <artifactId>log4j-1.2-api</artifactId> ++ </dependency> + </dependencies> + + <profiles> +@@ -256,11 +275,6 @@ + <artifactId>phoenix-shaded-guava</artifactId> + <version>${phoenix.thirdparty.version}</version> + </dependency> +- <dependency> +- <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix-tracing-webapp</artifactId> +- <version>${project.version}</version> +- </dependency> + <dependency> + <groupId>org.apache.phoenix</groupId> + <artifactId>phoenix-hbase-compat-2.4.1</artifactId> +diff --git a/phoenix-assembly/src/build/components/all-common-dependencies.xml b/phoenix-assembly/src/build/components/all-common-dependencies.xml +index 4a5fd9bf8..52d0e14c0 100644 +--- a/phoenix-assembly/src/build/components/all-common-dependencies.xml ++++ b/phoenix-assembly/src/build/components/all-common-dependencies.xml +@@ -30,5 +30,12 @@ + <include>org.apache.logging.log4j:log4j-1.2-api</include> + </includes> + </dependencySet> ++ <dependencySet> ++ <unpack>false</unpack> ++ <outputDirectory>/lib/tracing</outputDirectory> ++ <includes> ++ <include>io.opentelemetry.javaagent:opentelemetry-javaagent</include> ++ </includes> ++ </dependencySet> + </dependencySets> + </component> +\ No newline at end of file +diff --git a/phoenix-assembly/src/build/components/all-common-jars.xml b/phoenix-assembly/src/build/components/all-common-jars.xml +index c2f943fc3..c3d0fd31c 100644 +--- a/phoenix-assembly/src/build/components/all-common-jars.xml ++++ b/phoenix-assembly/src/build/components/all-common-jars.xml +@@ -63,5 +63,14 @@ + <include>phoenix-pherf.jar</include> + </includes> + </fileSet> ++ <fileSet> ++ <directory>${project.basedir}/../phoenix-opentelemetry-trace-sampler/target</directory> ++ <!-- Should we copy this to the root dir like the other phoenix JARs ? --> ++ <outputDirectory>/lib/tracing/</outputDirectory> ++ <includes> ++ <!-- Would a versionless sampler JAR makes sense ? --> ++ <include>phoenix-opentelemetry-trace-sampler-${project.version}.jar</include> ++ </includes> ++ </fileSet> + </fileSets> + </component> +diff --git a/phoenix-client-parent/phoenix-client-embedded/pom.xml b/phoenix-client-parent/phoenix-client-embedded/pom.xml +index c162f552b..be1527d69 100644 +--- a/phoenix-client-parent/phoenix-client-embedded/pom.xml ++++ b/phoenix-client-parent/phoenix-client-embedded/pom.xml +@@ -94,6 +94,10 @@ + <artifactId>phoenix-hbase-compat-${hbase.compat.version}</artifactId> + <optional>false</optional> + </dependency> ++ <dependency> ++ <groupId>org.apache.phoenix</groupId> ++ <artifactId>phoenix-opentelemetry-trace-sampler</artifactId> ++ </dependency> + <!-- Exclude servlet and Jetty. We don't need it, and it causes problems with minicluster --> + <dependency> + <groupId>org.eclipse.jetty</groupId> +diff --git a/phoenix-client-parent/pom.xml b/phoenix-client-parent/pom.xml +index 5b681570a..81812ec24 100644 +--- a/phoenix-client-parent/pom.xml ++++ b/phoenix-client-parent/pom.xml +@@ -182,6 +182,8 @@ + <pattern>io/</pattern> + <shadedPattern>${shaded.package}.io.</shadedPattern> + <excludes> ++ <!-- Must interoperate with opentelemetry-javaagent --> ++ <exclude>io.opentelemetry/**</exclude> + <!-- Exclude config keys for Hadoop that look like package names --> + <exclude>io/compression/**</exclude> + <exclude>io/mapfile/**</exclude> +diff --git a/phoenix-core-client/pom.xml b/phoenix-core-client/pom.xml +index ad65b74f3..7813a1276 100644 +--- a/phoenix-core-client/pom.xml ++++ b/phoenix-core-client/pom.xml +@@ -378,10 +378,6 @@ + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + </dependency> +- <dependency> +- <groupId>org.apache.htrace</groupId> +- <artifactId>htrace-core</artifactId> +- </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> +diff --git a/phoenix-core-client/src/main/antlr3/PhoenixSQL.g b/phoenix-core-client/src/main/antlr3/PhoenixSQL.g +index 617fd5da7..f728993f0 100644 +--- a/phoenix-core-client/src/main/antlr3/PhoenixSQL.g ++++ b/phoenix-core-client/src/main/antlr3/PhoenixSQL.g +@@ -220,7 +220,7 @@ import org.apache.phoenix.schema.types.PUnsignedTime; + import org.apache.phoenix.schema.types.PUnsignedTimestamp; + import org.apache.phoenix.util.SchemaUtil; + import org.apache.phoenix.parse.LikeParseNode.LikeType; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.parse.AddJarsStatement; + import org.apache.phoenix.parse.ExplainType; + } +@@ -704,7 +704,7 @@ alter_index_node returns [AlterIndexStatement ret] + // Parse a trace statement. + trace_node returns [TraceStatement ret] + : TRACE ((flag = ON ( WITH SAMPLING s = sampling_rate)?) | flag = OFF) +- {ret = factory.trace(Tracing.isTraceOn(flag.getText()), s == null ? Tracing.isTraceOn(flag.getText()) ? 1.0 : 0.0 : (((BigDecimal)s.getValue())).doubleValue());} ++ {ret = factory.trace(TraceUtil.isTraceOn(flag.getText()), s == null ? TraceUtil.isTraceOn(flag.getText()) ? 1.0 : 0.0 : (((BigDecimal)s.getValue())).doubleValue());} + ; + + // Parse a create function statement. +diff --git a/phoenix-core-client/src/main/java/org/apache/hadoop/hbase/ipc/controller/IndexRpcController.java b/phoenix-core-client/src/main/java/org/apache/hadoop/hbase/ipc/controller/IndexRpcController.java +index 0e876fe6a..f7df63365 100644 +--- a/phoenix-core-client/src/main/java/org/apache/hadoop/hbase/ipc/controller/IndexRpcController.java ++++ b/phoenix-core-client/src/main/java/org/apache/hadoop/hbase/ipc/controller/IndexRpcController.java +@@ -21,8 +21,6 @@ import org.apache.hadoop.conf.Configuration; + import org.apache.hadoop.hbase.TableName; + import org.apache.hadoop.hbase.ipc.DelegatingHBaseRpcController; + import org.apache.hadoop.hbase.ipc.HBaseRpcController; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.query.QueryServicesOptions; + + import com.google.protobuf.RpcController; + import org.apache.phoenix.util.IndexUtil; +@@ -34,24 +32,21 @@ import org.apache.phoenix.util.IndexUtil; + class IndexRpcController extends DelegatingHBaseRpcController { + + private final int priority; +- private final String tracingTableName; +- ++ + public IndexRpcController(HBaseRpcController delegate, Configuration conf) { + super(delegate); + this.priority = IndexUtil.getIndexPriority(conf); +- this.tracingTableName = conf.get(QueryServices.TRACING_STATS_TABLE_NAME_ATTRIB, +- QueryServicesOptions.DEFAULT_TRACING_STATS_TABLE_NAME); + } +- ++ + @Override + public void setPriority(final TableName tn) { +- if (!tn.isSystemTable() && !tn.getNameAsString().equals(tracingTableName)) { ++ if (!tn.isSystemTable()) { + setPriority(this.priority); +- } ++ } + else { + super.setPriority(tn); + } + } +- ++ + + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/compile/TraceQueryPlan.java b/phoenix-core-client/src/main/java/org/apache/phoenix/compile/TraceQueryPlan.java +index d8238c05b..daaf84798 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/compile/TraceQueryPlan.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/compile/TraceQueryPlan.java +@@ -29,10 +29,7 @@ import org.apache.hadoop.hbase.HConstants; + import org.apache.hadoop.hbase.client.Result; + import org.apache.hadoop.hbase.client.Scan; + import org.apache.hadoop.hbase.io.ImmutableBytesWritable; +-import org.apache.htrace.Sampler; +-import org.apache.htrace.TraceScope; +-import org.apache.phoenix.compile.ExplainPlanAttributes +- .ExplainPlanAttributesBuilder; ++import org.apache.phoenix.compile.ExplainPlanAttributes.ExplainPlanAttributesBuilder; + import org.apache.phoenix.compile.GroupByCompiler.GroupBy; + import org.apache.phoenix.compile.OrderByCompiler.OrderBy; + import org.apache.phoenix.execute.visitor.QueryPlanVisitor; +@@ -62,8 +59,7 @@ import org.apache.phoenix.schema.SortOrder; + import org.apache.phoenix.schema.TableRef; + import org.apache.phoenix.schema.tuple.ResultTuple; + import org.apache.phoenix.schema.tuple.Tuple; +-import org.apache.phoenix.schema.types.PLong; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.schema.types.PChar; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.EnvironmentEdgeManager; + import org.apache.phoenix.util.PhoenixKeyValueUtil; +@@ -76,13 +72,16 @@ public class TraceQueryPlan implements QueryPlan { + private StatementContext context = null; + private boolean first = true; + ++ // 8 bytes represented by 16 hex characters ++ private static int SPAN_ID_CHAR_LENGTH=16; ++ + private static final RowProjector TRACE_PROJECTOR; + static { + List<ExpressionProjector> projectedColumns = new ArrayList<ExpressionProjector>(); + PName colName = PNameFactory.newName(MetricInfo.TRACE.columnName); + PColumn column = + new PColumnImpl(PNameFactory.newName(MetricInfo.TRACE.columnName), null, +- PLong.INSTANCE, null, null, false, 0, SortOrder.getDefault(), 0, null, ++ PChar.INSTANCE, SPAN_ID_CHAR_LENGTH, null, false, 0, SortOrder.getDefault(), 0, null, + false, null, false, false, colName.getBytes(), HConstants.LATEST_TIMESTAMP); + List<PColumn> columns = new ArrayList<PColumn>(); + columns.add(column); +@@ -90,7 +89,7 @@ public class TraceQueryPlan implements QueryPlan { + new RowKeyColumnExpression(column, new RowKeyValueAccessor(columns, 0)); + projectedColumns.add(new ExpressionProjector(MetricInfo.TRACE.columnName, MetricInfo.TRACE.columnName, "", expression, + true)); +- int estimatedByteSize = SizedUtil.KEY_VALUE_SIZE + PLong.INSTANCE.getByteSize(); ++ int estimatedByteSize = SizedUtil.KEY_VALUE_SIZE + SPAN_ID_CHAR_LENGTH; + TRACE_PROJECTOR = new RowProjector(projectedColumns, estimatedByteSize, false); + } + +@@ -128,7 +127,7 @@ public class TraceQueryPlan implements QueryPlan { + @Override + public ResultIterator iterator(ParallelScanGrouper scanGrouper) throws SQLException { + final PhoenixConnection conn = stmt.getConnection(); +- if (conn.getTraceScope() == null && !traceStatement.isTraceOn()) { ++ if (conn.getManualTraceSpanId() == null && !traceStatement.isTraceOn()) { + return ResultIterator.EMPTY_ITERATOR; + } + return new TraceQueryResultIterator(conn); +@@ -136,7 +135,7 @@ public class TraceQueryPlan implements QueryPlan { + + @Override + public long getEstimatedSize() { +- return PLong.INSTANCE.getByteSize(); ++ return SPAN_ID_CHAR_LENGTH; + } + + @Override +@@ -258,51 +257,36 @@ public class TraceQueryPlan implements QueryPlan { + + @Override + public Tuple next() throws SQLException { +- if(!first) return null; +- TraceScope traceScope = conn.getTraceScope(); ++ if (!first) { ++ return null; ++ } + if (traceStatement.isTraceOn()) { +- conn.setSampler(Tracing.getConfiguredSampler(traceStatement)); +- if (conn.getSampler() == Sampler.NEVER) { +- closeTraceScope(conn); +- } +- if (traceScope == null && !conn.getSampler().equals(Sampler.NEVER)) { +- traceScope = Tracing.startNewSpan(conn, "Enabling trace"); +- if (traceScope.getSpan() != null) { +- conn.setTraceScope(traceScope); +- } else { +- closeTraceScope(conn); +- } +- } ++ conn.startManualTraceSpan(); + } else { +- closeTraceScope(conn); +- conn.setSampler(Sampler.NEVER); ++ conn.endManualTraceSpan(); + } +- if (traceScope == null || traceScope.getSpan() == null) return null; + first = false; +- ImmutableBytesWritable ptr = new ImmutableBytesWritable(); +- ParseNodeFactory factory = new ParseNodeFactory(); +- LiteralParseNode literal = +- factory.literal(traceScope.getSpan().getTraceId()); +- LiteralExpression expression = +- LiteralExpression.newConstant(literal.getValue(), PLong.INSTANCE, +- Determinism.ALWAYS); +- expression.evaluate(null, ptr); +- byte[] rowKey = ByteUtil.copyKeyBytesIfNecessary(ptr); +- Cell cell = +- PhoenixKeyValueUtil +- .newKeyValue(rowKey, HConstants.EMPTY_BYTE_ARRAY, +- HConstants.EMPTY_BYTE_ARRAY, +- EnvironmentEdgeManager.currentTimeMillis(), +- HConstants.EMPTY_BYTE_ARRAY); +- List<Cell> cells = new ArrayList<Cell>(1); +- cells.add(cell); +- return new ResultTuple(Result.create(cells)); +- } +- +- private void closeTraceScope(final PhoenixConnection conn) { +- if(conn.getTraceScope()!=null) { +- conn.getTraceScope().close(); +- conn.setTraceScope(null); ++ String traceSpanId = conn.getManualTraceSpanId(); ++ if (traceSpanId != null) { ++ ImmutableBytesWritable ptr = new ImmutableBytesWritable(); ++ ParseNodeFactory factory = new ParseNodeFactory(); ++ LiteralParseNode literal = factory.literal(traceSpanId); ++ LiteralExpression expression = ++ LiteralExpression.newConstant(literal.getValue(), PChar.INSTANCE, ++ Determinism.ALWAYS); ++ expression.evaluate(null, ptr); ++ byte[] rowKey = ByteUtil.copyKeyBytesIfNecessary(ptr); ++ Cell cell = ++ PhoenixKeyValueUtil ++ .newKeyValue(rowKey, HConstants.EMPTY_BYTE_ARRAY, ++ HConstants.EMPTY_BYTE_ARRAY, ++ EnvironmentEdgeManager.currentTimeMillis(), ++ HConstants.EMPTY_BYTE_ARRAY); ++ List<Cell> cells = new ArrayList<Cell>(1); ++ cells.add(cell); ++ return new ResultTuple(Result.create(cells)); ++ } else { ++ return null; + } + } + +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/execute/BaseQueryPlan.java b/phoenix-core-client/src/main/java/org/apache/phoenix/execute/BaseQueryPlan.java +index bee410e6a..8cd38aa21 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/execute/BaseQueryPlan.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/execute/BaseQueryPlan.java +@@ -34,7 +34,6 @@ import org.apache.hadoop.hbase.io.ImmutableBytesWritable; + import org.apache.hadoop.hbase.io.TimeRange; + import org.apache.hadoop.hbase.util.Bytes; + import org.apache.hadoop.io.WritableUtils; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.cache.ServerCacheClient.ServerCache; + import org.apache.phoenix.compile.ExplainPlan; + import org.apache.phoenix.compile.ExplainPlanAttributes; +@@ -77,7 +76,6 @@ import org.apache.phoenix.schema.TableRef; + import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableSet; + import org.apache.phoenix.thirdparty.com.google.common.collect.Lists; + import org.apache.phoenix.trace.TracingIterator; +-import org.apache.phoenix.trace.util.Tracing; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.IndexUtil; + import org.apache.phoenix.util.LogUtil; +@@ -87,18 +85,17 @@ import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + + +- + /** + * + * Query plan that has no child plans + * +- * ++ * + * @since 0.1 + */ + public abstract class BaseQueryPlan implements QueryPlan { + private static final Logger LOGGER = LoggerFactory.getLogger(BaseQueryPlan.class); + protected static final long DEFAULT_ESTIMATED_SIZE = 10 * 1024; // 10 K +- ++ + protected final TableRef tableRef; + protected final Set<TableRef> tableRefs; + protected final StatementContext context; +@@ -109,7 +106,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + protected final Integer offset; + protected final OrderBy orderBy; + protected final GroupBy groupBy; +- protected final ParallelIteratorFactory parallelIteratorFactory; ++ protected final ParallelIteratorFactory parallelIteratorFactory; + protected final QueryPlan dataPlan; + protected Long estimatedRows; + protected Long estimatedSize; +@@ -140,19 +137,19 @@ public abstract class BaseQueryPlan implements QueryPlan { + public Operation getOperation() { + return Operation.QUERY; + } +- ++ + @Override + public boolean isDegenerate() { + return context.getScanRanges() == ScanRanges.NOTHING; + + } +- ++ + @Override + public GroupBy getGroupBy() { + return groupBy; + } + +- ++ + @Override + public OrderBy getOrderBy() { + return orderBy; +@@ -172,7 +169,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + public Integer getLimit() { + return limit; + } +- ++ + @Override + public Integer getOffset() { + return offset; +@@ -196,7 +193,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + public final ResultIterator iterator() throws SQLException { + return iterator(DefaultParallelScanGrouper.getInstance()); + } +- ++ + @Override + public final ResultIterator iterator(ParallelScanGrouper scanGrouper) throws SQLException { + return iterator(scanGrouper, null); +@@ -206,7 +203,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + public final ResultIterator iterator(ParallelScanGrouper scanGrouper, Scan scan) throws SQLException { + return iterator(Collections.emptyMap(), scanGrouper, scan); + } +- ++ + private ResultIterator getWrappedIterator(final Map<ImmutableBytesPtr,ServerCache> dependencies, + ResultIterator iterator) { + ResultIterator wrappedIterator = dependencies.isEmpty() ? iterator : new DelegateResultIterator(iterator) { +@@ -231,7 +228,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + if (scan == null) { + scan = context.getScan(); + } +- ++ + ScanRanges scanRanges = context.getScanRanges(); + + /* +@@ -242,13 +239,13 @@ public abstract class BaseQueryPlan implements QueryPlan { + if (scanRanges == ScanRanges.NOTHING && !getStatement().isAggregate()) { + return getWrappedIterator(caches, ResultIterator.EMPTY_ITERATOR); + } +- ++ + if (tableRef == TableRef.EMPTY_TABLE_REF) { + return newIterator(scanGrouper, scan, caches); + } +- ++ + ScanUtil.setClientVersion(scan, MetaDataProtocol.PHOENIX_VERSION); +- ++ + // Set miscellaneous scan attributes. This is the last chance to set them before we + // clone the scan for each parallelized chunk. + TableRef tableRef = context.getCurrentTable(); +@@ -259,7 +256,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + // After HBASE-16296 is resolved, we no longer need to set + // scan caching + } +- ++ + + PhoenixConnection connection = context.getConnection(); + final int smallScanThreshold = connection.getQueryServices().getProps().getInt(QueryServices.SMALL_SCAN_THRESHOLD_ATTRIB, +@@ -268,7 +265,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + if (statement.getHint().hasHint(Hint.SMALL) || (scanRanges.isPointLookup() && scanRanges.getPointLookupCount() < smallScanThreshold)) { + scan.setReadType(Scan.ReadType.PREAD); + } +- ++ + + // set read consistency + if (table.getType() != PTableType.SYSTEM) { +@@ -322,7 +319,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + Set<PColumn> dataColumns = context.getDataColumns(); + // If any data columns to join back from data table are present then we set following attributes + // 1. data columns to be projected and their key value schema. +- // 2. index maintainer and view constants if exists to build data row key from index row key. ++ // 2. index maintainer and view constants if exists to build data row key from index row key. + // TODO: can have an hint to skip joining back to data table, in that case if any column to + // project is not present in the index then we need to skip this plan. + if (!dataColumns.isEmpty()) { +@@ -356,25 +353,21 @@ public abstract class BaseQueryPlan implements QueryPlan { + } + } + } +- ++ + if (LOGGER.isDebugEnabled()) { + LOGGER.debug(LogUtil.addCustomAnnotations( + "Scan on table " + context.getCurrentTable().getTable().getName() + " ready for iteration: " + scan, connection)); + } +- ++ ++ + ResultIterator iterator = newIterator(scanGrouper, scan, caches); + if (LOGGER.isDebugEnabled()) { + LOGGER.debug(LogUtil.addCustomAnnotations( + "Iterator for table " + context.getCurrentTable().getTable().getName() + " ready: " + iterator, connection)); + } + +- // wrap the iterator so we start/end tracing as we expect +- if (Tracing.isTracing()) { +- TraceScope scope = Tracing.startNewSpan(context.getConnection(), +- "Creating basic query for " + getPlanSteps(iterator)); +- if (scope.getSpan() != null) return new TracingIterator(scope, iterator); +- } +- return iterator; ++ return new TracingIterator(iterator); ++ + } + + private void serializeIndexMaintainerIntoScan(Scan scan, PTable dataTable) throws SQLException { +@@ -492,7 +485,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + } + + abstract protected ResultIterator newIterator(ParallelScanGrouper scanGrouper, Scan scan, Map<ImmutableBytesPtr,ServerCache> caches) throws SQLException; +- ++ + @Override + public long getEstimatedSize() { + return DEFAULT_ESTIMATED_SIZE; +@@ -528,12 +521,6 @@ public abstract class BaseQueryPlan implements QueryPlan { + return explainPlan; + } + +- private List<String> getPlanSteps(ResultIterator iterator) { +- List<String> planSteps = Lists.newArrayListWithExpectedSize(5); +- iterator.explain(planSteps); +- return planSteps; +- } +- + private Pair<List<String>, ExplainPlanAttributes> getPlanStepsV2( + ResultIterator iterator) { + List<String> planSteps = Lists.newArrayListWithExpectedSize(5); +@@ -547,7 +534,7 @@ public abstract class BaseQueryPlan implements QueryPlan { + public boolean isRowKeyOrdered() { + return groupBy.isEmpty() ? orderBy.getOrderByExpressions().isEmpty() : groupBy.isOrderPreserving(); + } +- ++ + @Override + public Long getEstimatedRowsToScan() throws SQLException { + if (!getEstimatesCalled) { +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/execute/MutationState.java b/phoenix-core-client/src/main/java/org/apache/phoenix/execute/MutationState.java +index 529b6cd60..a1a81d517 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/execute/MutationState.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/execute/MutationState.java +@@ -66,8 +66,6 @@ import org.apache.hadoop.hbase.client.Table; + import org.apache.hadoop.hbase.io.ImmutableBytesWritable; + import org.apache.hadoop.hbase.util.Bytes; + import org.apache.hadoop.hbase.util.Pair; +-import org.apache.htrace.Span; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.cache.ServerCacheClient.ServerCache; + import org.apache.phoenix.compile.MutationPlan; + import org.apache.phoenix.coprocessorclient.BaseScannerRegionObserverConstants; +@@ -118,7 +116,7 @@ import org.apache.phoenix.schema.types.PInteger; + import org.apache.phoenix.schema.types.PLong; + import org.apache.phoenix.schema.types.PTimestamp; + import org.apache.phoenix.thirdparty.com.google.common.base.Strings; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.transaction.PhoenixTransactionContext; + import org.apache.phoenix.transaction.PhoenixTransactionContext.PhoenixVisibilityLevel; + import org.apache.phoenix.transaction.TransactionFactory; +@@ -139,6 +137,10 @@ import org.apache.phoenix.util.WALAnnotationUtil; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + import org.apache.phoenix.thirdparty.com.google.common.base.Preconditions; + import org.apache.phoenix.thirdparty.com.google.common.base.Predicate; + import org.apache.phoenix.thirdparty.com.google.common.collect.Iterators; +@@ -312,7 +314,7 @@ public class MutationState implements SQLCloseable { + * Commit a write fence when creating an index so that we can detect when a data table transaction is started before + * the create index but completes after it. In this case, we need to rerun the data table transaction after the + * index creation so that the index rows are generated. +- * ++ * + * @param dataTable + * the data table upon which an index is being added + * @throws SQLException +@@ -571,7 +573,7 @@ public class MutationState implements SQLCloseable { + /** + * Combine a newer mutation with this one, where in the event of overlaps, the newer one will take precedence. + * Combine any metrics collected for the newer mutation. +- * ++ * + * @param newMutationState + * the newer mutation state + */ +@@ -681,8 +683,8 @@ public class MutationState implements SQLCloseable { + final MultiRowMutationState values, final long mutationTimestamp, final long serverTimestamp, + boolean includeAllIndexes, final boolean sendAll) { + final PTable table = tableRef.getTable(); +- final List<PTable> indexList = includeAllIndexes ? +- Lists.newArrayList(IndexMaintainer.maintainedIndexes(table.getIndexes().iterator())) : ++ final List<PTable> indexList = includeAllIndexes ? ++ Lists.newArrayList(IndexMaintainer.maintainedIndexes(table.getIndexes().iterator())) : + IndexUtil.getClientMaintainedIndexes(table); + final Iterator<PTable> indexes = indexList.iterator(); + final List<Mutation> mutationList = Lists.newArrayListWithExpectedSize(values.size()); +@@ -901,7 +903,7 @@ public class MutationState implements SQLCloseable { + + /** + * Get the unsorted list of HBase mutations for the tables with uncommitted data. +- * ++ * + * @return list of HBase mutations for uncommitted data. + */ + public Iterator<Pair<byte[], List<Mutation>>> toMutations(Long timestamp) { +@@ -993,7 +995,7 @@ public class MutationState implements SQLCloseable { + /** + * Validates that the meta data is valid against the server meta data if we haven't yet done so. Otherwise, for + * every UPSERT VALUES call, we'd need to hit the server to see if the meta data has changed. +- * ++ * + * @return the server time to use for the upsert + * @throws SQLException + * if the table or any columns no longer exist +@@ -1338,8 +1340,8 @@ public class MutationState implements SQLCloseable { + Map<TableInfo, List<Mutation>> physicalTableMutationMap = Maps.newLinkedHashMap(); + + // add tracing for this operation +- try (TraceScope trace = Tracing.startNewSpan(connection, "Committing mutations to tables")) { +- Span span = trace.getSpan(); ++ Span span = TraceUtil.createSpan(connection, "Committing mutations to tables"); ++ try (Scope ignored = span.makeCurrent()) { + ImmutableBytesWritable indexMetaDataPtr = new ImmutableBytesWritable(); + for (Map.Entry<TableRef, MultiRowMutationState> entry : commitBatch.entrySet()) { + // at this point we are going through mutations for each table +@@ -1403,23 +1405,29 @@ public class MutationState implements SQLCloseable { + verifiedOrDeletedIndexMutations); + + // Phase 1: Send index mutations with the empty column value = "unverified" +- sendMutations(unverifiedIndexMutations.entrySet().iterator(), span, indexMetaDataPtr, false); ++ sendMutations(unverifiedIndexMutations.entrySet().iterator(), indexMetaDataPtr, false); + + // Phase 2: Send data table and other indexes +- sendMutations(physicalTableMutationMap.entrySet().iterator(), span, indexMetaDataPtr, false); ++ sendMutations(physicalTableMutationMap.entrySet().iterator(), indexMetaDataPtr, false); + + // Phase 3: Send put index mutations with the empty column value = "verified" and/or delete index mutations + try { +- sendMutations(verifiedOrDeletedIndexMutations.entrySet().iterator(), span, indexMetaDataPtr, true); ++ sendMutations(verifiedOrDeletedIndexMutations.entrySet().iterator(), indexMetaDataPtr, true); + } catch (SQLException ex) { + LOGGER.warn( + "Ignoring exception that happened during setting index verified value to verified=TRUE ", + ex); + } ++ span.setStatus(StatusCode.OK); ++ } catch (SQLException e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ span.end(); + } + } + +- private void sendMutations(Iterator<Entry<TableInfo, List<Mutation>>> mutationsIterator, Span span, ImmutableBytesWritable indexMetaDataPtr, boolean isVerifiedPhase) ++ private void sendMutations(Iterator<Entry<TableInfo, List<Mutation>>> mutationsIterator, ImmutableBytesWritable indexMetaDataPtr, boolean isVerifiedPhase) + throws SQLException { + while (mutationsIterator.hasNext()) { + Entry<TableInfo, List<Mutation>> pair = mutationsIterator.next(); +@@ -1432,8 +1440,6 @@ public class MutationState implements SQLCloseable { + + // create a span per target table + // TODO maybe we can be smarter about the table name to string here? +- Span child = Tracing.child(span, "Writing mutation batch for table: " + Bytes.toString(htableName)); +- + int retryCount = 0; + boolean shouldRetry = false; + long numMutations = 0; +@@ -1447,259 +1453,259 @@ public class MutationState implements SQLCloseable { + boolean shouldRetryIndexedMutation = false; + IndexWriteException iwe = null; + do { +- TableRef origTableRef = tableInfo.getOrigTableRef(); +- PTable table = origTableRef.getTable(); +- table.getIndexMaintainers(indexMetaDataPtr, connection); +- final ServerCache cache = tableInfo.isDataTable() ? +- IndexMetaDataCacheClient.setMetaDataOnMutations(connection, table, +- mutationList, indexMetaDataPtr) : null; +- // If we haven't retried yet, retry for this case only, as it's possible that +- // a split will occur after we send the index metadata cache to all known +- // region servers. +- shouldRetry = cache != null; +- SQLException sqlE = null; +- Table hTable = connection.getQueryServices().getTable(htableName); +- List<Mutation> currentMutationBatch = null; +- boolean areAllBatchesSuccessful = false; +- Object[] resultObjects = null; +- +- try { +- if (table.isTransactional()) { +- // Track tables to which we've sent uncommitted data +- if (tableInfo.isDataTable()) { +- uncommittedPhysicalNames.add(table.getPhysicalName().getString()); +- phoenixTransactionContext.markDMLFence(table); +- } +- // Only pass true for last argument if the index is being written to on it's own (i.e. initial +- // index population), not if it's being written to for normal maintenance due to writes to +- // the data table. This case is different because the initial index population does not need +- // to be done transactionally since the index is only made active after all writes have +- // occurred successfully. +- hTable = phoenixTransactionContext.getTransactionalTableWriter(connection, table, hTable, tableInfo.isDataTable() && table.getType() == PTableType.INDEX); +- } +- numMutations = mutationList.size(); +- GLOBAL_MUTATION_BATCH_SIZE.update(numMutations); +- totalMutationBytesObject = calculateMutationSize(mutationList, true); +- +- child.addTimelineAnnotation("Attempt " + retryCount); +- Iterator<List<Mutation>> itrListMutation = mutationBatchList.iterator(); +- while (itrListMutation.hasNext()) { +- final List<Mutation> mutationBatch = itrListMutation.next(); +- currentMutationBatch = mutationBatch; +- if (connection.getAutoCommit() && mutationBatch.size() == 1) { +- resultObjects = new Object[mutationBatch.size()]; ++ Span span = TraceUtil.createSpan(connection, "Writing mutation batch for table: " + Bytes.toString(htableName)); ++ try (Scope scope = span.makeCurrent()) { ++ TableRef origTableRef = tableInfo.getOrigTableRef(); ++ PTable table = origTableRef.getTable(); ++ table.getIndexMaintainers(indexMetaDataPtr, connection); ++ final ServerCache cache = tableInfo.isDataTable() ? ++ IndexMetaDataCacheClient.setMetaDataOnMutations(connection, table, ++ mutationList, indexMetaDataPtr) : null; ++ // If we haven't retried yet, retry for this case only, as it's possible that ++ // a split will occur after we send the index metadata cache to all known ++ // region servers. ++ shouldRetry = cache != null; ++ SQLException sqlE = null; ++ Table hTable = connection.getQueryServices().getTable(htableName); ++ List<Mutation> currentMutationBatch = null; ++ boolean areAllBatchesSuccessful = false; ++ Object[] resultObjects = null; ++ try { ++ if (table.isTransactional()) { ++ // Track tables to which we've sent uncommitted data ++ if (tableInfo.isDataTable()) { ++ uncommittedPhysicalNames.add(table.getPhysicalName().getString()); ++ phoenixTransactionContext.markDMLFence(table); ++ } ++ // Only pass true for last argument if the index is being written to on it's own (i.e. initial ++ // index population), not if it's being written to for normal maintenance due to writes to ++ // the data table. This case is different because the initial index population does not need ++ // to be done transactionally since the index is only made active after all writes have ++ // occurred successfully. ++ hTable = phoenixTransactionContext.getTransactionalTableWriter(connection, table, hTable, tableInfo.isDataTable() && table.getType() == PTableType.INDEX); + } +- if (shouldRetryIndexedMutation) { +- // if there was an index write failure, retry the mutation in a loop +- final Table finalHTable = hTable; +- final ImmutableBytesWritable finalindexMetaDataPtr = +- indexMetaDataPtr; +- final PTable finalPTable = table; +- final Object[] finalResultObjects = resultObjects; +- PhoenixIndexFailurePolicyHelper.doBatchWithRetries(new MutateCommand() { +- @Override +- public void doMutation() throws IOException { +- try { +- finalHTable.batch(mutationBatch, finalResultObjects); +- } catch (InterruptedException e) { +- Thread.currentThread().interrupt(); +- throw new IOException(e); +- } catch (IOException e) { +- e = updateTableRegionCacheIfNecessary(e); +- throw e; ++ numMutations = mutationList.size(); ++ GLOBAL_MUTATION_BATCH_SIZE.update(numMutations); ++ totalMutationBytesObject = calculateMutationSize(mutationList, true); ++ ++ span.addEvent("Attempt " + retryCount); ++ Iterator<List<Mutation>> itrListMutation = mutationBatchList.iterator(); ++ while (itrListMutation.hasNext()) { ++ final List<Mutation> mutationBatch = itrListMutation.next(); ++ currentMutationBatch = mutationBatch; ++ if (connection.getAutoCommit() && mutationBatch.size() == 1) { ++ resultObjects = new Object[mutationBatch.size()]; ++ } ++ if (shouldRetryIndexedMutation) { ++ // if there was an index write failure, retry the mutation in a loop ++ final Table finalHTable = hTable; ++ final ImmutableBytesWritable finalindexMetaDataPtr = ++ indexMetaDataPtr; ++ final PTable finalPTable = table; ++ final Object[] finalResultObjects = resultObjects; ++ PhoenixIndexFailurePolicyHelper.doBatchWithRetries(new MutateCommand() { ++ @Override ++ public void doMutation() throws IOException { ++ try { ++ finalHTable.batch(mutationBatch, finalResultObjects); ++ } catch (InterruptedException e) { ++ Thread.currentThread().interrupt(); ++ throw new IOException(e); ++ } catch (IOException e) { ++ e = updateTableRegionCacheIfNecessary(e); ++ throw e; ++ } + } +- } + +- @Override +- public List<Mutation> getMutationList() { +- return mutationBatch; +- } ++ @Override ++ public List<Mutation> getMutationList() { ++ return mutationBatch; ++ } + +- private IOException +- updateTableRegionCacheIfNecessary(IOException ioe) { +- SQLException sqlE = +- ClientUtil.parseLocalOrRemoteServerException(ioe); +- if (sqlE != null +- && sqlE.getErrorCode() == SQLExceptionCode.INDEX_METADATA_NOT_FOUND +- .getErrorCode()) { +- try { +- connection.getQueryServices().clearTableRegionCache( +- finalHTable.getName()); +- IndexMetaDataCacheClient.setMetaDataOnMutations( +- connection, finalPTable, mutationBatch, +- finalindexMetaDataPtr); +- } catch (SQLException e) { +- return ClientUtil.createIOException( +- "Exception during updating index meta data cache", +- ioe); ++ private IOException ++ updateTableRegionCacheIfNecessary(IOException ioe) { ++ SQLException sqlE = ++ ClientUtil.parseLocalOrRemoteServerException(ioe); ++ if (sqlE != null ++ && sqlE.getErrorCode() == SQLExceptionCode.INDEX_METADATA_NOT_FOUND ++ .getErrorCode()) { ++ try { ++ connection.getQueryServices().clearTableRegionCache( ++ finalHTable.getName()); ++ IndexMetaDataCacheClient.setMetaDataOnMutations( ++ connection, finalPTable, mutationBatch, ++ finalindexMetaDataPtr); ++ } catch (SQLException e) { ++ return ClientUtil.createIOException( ++ "Exception during updating index meta data cache", ++ ioe); ++ } + } ++ return ioe; + } +- return ioe; +- } +- }, iwe, connection, connection.getQueryServices().getProps()); +- shouldRetryIndexedMutation = false; +- } else { +- hTable.batch(mutationBatch, resultObjects); +- } +- +- if (resultObjects != null) { +- Result result = (Result) resultObjects[0]; +- if (result != null && !result.isEmpty()) { +- Cell cell = result.getColumnLatestCell( +- Bytes.toBytes(UPSERT_CF), Bytes.toBytes(UPSERT_STATUS_CQ)); +- numUpdatedRowsForAutoCommit = PInteger.INSTANCE.getCodec() +- .decodeInt(cell.getValueArray(), cell.getValueOffset(), +- SortOrder.getDefault()); ++ }, iwe, connection, connection.getQueryServices().getProps()); ++ shouldRetryIndexedMutation = false; + } else { +- numUpdatedRowsForAutoCommit = 1; ++ hTable.batch(mutationBatch, resultObjects); + } +- } + +- // remove each batch from the list once it gets applied +- // so when failures happens for any batch we only start +- // from that batch only instead of doing duplicate reply of already +- // applied batches from entire list, also we can set +- // REPLAY_ONLY_INDEX_WRITES for first batch +- // only in case of 1121 SQLException ++ if (resultObjects != null) { ++ Result result = (Result) resultObjects[0]; ++ if (result != null && !result.isEmpty()) { ++ Cell cell = result.getColumnLatestCell( ++ Bytes.toBytes(UPSERT_CF), Bytes.toBytes(UPSERT_STATUS_CQ)); ++ numUpdatedRowsForAutoCommit = PInteger.INSTANCE.getCodec() ++ .decodeInt(cell.getValueArray(), cell.getValueOffset(), ++ SortOrder.getDefault()); ++ } else { ++ numUpdatedRowsForAutoCommit = 1; ++ } ++ } ++ // remove each batch from the list once it gets applied ++ // so when failures happens for any batch we only start ++ // from that batch only instead of doing duplicate reply of already ++ // applied batches from entire list, also we can set ++ // REPLAY_ONLY_INDEX_WRITES for first batch ++ // only in case of 1121 SQLException + itrListMutation.remove(); + +- batchCount++; +- if (LOGGER.isDebugEnabled()) +- LOGGER.debug("Sent batch of " + mutationBatch.size() + " for " +- + Bytes.toString(htableName)); +- } +- child.stop(); +- child.stop(); +- shouldRetry = false; +- numFailedMutations = 0; +- +- // Remove batches as we process them +- removeMutations(this.mutationsMap, origTableRef); +- if (tableInfo.isDataTable()) { +- numRows -= numMutations; +- // recalculate the estimated size +- estimatedSize = PhoenixKeyValueUtil.getEstimatedRowMutationSizeWithBatch(this.mutationsMap); +- } +- areAllBatchesSuccessful = true; +- } catch (Exception e) { +- long serverTimestamp = ClientUtil.parseServerTimestamp(e); +- SQLException inferredE = ClientUtil.parseServerExceptionOrNull(e); +- if (inferredE != null) { +- if (shouldRetry +- && retryCount == 0 +- && inferredE.getErrorCode() == SQLExceptionCode.INDEX_METADATA_NOT_FOUND +- .getErrorCode()) { +- // Swallow this exception once, as it's possible that we split after sending the index +- // metadata +- // and one of the region servers doesn't have it. This will cause it to have it the next ++ batchCount++; ++ if (LOGGER.isDebugEnabled()) ++ LOGGER.debug("Sent batch of " + mutationBatch.size() + " for " ++ + Bytes.toString(htableName)); ++ } ++ shouldRetry = false; ++ numFailedMutations = 0; ++ ++ // Remove batches as we process them ++ removeMutations(this.mutationsMap, origTableRef); ++ if (tableInfo.isDataTable()) { ++ numRows -= numMutations; ++ // recalculate the estimated size ++ estimatedSize = PhoenixKeyValueUtil.getEstimatedRowMutationSizeWithBatch(this.mutationsMap); ++ } ++ areAllBatchesSuccessful = true; ++ span.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ long serverTimestamp = ClientUtil.parseServerTimestamp(e); ++ SQLException inferredE = ClientUtil.parseServerExceptionOrNull(e); ++ if (inferredE != null) { ++ if (shouldRetry ++ && retryCount == 0 ++ && inferredE.getErrorCode() == SQLExceptionCode.INDEX_METADATA_NOT_FOUND ++ .getErrorCode()) { ++ // Swallow this exception once, as it's possible that we split after sending the index ++ // metadata ++ // and one of the region servers doesn't have it. This will cause it to have it the next + // go around. +- // If it fails again, we don't retry. +- String msg = "Swallowing exception and retrying after clearing meta cache on connection. " +- + inferredE; +- LOGGER.warn(LogUtil.addCustomAnnotations(msg, connection)); +- connection.getQueryServices().clearTableRegionCache(TableName.valueOf(htableName)); +- +- // add a new child span as this one failed +- child.addTimelineAnnotation(msg); +- child.stop(); +- child = Tracing.child(span, "Failed batch, attempting retry"); +- +- continue; +- } else if (inferredE.getErrorCode() == SQLExceptionCode.INDEX_WRITE_FAILURE.getErrorCode()) { +- iwe = PhoenixIndexFailurePolicyHelper.getIndexWriteException(inferredE); +- if (iwe != null && !shouldRetryIndexedMutation) { +- // For an index write failure, the data table write succeeded, +- // so when we retry we need to set REPLAY_WRITES +- // for first batch in list only. +- for (Mutation m : mutationBatchList.get(0)) { +- if (!PhoenixIndexMetaData.isIndexRebuild( +- m.getAttributesMap())){ +- m.setAttribute(BaseScannerRegionObserverConstants.REPLAY_WRITES, +- BaseScannerRegionObserverConstants.REPLAY_ONLY_INDEX_WRITES +- ); ++ // If it fails again, we don't retry. ++ String msg = "Swallowing exception and retrying after clearing meta cache on connection. " ++ + inferredE; ++ LOGGER.warn(LogUtil.addCustomAnnotations(msg, connection)); ++ connection.getQueryServices().clearTableRegionCache(TableName.valueOf(htableName)); ++ ++ // The HTRace implementation started a new child span here. ++ // Now we're just adding an event to the same span. ++ span.addEvent(msg); ++ continue; ++ } else if (inferredE.getErrorCode() == SQLExceptionCode.INDEX_WRITE_FAILURE.getErrorCode()) { ++ iwe = PhoenixIndexFailurePolicyHelper.getIndexWriteException(inferredE); ++ if (iwe != null && !shouldRetryIndexedMutation) { ++ // For an index write failure, the data table write succeeded, ++ // so when we retry we need to set REPLAY_WRITES ++ // for first batch in list only. ++ for (Mutation m : mutationBatchList.get(0)) { ++ if (!PhoenixIndexMetaData.isIndexRebuild( ++ m.getAttributesMap())){ ++ m.setAttribute(BaseScannerRegionObserverConstants.REPLAY_WRITES, ++ BaseScannerRegionObserverConstants.REPLAY_ONLY_INDEX_WRITES ++ ); ++ } ++ PhoenixKeyValueUtil.setTimestamp(m, serverTimestamp); + } +- PhoenixKeyValueUtil.setTimestamp(m, serverTimestamp); ++ shouldRetry = true; ++ shouldRetryIndexedMutation = true; ++ continue; + } +- shouldRetry = true; +- shouldRetryIndexedMutation = true; +- continue; + } ++ e = inferredE; + } +- e = inferredE; +- } +- // Throw to client an exception that indicates the statements that +- // were not committed successfully. +- int[] uncommittedStatementIndexes = getUncommittedStatementIndexes(); +- sqlE = new CommitException(e, uncommittedStatementIndexes, serverTimestamp); +- +- numFailedMutations = uncommittedStatementIndexes.length; +- +- if (isVerifiedPhase) { +- numFailedPhase3Mutations = numFailedMutations; +- GLOBAL_MUTATION_INDEX_COMMIT_FAILURE_COUNT.update(numFailedPhase3Mutations); +- } +- } finally { +- mutationCommitTime = EnvironmentEdgeManager.currentTimeMillis() - startTime; +- GLOBAL_MUTATION_COMMIT_TIME.update(mutationCommitTime); +- MutationMetric failureMutationMetrics = MutationMetric.EMPTY_METRIC; +- if (!areAllBatchesSuccessful) { +- failureMutationMetrics = +- updateMutationBatchFailureMetrics(currentMutationBatch, +- htableNameStr, numFailedMutations, +- table.isTransactional()); +- } +- +- MutationMetric committedMutationsMetric = +- getCommittedMutationsMetric( +- totalMutationBytesObject, +- mutationBatchList, +- numMutations, +- numFailedMutations, +- numFailedPhase3Mutations, +- mutationCommitTime); +- // Combine failure mutation metrics with committed ones for the final picture +- committedMutationsMetric.combineMetric(failureMutationMetrics); +- mutationMetricQueue.addMetricsForTable(htableNameStr, committedMutationsMetric); +- +- if (allUpsertsMutations ^ allDeletesMutations) { +- //success cases are updated for both cases autoCommit=true and conn.commit explicit +- if (areAllBatchesSuccessful){ +- TableMetricsManager +- .updateMetricsMethod(htableNameStr, allUpsertsMutations ? UPSERT_AGGREGATE_SUCCESS_SQL_COUNTER : +- DELETE_AGGREGATE_SUCCESS_SQL_COUNTER, 1); ++ TraceUtil.setError(span, inferredE); ++ // Throw to client an exception that indicates the statements that ++ // were not committed successfully. ++ int[] uncommittedStatementIndexes = getUncommittedStatementIndexes(); ++ sqlE = new CommitException(e, uncommittedStatementIndexes, serverTimestamp); ++ numFailedMutations = uncommittedStatementIndexes.length; ++ ++ if (isVerifiedPhase) { ++ numFailedPhase3Mutations = numFailedMutations; ++ GLOBAL_MUTATION_INDEX_COMMIT_FAILURE_COUNT.update(numFailedPhase3Mutations); + } +- //Failures cases are updated only for conn.commit explicit case. +- if (!areAllBatchesSuccessful && !connection.getAutoCommit()){ +- TableMetricsManager.updateMetricsMethod(htableNameStr, allUpsertsMutations ? UPSERT_AGGREGATE_FAILURE_SQL_COUNTER : +- DELETE_AGGREGATE_FAILURE_SQL_COUNTER, 1); ++ } finally { ++ mutationCommitTime = EnvironmentEdgeManager.currentTimeMillis() - startTime; ++ GLOBAL_MUTATION_COMMIT_TIME.update(mutationCommitTime); ++ MutationMetric failureMutationMetrics = MutationMetric.EMPTY_METRIC; ++ if (!areAllBatchesSuccessful) { ++ failureMutationMetrics = ++ updateMutationBatchFailureMetrics(currentMutationBatch, ++ htableNameStr, numFailedMutations, ++ table.isTransactional()); + } +- // Update size and latency histogram metrics. +- TableMetricsManager.updateSizeHistogramMetricsForMutations(htableNameStr, +- committedMutationsMetric.getTotalMutationsSizeBytes().getValue(), allUpsertsMutations); +- Long latency = timeInExecuteMutationMap.get(htableNameStr); +- if (latency == null) { +- latency = 0l; ++ ++ MutationMetric committedMutationsMetric = ++ getCommittedMutationsMetric( ++ totalMutationBytesObject, ++ mutationBatchList, ++ numMutations, ++ numFailedMutations, ++ numFailedPhase3Mutations, ++ mutationCommitTime); ++ // Combine failure mutation metrics with committed ones for the final picture ++ committedMutationsMetric.combineMetric(failureMutationMetrics); ++ mutationMetricQueue.addMetricsForTable(htableNameStr, committedMutationsMetric); ++ ++ if (allUpsertsMutations ^ allDeletesMutations) { ++ //success cases are updated for both cases autoCommit=true and conn.commit explicit ++ if (areAllBatchesSuccessful){ ++ TableMetricsManager ++ .updateMetricsMethod(htableNameStr, allUpsertsMutations ? UPSERT_AGGREGATE_SUCCESS_SQL_COUNTER : ++ DELETE_AGGREGATE_SUCCESS_SQL_COUNTER, 1); ++ } ++ //Failures cases are updated only for conn.commit explicit case. ++ if (!areAllBatchesSuccessful && !connection.getAutoCommit()){ ++ TableMetricsManager.updateMetricsMethod(htableNameStr, allUpsertsMutations ? UPSERT_AGGREGATE_FAILURE_SQL_COUNTER : ++ DELETE_AGGREGATE_FAILURE_SQL_COUNTER, 1); ++ } ++ // Update size and latency histogram metrics. ++ TableMetricsManager.updateSizeHistogramMetricsForMutations(htableNameStr, ++ committedMutationsMetric.getTotalMutationsSizeBytes().getValue(), allUpsertsMutations); ++ Long latency = timeInExecuteMutationMap.get(htableNameStr); ++ if (latency == null) { ++ latency = 0l; ++ } ++ latency += mutationCommitTime; ++ TableMetricsManager.updateLatencyHistogramForMutations(htableNameStr, ++ latency, allUpsertsMutations); + } +- latency += mutationCommitTime; +- TableMetricsManager.updateLatencyHistogramForMutations(htableNameStr, +- latency, allUpsertsMutations); +- } +- resetAllMutationState(); ++ resetAllMutationState(); + +- try { +- if (cache != null) cache.close(); +- } finally { + try { +- hTable.close(); +- } catch (IOException e) { +- if (sqlE != null) { +- sqlE.setNextException(ClientUtil.parseServerException(e)); +- } else { +- sqlE = ClientUtil.parseServerException(e); ++ if (cache != null) cache.close(); ++ } finally { ++ try { ++ hTable.close(); ++ } catch (IOException e) { ++ if (sqlE != null) { ++ sqlE.setNextException(ClientUtil.parseServerException(e)); ++ } else { ++ sqlE = ClientUtil.parseServerException(e); ++ } + } ++ if (sqlE != null) { throw sqlE; } + } +- if (sqlE != null) { throw sqlE; } + } ++ } finally { ++ span.end(); + } + } while (shouldRetry && retryCount++ < 1); + } +@@ -2110,7 +2116,7 @@ public class MutationState implements SQLCloseable { + + /** + * Determines whether indexes were added to mutated tables while the transaction was in progress. +- * ++ * + * @return true if indexes were added and false otherwise. + * @throws SQLException + */ +@@ -2168,7 +2174,7 @@ public class MutationState implements SQLCloseable { + + /** + * Send to HBase any uncommitted data for transactional tables. +- * ++ * + * @return true if any data was sent and false otherwise. + * @throws SQLException + */ +@@ -2179,7 +2185,7 @@ public class MutationState implements SQLCloseable { + /** + * Support read-your-own-write semantics by sending uncommitted data to HBase prior to running a query. In this way, + * they are visible to subsequent reads but are not actually committed until commit is called. +- * ++ * + * @param tableRefs + * @return true if any data was sent and false otherwise. + * @throws SQLException +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/ParallelIterators.java b/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/ParallelIterators.java +index 9f26faab8..27c2e0753 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/ParallelIterators.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/ParallelIterators.java +@@ -36,7 +36,7 @@ import org.apache.phoenix.job.JobManager.JobCallable; + import org.apache.phoenix.monitoring.ReadMetricQueue; + import org.apache.phoenix.monitoring.ScanMetricsHolder; + import org.apache.phoenix.monitoring.TaskExecutionMetricsHolder; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.EnvironmentEdgeManager; + import org.apache.phoenix.util.LogUtil; + import org.apache.phoenix.util.ScanUtil; +@@ -119,7 +119,7 @@ public class ParallelIterators extends BaseResultIterators { + mutationState, tableRef, scan, scanMetricsHolder, renewLeaseThreshold, plan, + scanGrouper, caches, maxQueryEndTime); + context.getConnection().addIteratorForLeaseRenewal(tableResultItr); +- Future<PeekingResultIterator> future = executor.submit(Tracing.wrap(new JobCallable<PeekingResultIterator>() { ++ Future<PeekingResultIterator> future = executor.submit(TraceUtil.wrap(new JobCallable<PeekingResultIterator>() { + + @Override + public PeekingResultIterator call() throws Exception { +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/SerialIterators.java b/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/SerialIterators.java +index a783c3558..c35999cf9 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/SerialIterators.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/iterate/SerialIterators.java +@@ -43,7 +43,7 @@ import org.apache.phoenix.parse.HintNode; + import org.apache.phoenix.query.QueryConstants; + import org.apache.phoenix.schema.tuple.Tuple; + import org.apache.phoenix.schema.types.PInteger; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.EnvironmentEdgeManager; + import org.apache.phoenix.util.LogUtil; + import org.apache.phoenix.util.QueryUtil; +@@ -58,14 +58,14 @@ import org.apache.phoenix.util.ScanUtil; + * Class that parallelizes the scan over a table using the ExecutorService provided. Each region of the table will be scanned in parallel with + * the results accessible through {@link #getIterators()} + * +- * ++ * + * @since 0.1 + */ + public class SerialIterators extends BaseResultIterators { + private static final String NAME = "SERIAL"; + private final ParallelIteratorFactory iteratorFactory; + private final Integer offset; +- ++ + public SerialIterators(QueryPlan plan, Integer perScanLimit, Integer offset, + ParallelIteratorFactory iteratorFactory, ParallelScanGrouper scanGrouper, Scan scan, Map<ImmutableBytesPtr,ServerCache> caches, QueryPlan dataPlan) + throws SQLException { +@@ -95,12 +95,12 @@ public class SerialIterators extends BaseResultIterators { + for (List<Scan> list : nestedScans) { + flattenedScans.addAll(list); + } +- if (!flattenedScans.isEmpty()) { ++ if (!flattenedScans.isEmpty()) { + if (isReverse) { + flattenedScans = Lists.reverse(flattenedScans); + } + final List<Scan> finalScans = flattenedScans; +- Future<PeekingResultIterator> future = executor.submit(Tracing.wrap(new JobCallable<PeekingResultIterator>() { ++ Future<PeekingResultIterator> future = executor.submit(TraceUtil.wrap(new JobCallable<PeekingResultIterator>() { + @Override + public PeekingResultIterator call() throws Exception { + PeekingResultIterator itr = new SerialIterator(finalScans, tableName, renewLeaseThreshold, offset, caches, maxQueryEndTime); +@@ -131,9 +131,9 @@ public class SerialIterators extends BaseResultIterators { + protected String getName() { + return NAME; + } +- ++ + /** +- * ++ * + * Iterator that creates iterators for scans only when needed. + * This helps reduce the cost of pre-constructing all the iterators + * which we may not even use. +@@ -147,7 +147,7 @@ public class SerialIterators extends BaseResultIterators { + private Integer remainingOffset; + private Map<ImmutableBytesPtr,ServerCache> caches; + private final long maxQueryEndTime; +- ++ + private SerialIterator(List<Scan> flattenedScans, String tableName, long renewLeaseThreshold, Integer offset, Map<ImmutableBytesPtr,ServerCache> caches, long maxQueryEndTime) throws SQLException { + this.scans = Lists.newArrayListWithExpectedSize(flattenedScans.size()); + this.tableName = tableName; +@@ -161,7 +161,7 @@ public class SerialIterators extends BaseResultIterators { + this.scans.get(this.scans.size() - 1).setAttribute(QueryConstants.LAST_SCAN, Bytes.toBytes(Boolean.TRUE)); + } + } +- ++ + private PeekingResultIterator currentIterator() throws SQLException { + if (currentIterator == null) { + return currentIterator = nextIterator(); +@@ -172,7 +172,7 @@ public class SerialIterators extends BaseResultIterators { + } + return currentIterator; + } +- ++ + private PeekingResultIterator nextIterator() throws SQLException { + if (index >= scans.size()) { + return EMPTY_ITERATOR; +@@ -212,7 +212,7 @@ public class SerialIterators extends BaseResultIterators { + } + return EMPTY_ITERATOR; + } +- ++ + @Override + public Tuple next() throws SQLException { + return currentIterator().next(); +@@ -237,6 +237,6 @@ public class SerialIterators extends BaseResultIterators { + public Tuple peek() throws SQLException { + return currentIterator().peek(); + } +- ++ + } +-} +\ No newline at end of file ++} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixConnection.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixConnection.java +index e2830f19a..3de016eb4 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixConnection.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixConnection.java +@@ -67,9 +67,6 @@ import javax.annotation.Nullable; + + import org.apache.hadoop.hbase.HConstants; + import org.apache.hadoop.hbase.client.Consistency; +-import org.apache.htrace.Sampler; +-import org.apache.htrace.TraceScope; +-import org.apache.phoenix.call.CallRunner; + import org.apache.phoenix.coprocessorclient.MetaDataProtocol; + import org.apache.phoenix.exception.FailoverSQLException; + import org.apache.phoenix.exception.SQLExceptionCode; +@@ -122,12 +119,6 @@ import org.apache.phoenix.schema.types.PUnsignedDate; + import org.apache.phoenix.schema.types.PUnsignedTime; + import org.apache.phoenix.schema.types.PUnsignedTimestamp; + import org.apache.phoenix.schema.types.PVarbinary; +-import org.apache.phoenix.thirdparty.com.google.common.annotations.VisibleForTesting; +-import org.apache.phoenix.thirdparty.com.google.common.base.Objects; +-import org.apache.phoenix.thirdparty.com.google.common.base.Strings; +-import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableMap; +-import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableMap.Builder; +-import org.apache.phoenix.trace.util.Tracing; + import org.apache.phoenix.transaction.PhoenixTransactionContext; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.DateUtil; +@@ -142,14 +133,25 @@ import org.apache.phoenix.util.SQLCloseables; + import org.apache.phoenix.util.SchemaUtil; + import org.apache.phoenix.util.VarBinaryFormatter; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ ++import org.apache.phoenix.thirdparty.com.google.common.annotations.VisibleForTesting; ++import org.apache.phoenix.thirdparty.com.google.common.base.Objects; ++import org.apache.phoenix.thirdparty.com.google.common.base.Strings; ++import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableMap; ++import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableMap.Builder; ++import org.apache.phoenix.trace.NullScope; ++import org.apache.phoenix.trace.TraceUtil; + /** +- * ++ * + * JDBC Connection implementation of Phoenix. Currently the following are + * supported: - Statement - PreparedStatement The connection may only be used + * with the following options: - ResultSet.TYPE_FORWARD_ONLY - + * Connection.TRANSACTION_READ_COMMITTED +- * +- * ++ * ++ * + * @since 0.1 + */ + public class PhoenixConnection implements MetaDataMutated, SQLCloseable, PhoenixMonitoredConnection { +@@ -172,10 +174,9 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + private final String timePattern; + private final String timestampPattern; + private int statementExecutionCounter; +- private TraceScope traceScope = null; ++ private Span manualTraceSpan; + private volatile boolean isClosed = false; + private volatile boolean isClosing = false; +- private Sampler<?> sampler; + private boolean readOnly = false; + private Consistency consistency = Consistency.STRONG; + private Map<String, String> customTracingAnnotations = emptyMap(); +@@ -203,7 +204,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + private ConnectionActivityLogger connectionActivityLogger = ConnectionActivityLogger.NO_OP_LOGGER; + + static { +- Tracing.addTraceMetricsSource(); + CONNECTION_PROPERTIES = PhoenixRuntime.getConnectionProperties(); + } + +@@ -213,6 +213,7 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + return props; + } + ++ //TODO handle active Tracing span for copy constructors + public PhoenixConnection(PhoenixConnection connection, + boolean isDescRowKeyOrderUpgrade, boolean isRunningUpgrade) + throws SQLException { +@@ -222,7 +223,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + isRunningUpgrade, connection.buildingIndex, true); + this.isAutoCommit = connection.isAutoCommit; + this.isAutoFlush = connection.isAutoFlush; +- this.sampler = connection.sampler; + this.statementExecutionCounter = connection.statementExecutionCounter; + } + +@@ -250,7 +250,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + connection.isRunningUpgrade(), connection.buildingIndex, true); + this.isAutoCommit = connection.isAutoCommit; + this.isAutoFlush = connection.isAutoFlush; +- this.sampler = connection.sampler; + this.statementExecutionCounter = connection.statementExecutionCounter; + } + +@@ -392,7 +391,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + this.services.addConnection(this); + + // setup tracing, if its enabled +- this.sampler = Tracing.getConfiguredSampler(this); + this.customTracingAnnotations = getImmutableCustomTracingAnnotations(); + this.scannerQueue = new LinkedBlockingQueue<>(); + this.tableResultIteratorFactory = new DefaultTableResultIteratorFactory(); +@@ -485,6 +483,7 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + * @param connection + */ + public void addChildConnection(PhoenixConnection connection) { ++ //TODO handle trace pan + childConnections.add(connection); + } + +@@ -494,6 +493,7 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + * @param connection + */ + public void removeChildConnection(PhoenixConnection connection) { ++ //TODO handle trace span + childConnections.remove(connection); + } + +@@ -507,14 +507,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + return childConnections.size(); + } + +- public Sampler<?> getSampler() { +- return this.sampler; +- } +- +- public void setSampler(Sampler<?> sampler) throws SQLException { +- this.sampler = sampler; +- } +- + public Map<String, String> getCustomTracingAnnotations() { + return customTracingAnnotations; + } +@@ -891,12 +883,13 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + clearMetrics(); + } + try { ++ + closeStatements(); + if (childConnections != null) { + SQLCloseables.closeAllQuietly(childConnections); + } +- if (traceScope != null) { +- traceScope.close(); ++ if (manualTraceSpan != null) { ++ manualTraceSpan.end(); + } + } finally { + services.removeConnection(this); +@@ -929,18 +922,18 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + + @Override + public void commit() throws SQLException { +- CallRunner.run(new CallRunner.CallableThrowable<Void, SQLException>() { +- @Override +- public Void call() throws SQLException { +- checkOpen(); +- try { +- mutationState.commit(); +- } finally { +- mutationState.resetExecuteMutationTimeMap(); +- } +- return null; +- } +- }, Tracing.withTracing(this, "committing mutations")); ++ checkOpen(); ++ Span span = TraceUtil.createSpan(this, "committing mutations"); ++ try (Scope ignored = span.makeCurrent()) { ++ mutationState.commit(); ++ span.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ span.end(); ++ mutationState.resetExecuteMutationTimeMap(); ++ } + statementExecutionCounter = 0; + } + +@@ -1226,14 +1219,19 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + + @Override + public void rollback() throws SQLException { +- CallRunner.run(new CallRunner.CallableThrowable<Void, SQLException>() { +- @Override +- public Void call() throws SQLException { +- checkOpen(); ++ if (!mutationState.isEmpty()) { ++ checkOpen(); ++ Span span = TraceUtil.createSpan(this, "rolling back"); ++ try (Scope scope = span.makeCurrent()) { + mutationState.rollback(); +- return null; ++ span.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ span.end(); + } +- }, Tracing.withTracing(this, "rolling back")); ++ } + statementExecutionCounter = 0; + } + +@@ -1453,14 +1451,6 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + } + } + +- public TraceScope getTraceScope() { +- return traceScope; +- } +- +- public void setTraceScope(TraceScope traceScope) { +- this.traceScope = traceScope; +- } +- + @Override + public Map<String, Map<MetricType, Long>> getMutationMetrics() { + return mutationState.getMutationMetricQueue().aggregate(); +@@ -1593,4 +1583,45 @@ public class PhoenixConnection implements MetaDataMutated, SQLCloseable, Phoenix + public void setActivityLogger(ConnectionActivityLogger connectionActivityLogger) { + this.connectionActivityLogger = connectionActivityLogger; + } ++ ++ public synchronized void startManualTraceSpan() { ++ if (manualTraceSpan != null) { ++ // TODO What to do if we try turn on tracing for a connection that is already on ? ++ // For now we just ignore it, but it may be better to throw an exception ? ++ return; ++ } ++ manualTraceSpan = TraceUtil.createSpan(this, "PhoenixConnection manual trace", true); ++ } ++ ++ public synchronized void endManualTraceSpan() { ++ if (manualTraceSpan == null) { ++ // TODO What to do if we try turn off tracing for a connection that is already off ? ++ // For now we just ignore it, but it may be better to throw an exception ? ++ return; ++ } ++ // FIXME: If we still have traced queries running (i.e. open ResultSets), then events after ++ // this will be parent less, or at least those spans will be truncated. ++ // I don't see a way to avoid that, though. ++ try { ++ manualTraceSpan.end(); ++ } finally { ++ manualTraceSpan = null; ++ } ++ } ++ ++ public Scope makeCurrent() { ++ if (manualTraceSpan == null) { ++ return NullScope.INSTANCE; ++ } else { ++ return manualTraceSpan.makeCurrent(); ++ } ++ } ++ ++ public String getManualTraceSpanId() { ++ if (manualTraceSpan == null) { ++ return null; ++ } else { ++ return manualTraceSpan.getSpanContext().getSpanId(); ++ } ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java +index ad7f83a8a..ad5757d95 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java +@@ -77,12 +77,17 @@ import org.apache.phoenix.util.SchemaUtil; + import org.apache.phoenix.util.StringUtil; + import org.apache.phoenix.coprocessorclient.BaseScannerRegionObserverConstants; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + import org.apache.phoenix.thirdparty.com.google.common.collect.Lists; ++import org.apache.phoenix.trace.TraceUtil; + + /** + * + * JDBC DatabaseMetaData implementation of Phoenix. +- * ++ * + */ + public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final int FAMILY_NAME_INDEX = 4; +@@ -126,7 +131,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final String SYSTEM_SEQUENCE_NAME = SchemaUtil.getTableName(SYSTEM_SEQUENCE_SCHEMA, SYSTEM_SEQUENCE_TABLE); + public static final byte[] SYSTEM_SEQUENCE_NAME_BYTES = Bytes.toBytes(SYSTEM_SEQUENCE_NAME); + public static final TableName SYSTEM_SEQUENCE_HBASE_TABLE_NAME = TableName.valueOf(SYSTEM_SEQUENCE_NAME); +- ++ + public static final String TABLE_NAME = "TABLE_NAME"; + public static final byte[] TABLE_NAME_BYTES = Bytes.toBytes(TABLE_NAME); + public static final String TABLE_TYPE = "TABLE_TYPE"; +@@ -244,7 +249,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final byte[] BASE_COLUMN_COUNT_BYTES = Bytes.toBytes(BASE_COLUMN_COUNT); + public static final String IS_ROW_TIMESTAMP = "IS_ROW_TIMESTAMP"; + public static final byte[] IS_ROW_TIMESTAMP_BYTES = Bytes.toBytes(IS_ROW_TIMESTAMP); +- ++ + public static final String TABLE_FAMILY = QueryConstants.DEFAULT_COLUMN_FAMILY; + public static final byte[] TABLE_FAMILY_BYTES = QueryConstants.DEFAULT_COLUMN_FAMILY_BYTES; + public static final byte[] PENDING_DISABLE_COUNT_BYTES = Bytes.toBytes("PENDING_DISABLE_COUNT"); +@@ -276,7 +281,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final byte[] DEFAULT_VALUE_BYTES = Bytes.toBytes(DEFAULT_VALUE); + public static final String NUM_ARGS = "NUM_ARGS"; + public static final byte[] NUM_ARGS_BYTES = Bytes.toBytes(NUM_ARGS); +- ++ + public static final String SEQUENCE_SCHEMA = "SEQUENCE_SCHEMA"; + public static final String SEQUENCE_NAME = "SEQUENCE_NAME"; + public static final String CURRENT_VALUE = "CURRENT_VALUE"; +@@ -346,10 +351,10 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + + public static final String AUTO_PARTITION_SEQ = "AUTO_PARTITION_SEQ"; + public static final byte[] AUTO_PARTITION_SEQ_BYTES = Bytes.toBytes(AUTO_PARTITION_SEQ); +- ++ + public static final String APPEND_ONLY_SCHEMA = "APPEND_ONLY_SCHEMA"; + public static final byte[] APPEND_ONLY_SCHEMA_BYTES = Bytes.toBytes(APPEND_ONLY_SCHEMA); +- ++ + public static final String ASYNC_CREATED_DATE = "ASYNC_CREATED_DATE"; + public static final String SEQUENCE_TABLE_TYPE = SYSTEM_SEQUENCE_TABLE; + +@@ -361,7 +366,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final TableName SYSTEM_MUTEX_HBASE_TABLE_NAME = TableName.valueOf(SYSTEM_MUTEX_NAME); + public static final byte[] SYSTEM_MUTEX_NAME_BYTES = Bytes.toBytes(SYSTEM_MUTEX_NAME); + public static final byte[] SYSTEM_MUTEX_FAMILY_NAME_BYTES = TABLE_FAMILY_BYTES; +- ++ + private final PhoenixConnection connection; + + public static final int MAX_LOCAL_SI_VERSION_DISALLOW = VersionUtil.encodeVersion("0", "98", "8"); +@@ -462,8 +467,8 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + public static final String SCAN_METRICS_JSON = "SCAN_METRICS_JSON"; + public static final String START_TIME = "START_TIME"; + public static final String BIND_PARAMETERS = "BIND_PARAMETERS"; +- +- ++ ++ + PhoenixDatabaseMetaData(PhoenixConnection connection) throws SQLException { + this.connection = connection; + } +@@ -555,7 +560,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + private static void appendConjunction(StringBuilder buf) { + buf.append(buf.length() == 0 ? "" : " and "); + } +- ++ + // While creating the PColumns we don't care about the ordinal positiion so set it to 1 + private static final PColumnImpl TENANT_ID_COLUMN = new PColumnImpl(PNameFactory.newName(TENANT_ID), + PNameFactory.newName(TABLE_FAMILY_BYTES), PVarchar.INSTANCE, null, null, false, 1, SortOrder.getDefault(), +@@ -652,9 +657,9 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + private static final PColumnImpl ASC_OR_DESC_COLUMN = new PColumnImpl(PNameFactory.newName(ASC_OR_DESC), + PNameFactory.newName(TABLE_FAMILY_BYTES), PVarchar.INSTANCE, null, null, false, 1, SortOrder.getDefault(), + 0, null, false, null, false, false, ASC_OR_DESC_BYTES, HConstants.LATEST_TIMESTAMP); +- ++ + private static final List<PColumnImpl> PK_DATUM_LIST = Lists.newArrayList(TENANT_ID_COLUMN, TABLE_SCHEM_COLUMN, TABLE_NAME_COLUMN, COLUMN_NAME_COLUMN); +- ++ + private static final RowProjector GET_COLUMNS_ROW_PROJECTOR = new RowProjector( + Arrays.<ColumnProjector> asList( + new ExpressionProjector(TABLE_CAT, TABLE_CAT, SYSTEM_CATALOG, +@@ -720,7 +725,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + new ExpressionProjector(KEY_SEQ, KEY_SEQ, SYSTEM_CATALOG, + new KeyValueColumnExpression(KEY_SEQ_COLUMN), false) + ), 0, true); +- ++ + private static final RowProjector GET_PRIMARY_KEYS_ROW_PROJECTOR = + new RowProjector( + Arrays.<ColumnProjector> asList( +@@ -757,7 +762,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + new ExpressionProjector(VIEW_CONSTANT, VIEW_CONSTANT, SYSTEM_CATALOG, + new KeyValueColumnExpression(VIEW_CONSTANT_COLUMN), false)), + 0, true); +- ++ + private boolean match(String str, String pattern) throws SQLException { + LiteralExpression strExpr = LiteralExpression.newConstant(str, PVarchar.INSTANCE, SortOrder.ASC); + LiteralExpression patternExpr = LiteralExpression.newConstant(pattern, PVarchar.INSTANCE, SortOrder.ASC); +@@ -771,206 +776,207 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + } + return false; + } +- ++ + @Override +- public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) +- throws SQLException { +- try { +- boolean isTenantSpecificConnection = connection.getTenantId() != null; ++ public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, ++ String columnNamePattern) throws SQLException { + List<Tuple> tuples = Lists.newArrayListWithExpectedSize(10); +- // Allow a "." in columnNamePattern for column family match +- String colPattern = null; +- String cfPattern = null; +- if (columnNamePattern != null && columnNamePattern.length() > 0) { +- int index = columnNamePattern.indexOf('.'); +- if (index <= 0) { +- colPattern = columnNamePattern; +- } else { +- cfPattern = columnNamePattern.substring(0, index); +- if (columnNamePattern.length() > index+1) { +- colPattern = columnNamePattern.substring(index+1); ++ Span span = TraceUtil.createSpan(connection, "PhoenixDataBaseMetaData.getColumns() collecting data"); ++ try (Scope ignored = span.makeCurrent()) { ++ boolean isTenantSpecificConnection = connection.getTenantId() != null; ++ // Allow a "." in columnNamePattern for column family match ++ String colPattern = null; ++ String cfPattern = null; ++ if (columnNamePattern != null && columnNamePattern.length() > 0) { ++ int index = columnNamePattern.indexOf('.'); ++ if (index <= 0) { ++ colPattern = columnNamePattern; ++ } else { ++ cfPattern = columnNamePattern.substring(0, index); ++ if (columnNamePattern.length() > index + 1) { ++ colPattern = columnNamePattern.substring(index + 1); ++ } + } + } +- } +- try (ResultSet rs = getTables(catalog, schemaPattern, tableNamePattern, null)) { +- while (rs.next()) { +- String schemaName = rs.getString(TABLE_SCHEM); +- String tableName = rs.getString(TABLE_NAME); +- String tenantId = rs.getString(TABLE_CAT); +- String fullTableName = SchemaUtil.getTableName(schemaName, tableName); +- PTable table = connection.getTableNoCache(fullTableName); +- boolean isSalted = table.getBucketNum()!=null; +- boolean tenantColSkipped = false; +- List<PColumn> columns = table.getColumns(); +- int startOffset = isSalted ? 1 : 0; +- columns = Lists.newArrayList(columns.subList(startOffset, columns.size())); +- for (PColumn column : columns) { ++ try (ResultSet rs = getTables(catalog, schemaPattern, tableNamePattern, null)) { ++ while (rs.next()) { ++ String schemaName = rs.getString(TABLE_SCHEM); ++ String tableName = rs.getString(TABLE_NAME); ++ String tenantId = rs.getString(TABLE_CAT); ++ String fullTableName = SchemaUtil.getTableName(schemaName, tableName); ++ PTable table = connection.getTableNoCache(fullTableName); ++ boolean isSalted = table.getBucketNum() != null; ++ boolean tenantColSkipped = false; ++ List<PColumn> columns = table.getColumns(); ++ int startOffset = isSalted ? 1 : 0; ++ columns = Lists.newArrayList(columns.subList(startOffset, columns.size())); ++ for (PColumn column : columns) { + if (isTenantSpecificConnection && column.equals(table.getPKColumns().get(startOffset))) { +- // skip the tenant column +- tenantColSkipped = true; +- continue; +- } ++ // skip the tenant column ++ tenantColSkipped = true; ++ continue; ++ } + String columnFamily = column.getFamilyName()!=null ? column.getFamilyName().getString() : null; +- String columnName = column.getName().getString(); ++ String columnName = column.getName().getString(); + if (cfPattern != null && cfPattern.length() > 0) { // if null or empty, will pick up all columns +- if (columnFamily==null || !match(columnFamily, cfPattern)) { +- continue; ++ if (columnFamily == null || !match(columnFamily, cfPattern)) { ++ continue; ++ } + } +- } +- if (colPattern != null && colPattern.length() > 0) { +- if (!match(columnName, colPattern)) { +- continue; ++ if (colPattern != null && colPattern.length() > 0) { ++ if (!match(columnName, colPattern)) { ++ continue; ++ } + } +- } +- // generate row key +- // TENANT_ID, TABLE_SCHEM, TABLE_NAME , COLUMN_NAME are row key columns +- byte[] rowKey = +- SchemaUtil.getColumnKey(tenantId, schemaName, tableName, columnName, null); +- +- // add one cell for each column info +- List<Cell> cells = Lists.newArrayListWithCapacity(25); +- // DATA_TYPE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- DATA_TYPE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PInteger.INSTANCE.toBytes(column.getDataType().getResultSetSqlType()))); +- // TYPE_NAME +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(TYPE_NAME), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- column.getDataType().getSqlTypeNameBytes())); +- // COLUMN_SIZE +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, COLUMN_SIZE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ // generate row key ++ // TENANT_ID, TABLE_SCHEM, TABLE_NAME , COLUMN_NAME are row key columns ++ byte[] rowKey = ++ SchemaUtil.getColumnKey(tenantId, schemaName, tableName, columnName, ++ null); ++ ++ // add one cell for each column info ++ List<Cell> cells = Lists.newArrayListWithCapacity(25); ++ // DATA_TYPE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ DATA_TYPE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PInteger.INSTANCE.toBytes(column.getDataType().getResultSetSqlType()))); ++ // TYPE_NAME ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(TYPE_NAME), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getDataType().getSqlTypeNameBytes())); ++ // COLUMN_SIZE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ COLUMN_SIZE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, + column.getMaxLength() != null + ? PInteger.INSTANCE.toBytes(column.getMaxLength()) + : ByteUtil.EMPTY_BYTE_ARRAY)); +- // BUFFER_LENGTH +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(BUFFER_LENGTH), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // DECIMAL_DIGITS +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- DECIMAL_DIGITS_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- column.getScale() != null ? PInteger.INSTANCE.toBytes(column.getScale()) +- : ByteUtil.EMPTY_BYTE_ARRAY)); +- // NUM_PREC_RADIX +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(NUM_PREC_RADIX), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // NULLABLE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- NULLABLE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PInteger.INSTANCE.toBytes(SchemaUtil.getIsNullableInt(column.isNullable())))); +- // REMARKS +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(REMARKS), +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ByteUtil.EMPTY_BYTE_ARRAY)); +- // COLUMN_DEF +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(COLUMN_DEF), +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ // BUFFER_LENGTH ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(BUFFER_LENGTH), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // DECIMAL_DIGITS ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ DECIMAL_DIGITS_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getScale() != null ? PInteger.INSTANCE.toBytes(column.getScale()) ++ : ByteUtil.EMPTY_BYTE_ARRAY)); ++ // NUM_PREC_RADIX ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(NUM_PREC_RADIX), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // NULLABLE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ NULLABLE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, PInteger.INSTANCE ++ .toBytes(SchemaUtil.getIsNullableInt(column.isNullable())))); ++ // REMARKS ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(REMARKS), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // COLUMN_DEF ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(COLUMN_DEF), MetaDataProtocol.MIN_TABLE_TIMESTAMP, + PVarchar.INSTANCE.toBytes(column.getExpressionStr()))); +- // SQL_DATA_TYPE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SQL_DATA_TYPE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // SQL_DATETIME_SUB +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SQL_DATETIME_SUB), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // CHAR_OCTET_LENGTH +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(CHAR_OCTET_LENGTH), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // ORDINAL_POSITION +- int ordinal = +- column.getPosition() + (isSalted ? 0 : 1) - (tenantColSkipped ? 1 : 0); +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- ORDINAL_POSITION_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, PInteger.INSTANCE.toBytes(ordinal))); +- String isNullable = +- column.isNullable() ? Boolean.TRUE.toString() : Boolean.FALSE.toString(); +- // IS_NULLABLE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(IS_NULLABLE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PVarchar.INSTANCE.toBytes(isNullable))); +- // SCOPE_CATALOG +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SCOPE_CATALOG), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // SCOPE_SCHEMA +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SCOPE_SCHEMA), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // SCOPE_TABLE +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SCOPE_TABLE), +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ByteUtil.EMPTY_BYTE_ARRAY)); +- // SOURCE_DATA_TYPE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(SOURCE_DATA_TYPE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // IS_AUTOINCREMENT +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(IS_AUTOINCREMENT), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- ByteUtil.EMPTY_BYTE_ARRAY)); +- // ARRAY_SIZE +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ARRAY_SIZE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ // SQL_DATA_TYPE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SQL_DATA_TYPE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // SQL_DATETIME_SUB ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SQL_DATETIME_SUB), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // CHAR_OCTET_LENGTH ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(CHAR_OCTET_LENGTH), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // ORDINAL_POSITION ++ int ordinal = ++ column.getPosition() + (isSalted ? 0 : 1) ++ - (tenantColSkipped ? 1 : 0); ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ ORDINAL_POSITION_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PInteger.INSTANCE.toBytes(ordinal))); ++ String isNullable = ++ column.isNullable() ? Boolean.TRUE.toString() ++ : Boolean.FALSE.toString(); ++ // IS_NULLABLE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(IS_NULLABLE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PVarchar.INSTANCE.toBytes(isNullable))); ++ // SCOPE_CATALOG ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SCOPE_CATALOG), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // SCOPE_SCHEMA ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SCOPE_SCHEMA), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // SCOPE_TABLE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SCOPE_TABLE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // SOURCE_DATA_TYPE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(SOURCE_DATA_TYPE), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // IS_AUTOINCREMENT ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(IS_AUTOINCREMENT), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ ByteUtil.EMPTY_BYTE_ARRAY)); ++ // ARRAY_SIZE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ ARRAY_SIZE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, + column.getArraySize() != null + ? PInteger.INSTANCE.toBytes(column.getArraySize()) + : ByteUtil.EMPTY_BYTE_ARRAY)); +- // COLUMN_FAMILY +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- COLUMN_FAMILY_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, column.getFamilyName() != null +- ? column.getFamilyName().getBytes() : ByteUtil.EMPTY_BYTE_ARRAY)); +- // TYPE_ID +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(TYPE_ID), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PInteger.INSTANCE.toBytes(column.getDataType().getSqlType()))); +- // VIEW_CONSTANT +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- VIEW_CONSTANT_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, column.getViewConstant() != null +- ? column.getViewConstant() : ByteUtil.EMPTY_BYTE_ARRAY)); +- // MULTI_TENANT +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- MULTI_TENANT_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PBoolean.INSTANCE.toBytes(table.isMultiTenant()))); +- // KEY_SEQ_COLUMN +- byte[] keySeqBytes = ByteUtil.EMPTY_BYTE_ARRAY; +- int pkPos = table.getPKColumns().indexOf(column); +- if (pkPos!=-1) { +- short keySeq = (short) (pkPos + 1 - startOffset - (tenantColSkipped ? 1 : 0)); +- keySeqBytes = PSmallint.INSTANCE.toBytes(keySeq); ++ // COLUMN_FAMILY ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ COLUMN_FAMILY_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getFamilyName() != null ? column.getFamilyName().getBytes() ++ : ByteUtil.EMPTY_BYTE_ARRAY)); ++ // TYPE_ID ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(TYPE_ID), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PInteger.INSTANCE.toBytes(column.getDataType().getSqlType()))); ++ // VIEW_CONSTANT ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ VIEW_CONSTANT_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getViewConstant() != null ? column.getViewConstant() ++ : ByteUtil.EMPTY_BYTE_ARRAY)); ++ // MULTI_TENANT ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ MULTI_TENANT_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PBoolean.INSTANCE.toBytes(table.isMultiTenant()))); ++ // KEY_SEQ_COLUMN ++ byte[] keySeqBytes = ByteUtil.EMPTY_BYTE_ARRAY; ++ int pkPos = table.getPKColumns().indexOf(column); ++ if (pkPos != -1) { ++ short keySeq = ++ (short) (pkPos + 1 - startOffset - (tenantColSkipped ? 1 : 0)); ++ keySeqBytes = PSmallint.INSTANCE.toBytes(keySeq); ++ } ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ KEY_SEQ_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, keySeqBytes)); ++ Collections.sort(cells, new CellComparatorImpl()); ++ Tuple tuple = new MultiKeyValueTuple(cells); ++ tuples.add(tuple); + } +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, KEY_SEQ_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, keySeqBytes)); +- Collections.sort(cells, new CellComparatorImpl()); +- Tuple tuple = new MultiKeyValueTuple(cells); +- tuples.add(tuple); + } + } +- } +- +- PhoenixStatement stmt = new PhoenixStatement(connection); +- stmt.closeOnCompletion(); +- return new PhoenixResultSet(new MaterializedResultIterator(tuples), GET_COLUMNS_ROW_PROJECTOR, new StatementContext(stmt, false)); ++ span.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ TraceUtil.setError(span, e); ++ throw e; + } finally { + if (connection.getAutoCommit()) { +- connection.commit(); ++ try (Scope ignored = span.makeCurrent()) { ++ connection.commit(); ++ } + } ++ span.end(); + } ++ PhoenixStatement stmt = new PhoenixStatement(connection); ++ stmt.closeOnCompletion(); ++ return new PhoenixResultSet(new MaterializedResultIterator(tuples), ++ GET_COLUMNS_ROW_PROJECTOR, new StatementContext(stmt, false)); + } + + @Override +@@ -1193,93 +1199,103 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + if (tableName == null || tableName.length() == 0) { + return getEmptyResultSet(); + } +- String fullTableName = SchemaUtil.getTableName(schemaName, tableName); +- PTable table = connection.getTableNoCache(fullTableName); +- boolean isSalted = table.getBucketNum() != null; +- boolean tenantColSkipped = false; +- List<PColumn> pkColumns = table.getPKColumns(); +- List<PColumn> sorderPkColumns = +- Lists.newArrayList(pkColumns.subList(isSalted ? 1 : 0, pkColumns.size())); +- // sort the columns by name +- Collections.sort(sorderPkColumns, new Comparator<PColumn>(){ +- @Override public int compare(PColumn c1, PColumn c2) { +- return c1.getName().getString().compareTo(c2.getName().getString()); +- } +- }); +- +- try { + List<Tuple> tuples = Lists.newArrayListWithExpectedSize(10); +- try (ResultSet rs = getTables(catalog, schemaName, tableName, null)) { +- while (rs.next()) { +- String tenantId = rs.getString(TABLE_CAT); +- for (PColumn column : sorderPkColumns) { +- String columnName = column.getName().getString(); +- // generate row key +- // TENANT_ID, TABLE_SCHEM, TABLE_NAME , COLUMN_NAME are row key columns +- byte[] rowKey = +- SchemaUtil.getColumnKey(tenantId, schemaName, tableName, columnName, null); +- +- // add one cell for each column info +- List<Cell> cells = Lists.newArrayListWithCapacity(8); +- // KEY_SEQ_COLUMN +- byte[] keySeqBytes = ByteUtil.EMPTY_BYTE_ARRAY; +- int pkPos = pkColumns.indexOf(column); +- if (pkPos != -1) { +- short keySeq = +- (short) (pkPos + 1 - (isSalted ? 1 : 0) - (tenantColSkipped ? 1 : 0)); +- keySeqBytes = PSmallint.INSTANCE.toBytes(keySeq); +- } +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, KEY_SEQ_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, keySeqBytes)); +- // PK_NAME +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, PK_NAME_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, table.getPKName() != null +- ? table.getPKName().getBytes() : ByteUtil.EMPTY_BYTE_ARRAY)); +- // ASC_OR_DESC +- char sortOrder = column.getSortOrder() == SortOrder.ASC ? 'A' : 'D'; +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- ASC_OR_DESC_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- Bytes.toBytes(sortOrder))); +- // DATA_TYPE +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, DATA_TYPE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PInteger.INSTANCE.toBytes(column.getDataType().getResultSetSqlType()))); +- // TYPE_NAME +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(TYPE_NAME), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- column.getDataType().getSqlTypeNameBytes())); +- // COLUMN_SIZE +- cells.add( +- PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, COLUMN_SIZE_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ Span span = TraceUtil.createSpan(connection, "PhoenixDataBaseMetaData.getPrimaryKeys() collecting data"); ++ try (Scope ignored = span.makeCurrent()) { ++ String fullTableName = SchemaUtil.getTableName(schemaName, tableName); ++ PTable table = connection.getTableNoCache(fullTableName); ++ boolean isSalted = table.getBucketNum() != null; ++ boolean tenantColSkipped = false; ++ List<PColumn> pkColumns = table.getPKColumns(); ++ List<PColumn> sorderPkColumns = ++ Lists.newArrayList(pkColumns.subList(isSalted ? 1 : 0, pkColumns.size())); ++ // sort the columns by name ++ Collections.sort(sorderPkColumns, new Comparator<PColumn>() { ++ @Override ++ public int compare(PColumn c1, PColumn c2) { ++ return c1.getName().getString().compareTo(c2.getName().getString()); ++ } ++ }); ++ try (ResultSet rs = getTables(catalog, schemaName, tableName, null)) { ++ while (rs.next()) { ++ String tenantId = rs.getString(TABLE_CAT); ++ for (PColumn column : sorderPkColumns) { ++ String columnName = column.getName().getString(); ++ // generate row key ++ // TENANT_ID, TABLE_SCHEM, TABLE_NAME , COLUMN_NAME are row key columns ++ byte[] rowKey = ++ SchemaUtil.getColumnKey(tenantId, schemaName, tableName, columnName, ++ null); ++ ++ // add one cell for each column info ++ List<Cell> cells = Lists.newArrayListWithCapacity(8); ++ // KEY_SEQ_COLUMN ++ byte[] keySeqBytes = ByteUtil.EMPTY_BYTE_ARRAY; ++ int pkPos = pkColumns.indexOf(column); ++ if (pkPos != -1) { ++ short keySeq = ++ (short) (pkPos + 1 - (isSalted ? 1 : 0) ++ - (tenantColSkipped ? 1 : 0)); ++ keySeqBytes = PSmallint.INSTANCE.toBytes(keySeq); ++ } ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ KEY_SEQ_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, keySeqBytes)); ++ // PK_NAME ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ PK_NAME_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ table.getPKName() != null ? table.getPKName().getBytes() ++ : ByteUtil.EMPTY_BYTE_ARRAY)); ++ // ASC_OR_DESC ++ char sortOrder = column.getSortOrder() == SortOrder.ASC ? 'A' : 'D'; ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ ASC_OR_DESC_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ Bytes.toBytes(sortOrder))); ++ // DATA_TYPE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ DATA_TYPE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PInteger.INSTANCE.toBytes(column.getDataType().getResultSetSqlType()))); ++ // TYPE_NAME ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(TYPE_NAME), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getDataType().getSqlTypeNameBytes())); ++ // COLUMN_SIZE ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ COLUMN_SIZE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, + column.getMaxLength() != null + ? PInteger.INSTANCE.toBytes(column.getMaxLength()) + : ByteUtil.EMPTY_BYTE_ARRAY)); +- // TYPE_ID +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, +- Bytes.toBytes(TYPE_ID), MetaDataProtocol.MIN_TABLE_TIMESTAMP, +- PInteger.INSTANCE.toBytes(column.getDataType().getSqlType()))); +- // VIEW_CONSTANT +- cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, VIEW_CONSTANT_BYTES, +- MetaDataProtocol.MIN_TABLE_TIMESTAMP, column.getViewConstant() != null +- ? column.getViewConstant() : ByteUtil.EMPTY_BYTE_ARRAY)); +- Collections.sort(cells, new CellComparatorImpl()); +- Tuple tuple = new MultiKeyValueTuple(cells); +- tuples.add(tuple); ++ // TYPE_ID ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ Bytes.toBytes(TYPE_ID), MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ PInteger.INSTANCE.toBytes(column.getDataType().getSqlType()))); ++ // VIEW_CONSTANT ++ cells.add(PhoenixKeyValueUtil.newKeyValue(rowKey, TABLE_FAMILY_BYTES, ++ VIEW_CONSTANT_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ++ column.getViewConstant() != null ? column.getViewConstant() ++ : ByteUtil.EMPTY_BYTE_ARRAY)); ++ Collections.sort(cells, new CellComparatorImpl()); ++ Tuple tuple = new MultiKeyValueTuple(cells); ++ tuples.add(tuple); ++ } ++ } ++ } ++ span.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ }finally { ++ if (connection.getAutoCommit()) { ++ try (Scope ignored = span.makeCurrent()) { ++ connection.commit(); + } + } ++ span.end(); + } +- ++ //The statement Trace span is long lived, it must not overlap with the previous one. + PhoenixStatement stmt = new PhoenixStatement(connection); + stmt.closeOnCompletion(); + return new PhoenixResultSet(new MaterializedResultIterator(tuples), +- GET_PRIMARY_KEYS_ROW_PROJECTOR, +- new StatementContext(stmt, false)); +- } finally { +- if (connection.getAutoCommit()) { +- connection.commit(); +- } +- } ++ GET_PRIMARY_KEYS_ROW_PROJECTOR, new StatementContext(stmt, false)); + } + + @Override +@@ -1371,7 +1387,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + throws SQLException { + return getEmptyResultSet(); + } +- ++ + private static final PDatum TABLE_TYPE_DATUM = new PDatum() { + @Override + public boolean isNullable() { +@@ -1404,7 +1420,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + static { + List<byte[]> tableTypes = Lists.<byte[]>newArrayList( + PTableType.INDEX.getValue().getBytes(), +- Bytes.toBytes(SEQUENCE_TABLE_TYPE), ++ Bytes.toBytes(SEQUENCE_TABLE_TYPE), + PTableType.SYSTEM.getValue().getBytes(), + PTableType.TABLE.getValue().getBytes(), + PTableType.VIEW.getValue().getBytes()); +@@ -1412,7 +1428,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData { + TABLE_TYPE_TUPLES.add(new SingleKeyValueTuple(PhoenixKeyValueUtil.newKeyValue(tableType, TABLE_FAMILY_BYTES, TABLE_TYPE_BYTES, MetaDataProtocol.MIN_TABLE_TIMESTAMP, ByteUtil.EMPTY_BYTE_ARRAY))); + } + } +- ++ + /** + * Supported table types include: INDEX, SEQUENCE, SYSTEM TABLE, TABLE, VIEW + */ +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixPreparedStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixPreparedStatement.java +index 9a00f9bbe..891d07183 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixPreparedStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixPreparedStatement.java +@@ -166,7 +166,7 @@ public class PhoenixPreparedStatement extends PhoenixStatement implements Phoeni + SQLExceptionCode.EXECUTE_BATCH_FOR_STMT_WITH_RESULT_SET) + .build().buildException(); + } +- executeMutation(statement, createAuditQueryLogger(statement, query)); ++ executeMutation(statement, createAuditQueryLogger(statement, query), query); + } + + @Override +@@ -178,7 +178,7 @@ public class PhoenixPreparedStatement extends PhoenixStatement implements Phoeni + .build().buildException(); + } + if (statement.getOperation().isMutation()) { +- executeMutation(statement, createAuditQueryLogger(statement,query)); ++ executeMutation(statement, createAuditQueryLogger(statement,query), query); + return false; + } + executeQuery(statement, createQueryLogger(statement,query)); +@@ -205,7 +205,7 @@ public class PhoenixPreparedStatement extends PhoenixStatement implements Phoeni + throw new SQLExceptionInfo.Builder(SQLExceptionCode.EXECUTE_UPDATE_WITH_NON_EMPTY_BATCH) + .build().buildException(); + } +- return executeMutation(statement, createAuditQueryLogger(statement,query)); ++ return executeMutation(statement, createAuditQueryLogger(statement,query), query); + } + + public QueryPlan optimizeQuery() throws SQLException { +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixResultSet.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixResultSet.java +index 83fec117d..145718a62 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixResultSet.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixResultSet.java +@@ -51,7 +51,13 @@ import java.util.Map; + + import org.apache.phoenix.monitoring.TableMetricsManager; + import org.apache.phoenix.thirdparty.com.google.common.primitives.Bytes; ++import org.apache.phoenix.trace.TraceUtil; ++ + import com.google.protobuf.InvalidProtocolBufferException; ++ ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.context.Scope; ++ + import org.apache.commons.lang3.ArrayUtils; + import org.apache.hadoop.hbase.Cell; + import org.apache.hadoop.hbase.CellUtil; +@@ -167,7 +173,7 @@ public class PhoenixResultSet implements PhoenixMonitoredResultSet, SQLCloseable + private Object exception; + private long queryTime; + private final Calendar localCalendar; +- ++ + public PhoenixResultSet(ResultIterator resultIterator, RowProjector rowProjector, + StatementContext ctx) throws SQLException { + this.rowProjector = rowProjector; +@@ -222,9 +228,15 @@ public class PhoenixResultSet implements PhoenixMonitoredResultSet, SQLCloseable + if (isClosed) { + return; + } +- try { ++ Span span = statement.getLastQuerySpan(); ++ // lastQuerySpan may be null for synthetic resultsets ++ try (Scope ignored = (span == null) ? Scope.noop() : span.makeCurrent()) { + scanner.close(); + } finally { ++ //TODO should we move this to the end of this block ? ++ if (span != null) { ++ span.end(); ++ } + isClosed = true; + statement.removeResultSet(this); + overAllQueryMetrics.endQuery(); +@@ -876,10 +888,13 @@ public class PhoenixResultSet implements PhoenixMonitoredResultSet, SQLCloseable + @Override + public boolean next() throws SQLException { + checkOpen(); +- try { ++ Span span = statement.getLastQuerySpan(); ++ //TODO can we have null lastQuerySpan when calling next() ? ++ try (Scope ignored = (span == null) ? Scope.noop() : span.makeCurrent()) { + if (!firstRecordRead) { + firstRecordRead = true; + overAllQueryMetrics.startResultSetWatch(); ++ span.addEvent("first Result of ResultSet read"); + } + currentRow = scanner.next(); + if (currentRow != null) { +@@ -902,6 +917,7 @@ public class PhoenixResultSet implements PhoenixMonitoredResultSet, SQLCloseable + queryLogger.log(QueryLogInfo.EXCEPTION_TRACE_I, Throwables.getStackTraceAsString(e)); + } + this.exception = e; ++ TraceUtil.setError(span, e); + if (e.getCause() instanceof SQLException) { + throw (SQLException) e.getCause(); + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java +index 92e2aa07e..3f5596308 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java +@@ -43,6 +43,8 @@ import static org.apache.phoenix.monitoring.MetricType.UPSERT_FAILED_SQL_COUNTER + import static org.apache.phoenix.monitoring.MetricType.UPSERT_SQL_COUNTER; + import static org.apache.phoenix.monitoring.MetricType.UPSERT_SQL_QUERY_TIME; + import static org.apache.phoenix.monitoring.MetricType.UPSERT_SUCCESS_SQL_COUNTER; ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_STATEMENT; ++ + + import java.io.File; + import java.io.IOException; +@@ -213,7 +215,7 @@ import org.apache.phoenix.schema.tuple.Tuple; + import org.apache.phoenix.schema.types.PDataType; + import org.apache.phoenix.schema.types.PLong; + import org.apache.phoenix.schema.types.PVarchar; +-import org.apache.phoenix.trace.util.Tracing; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.ClientUtil; + import org.apache.phoenix.util.CDCUtil; +@@ -227,17 +229,23 @@ import org.apache.phoenix.util.PhoenixRuntime; + import org.apache.phoenix.util.QueryUtil; + import org.apache.phoenix.util.SQLCloseable; + import org.apache.phoenix.util.ParseNodeUtil.RewriteResult; ++import org.apache.phoenix.util.SchemaUtil; + import org.apache.phoenix.util.ValidateLastDDLTimestampUtil; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + import org.apache.phoenix.thirdparty.com.google.common.base.Throwables; + import org.apache.phoenix.thirdparty.com.google.common.collect.ListMultimap; + import org.apache.phoenix.thirdparty.com.google.common.collect.Lists; + import org.apache.phoenix.thirdparty.com.google.common.math.IntMath; + import org.apache.phoenix.thirdparty.com.google.common.base.Strings; ++ + /** +- * ++ * + * JDBC Statement implementation of Phoenix. + * Currently only the following methods are supported: + * - {@link #executeQuery(String)} +@@ -250,14 +258,14 @@ import org.apache.phoenix.thirdparty.com.google.common.base.Strings; + * - ResultSet.FETCH_FORWARD + * - ResultSet.TYPE_FORWARD_ONLY + * - ResultSet.CLOSE_CURSORS_AT_COMMIT +- * +- * ++ * ++ * + * @since 0.1 + */ + public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable { +- ++ + private static final Logger LOGGER = LoggerFactory.getLogger(PhoenixStatement.class); +- ++ + public enum Operation { + QUERY("queried", false), + DELETE("deleted", true), +@@ -271,11 +279,11 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + this.toString = toString; + this.isMutation = isMutation; + } +- ++ + public boolean isMutation() { + return isMutation; + } +- ++ + @Override + public String toString() { + return toString; +@@ -287,6 +295,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + private static final String TABLE_UNKNOWN = ""; + private QueryPlan lastQueryPlan; + private PhoenixResultSet lastResultSet; ++ private Span lastQuerySpan; + private int lastUpdateCount = NO_UPDATE; + + private String lastUpdateTable = TABLE_UNKNOWN; +@@ -312,7 +321,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + * via the phoenix.query.timeoutMs. Therefore we store the time in millis. + */ + private int getDefaultQueryTimeoutMillis() { +- return connection.getQueryServices().getProps().getInt(QueryServices.THREAD_TIMEOUT_MS_ATTRIB, ++ return connection.getQueryServices().getProps().getInt(QueryServices.THREAD_TIMEOUT_MS_ATTRIB, + QueryServicesOptions.DEFAULT_THREAD_TIMEOUT_MS); + } + +@@ -323,16 +332,16 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return Collections.emptyList(); + } + } +- ++ + public PhoenixResultSet newResultSet(ResultIterator iterator, RowProjector projector, StatementContext context) throws SQLException { + return new PhoenixResultSet(iterator, projector, context); + } +- ++ + protected QueryPlan optimizeQuery(CompilableStatement stmt) throws SQLException { + QueryPlan plan = stmt.compilePlan(this, Sequence.ValueOp.VALIDATE_SEQUENCE); + return connection.getQueryServices().getOptimizer().optimize(this, plan); + } +- ++ + protected PhoenixResultSet executeQuery(final CompilableStatement stmt, final QueryLogger queryLogger) + throws SQLException { + return executeQuery(stmt, true, queryLogger, false, this.validateLastDdlTimestamp); +@@ -344,6 +353,22 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + ++ private String getSpanName(String statementType, String tableSchema, String tableName) { ++ if(tableName != null) { ++ return statementType + " " + SchemaUtil.getQualifiedPhoenixTableName(tableSchema, tableName); ++ } ++ String dbName; ++ try { ++ dbName = connection.getSchema(); ++ if (dbName != null) { ++ return statementType + " " + dbName; ++ } ++ } catch (SQLException e) { ++ //fall through ++ } ++ return statementType; ++ } ++ + private PhoenixResultSet executeQuery(final CompilableStatement stmt, + final boolean doRetryOnMetaNotFoundError, + final QueryLogger queryLogger, final boolean noCommit, +@@ -360,82 +385,97 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + boolean updateMetrics = true; + boolean pointLookup = false; + String tableName = null; +- clearResultSet(); + PhoenixResultSet rs = null; + QueryPlan plan = null; +- try { +- PhoenixConnection conn = getConnection(); +- conn.checkOpen(); +- +- if (conn.getQueryServices().isUpgradeRequired() && !conn +- .isRunningUpgrade() +- && stmt.getOperation() != Operation.UPGRADE) { +- throw new UpgradeRequiredException(); +- } +- plan = stmt.compilePlan(PhoenixStatement.this, +- Sequence.ValueOp.VALIDATE_SEQUENCE); +- // Send mutations to hbase, so they are visible to subsequent reads. +- // Use original plan for data table so that data and immutable indexes will be sent +- // TODO: for joins, we need to iterate through all tables, but we need the original table, +- // not the projected table, so plan.getContext().getResolver().getTables() won't work. +- if (plan.getContext().getScanRanges().isPointLookup()) { +- pointLookup = true; +- } +- Iterator<TableRef> tableRefs = plan.getSourceRefs().iterator(); +- connection.getMutationState().sendUncommitted(tableRefs); +- plan = +- connection.getQueryServices().getOptimizer() +- .optimize(PhoenixStatement.this, plan); +- setLastQueryPlan(plan); +- +- //verify metadata for the table/view/index in the query plan +- //plan.getTableRef can be null in some cases like EXPLAIN <query> +- if (shouldValidateLastDdlTimestamp && plan.getTableRef() != null) { +- ValidateLastDDLTimestampUtil.validateLastDDLTimestamp( +- connection, Arrays.asList(plan.getTableRef()), true); +- } ++ clearResultSet(); ++ //TODO(stackable): check this merge! ++ try (Scope connScope = connection.makeCurrent()) { ++ lastQuerySpan = TraceUtil.createSpan(connection, getSpanName(stmt.getKeyword(), connection.getSchema(), null)); ++ lastQuerySpan.setAttribute(DB_STATEMENT, stmt.toString()); ++ try (Scope ignored = lastQuerySpan.makeCurrent()) { ++ PhoenixConnection conn = getConnection(); ++ conn.checkOpen(); ++ ++ if (conn.getQueryServices().isUpgradeRequired() && !conn ++ .isRunningUpgrade() ++ && stmt.getOperation() != Operation.UPGRADE) { ++ throw new UpgradeRequiredException(); ++ } + +- if (plan.getTableRef() != null +- && plan.getTableRef().getTable() != null && !Strings +- .isNullOrEmpty( +- plan.getTableRef().getTable().getPhysicalName() +- .toString())) { +- tableName = plan.getTableRef().getTable().getPhysicalName() +- .toString(); +- } +- // this will create its own trace internally, so we don't wrap this +- // whole thing in tracing +- ResultIterator resultIterator = plan.iterator(); +- if (LOGGER.isDebugEnabled()) { +- String explainPlan = QueryUtil.getExplainPlan(resultIterator); +- LOGGER.debug(LogUtil.addCustomAnnotations( +- "Explain plan: " + explainPlan, connection)); +- } +- StatementContext context = plan.getContext(); +- context.setQueryLogger(queryLogger); +- if (queryLogger.isDebugEnabled()) { +- queryLogger.log(QueryLogInfo.EXPLAIN_PLAN_I, +- QueryUtil.getExplainPlan(resultIterator)); +- queryLogger.log(QueryLogInfo.GLOBAL_SCAN_DETAILS_I, +- context.getScan() != null ? +- context.getScan().toString() : +- null); +- } +- context.getOverallQueryMetrics().startQuery(); +- rs = +- newResultSet(resultIterator, plan.getProjector(), +- plan.getContext()); +- // newResultset sets lastResultset +- setLastQueryPlan(plan); +- setLastUpdateCount(NO_UPDATE); +- setLastUpdateTable(tableName == null ? TABLE_UNKNOWN : tableName); +- setLastUpdateOperation(stmt.getOperation()); +- // If transactional, this will move the read pointer forward +- if (connection.getAutoCommit() && !noCommit) { +- connection.commit(); ++ Span compileSpan = TraceUtil.createSpan(connection, "Compiling and optimizing plan for " + stmt); ++ try (Scope compileScope = compileSpan.makeCurrent()) { ++ plan = ++ stmt.compilePlan(PhoenixStatement.this, ++ Sequence.ValueOp.VALIDATE_SEQUENCE); ++ compileSpan.addEvent("plan compiled. Optimizing."); ++ plan = ++ connection.getQueryServices().getOptimizer() ++ .optimize(PhoenixStatement.this, plan); ++ compileSpan.setStatus(StatusCode.OK); ++ } catch (Exception e) { ++ TraceUtil.setError(compileSpan, e); ++ throw e; ++ } finally { ++ compileSpan.end(); ++ } ++ // Send mutations to hbase, so they are visible to subsequent reads. ++ // Use original plan for data table so that data and immutable indexes will be sent ++ // TODO: for joins, we need to iterate through all tables, but we need the original table, ++ // not the projected table, so plan.getContext().getResolver().getTables() won't work. ++ if (plan.getTableRef() != null ++ && plan.getTableRef().getTable() != null && !Strings ++ .isNullOrEmpty( ++ plan.getTableRef().getTable().getPhysicalName() ++ .toString())) { ++ tableName = plan.getTableRef().getTable().getPhysicalName() ++ .toString(); ++ // TODO This may not work non-select statements ++ lastQuerySpan.updateName(getSpanName("SELECT", ++ plan.getTableRef().getTable().getSchemaName().getString(), ++ plan.getTableRef().getTable().getTableName().getString())); ++ } ++ if (plan.getContext().getScanRanges().isPointLookup()) { ++ pointLookup = true; ++ } ++ Iterator<TableRef> tableRefs = plan.getSourceRefs().iterator(); ++ connection.getMutationState().sendUncommitted(tableRefs); ++ // this will create its own trace internally, so we don't wrap this ++ // whole thing in tracing ++ ResultIterator resultIterator = plan.iterator(); ++ if (LOGGER.isDebugEnabled()) { ++ String explainPlan = QueryUtil.getExplainPlan(resultIterator); ++ LOGGER.debug(LogUtil.addCustomAnnotations( ++ "Explain plan: " + explainPlan, connection)); ++ } ++ StatementContext context = plan.getContext(); ++ context.setQueryLogger(queryLogger); ++ if (queryLogger.isDebugEnabled()) { ++ queryLogger.log(QueryLogInfo.EXPLAIN_PLAN_I, ++ QueryUtil.getExplainPlan(resultIterator)); ++ queryLogger.log(QueryLogInfo.GLOBAL_SCAN_DETAILS_I, ++ context.getScan() != null ? ++ context.getScan().toString() : ++ null); ++ } ++ ++ context.getOverallQueryMetrics().startQuery(); ++ rs = ++ newResultSet(resultIterator, plan.getProjector(), ++ plan.getContext()); ++ // newResultset sets lastResultset ++ setLastQueryPlan(plan); ++ setLastUpdateCount(NO_UPDATE); ++ setLastUpdateTable(tableName == null ? TABLE_UNKNOWN : tableName); ++ setLastUpdateOperation(stmt.getOperation()); ++ // If transactional, this will move the read pointer forward ++ if (connection.getAutoCommit() && !noCommit) { ++ connection.commit(); ++ } ++ ++ connection.incrementStatementExecutionCounter(); ++ success = true; ++ lastQuerySpan.setStatus(StatusCode.OK); + } +- connection.incrementStatementExecutionCounter(); +- success = true; + } + //Force update cache and retry if meta not found error occurs + catch (MetaDataEntityNotFoundException e) { +@@ -457,14 +497,30 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + LOGGER.debug("Reloading table {} data from server", + tName); + } +- if (new MetaDataClient(connection) +- .updateCache(connection.getTenantId(), +- sName, tName, true) +- .wasUpdated()) { +- updateMetrics = false; +- //TODO we can log retry count and error for debugging in LOG table ++ // TODO(stackable): check this merge ++ boolean wasUpdated; ++ try (Scope ignored = lastQuerySpan.makeCurrent()) { ++ lastQuerySpan.addEvent("Trying to reload table " + e.getTableName() + " data from server"); ++ wasUpdated = new MetaDataClient(connection) ++ .updateCache(connection.getTenantId(), ++ e.getSchemaName(), e.getTableName(), true) ++ .wasUpdated(); ++ if (wasUpdated) { ++ lastQuerySpan.addEvent("Reloading table data was successful"); ++ lastQuerySpan.addEvent("Attempting to execute the query again"); ++ lastQuerySpan.setStatus(StatusCode.OK); ++ } else { ++ lastQuerySpan.addEvent("Reloading table data was not successful"); ++ TraceUtil.setError(lastQuerySpan, e); ++ lastQuerySpan.end(); ++ } ++ } ++ if (wasUpdated) { ++ // TODO we can log retry count and error for debugging in LOG table ++ // This will run an new span ++ // TODO could maybe link the retry span to the failed one ? + return executeQuery(stmt, false, queryLogger, noCommit, +- shouldValidateLastDdlTimestamp); ++ shouldValidateLastDdlTimestamp); + } + } + throw e; +@@ -487,8 +543,9 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + // skip last ddl timestamp validation in the retry + return executeQuery(stmt, doRetryOnMetaNotFoundError, queryLogger, + noCommit, false); +- } +- catch (RuntimeException e) { ++ } catch (RuntimeException e) { ++ TraceUtil.setError(lastQuerySpan, e); ++ lastQuerySpan.end(); + // FIXME: Expression.evaluate does not throw SQLException + // so this will unwrap throws from that. + if (e.getCause() instanceof SQLException) { +@@ -576,11 +633,11 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + +- protected int executeMutation(final CompilableStatement stmt, final AuditQueryLogger queryLogger) throws SQLException { +- return executeMutation(stmt, true, queryLogger); ++ protected int executeMutation(final CompilableStatement stmt, final AuditQueryLogger queryLogger, String originalSQL) throws SQLException { ++ return executeMutation(stmt, true, queryLogger, originalSQL); + } + +- private int executeMutation(final CompilableStatement stmt, final boolean doRetryOnMetaNotFoundError, final AuditQueryLogger queryLogger) throws SQLException { ++ private int executeMutation(final CompilableStatement stmt, final boolean doRetryOnMetaNotFoundError, final AuditQueryLogger queryLogger, String originalSQL) throws SQLException { + if (connection.isReadOnly()) { + throw new SQLExceptionInfo.Builder( + SQLExceptionCode.READ_ONLY_CONNECTION). +@@ -588,34 +645,42 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + GLOBAL_MUTATION_SQL_COUNTER.increment(); + try { +- return CallRunner +- .run( +- new CallRunner.CallableThrowable<Integer, SQLException>() { +- @Override +- public Integer call() throws SQLException { +- boolean success = false; +- String tableName = null; +- boolean isUpsert = false; +- boolean isAtomicUpsert = false; +- boolean isDelete = false; +- MutationState state = null; +- MutationPlan plan = null; +- final long startExecuteMutationTime = EnvironmentEdgeManager.currentTimeMillis(); +- clearResultSet(); +- try { +- PhoenixConnection conn = getConnection(); +- if (conn.getQueryServices().isUpgradeRequired() && !conn.isRunningUpgrade() +- && stmt.getOperation() != Operation.UPGRADE) { +- throw new UpgradeRequiredException(); +- } +- state = connection.getMutationState(); +- plan = stmt.compilePlan(PhoenixStatement.this, Sequence.ValueOp.VALIDATE_SEQUENCE); +- isUpsert = stmt instanceof ExecutableUpsertStatement; +- isDelete = stmt instanceof ExecutableDeleteStatement; +- isAtomicUpsert = isUpsert && ((ExecutableUpsertStatement)stmt).getOnDupKeyPairs() != null; +- if (plan.getTargetRef() != null && plan.getTargetRef().getTable() != null) { +- if (!Strings.isNullOrEmpty(plan.getTargetRef().getTable().getPhysicalName().toString())) { +- tableName = plan.getTargetRef().getTable().getPhysicalName().toString(); ++ return CallRunner.run( ++ new CallRunner.CallableThrowable<Integer, SQLException>() { ++ @Override ++ public Integer call() throws SQLException { ++ boolean success = false; ++ String tableName = null; ++ boolean isUpsert = false; ++ boolean isAtomicUpsert = false; ++ boolean isDelete = false; ++ MutationState state = null; ++ MutationPlan plan = null; ++ final long startExecuteMutationTime = EnvironmentEdgeManager.currentTimeMillis(); ++ clearResultSet(); ++ // TODO for queries we use re-constructed SQLs. We don't have code to do that ++ // for DLMs, so we just the original ++ isUpsert = stmt instanceof ExecutableUpsertStatement; ++ isDelete = stmt instanceof ExecutableDeleteStatement; ++ isAtomicUpsert = isUpsert && ((ExecutableUpsertStatement)stmt).getOnDupKeyPairs() != null; ++ ++ try (Scope connScope = connection.makeCurrent()) { ++ Span span = TraceUtil.createSpan(connection, getSpanName(stmt.getKeyword(), connection.getSchema(), null)); ++ span.setAttribute(DB_STATEMENT, originalSQL); ++ try (Scope scope = span.makeCurrent()) { ++ PhoenixConnection conn = getConnection(); ++ if (conn.getQueryServices().isUpgradeRequired() && !conn.isRunningUpgrade() ++ && stmt.getOperation() != Operation.UPGRADE) { ++ throw new UpgradeRequiredException(); ++ } ++ state = connection.getMutationState(); ++ plan = stmt.compilePlan(PhoenixStatement.this, Sequence.ValueOp.VALIDATE_SEQUENCE); ++ if (plan.getTargetRef() != null && plan.getTargetRef().getTable() != null) { ++ if (!Strings.isNullOrEmpty(plan.getTargetRef().getTable().getPhysicalName().toString())) { ++ tableName = plan.getTargetRef().getTable().getPhysicalName().toString(); ++ span.updateName(getSpanName(stmt.getKeyword(), ++ plan.getTargetRef().getTable().getSchemaName().getString(), ++ plan.getTargetRef().getTable().getTableName().getString())); + } + if (plan.getTargetRef().getTable().isTransactional()) { + state.startTransaction(plan.getTargetRef().getTable().getTransactionProvider()); +@@ -651,79 +716,89 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + success = true; ++ span.setStatus(StatusCode.OK); + return lastUpdateCount; + } + //Force update cache and retry if meta not found error occurs + catch (MetaDataEntityNotFoundException e) { +- if (doRetryOnMetaNotFoundError && e.getTableName() != null) { +- if (LOGGER.isDebugEnabled()) { +- LOGGER.debug("Reloading table {} data from server", e.getTableName()); +- } ++ TraceUtil.setError(span, e); ++ if (doRetryOnMetaNotFoundError && e.getTableName() != null) { ++ // The inner executeMutation is going to get its own Span ++ if (LOGGER.isDebugEnabled()) { ++ LOGGER.debug("Reloading table {} data from server", e.getTableName()); ++ } ++ try (Scope ignored = span.makeCurrent()) { ++ span.addEvent("Reloading table " + e.getTableName() + " data from server"); + if (new MetaDataClient(connection).updateCache(connection.getTenantId(), + e.getSchemaName(), e.getTableName(), true).wasUpdated()) { +- return executeMutation(stmt, false, queryLogger); ++ return executeMutation(stmt, false, queryLogger, originalSQL); + } + } +- throw e; +- }catch (RuntimeException e) { +- // FIXME: Expression.evaluate does not throw SQLException +- // so this will unwrap throws from that. +- if (e.getCause() instanceof SQLException) { +- throw (SQLException) e.getCause(); +- } +- throw e; +- } finally { +- // Regardless of whether the mutation was successfully handled or not, +- // update the time spent so far. If needed, we can separate out the +- // success times and failure times. +- if (tableName != null) { +- // Counts for both ddl and dml +- TableMetricsManager.updateMetricsMethod(tableName, +- MUTATION_SQL_COUNTER, 1); +- // Only count dml operations +- if (isUpsert || isDelete) { +- long executeMutationTimeSpent = +- EnvironmentEdgeManager.currentTimeMillis() - startExecuteMutationTime; ++ } ++ throw e; ++ } catch (RuntimeException e) { ++ TraceUtil.setError(span, e); ++ // FIXME: Expression.evaluate does not throw SQLException ++ // so this will unwrap throws from that. ++ if (e.getCause() instanceof SQLException) { ++ throw (SQLException) e.getCause(); ++ } ++ throw e; ++ } catch (Throwable e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ // Regardless of whether the mutation was successfully handled or not, ++ // update the time spent so far. If needed, we can separate out the ++ // success times and failure times. ++ if (tableName != null) { ++ // Counts for both ddl and dml ++ TableMetricsManager.updateMetricsMethod(tableName, ++ MUTATION_SQL_COUNTER, 1); ++ // Only count dml operations ++ if (isUpsert || isDelete) { ++ long executeMutationTimeSpent = ++ EnvironmentEdgeManager.currentTimeMillis() - startExecuteMutationTime; ++ ++ TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? ++ UPSERT_SQL_COUNTER : DELETE_SQL_COUNTER, 1); ++ TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? ++ UPSERT_SQL_QUERY_TIME : DELETE_SQL_QUERY_TIME, executeMutationTimeSpent); ++ if (isAtomicUpsert) { ++ TableMetricsManager.updateMetricsMethod(tableName, ++ ATOMIC_UPSERT_SQL_COUNTER, 1); ++ TableMetricsManager.updateMetricsMethod(tableName, ++ ATOMIC_UPSERT_SQL_QUERY_TIME, executeMutationTimeSpent); ++ } + ++ if (success) { + TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? +- UPSERT_SQL_COUNTER : DELETE_SQL_COUNTER, 1); ++ UPSERT_SUCCESS_SQL_COUNTER : DELETE_SUCCESS_SQL_COUNTER, 1); ++ } else { + TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? +- UPSERT_SQL_QUERY_TIME : DELETE_SQL_QUERY_TIME, executeMutationTimeSpent); +- if (isAtomicUpsert) { +- TableMetricsManager.updateMetricsMethod(tableName, +- ATOMIC_UPSERT_SQL_COUNTER, 1); +- TableMetricsManager.updateMetricsMethod(tableName, +- ATOMIC_UPSERT_SQL_QUERY_TIME, executeMutationTimeSpent); +- } +- +- if (success) { +- TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? +- UPSERT_SUCCESS_SQL_COUNTER : DELETE_SUCCESS_SQL_COUNTER, 1); +- } else { +- TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? +- UPSERT_FAILED_SQL_COUNTER : DELETE_FAILED_SQL_COUNTER, 1); +- //Failures are updated for executeMutation phase and for autocommit=true case here. +- TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? UPSERT_AGGREGATE_FAILURE_SQL_COUNTER: +- DELETE_AGGREGATE_FAILURE_SQL_COUNTER, 1); +- } +- if (plan instanceof DeleteCompiler.ServerSelectDeleteMutationPlan +- || plan instanceof UpsertCompiler.ServerUpsertSelectMutationPlan) { +- TableMetricsManager.updateLatencyHistogramForMutations( +- tableName, executeMutationTimeSpent, false); +- // We won't have size histograms for delete mutations when auto commit is set to true and +- // if plan is of ServerSelectDeleteMutationPlan or ServerUpsertSelectMutationPlan +- // since the update happens on server. +- } else { +- state.addExecuteMutationTime( +- executeMutationTimeSpent, tableName); +- } ++ UPSERT_FAILED_SQL_COUNTER : DELETE_FAILED_SQL_COUNTER, 1); ++ //Failures are updated for executeMutation phase and for autocommit=true case here. ++ TableMetricsManager.updateMetricsMethod(tableName, isUpsert ? UPSERT_AGGREGATE_FAILURE_SQL_COUNTER: ++ DELETE_AGGREGATE_FAILURE_SQL_COUNTER, 1); ++ } ++ if (plan instanceof DeleteCompiler.ServerSelectDeleteMutationPlan ++ || plan instanceof UpsertCompiler.ServerUpsertSelectMutationPlan) { ++ TableMetricsManager.updateLatencyHistogramForMutations( ++ tableName, executeMutationTimeSpent, false); ++ // We won't have size histograms for delete mutations when auto commit is set to true and ++ // if plan is of ServerSelectDeleteMutationPlan or ServerUpsertSelectMutationPlan ++ // since the update happens on server. ++ } else { ++ state.addExecuteMutationTime( ++ executeMutationTimeSpent, tableName); + } + } +- + } ++ span.end(); + } +- }, PhoenixContextExecutor.inContext(), +- Tracing.withTracing(connection, this.toString())); ++ } ++ } ++ }, PhoenixContextExecutor.inContext()); + } catch (Exception e) { + if (queryLogger.isAuditLoggingEnabled()) { + queryLogger.log(QueryLogInfo.TABLE_NAME_I, getTargetForAudit(stmt)); +@@ -740,7 +815,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + protected static interface CompilableStatement extends BindableStatement { + public <T extends StatementPlan> T compilePlan (PhoenixStatement stmt, Sequence.ValueOp seqAction) throws SQLException; + } +- ++ + private static class ExecutableSelectStatement extends SelectStatement implements CompilableStatement { + private ExecutableSelectStatement(TableNode from, HintNode hint, boolean isDistinct, List<AliasedNode> select, ParseNode where, + List<ParseNode> groupBy, ParseNode having, List<OrderByNode> orderBy, LimitNode limit, OffsetNode offset, int bindCount, boolean isAggregate, boolean hasSequence, Map<String, UDFParseNode> udfParseNodes) { +@@ -752,14 +827,14 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + boolean hasSequence, List<SelectStatement> selects, Map<String, UDFParseNode> udfParseNodes) { + super(from, hint, isDistinct, select, where, groupBy, having, orderBy, limit, offset, bindCount, isAggregate, hasSequence, selects, udfParseNodes); + } +- ++ + private ExecutableSelectStatement(ExecutableSelectStatement select) { + this(select.getFrom(), select.getHint(), select.isDistinct(), select.getSelect(), select.getWhere(), + select.getGroupBy(), select.getHaving(), select.getOrderBy(), select.getLimit(), select.getOffset(), select.getBindCount(), + select.isAggregate(), select.hasSequence(), select.getSelects(), select.getUdfParseNodes()); + } +- +- ++ ++ + @SuppressWarnings("unchecked") + @Override + public QueryPlan compilePlan(PhoenixStatement phoenixStatement, Sequence.ValueOp seqAction) throws SQLException { +@@ -784,7 +859,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + } +- ++ + private static final byte[] EXPLAIN_PLAN_FAMILY = QueryConstants.SINGLE_COLUMN_FAMILY; + private static final byte[] EXPLAIN_PLAN_COLUMN = PVarchar.INSTANCE.toBytes("Plan"); + private static final String EXPLAIN_PLAN_ALIAS = "PLAN"; +@@ -877,7 +952,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public CompilableStatement getStatement() { + return (CompilableStatement) super.getStatement(); + } +- ++ + @Override + public int getBindCount() { + return getStatement().getBindCount(); +@@ -964,7 +1039,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public ResultIterator iterator() throws SQLException { + return iterator; + } +- ++ + @Override + public ResultIterator iterator(ParallelScanGrouper scanGrouper) throws SQLException { + return iterator; +@@ -1074,7 +1149,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public Long getEstimatedBytesToScan() { + return estimatedBytes; + } +- ++ + @Override + public Long getEstimateInfoTimestamp() throws SQLException { + return estimateTs; +@@ -1112,7 +1187,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return plan; + } + } +- ++ + private static class ExecutableDeleteStatement extends DeleteStatement implements CompilableStatement { + private ExecutableDeleteStatement(NamedTableNode table, HintNode hint, ParseNode whereNode, List<OrderByNode> orderBy, LimitNode limit, int bindCount, Map<String, UDFParseNode> udfParseNodes) { + super(table, hint, whereNode, orderBy, limit, bindCount, udfParseNodes); +@@ -1130,7 +1205,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return plan; + } + } +- ++ + private static class ExecutableCreateTableStatement extends CreateTableStatement implements CompilableStatement { + ExecutableCreateTableStatement(TableName tableName, ListMultimap<String,Pair<String,Object>> props, List<ColumnDef> columnDefs, + PrimaryKeyConstraint pkConstraint, List<ParseNode> splitNodes, PTableType tableType, boolean ifNotExists, +@@ -1237,7 +1312,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + }; + } + } +- ++ + private static class ExecutableAddJarsStatement extends AddJarsStatement implements CompilableStatement { + + public ExecutableAddJarsStatement(List<LiteralParseNode> jarPaths) { +@@ -1307,7 +1382,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + } + } +- ++ + private static class ExecutableDeclareCursorStatement extends DeclareCursorStatement implements CompilableStatement { + public ExecutableDeclareCursorStatement(CursorName cursor, SelectStatement select){ + super(cursor, select); +@@ -1504,7 +1579,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return compiler.compile(this); + } + } +- ++ + private static class ExecutableCreateSequenceStatement extends CreateSequenceStatement implements CompilableStatement { + + public ExecutableCreateSequenceStatement(TableName sequenceName, ParseNode startWith, +@@ -1818,28 +1893,28 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + } +- ++ + private static class ExecutableExecuteUpgradeStatement extends ExecuteUpgradeStatement implements CompilableStatement { + @SuppressWarnings("unchecked") + @Override + public MutationPlan compilePlan(final PhoenixStatement stmt, Sequence.ValueOp seqAction) throws SQLException { + return new MutationPlan() { +- ++ + @Override + public Set<TableRef> getSourceRefs() { + return Collections.emptySet(); + } +- ++ + @Override + public ParameterMetaData getParameterMetaData() { + return PhoenixParameterMetaData.EMPTY_PARAMETER_META_DATA; + } +- ++ + @Override + public Operation getOperation() { + return Operation.UPGRADE; + } +- ++ + @Override + public ExplainPlan getExplainPlan() throws SQLException { + return new ExplainPlan(Collections.singletonList("EXECUTE UPGRADE")); +@@ -1850,12 +1925,12 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + + @Override + public StatementContext getContext() { return new StatementContext(stmt); } +- ++ + @Override + public TableRef getTargetRef() { + return TableRef.EMPTY_TABLE_REF; + } +- ++ + @Override + public MutationState execute() throws SQLException { + PhoenixConnection phxConn = stmt.getConnection(); +@@ -1944,7 +2019,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + @Override +- public ExecutableUpsertStatement upsert(NamedTableNode table, HintNode hintNode, List<ColumnName> columns, List<ParseNode> values, SelectStatement select, int bindCount, ++ public ExecutableUpsertStatement upsert(NamedTableNode table, HintNode hintNode, List<ColumnName> columns, List<ParseNode> values, SelectStatement select, int bindCount, + Map<String, UDFParseNode> udfParseNodes, List<Pair<ColumnName,ParseNode>> onDupKeyPairs) { + return new ExecutableUpsertStatement(table, hintNode, columns, values, select, bindCount, udfParseNodes, onDupKeyPairs); + } +@@ -2014,7 +2089,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return new ExecutableCreateSequenceStatement(tableName, startsWith, incrementBy, + cacheSize, minValue, maxValue, cycle, ifNotExists, bindCount); + } +- ++ + @Override + public CreateFunctionStatement createFunction(PFunction functionInfo, boolean temporary, boolean isReplace) { + return new ExecutableCreateFunctionStatement(functionInfo, temporary, isReplace); +@@ -2040,7 +2115,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public DropSequenceStatement dropSequence(TableName tableName, boolean ifExists, int bindCount) { + return new ExecutableDropSequenceStatement(tableName, ifExists, bindCount); + } +- ++ + @Override + public CreateIndexStatement createIndex(NamedNode indexName, NamedTableNode dataTable, + IndexKeyConstraint ikConstraint, List<ColumnName> includeColumns, +@@ -2051,17 +2126,17 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + includeColumns, splits, props, ifNotExists, indexType, async, bindCount, + udfParseNodes, where); + } +- ++ + @Override + public AddColumnStatement addColumn(NamedTableNode table, PTableType tableType, List<ColumnDef> columnDefs, boolean ifNotExists, ListMultimap<String,Pair<String,Object>> props, boolean cascade, List<NamedNode> indexes) { + return new ExecutableAddColumnStatement(table, tableType, columnDefs, ifNotExists, props, cascade, indexes); + } +- ++ + @Override + public DropColumnStatement dropColumn(NamedTableNode table, PTableType tableType, List<ColumnName> columnNodes, boolean ifExists) { + return new ExecutableDropColumnStatement(table, tableType, columnNodes, ifExists); + } +- ++ + @Override + public DropTableStatement dropTable(TableName tableName, PTableType tableType, boolean ifExists, boolean cascade) { + return new ExecutableDropTableStatement(tableName, tableType, ifExists, cascade); +@@ -2081,7 +2156,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public DropFunctionStatement dropFunction(String functionName, boolean ifExists) { + return new ExecutableDropFunctionStatement(functionName, ifExists); + } +- ++ + @Override + public DropIndexStatement dropIndex(NamedNode indexName, TableName tableName, boolean ifExists) { + return new ExecutableDropIndexStatement(indexName, tableName, ifExists); +@@ -2116,7 +2191,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public UpdateStatisticsStatement updateStatistics(NamedTableNode table, StatisticsCollectionScope scope, Map<String,Object> props) { + return new ExecutableUpdateStatisticsStatement(table, scope, props); + } +- ++ + @Override + public ExecuteUpgradeStatement executeUpgrade() { + return new ExecutableExecuteUpgradeStatement(); +@@ -2144,7 +2219,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + + } +- ++ + static class PhoenixStatementParser extends SQLParser { + PhoenixStatementParser(String query, ParseNodeFactory nodeFactory) throws IOException { + super(query, nodeFactory); +@@ -2153,7 +2228,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + PhoenixStatementParser(Reader reader) throws IOException { + super(reader); + } +- ++ + @Override + public CompilableStatement nextStatement(ParseNodeFactory nodeFactory) throws SQLException { + return (CompilableStatement) super.nextStatement(nodeFactory); +@@ -2164,13 +2239,13 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return (CompilableStatement) super.parseStatement(); + } + } +- ++ + public Format getFormatter(PDataType type) { + return connection.getFormatter(type); + } +- ++ + protected final List<PhoenixPreparedStatement> batch = Lists.newArrayList(); +- ++ + @Override + public void addBatch(String sql) throws SQLException { + batch.add(new PhoenixPreparedStatement(connection, sql)); +@@ -2246,7 +2321,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + // From the ResultSet javadoc: + // A ResultSet object is automatically closed when the Statement object that generated it is + // closed, re-executed, or used to retrieve the next result from a sequence of multiple results. +- private void clearResultSet() throws SQLException { ++ void clearResultSet() throws SQLException { + if (lastResultSet != null) { + try { + lastResultSet.close(); +@@ -2270,7 +2345,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public List<Object> getParameters() { + return Collections.<Object>emptyList(); + } +- ++ + protected CompilableStatement parseStatement(String sql) throws SQLException { + PhoenixStatementParser parser = null; + try { +@@ -2281,7 +2356,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + CompilableStatement statement = parser.parseStatement(); + return statement; + } +- ++ + public QueryPlan optimizeQuery(String sql) throws SQLException { + QueryPlan plan = compileQuery(sql); + return connection.getQueryServices().getOptimizer().optimize(this, plan); +@@ -2359,14 +2434,14 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + connection.getQueryServices(), sql, getParameters()); + return queryLogger; + } +- ++ + @Override + public ResultSet executeQuery(String sql) throws SQLException { + if (LOGGER.isDebugEnabled()) { + LOGGER.debug(LogUtil.addCustomAnnotations( + "Execute query: " + sql, connection)); + } +- ++ + CompilableStatement stmt = parseStatement(sql); + if (stmt.getOperation().isMutation()) { + throw new ExecuteQueryNotApplicableException(sql); +@@ -2384,7 +2459,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + throw new SQLExceptionInfo.Builder(SQLExceptionCode.EXECUTE_UPDATE_WITH_NON_EMPTY_BATCH) + .build().buildException(); + } +- int updateCount = executeMutation(stmt, createAuditQueryLogger(stmt, sql)); ++ int updateCount = executeMutation(stmt, createAuditQueryLogger(stmt, sql), sql); + flushIfNecessary(); + return updateCount; + } +@@ -2394,7 +2469,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + connection.flush(); + } + } +- ++ + @Override + public boolean execute(String sql) throws SQLException { + CompilableStatement stmt = parseStatement(sql); +@@ -2403,11 +2478,11 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + throw new SQLExceptionInfo.Builder(SQLExceptionCode.EXECUTE_UPDATE_WITH_NON_EMPTY_BATCH) + .build().buildException(); + } +- executeMutation(stmt, createAuditQueryLogger(stmt, sql)); ++ executeMutation(stmt, createAuditQueryLogger(stmt, sql), sql); + flushIfNecessary(); + return false; + } +- ++ + executeQuery(stmt, createQueryLogger(stmt, sql)); + return true; + } +@@ -2492,7 +2567,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public QueryPlan getQueryPlan() { + return getLastQueryPlan(); + } +- ++ + @Override + public ResultSet getResultSet() throws SQLException { + ResultSet rs = getLastResultSet(); +@@ -2519,7 +2594,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public Operation getUpdateOperation() { + return getLastUpdateOperation(); + } +- ++ + @Override + public int getUpdateCount() throws SQLException { + int updateCount = getLastUpdateCount(); +@@ -2588,7 +2663,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + @Override + /** + * When setting the query timeout via JDBC timeouts must be expressed in seconds. Therefore +- * we need to convert the default timeout to milliseconds for internal use. ++ * we need to convert the default timeout to milliseconds for internal use. + */ + public void setQueryTimeout(int seconds) throws SQLException { + if (seconds < 0) { +@@ -2603,7 +2678,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + @Override + /** + * When getting the query timeout via JDBC timeouts must be expressed in seconds. Therefore +- * we need to convert the default millisecond timeout to seconds. ++ * we need to convert the default millisecond timeout to seconds. + */ + public int getQueryTimeout() throws SQLException { + // Convert milliseconds to seconds by taking the CEIL up to the next second +@@ -2615,7 +2690,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + } + return scaledValue / 1000; + } +- ++ + /** + * Returns the configured timeout in milliseconds. This + * internally enables the of use millisecond timeout granularity +@@ -2624,7 +2699,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + public int getQueryTimeoutInMillis() { + return queryTimeoutMillis; + } +- ++ + @Override + public boolean isWrapperFor(Class<?> iface) throws SQLException { + return iface.isInstance(this); +@@ -2651,12 +2726,16 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return closeOnCompletion; + } + +- private PhoenixResultSet getLastResultSet() { ++ PhoenixResultSet getLastResultSet() { + return lastResultSet; + } + +- void setLastResultSet(PhoenixResultSet lastResultSet) { ++ void setLastResultSet(PhoenixResultSet lastResultSet) throws SQLException { ++ this.clearResultSet(); + this.lastResultSet = lastResultSet; ++ if (lastQuerySpan == null) { ++ lastQuerySpan = TraceUtil.createSpan(connection, "Query Span for synthetic ResultSet"); ++ } + } + + private int getLastUpdateCount() { +@@ -2671,6 +2750,10 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + return lastUpdateTable; + } + ++ Span getLastQuerySpan() { ++ return lastQuerySpan; ++ } ++ + private void setLastUpdateTable(String lastUpdateTable) { + if (!Strings.isNullOrEmpty(lastUpdateTable)) { + this.lastUpdateTable = lastUpdateTable; +@@ -2700,7 +2783,6 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable + + private void setLastQueryPlan(QueryPlan lastQueryPlan) { + this.lastQueryPlan = lastQueryPlan; +- + } + + private void updateActivityOnConnection(ActivityLogInfo item, String value) { +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AddJarsStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AddJarsStatement.java +index b1eeea6e5..a56dd4c2a 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AddJarsStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AddJarsStatement.java +@@ -35,4 +35,9 @@ public class AddJarsStatement extends MutableStatement { + public List<LiteralParseNode> getJarPaths() { + return jarPaths; + } ++ ++ @Override ++ public String getKeyword() { ++ return "ADD JARS"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterIndexStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterIndexStatement.java +index 32a3c042c..2f6b3c0cd 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterIndexStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterIndexStatement.java +@@ -74,4 +74,9 @@ public class AlterIndexStatement extends SingleTableStatement { + public ListMultimap<String,Pair<String,Object>> getProps() { return props; } + + public PTableType getTableType(){ return tableType; } ++ ++ @Override ++ public String getKeyword() { ++ return "ALTER INDEX"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterSessionStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterSessionStatement.java +index 5d944dfe8..04bb58207 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterSessionStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterSessionStatement.java +@@ -35,4 +35,9 @@ public class AlterSessionStatement extends MutableStatement { + public Map<String, Object> getProps(){ + return props; + } ++ ++ @Override ++ public String getKeyword() { ++ return "ALTER SESSION"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterTableStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterTableStatement.java +index a33401194..5d56c68c0 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterTableStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/AlterTableStatement.java +@@ -30,4 +30,8 @@ public abstract class AlterTableStatement extends SingleTableStatement { + public PTableType getTableType() { + return tableType; + } ++ ++ public String getKeyword() { ++ return "ALTER TABLE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/BindableStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/BindableStatement.java +index 6594f49bb..b7211d561 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/BindableStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/BindableStatement.java +@@ -23,4 +23,5 @@ import org.apache.phoenix.jdbc.PhoenixStatement.Operation; + public interface BindableStatement { + public int getBindCount(); + public Operation getOperation(); ++ public String getKeyword(); + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ChangePermsStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ChangePermsStatement.java +index b49183d3a..103c93ea7 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ChangePermsStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ChangePermsStatement.java +@@ -100,4 +100,9 @@ public class ChangePermsStatement implements BindableStatement { + public PhoenixStatement.Operation getOperation() { + return PhoenixStatement.Operation.ADMIN; + } ++ ++ @Override ++ public String getKeyword() { ++ return isGrantStatement ? "GRANT" : "REVOKE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CloseStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CloseStatement.java +index 5d7af3464..4dc5ac05d 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CloseStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CloseStatement.java +@@ -37,4 +37,9 @@ public class CloseStatement implements BindableStatement { + public Operation getOperation(){ + return Operation.UPSERT; + } ++ ++ @Override ++ public String getKeyword() { ++ return "CLOSE CURSOR"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateCDCStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateCDCStatement.java +index 5722ab2a2..e972cc7c4 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateCDCStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateCDCStatement.java +@@ -68,4 +68,9 @@ public class CreateCDCStatement extends MutableStatement { + public int getBindCount() { + return bindCount; + } ++ ++ @Override ++ public String getKeyword() { ++ return "TODO"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateFunctionStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateFunctionStatement.java +index 863783bd6..bc21ea052 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateFunctionStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateFunctionStatement.java +@@ -44,4 +44,9 @@ public class CreateFunctionStatement extends MutableStatement { + public boolean isReplace() { + return isReplace; + } ++ ++ @Override ++ public String getKeyword() { ++ return "CREATE FUNCTION"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateIndexStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateIndexStatement.java +index de15ac88e..236cc5716 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateIndexStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateIndexStatement.java +@@ -108,7 +108,13 @@ public class CreateIndexStatement extends SingleTableStatement { + public Map<String, UDFParseNode> getUdfParseNodes() { + return udfParseNodes; + } ++ + public ParseNode getWhere() { + return where; + } ++ ++ @Override ++ public String getKeyword() { ++ return "CREATE INDEX"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSchemaStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSchemaStatement.java +index f5ab3f6bc..2909321ac 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSchemaStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSchemaStatement.java +@@ -41,4 +41,8 @@ public class CreateSchemaStatement extends MutableStatement { + return ifNotExists; + } + ++ @Override ++ public String getKeyword() { ++ return "CREATE SCHEMA"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSequenceStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSequenceStatement.java +index 2e0c94362..a2f84e399 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSequenceStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateSequenceStatement.java +@@ -88,4 +88,9 @@ public class CreateSequenceStatement extends MutableStatement { + public boolean ifNotExists() { + return ifNotExists; + } ++ ++ @Override ++ public String getKeyword() { ++ return "CREATE SEQUENCE"; ++ } + } +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateTableStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateTableStatement.java +index 37376c985..147a0a07b 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateTableStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/CreateTableStatement.java +@@ -165,4 +165,9 @@ public class CreateTableStatement extends MutableStatement { + public boolean isNoVerify() { + return noVerify; + } ++ ++ @Override ++ public String getKeyword() { ++ return "CREATE TABLE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DMLStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DMLStatement.java +index 3b9bd97e1..99e23bd60 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DMLStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DMLStatement.java +@@ -19,7 +19,7 @@ package org.apache.phoenix.parse; + + import java.util.Map; + +-public class DMLStatement extends SingleTableStatement { ++public abstract class DMLStatement extends SingleTableStatement { + + private final Map<String, UDFParseNode> udfParseNodes; + +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeclareCursorStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeclareCursorStatement.java +index 68129ecac..acb5f979a 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeclareCursorStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeclareCursorStatement.java +@@ -57,4 +57,9 @@ public class DeclareCursorStatement implements BindableStatement { + public Operation getOperation(){ + return Operation.UPSERT; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DECLARE CURSOR"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteJarStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteJarStatement.java +index a7438ef56..cea48d84d 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteJarStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteJarStatement.java +@@ -33,4 +33,9 @@ public class DeleteJarStatement extends MutableStatement { + public LiteralParseNode getJarPath() { + return jarPath; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DELETE JAR"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteStatement.java +index 331bee413..a2ebd222d 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DeleteStatement.java +@@ -82,4 +82,8 @@ public class DeleteStatement extends DMLStatement implements FilterableStatement + throw new UnsupportedOperationException("Table sampling is not allowd for Deletion"); + } + ++ @Override ++ public String getKeyword() { ++ return "DELETE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropCDCStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropCDCStatement.java +index a02d0e25d..6590afc61 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropCDCStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropCDCStatement.java +@@ -51,4 +51,9 @@ public class DropCDCStatement extends MutableStatement { + public PhoenixStatement.Operation getOperation() { + return PhoenixStatement.Operation.DELETE; + } +-} +\ No newline at end of file ++ ++ @Override ++ public String getKeyword() { ++ return "TODO"; ++ } ++} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropFunctionStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropFunctionStatement.java +index a959eb7da..d0f98e0ba 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropFunctionStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropFunctionStatement.java +@@ -38,4 +38,9 @@ public class DropFunctionStatement extends MutableStatement { + public boolean ifExists() { + return ifExists; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DROP FUNCTION"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropIndexStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropIndexStatement.java +index 288d081c0..51fcd6ca3 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropIndexStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropIndexStatement.java +@@ -51,4 +51,10 @@ public class DropIndexStatement extends MutableStatement { + public Operation getOperation() { + return Operation.DELETE; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DROP INDEX"; ++ } + } ++ +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSchemaStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSchemaStatement.java +index 5d03a7873..11d2a126a 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSchemaStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSchemaStatement.java +@@ -52,4 +52,8 @@ public class DropSchemaStatement extends MutableStatement { + return Operation.DELETE; + } + ++ @Override ++ public String getKeyword() { ++ return "DROP SCHEMA"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSequenceStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSequenceStatement.java +index c4093a1a0..a49670754 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSequenceStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropSequenceStatement.java +@@ -43,9 +43,14 @@ public class DropSequenceStatement extends MutableStatement { + public boolean ifExists() { + return ifExists; + } +- ++ + @Override + public Operation getOperation() { + return Operation.DELETE; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DROP SEQUENCE"; ++ } + } +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropTableStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropTableStatement.java +index c334a819b..a00928b99 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropTableStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/DropTableStatement.java +@@ -65,4 +65,9 @@ public class DropTableStatement extends MutableStatement { + public boolean getSkipAddingParentColumns() { + return skipAddingParentColumns; + } ++ ++ @Override ++ public String getKeyword() { ++ return "DROP TABLE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExecuteUpgradeStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExecuteUpgradeStatement.java +index 29edf8f32..fbfbac94c 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExecuteUpgradeStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExecuteUpgradeStatement.java +@@ -31,4 +31,8 @@ public class ExecuteUpgradeStatement implements BindableStatement { + return Operation.UPGRADE; + } + ++ @Override ++ public String getKeyword() { ++ return "EXECUTE UPGRADE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExplainStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExplainStatement.java +index 3b28ca5c0..3a9db78f2 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExplainStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ExplainStatement.java +@@ -45,4 +45,9 @@ public class ExplainStatement implements BindableStatement { + public ExplainType getExplainType() { + return explainType; + } ++ ++ @Override ++ public String getKeyword() { ++ return "EXPLAIN"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/FetchStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/FetchStatement.java +index 08e972496..e56ec95ca 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/FetchStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/FetchStatement.java +@@ -49,4 +49,9 @@ public class FetchStatement implements BindableStatement { + public int getFetchSize(){ + return fetchSize; + } ++ ++ @Override ++ public String getKeyword() { ++ return "FETCH"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ListJarsStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ListJarsStatement.java +index e9821fbed..4736f6dfa 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ListJarsStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ListJarsStatement.java +@@ -31,4 +31,8 @@ public class ListJarsStatement implements BindableStatement { + return Operation.QUERY; + } + ++ @Override ++ public String getKeyword() { ++ return "LIST JARS"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/OpenStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/OpenStatement.java +index ad905b0d1..215dcfd83 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/OpenStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/OpenStatement.java +@@ -37,4 +37,9 @@ public class OpenStatement implements BindableStatement { + public Operation getOperation(){ + return Operation.UPSERT; + } ++ ++ @Override ++ public String getKeyword() { ++ return "OPEN CURSOR"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/SelectStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/SelectStatement.java +index 53e82639f..48e468784 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/SelectStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/SelectStatement.java +@@ -384,4 +384,8 @@ public class SelectStatement implements FilterableStatement { + return offset; + } + ++ @Override ++ public String getKeyword() { ++ return "SELECT"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowCreateTable.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowCreateTable.java +index 4fe77a7b4..aa8b66bf2 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowCreateTable.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowCreateTable.java +@@ -35,4 +35,9 @@ public class ShowCreateTable implements BindableStatement { + } + + public ShowCreateTable() {} ++ ++ @Override ++ public String getKeyword() { ++ return "SHOW CREATE TABLE"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowSchemasStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowSchemasStatement.java +index 8e95e0e03..56847bc0a 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowSchemasStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowSchemasStatement.java +@@ -67,4 +67,9 @@ public class ShowSchemasStatement extends ShowStatement { + public int hashCode() { + return Objects.hashCode(schemaPattern); + } ++ ++ @Override ++ public String getKeyword() { ++ return "SHOW SCHEMAS"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowStatement.java +index d4ab7a487..6802cafc9 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowStatement.java +@@ -23,7 +23,7 @@ import org.apache.phoenix.jdbc.PhoenixStatement; + /** + * Parent class for all SHOW statements. SHOW SCHEMAS, SHOW TABLES etc. + */ +-public class ShowStatement implements BindableStatement { ++public abstract class ShowStatement implements BindableStatement { + @Override + public int getBindCount() { + return 0; +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowTablesStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowTablesStatement.java +index 0371a452d..d3af0a080 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowTablesStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/ShowTablesStatement.java +@@ -89,4 +89,9 @@ public class ShowTablesStatement extends ShowStatement { + public int hashCode() { + return Objects.hash(targetSchema, dbPattern); + } ++ ++ @Override ++ public String getKeyword() { ++ return "SHOW TABLES"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/TraceStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/TraceStatement.java +index 301fa56d3..51a8c1578 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/TraceStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/TraceStatement.java +@@ -46,4 +46,9 @@ public class TraceStatement implements BindableStatement { + public double getSamplingRate() { + return samplingRate; + } ++ ++ @Override ++ public String getKeyword() { ++ return "TRACE " + (traceOn ? "ON" : "OFF"); ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpdateStatisticsStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpdateStatisticsStatement.java +index 10f0b2fb4..12f61b260 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpdateStatisticsStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpdateStatisticsStatement.java +@@ -53,4 +53,9 @@ public class UpdateStatisticsStatement extends SingleTableStatement { + public Map<String,Object> getProps() { + return props; + }; ++ ++ @Override ++ public String getKeyword() { ++ return "UPDATE STATISTICS"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpsertStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpsertStatement.java +index fca746320..3e2e80379 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpsertStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UpsertStatement.java +@@ -60,4 +60,9 @@ public class UpsertStatement extends DMLStatement { + public List<Pair<ColumnName,ParseNode>> getOnDupKeyPairs() { + return onDupKeyPairs; + } ++ ++ @Override ++ public String getKeyword() { ++ return "UPSERT"; ++ } + } +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UseSchemaStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UseSchemaStatement.java +index abba30963..cada83512 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UseSchemaStatement.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/parse/UseSchemaStatement.java +@@ -35,4 +35,8 @@ public class UseSchemaStatement extends MutableStatement { + return schemaName; + } + ++ @Override ++ public String getKeyword() { ++ return "USE SCHEMA"; ++ } + } +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServices.java b/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServices.java +index 27e2bfed6..ff4568fd8 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServices.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServices.java +@@ -199,7 +199,6 @@ public interface QueryServices extends SQLCloseable { + public static final String TRACING_FREQ_ATTRIB = "phoenix.trace.frequency"; + public static final String TRACING_PAGE_SIZE_ATTRIB = "phoenix.trace.read.pagesize"; + public static final String TRACING_PROBABILITY_THRESHOLD_ATTRIB = "phoenix.trace.probability.threshold"; +- public static final String TRACING_STATS_TABLE_NAME_ATTRIB = "phoenix.trace.statsTableName"; + public static final String TRACING_CUSTOM_ANNOTATION_ATTRIB_PREFIX = "phoenix.trace.custom.annotation."; + public static final String TRACING_ENABLED = "phoenix.trace.enabled"; + public static final String TRACING_BATCH_SIZE = "phoenix.trace.batchSize"; +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java b/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java +index 73e72c36e..e42ce5285 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java +@@ -101,11 +101,7 @@ import static org.apache.phoenix.query.QueryServices.STATS_USE_CURRENT_TIME_ATTR + import static org.apache.phoenix.query.QueryServices.TABLE_LEVEL_METRICS_ENABLED; + import static org.apache.phoenix.query.QueryServices.THREAD_POOL_SIZE_ATTRIB; + import static org.apache.phoenix.query.QueryServices.THREAD_TIMEOUT_MS_ATTRIB; +-import static org.apache.phoenix.query.QueryServices.TRACING_BATCH_SIZE; + import static org.apache.phoenix.query.QueryServices.TRACING_ENABLED; +-import static org.apache.phoenix.query.QueryServices.TRACING_STATS_TABLE_NAME_ATTRIB; +-import static org.apache.phoenix.query.QueryServices.TRACING_THREAD_POOL_SIZE; +-import static org.apache.phoenix.query.QueryServices.TRACING_TRACE_BUFFER_SIZE; + import static org.apache.phoenix.query.QueryServices.TRANSACTIONS_ENABLED; + import static org.apache.phoenix.query.QueryServices.UPLOAD_BINARY_DATA_TYPE_ENCODING; + import static org.apache.phoenix.query.QueryServices.USE_BYTE_BASED_REGEX_ATTRIB; +@@ -130,7 +126,6 @@ import org.apache.phoenix.log.LogLevel; + import org.apache.phoenix.schema.PTable.ImmutableStorageScheme; + import org.apache.phoenix.schema.PTable.QualifierEncodingScheme; + import org.apache.phoenix.schema.PTableRefFactory; +-import org.apache.phoenix.trace.util.Tracing; + import org.apache.phoenix.transaction.TransactionFactory; + import org.apache.phoenix.util.DateUtil; + import org.apache.phoenix.util.ReadOnlyProps; +@@ -258,9 +253,6 @@ public class QueryServicesOptions { + /** + * Configuration key to overwrite the tablename that should be used as the target table + */ +- public static final String DEFAULT_TRACING_STATS_TABLE_NAME = "SYSTEM.TRACING_STATS"; +- public static final String DEFAULT_TRACING_FREQ = Tracing.Frequency.NEVER.getKey(); +- public static final double DEFAULT_TRACING_PROBABILITY_THRESHOLD = 0.05; + + public static final int DEFAULT_STATS_UPDATE_FREQ_MS = 15 * 60000; // 15min + public static final int DEFAULT_STATS_GUIDEPOST_PER_REGION = 0; // Uses guidepost width by default +@@ -520,8 +512,6 @@ public class QueryServicesOptions { + .setIfUnset(AUTO_UPGRADE_ENABLED, DEFAULT_AUTO_UPGRADE_ENABLED) + .setIfUnset(UPLOAD_BINARY_DATA_TYPE_ENCODING, DEFAULT_UPLOAD_BINARY_DATA_TYPE_ENCODING) + .setIfUnset(TRACING_ENABLED, DEFAULT_TRACING_ENABLED) +- .setIfUnset(TRACING_BATCH_SIZE, DEFAULT_TRACING_BATCH_SIZE) +- .setIfUnset(TRACING_THREAD_POOL_SIZE, DEFAULT_TRACING_THREAD_POOL_SIZE) + .setIfUnset(STATS_COLLECTION_ENABLED, DEFAULT_STATS_COLLECTION_ENABLED) + .setIfUnset(USE_STATS_FOR_PARALLELIZATION, DEFAULT_USE_STATS_FOR_PARALLELIZATION) + .setIfUnset(USE_STATS_FOR_PARALLELIZATION, DEFAULT_USE_STATS_FOR_PARALLELIZATION) +@@ -757,23 +747,6 @@ public class QueryServicesOptions { + return this; + } + +- public int getTracingThreadPoolSize() { +- return config.getInt(TRACING_THREAD_POOL_SIZE, DEFAULT_TRACING_THREAD_POOL_SIZE); +- } +- +- public int getTracingBatchSize() { +- return config.getInt(TRACING_BATCH_SIZE, DEFAULT_TRACING_BATCH_SIZE); +- } +- +- public int getTracingTraceBufferSize() { +- return config.getInt(TRACING_TRACE_BUFFER_SIZE, DEFAULT_TRACING_TRACE_BUFFER_SIZE); +- } +- +- public String getTableName() { +- return config.get(TRACING_STATS_TABLE_NAME_ATTRIB, DEFAULT_TRACING_STATS_TABLE_NAME); +- } +- +- + public boolean isGlobalMetricsEnabled() { + return config.getBoolean(GLOBAL_METRICS_ENABLED, DEFAULT_IS_GLOBAL_METRICS_ENABLED); + } +diff --git a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTagImpl.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/NullScope.java +similarity index 70% +rename from phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTagImpl.java +rename to phoenix-core-client/src/main/java/org/apache/phoenix/trace/NullScope.java +index 0d2def3e6..919c0b70b 100644 +--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTagImpl.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/NullScope.java +@@ -1,4 +1,4 @@ +-/** ++/* + * 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 +@@ -7,7 +7,7 @@ + * "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 ++ * 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, +@@ -17,13 +17,17 @@ + */ + package org.apache.phoenix.trace; + +-import org.apache.hadoop.metrics2.MetricsTag; ++import io.opentelemetry.context.Scope; + + /** +- * Simple Tag implementation for testing ++ * Facade class that implements AutoCloseable, but does not interact with tracing in any way + */ +-public class PhoenixTagImpl extends MetricsTag { +- public PhoenixTagImpl(String name, String description, String value) { +- super(new MetricsInfoImpl(name, description), value); ++public class NullScope implements Scope { ++ ++ public static final NullScope INSTANCE = new NullScope(); ++ ++ @Override ++ public void close() { + } +-} +\ No newline at end of file ++ ++} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixMetricsSink.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixMetricsSink.java +deleted file mode 100644 +index cc672a0bc..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixMetricsSink.java ++++ /dev/null +@@ -1,330 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import static org.apache.phoenix.metrics.MetricInfo.ANNOTATION; +-import static org.apache.phoenix.metrics.MetricInfo.DESCRIPTION; +-import static org.apache.phoenix.metrics.MetricInfo.END; +-import static org.apache.phoenix.metrics.MetricInfo.HOSTNAME; +-import static org.apache.phoenix.metrics.MetricInfo.PARENT; +-import static org.apache.phoenix.metrics.MetricInfo.SPAN; +-import static org.apache.phoenix.metrics.MetricInfo.START; +-import static org.apache.phoenix.metrics.MetricInfo.TAG; +-import static org.apache.phoenix.metrics.MetricInfo.TRACE; +- +-import java.sql.Connection; +-import java.sql.PreparedStatement; +-import java.sql.SQLException; +-import java.util.ArrayList; +-import java.util.List; +-import java.util.Properties; +- +-import org.apache.commons.configuration2.SubsetConfiguration; +-import org.apache.hadoop.hbase.HBaseConfiguration; +-import org.apache.hadoop.metrics2.AbstractMetric; +-import org.apache.hadoop.metrics2.MetricsRecord; +-import org.apache.hadoop.metrics2.MetricsSink; +-import org.apache.hadoop.metrics2.MetricsTag; +-import org.apache.phoenix.compile.MutationPlan; +-import org.apache.phoenix.execute.MutationState; +-import org.apache.phoenix.jdbc.PhoenixConnection; +-import org.apache.phoenix.jdbc.PhoenixDatabaseMetaData; +-import org.apache.phoenix.jdbc.PhoenixPreparedStatement; +-import org.apache.phoenix.metrics.MetricInfo; +-import org.apache.phoenix.metrics.Metrics; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.schema.TableNotFoundException; +-import org.apache.phoenix.trace.util.Tracing; +-import org.apache.phoenix.util.QueryUtil; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-import org.apache.phoenix.thirdparty.com.google.common.annotations.VisibleForTesting; +-import org.apache.phoenix.thirdparty.com.google.common.base.Joiner; +- +-/** +- * Write the metrics to a phoenix table. +- * Generally, this class is instantiated via hadoop-metrics2 property files. +- * Specifically, you would create this class by adding the following to +- * by +- * This would actually be set as: <code> +- * [prefix].sink.[some instance name].class=org.apache.phoenix.trace.PhoenixMetricsSink +- * </code>, where <tt>prefix</tt> is either: +- * <ol> +- * <li>"phoenix", for the client</li> +- * <li>"hbase", for the server</li> +- * </ol> +- * and +- * <tt>some instance name</tt> is just any unique name, so properties can be differentiated if +- * there are multiple sinks of the same type created +- */ +-public class PhoenixMetricsSink implements MetricsSink { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(PhoenixMetricsSink.class); +- +- private static final String VARIABLE_VALUE = "?"; +- +- private static final Joiner COLUMN_JOIN = Joiner.on("."); +- static final String TAG_FAMILY = "tags"; +- /** +- * Count of the number of tags we are storing for this row +- */ +- static final String TAG_COUNT = COLUMN_JOIN.join(TAG_FAMILY, "count"); +- +- static final String ANNOTATION_FAMILY = "annotations"; +- static final String ANNOTATION_COUNT = COLUMN_JOIN.join(ANNOTATION_FAMILY, "count"); +- +- /** +- * Join strings on a comma +- */ +- private static final Joiner COMMAS = Joiner.on(','); +- +- private Connection conn; +- +- private String table; +- +- public PhoenixMetricsSink() { +- LOGGER.info("Writing tracing metrics to phoenix table"); +- +- } +- +- @Override +- public void init(SubsetConfiguration config) { +- Metrics.markSinkInitialized(); +- LOGGER.info("Phoenix tracing writer started"); +- } +- +- /** +- * Initialize <tt>this</tt> only when we need it +- */ +- private void lazyInitialize() { +- synchronized (this) { +- if (this.conn != null) { +- return; +- } +- try { +- // create the phoenix connection +- Properties props = new Properties(); +- props.setProperty(QueryServices.TRACING_FREQ_ATTRIB, +- Tracing.Frequency.NEVER.getKey()); +- org.apache.hadoop.conf.Configuration conf = HBaseConfiguration.create(); +- Connection conn = QueryUtil.getConnectionOnServer(props, conf); +- // enable bulk loading when we have enough data +- conn.setAutoCommit(true); +- +- String tableName = +- conf.get(QueryServices.TRACING_STATS_TABLE_NAME_ATTRIB, +- QueryServicesOptions.DEFAULT_TRACING_STATS_TABLE_NAME); +- +- initializeInternal(conn, tableName); +- } catch (Exception e) { +- throw new RuntimeException(e); +- } +- } +- } +- +- private void initializeInternal(Connection conn, String tableName) throws SQLException { +- this.conn = conn; +- // ensure that the target table already exists +- if (!traceTableExists(conn, tableName)) { +- createTable(conn, tableName); +- } +- this.table = tableName; +- } +- +- private boolean traceTableExists(Connection conn, String traceTableName) throws SQLException { +- try { +- conn.unwrap(PhoenixConnection.class).getTable(traceTableName); +- return true; +- } catch (TableNotFoundException e) { +- return false; +- } +- } +- +- /** +- * Used for <b>TESTING ONLY</b> +- * Initialize the connection and setup the table to use the +- * {@link org.apache.phoenix.query.QueryServicesOptions#DEFAULT_TRACING_STATS_TABLE_NAME} +- * +- * @param conn to store for upserts and to create the table (if necessary) +- * @param tableName TODO +- * @throws SQLException if any phoenix operation fails +- */ +- @VisibleForTesting +- public void initForTesting(Connection conn, String tableName) throws SQLException { +- initializeInternal(conn, tableName); +- } +- +- /** +- * Create a stats table with the given name. Stores the name for use later when creating upsert +- * statements +- * +- * @param conn connection to use when creating the table +- * @param table name of the table to create +- * @throws SQLException if any phoenix operations fails +- */ +- private void createTable(Connection conn, String table) throws SQLException { +- // only primary-key columns can be marked non-null +- String ddl = +- "create table if not exists " + table + "( " + +- TRACE.columnName + " bigint not null, " + +- PARENT.columnName + " bigint not null, " + +- SPAN.columnName + " bigint not null, " + +- DESCRIPTION.columnName + " varchar, " + +- START.columnName + " bigint, " + +- END.columnName + " bigint, " + +- HOSTNAME.columnName + " varchar, " + +- TAG_COUNT + " smallint, " + +- ANNOTATION_COUNT + " smallint" + +- " CONSTRAINT pk PRIMARY KEY (" + TRACE.columnName + ", " +- + PARENT.columnName + ", " + SPAN.columnName + "))\n" + +- // We have a config parameter that can be set so that tables are +- // transactional by default. If that's set, we still don't want these system +- // tables created as transactional tables, make these table non +- // transactional +- PhoenixDatabaseMetaData.TRANSACTIONAL + "=" + Boolean.FALSE; +- try (PreparedStatement stmt = conn.prepareStatement(ddl)) { +- stmt.execute(); +- } +- } +- +- @Override +- public void flush() { +- try { +- this.conn.commit(); +- } catch (SQLException e) { +- LOGGER.error("Failed to commit changes to table", e); +- } +- } +- +- /** +- * Add a new metric record to be written. +- * +- * @param record +- */ +- @Override +- public void putMetrics(MetricsRecord record) { +- // its not a tracing record, we are done. This could also be handled by filters, but safer +- // to do it here, in case it gets misconfigured +- if (!record.name().startsWith(TracingUtils.METRIC_SOURCE_KEY)) { +- return; +- } +- +- // don't initialize until we actually have something to write +- lazyInitialize(); +- +- String stmt = "UPSERT INTO " + table + " ("; +- // drop it into the queue of things that should be written +- List<String> keys = new ArrayList<String>(); +- List<Object> values = new ArrayList<Object>(); +- // we need to keep variable values in a separate set since they may have spaces, which +- // causes the parser to barf. Instead, we need to add them after the statement is prepared +- List<String> variableValues = new ArrayList<String>(record.tags().size()); +- keys.add(TRACE.columnName); +- values.add( +- Long.parseLong(record.name().substring(TracingUtils.METRIC_SOURCE_KEY.length()))); +- +- keys.add(DESCRIPTION.columnName); +- values.add(VARIABLE_VALUE); +- variableValues.add(record.description()); +- +- // add each of the metrics +- for (AbstractMetric metric : record.metrics()) { +- // name of the metric is also the column name to which we write +- keys.add(MetricInfo.getColumnName(metric.name())); +- values.add(metric.value()); +- } +- +- // get the tags out so we can set them later (otherwise, need to be a single value) +- int annotationCount = 0; +- int tagCount = 0; +- for (MetricsTag tag : record.tags()) { +- if (tag.name().equals(ANNOTATION.traceName)) { +- addDynamicEntry(keys, values, variableValues, ANNOTATION_FAMILY, tag, ANNOTATION, +- annotationCount); +- annotationCount++; +- } else if (tag.name().equals(TAG.traceName)) { +- addDynamicEntry(keys, values, variableValues, TAG_FAMILY, tag, TAG, tagCount); +- tagCount++; +- } else if (tag.name().equals(HOSTNAME.traceName)) { +- keys.add(HOSTNAME.columnName); +- values.add(VARIABLE_VALUE); +- variableValues.add(tag.value()); +- } else if (tag.name().equals("Context")) { +- // ignored +- } else { +- LOGGER.error("Got an unexpected tag: " + tag); +- } +- } +- +- // add the tag count, now that we know it +- keys.add(TAG_COUNT); +- // ignore the hostname in the tags, if we know it +- values.add(tagCount); +- +- keys.add(ANNOTATION_COUNT); +- values.add(annotationCount); +- +- // compile the statement together +- stmt += COMMAS.join(keys); +- stmt += ") VALUES (" + COMMAS.join(values) + ")"; +- +- if (LOGGER.isTraceEnabled()) { +- LOGGER.trace("Logging metrics to phoenix table via: " + stmt); +- LOGGER.trace("With tags: " + variableValues); +- } +- try (PreparedStatement ps = conn.prepareStatement(stmt)) { +- // add everything that wouldn't/may not parse +- int index = 1; +- for (String tag : variableValues) { +- ps.setString(index++, tag); +- } +- // Not going through the standard route of using statement.execute() as that code path +- // is blocked if the metadata hasn't been been upgraded to the new minor release. +- MutationPlan plan = ps.unwrap(PhoenixPreparedStatement.class).compileMutation(stmt); +- MutationState state = conn.unwrap(PhoenixConnection.class).getMutationState(); +- MutationState newState = plan.execute(); +- state.join(newState); +- } catch (SQLException e) { +- LOGGER.error("Could not write metric: \n" + record + " to prepared statement:\n" + stmt, +- e); +- } +- } +- +- public static String getDynamicColumnName(String family, String column, int count) { +- return COLUMN_JOIN.join(family, column) + count; +- } +- +- private void addDynamicEntry(List<String> keys, List<Object> values, +- List<String> variableValues, String family, MetricsTag tag, +- MetricInfo metric, int count) { +- // <family><.dynColumn><count> <VARCHAR> +- keys.add(getDynamicColumnName(family, metric.columnName, count) + " VARCHAR"); +- +- // build the annotation value +- String val = tag.description() + " - " + tag.value(); +- values.add(VARIABLE_VALUE); +- variableValues.add(val); +- } +- +- @VisibleForTesting +- public void clearForTesting() throws SQLException { +- this.conn.rollback(); +- } +-} +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixSemanticAttributes.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixSemanticAttributes.java +new file mode 100644 +index 000000000..a950afb30 +--- /dev/null ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/PhoenixSemanticAttributes.java +@@ -0,0 +1,47 @@ ++/* ++ * 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.phoenix.trace; ++ ++import io.opentelemetry.api.common.AttributeKey; ++import io.opentelemetry.semconv.trace.attributes.SemanticAttributes; ++ ++/** ++ * The constants in this class correspond with the guidance outlined by the OpenTelemetry <a href= ++ * "https://github.com/open-telemetry/opentelemetry-specification/tree/main/specification/trace/semantic_conventions">Semantic ++ * Conventions</a>. ++ */ ++public class PhoenixSemanticAttributes { ++ ++ // These Attributes are also defined by HBase ++ //FIXME These are going to be overwritten ? when transitioning to HBase ++ // Span attributes are probably not propageted to children, check ++ public static final AttributeKey<String> DB_SYSTEM = SemanticAttributes.DB_SYSTEM; ++ public static final String DB_SYSTEM_VALUE = "phoenix"; ++ public static final AttributeKey<String> DB_CONNECTION_STRING = ++ SemanticAttributes.DB_CONNECTION_STRING; ++ public static final AttributeKey<String> DB_USER = SemanticAttributes.DB_USER; ++ public static final AttributeKey<String> DB_NAME = SemanticAttributes.DB_NAME; ++ public static final AttributeKey<String> DB_OPERATION = SemanticAttributes.DB_OPERATION; ++ ++ // These are not defined by HBase ++ public static final AttributeKey<String> DB_JDBC_DRIVER_CLASSNAME = ++ SemanticAttributes.DB_JDBC_DRIVER_CLASSNAME; ++ public static final AttributeKey<String> DB_STATEMENT = SemanticAttributes.DB_STATEMENT; ++ public static final AttributeKey<String> DB_SQL_TABLE = SemanticAttributes.DB_SQL_TABLE; ++ ++} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceReader.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceReader.java +deleted file mode 100644 +index 1b9300058..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceReader.java ++++ /dev/null +@@ -1,381 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import java.sql.Connection; +-import java.sql.PreparedStatement; +-import java.sql.ResultSet; +-import java.sql.SQLException; +-import java.util.ArrayList; +-import java.util.Collection; +-import java.util.Collections; +-import java.util.HashSet; +-import java.util.List; +-import java.util.Set; +-import java.util.TreeSet; +- +-import org.apache.htrace.Span; +-import org.apache.phoenix.jdbc.PhoenixConnection; +-import org.apache.phoenix.metrics.MetricInfo; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.util.LogUtil; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-import org.apache.phoenix.thirdparty.com.google.common.base.Joiner; +-import org.apache.phoenix.thirdparty.com.google.common.primitives.Longs; +- +-/** +- * Read the traces written to phoenix tables by the {@link TraceWriter}. +- */ +-public class TraceReader { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(TraceReader.class); +- private final Joiner comma = Joiner.on(','); +- private String knownColumns; +- { +- // the order here dictates the order we pull out the values below. For now, just keep them +- // in sync - so we can be efficient pulling them off the results. +- knownColumns = +- comma.join(MetricInfo.TRACE.columnName, MetricInfo.PARENT.columnName, +- MetricInfo.SPAN.columnName, MetricInfo.DESCRIPTION.columnName, +- MetricInfo.START.columnName, MetricInfo.END.columnName, +- MetricInfo.HOSTNAME.columnName, TraceWriter.TAG_COUNT, +- TraceWriter.ANNOTATION_COUNT); +- } +- +- private Connection conn; +- private String table; +- private int pageSize; +- +- public TraceReader(Connection conn, String tracingTableName) throws SQLException { +- this.conn = conn; +- this.table = tracingTableName; +- String ps = conn.getClientInfo(QueryServices.TRACING_PAGE_SIZE_ATTRIB); +- this.pageSize = ps == null ? QueryServicesOptions.DEFAULT_TRACING_PAGE_SIZE : Integer.parseInt(ps); +- } +- +- /** +- * Read all the currently stored traces. +- * <p> +- * <b>Be Careful!</b> This could cause an OOME if there are a lot of traces. +- * @param limit max number of traces to return. If -1, returns all known traces. +- * @return the found traces +- * @throws SQLException +- */ +- public Collection<TraceHolder> readAll(int limit) throws SQLException { +- Set<TraceHolder> traces = new HashSet<TraceHolder>(); +- // read all the known columns from the table, sorting first by trace column (so the same +- // trace +- // goes together), and then by start time (so parent spans always appear before child spans) +- String query = +- "SELECT " + knownColumns + " FROM " + table +- + " ORDER BY " + MetricInfo.TRACE.columnName + " DESC, " +- + MetricInfo.START.columnName + " ASC" + " LIMIT " + pageSize; +- int resultCount = 0; +- try (PreparedStatement stmt = conn.prepareStatement(query); +- ResultSet results = stmt.executeQuery()) { +- TraceHolder trace = null; +- // the spans that are not the root span, but haven't seen their parent yet +- List<SpanInfo> orphans = null; +- while (results.next()) { +- int index = 1; +- long traceid = results.getLong(index++); +- long parent = results.getLong(index++); +- long span = results.getLong(index++); +- String desc = results.getString(index++); +- long start = results.getLong(index++); +- long end = results.getLong(index++); +- String host = results.getString(index++); +- int tagCount = results.getInt(index++); +- int annotationCount = results.getInt(index++); +- // we have a new trace +- if (trace == null || traceid != trace.traceid) { +- // only increment if we are on a new trace, to ensure we get at least one +- if (trace != null) { +- resultCount++; +- } +- // we beyond the limit, so we stop +- if (resultCount >= limit) { +- break; +- } +- trace = new TraceHolder(); +- // add the orphans, so we can track them later +- orphans = new ArrayList<SpanInfo>(); +- trace.orphans = orphans; +- trace.traceid = traceid; +- traces.add(trace); +- } +- +- // search the spans to determine the if we have a known parent +- SpanInfo parentSpan = null; +- if (parent != Span.ROOT_SPAN_ID) { +- // find the parent +- for (SpanInfo p : trace.spans) { +- if (p.id == parent) { +- parentSpan = p; +- break; +- } +- } +- } +- SpanInfo spanInfo = +- new SpanInfo(parentSpan, parent, span, desc, start, end, host, tagCount, +- annotationCount); +- // search the orphans to see if this is the parent id +- +- for (int i = 0; i < orphans.size(); i++) { +- SpanInfo orphan = orphans.get(i); +- // we found the parent for the orphan +- if (orphan.parentId == span) { +- // update the bi-directional relationship +- orphan.parent = spanInfo; +- spanInfo.children.add(orphan); +- // / its no longer an orphan +- LOGGER.trace(addCustomAnnotations("Found parent for span: " + span)); +- orphans.remove(i--); +- } +- } +- +- if (parentSpan != null) { +- // add this as a child to the parent span +- parentSpan.children.add(spanInfo); +- } else if (parent != Span.ROOT_SPAN_ID) { +- // add the span to the orphan pile to check for the remaining spans we see +- LOGGER.info(addCustomAnnotations("No parent span found for span: " +- + span + " (root span id: " + Span.ROOT_SPAN_ID + ")")); +- orphans.add(spanInfo); +- } +- +- // add the span to the full known list +- trace.spans.add(spanInfo); +- +- // go back and find the tags for the row +- spanInfo.tags.addAll(getTags(traceid, parent, span, tagCount)); +- +- spanInfo.annotations.addAll(getAnnotations(traceid, parent, span, annotationCount)); +- } +- } +- +- return traces; +- } +- +- private Collection<? extends String> getTags(long traceid, long parent, long span, int count) +- throws SQLException { +- return getDynamicCountColumns(traceid, parent, span, count, +- TraceWriter.TAG_FAMILY, MetricInfo.TAG.columnName); +- } +- +- private Collection<? extends String> getAnnotations(long traceid, long parent, long span, +- int count) throws SQLException { +- return getDynamicCountColumns(traceid, parent, span, count, +- TraceWriter.ANNOTATION_FAMILY, MetricInfo.ANNOTATION.columnName); +- } +- +- private Collection<? extends String> getDynamicCountColumns(long traceid, long parent, +- long span, int count, String family, String columnName) throws SQLException { +- if (count == 0) { +- return Collections.emptyList(); +- } +- +- // build the column strings, family.column<index> +- String[] parts = new String[count]; +- for (int i = 0; i < count; i++) { +- parts[i] = TraceWriter.getDynamicColumnName(family, columnName, i); +- } +- // join the columns together +- String columns = comma.join(parts); +- +- // redo them and add "VARCHAR to the end, so we can specify the columns +- for (int i = 0; i < count; i++) { +- parts[i] = parts[i] + " VARCHAR"; +- } +- +- String dynamicColumns = comma.join(parts); +- String request = +- "SELECT " + columns + " from " + table + "(" + dynamicColumns + ") WHERE " +- + MetricInfo.TRACE.columnName + "=" + traceid + " AND " +- + MetricInfo.PARENT.columnName + "=" + parent + " AND " +- + MetricInfo.SPAN.columnName + "=" + span; +- LOGGER.trace(addCustomAnnotations("Requesting columns with: " + request)); +- ResultSet results = conn.createStatement().executeQuery(request); +- List<String> cols = new ArrayList<String>(); +- while (results.next()) { +- for (int index = 1; index <= count; index++) { +- cols.add(results.getString(index)); +- } +- } +- if (cols.size() < count) { +- LOGGER.error(addCustomAnnotations("Missing tags! Expected " + count + +- ", but only got " + cols.size() + " tags from rquest " + request)); +- } +- return cols; +- } +- +- private String addCustomAnnotations(String logLine) throws SQLException { +- if (conn.isWrapperFor(PhoenixConnection.class)) { +- PhoenixConnection phxConn = conn.unwrap(PhoenixConnection.class); +- logLine = LogUtil.addCustomAnnotations(logLine, phxConn); +- } +- return logLine; +- } +- +- /** +- * Holds information about a trace +- */ +- public static class TraceHolder { +- public List<SpanInfo> orphans; +- public long traceid; +- public TreeSet<SpanInfo> spans = new TreeSet<SpanInfo>(); +- +- @Override +- public int hashCode() { +- return new Long(traceid).hashCode(); +- } +- +- @Override +- public boolean equals(Object o) { +- if (o instanceof TraceHolder) { +- return traceid == ((TraceHolder) o).traceid; +- } +- return false; +- } +- +- @Override +- public String toString() { +- StringBuilder sb = new StringBuilder("Trace: " + traceid + "\n"); +- // get the first span, which is always going to be the root span +- SpanInfo root = spans.iterator().next(); +- if (root.parent != null) { +- sb.append("Root span not present! Just printing found spans\n"); +- for (SpanInfo span : spans) { +- sb.append(span.toString() + "\n"); +- } +- } else { +- // print the tree of spans +- List<SpanInfo> toPrint = new ArrayList<SpanInfo>(); +- toPrint.add(root); +- while (!toPrint.isEmpty()) { +- SpanInfo span = toPrint.remove(0); +- sb.append(span.toString() + "\n"); +- toPrint.addAll(span.children); +- } +- } +- if (orphans.size() > 0) { +- sb.append("Found orphan spans:\n" + orphans); +- } +- return sb.toString(); +- } +- } +- +- public static class SpanInfo implements Comparable<SpanInfo> { +- public SpanInfo parent; +- public List<SpanInfo> children = new ArrayList<SpanInfo>(); +- public String description; +- public long id; +- public long start; +- public long end; +- public String hostname; +- public int tagCount; +- public List<String> tags = new ArrayList<String>(); +- public int annotationCount; +- public List<String> annotations = new ArrayList<String>(); +- private long parentId; +- +- public SpanInfo(SpanInfo parent, long parentid, long span, String desc, long start, +- long end, String host, int tagCount, int annotationCount) { +- this.parent = parent; +- this.parentId = parentid; +- this.id = span; +- this.description = desc; +- this.start = start; +- this.end = end; +- this.hostname = host; +- this.tagCount = tagCount; +- this.annotationCount = annotationCount; +- } +- +- @Override +- public int hashCode() { +- return new Long(id).hashCode(); +- } +- +- @Override +- public boolean equals(Object o) { +- if (o instanceof SpanInfo) { +- return id == ((SpanInfo) o).id; +- } +- return false; +- } +- +- /** +- * Do the same sorting that we would get from reading the table with a {@link TraceReader}, +- * specifically, by trace and then by start/end. However, these are only every stored in a +- * single trace, so we can just sort on start/end times. +- */ +- @Override +- public int compareTo(SpanInfo o) { +- // root span always comes first +- if (this.parentId == Span.ROOT_SPAN_ID) { +- return -1; +- } else if (o.parentId == Span.ROOT_SPAN_ID) { +- return 1; +- } +- +- int compare = Longs.compare(start, o.start); +- if (compare == 0) { +- compare = Longs.compare(end, o.end); +- if (compare == 0) { +- return Longs.compare(id, o.id); +- } +- } +- return compare; +- } +- +- @Override +- public String toString() { +- StringBuilder sb = new StringBuilder("Span: " + id + "\n"); +- sb.append("\tdescription=" + description); +- sb.append("\n"); +- sb.append("\tparent=" +- + (parent == null ? (parentId == Span.ROOT_SPAN_ID ? "ROOT" : "[orphan - id: " +- + parentId + "]") : parent.id)); +- sb.append("\n"); +- sb.append("\tstart,end=" + start + "," + end); +- sb.append("\n"); +- sb.append("\telapsed=" + (end - start)); +- sb.append("\n"); +- sb.append("\thostname=" + hostname); +- sb.append("\n"); +- sb.append("\ttags=(" + tagCount + ") " + tags); +- sb.append("\n"); +- sb.append("\tannotations=(" + annotationCount + ") " + annotations); +- sb.append("\n"); +- sb.append("\tchildren="); +- for (SpanInfo child : children) { +- sb.append(child.id + ", "); +- } +- sb.append("\n"); +- return sb.toString(); +- } +- +- public long getParentIdForTesting() { +- return parentId; +- } +- } +-} +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceSpanReceiver.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceSpanReceiver.java +deleted file mode 100644 +index 9440da030..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceSpanReceiver.java ++++ /dev/null +@@ -1,102 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import java.io.IOException; +-import java.util.concurrent.ArrayBlockingQueue; +-import java.util.concurrent.BlockingQueue; +- +-import org.apache.htrace.Span; +-import org.apache.htrace.SpanReceiver; +-import org.apache.phoenix.metrics.MetricInfo; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-/** +- * Sink for request traces ({@link SpanReceiver}) that pushes writes to {@link TraceWriter} in a +- * format that we can more easily consume. +- * <p> +- * <p> +- * Rather than write directly to a phoenix table, we drop it into the metrics queue so we can more +- * cleanly handle it asynchronously.Currently, {@link MilliSpan} submits the span in a synchronized +- * block to all the receivers, which could have a lot of overhead if we are submitting to multiple +- * receivers. +- * <p> +- * The format of the generated metrics is this: +- * <ol> +- * <li>All Metrics from the same span have the same trace id (allowing correlation in the sink)</li> +- * <li>The description of the metric describes what it contains. For instance, +- * <ul> +- * <li>{@link MetricInfo#PARENT} is the id of the parent of this span. (Root span is +- * {@link Span#ROOT_SPAN_ID}).</li> +- * <li>{@link MetricInfo#START} is the start time of the span</li> +- * <li>{@link MetricInfo#END} is the end time of the span</li> +- * </ul> +- * </li> +- * </ol> +- * <p> +- * <i>So why even submit to {@link TraceWriter} if we only have a single source?</i> +- * <p> +- * This allows us to make the updates in batches. We might have spans that finish before other spans +- * (for instance in the same parent). By batching the updates we can lessen the overhead on the +- * client, which is also busy doing 'real' work. <br> +- * This class is custom implementation of metrics queue and handles batch writes to the Phoenix Table +- * via another thread. Batch size and number of threads are configurable. +- * <p> +- */ +-public class TraceSpanReceiver implements SpanReceiver { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(TraceSpanReceiver.class); +- +- private static final int CAPACITY = QueryServicesOptions.withDefaults().getTracingTraceBufferSize(); +- +- private BlockingQueue<Span> spanQueue = null; +- +- public TraceSpanReceiver() { +- this.spanQueue = new ArrayBlockingQueue<Span>(CAPACITY); +- } +- +- @Override +- public void receiveSpan(Span span) { +- if (span.getTraceId() != 0 && spanQueue.offer(span)) { +- if (LOGGER.isTraceEnabled()) { +- LOGGER.trace("Span buffered to queue " + span.toJson()); +- } +- } else if (span.getTraceId() != 0 && LOGGER.isDebugEnabled()) { +- LOGGER.debug("Span NOT buffered due to overflow in queue " + span.toJson()); +- } +- } +- +- @Override +- public void close() throws IOException { +- // noop +- } +- +- boolean isSpanAvailable() { +- return spanQueue.isEmpty(); +- } +- +- Span getSpan() { +- return spanQueue.poll(); +- } +- +- int getNumSpans() { +- return spanQueue.size(); +- } +-} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceUtil.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceUtil.java +new file mode 100644 +index 000000000..fbef21630 +--- /dev/null ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceUtil.java +@@ -0,0 +1,391 @@ ++/* ++ * 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.phoenix.trace; ++ ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_CONNECTION_STRING; ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_NAME; ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_SYSTEM; ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_SYSTEM_VALUE; ++import static org.apache.phoenix.trace.PhoenixSemanticAttributes.DB_USER; ++ ++import java.util.List; ++import java.util.concurrent.Callable; ++import java.util.concurrent.CompletableFuture; ++import java.util.concurrent.CompletionException; ++import java.util.function.BiConsumer; ++import java.util.function.Supplier; ++ ++import org.apache.hadoop.security.UserGroupInformation; ++import org.apache.phoenix.jdbc.PhoenixConnection; ++import org.apache.phoenix.thirdparty.com.google.common.base.Preconditions; ++import org.slf4j.Logger; ++import org.slf4j.LoggerFactory; ++ ++import io.opentelemetry.api.GlobalOpenTelemetry; ++import io.opentelemetry.api.common.AttributeKey; ++import io.opentelemetry.api.common.AttributeType; ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.SpanBuilder; ++import io.opentelemetry.api.trace.SpanKind; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.api.trace.Tracer; ++import io.opentelemetry.context.Context; ++import io.opentelemetry.context.Scope; ++ ++// This is copied from org.apache.hadoop.hbase.trace.TraceUtil ++// We shouldn't use the HBase class directly, as it is @InterfaceAudience.Private ++public final class TraceUtil { ++ ++ private static final Logger LOGGER = LoggerFactory.getLogger(TraceUtil.class); ++ ++ // We could use Boolean, but we're trying to mimic to the Opentracing hint behaviour ++ private static final AttributeKey<Long> SAMPLING_PRIORITY_ATTRIBUTE_KEY = ++ AttributeKey.longKey("sampling.priority"); ++ ++ private TraceUtil() { ++ } ++ ++ public static Tracer getGlobalTracer() { ++ // TODO use a real version ++ return GlobalOpenTelemetry.getTracer("org.apache.phoenix", "0.0.1"); ++ } ++ ++ private static SpanBuilder createPhoenixSpanBuilder(String name) { ++ return getGlobalTracer() ++ .spanBuilder(name) ++ .setAttribute(DB_SYSTEM, DB_SYSTEM_VALUE); ++ } ++ ++ private static SpanBuilder setFromConnection(SpanBuilder builder, PhoenixConnection conn) { ++ builder.setAttribute(DB_CONNECTION_STRING, conn.getURL()); ++ try { ++ builder.setAttribute(DB_USER, UserGroupInformation.getCurrentUser().getShortUserName()); ++ } catch (Exception e) { ++ // Ignore ++ } ++ try { ++ builder.setAttribute(DB_NAME, conn.getSchema()); ++ } catch (Exception e) { ++ // Ignore ++ } ++ return builder; ++ } ++ ++ /** ++ * Create a span with the given {@code kind}. Notice that, OpenTelemetry only expects one ++ * {@link SpanKind#CLIENT} span and one {@link SpanKind#SERVER} span for a traced request, so ++ * use this with caution when you want to create spans with kind other than ++ * {@link SpanKind#INTERNAL}. ++ */ ++ public static Span createSpan(PhoenixConnection conn, String name, SpanKind kind, boolean hinted) { ++ SpanBuilder builder = createPhoenixSpanBuilder(name); ++ builder = setFromConnection(builder, conn); ++ builder.setSpanKind(kind); ++ if (hinted) { ++ // Only has an effect if PhoenixHintableSampler is used ++ builder.setAttribute(SAMPLING_PRIORITY_ATTRIBUTE_KEY, 1L); ++ } ++ //FIXME only for debugging. Maybe add a property for runtime ? ++ StringBuilder sb = new StringBuilder(); ++ for (StackTraceElement st : Thread.currentThread().getStackTrace()) { ++ sb.append(st.toString() + System.lineSeparator()); ++ } ++ builder.setAttribute("create stack trace", sb.toString()); ++ return builder.startSpan(); ++ } ++ ++ public static Span createSpan(PhoenixConnection conn, String name, boolean hinted) { ++ return createSpan(conn, name, SpanKind.INTERNAL, hinted); ++ } ++ ++ public static Span createSpan(PhoenixConnection conn, String name) { ++ return createSpan(conn, name, SpanKind.INTERNAL, false); ++ } ++ ++ ++ /** ++ * Create a span without the information taken from Connection. ++ * This is to be used in the server side code. ++ * ++ * @param name ++ * @param kind ++ * @return ++ */ ++ private static Span createServerSideSpan(String name, SpanKind kind) { ++ SpanBuilder builder = createPhoenixSpanBuilder(name); ++ builder.setSpanKind(kind); ++ //FIXME only for debugging. Maybe add a property for runtime ? ++ StringBuilder sb = new StringBuilder(); ++ for (StackTraceElement st : Thread.currentThread().getStackTrace()) { ++ sb.append(st.toString() + System.lineSeparator()); ++ } ++ builder.setAttribute("create stack trace", sb.toString()); ++ return builder.startSpan(); ++ } ++ ++ public static Span createServerSideSpan(String name) { ++ return createServerSideSpan(name, SpanKind.INTERNAL); ++ } ++ ++ /** ++ * Create a span which parent is from remote, i.e, passed through rpc. ++ * </p> ++ * We will set the kind of the returned span to {@link SpanKind#SERVER}, as this should be the ++ * top most span at server side. ++ */ ++// public static Span createRemoteSpan(String name, Context ctx) { ++// return getGlobalTracer().spanBuilder(name).setParent(ctx).setSpanKind(SpanKind.SERVER) ++// .startSpan(); ++// } ++ ++ /** ++ * Create a span with {@link SpanKind#CLIENT}. ++ */ ++// public static Span createClientSpan(String name) { ++// return createSpan(name, SpanKind.CLIENT); ++// } ++ ++ /** ++ * Trace an asynchronous operation for a table. ++ */ ++// public static <T> CompletableFuture<T> tracedFuture(Supplier<CompletableFuture<T>> action, ++// Supplier<Span> spanSupplier) { ++// Span span = spanSupplier.get(); ++// try (Scope ignored = span.makeCurrent()) { ++// CompletableFuture<T> future = action.get(); ++// endSpan(future, span); ++// return future; ++// } ++// } ++ ++ /** ++ * Trace an asynchronous operation. ++ */ ++// public static <T> CompletableFuture<T> tracedFuture(Supplier<CompletableFuture<T>> action, ++// String spanName) { ++// Span span = createSpan(spanName); ++// try (Scope ignored = span.makeCurrent()) { ++// CompletableFuture<T> future = action.get(); ++// endSpan(future, span); ++// return future; ++// } ++// } ++ ++ /** ++ * Trace an asynchronous operation, and finish the create {@link Span} when all the given ++ * {@code futures} are completed. ++ */ ++// public static <T> List<CompletableFuture<T>> tracedFutures( ++// Supplier<List<CompletableFuture<T>>> action, Supplier<Span> spanSupplier) { ++// Span span = spanSupplier.get(); ++// try (Scope ignored = span.makeCurrent()) { ++// List<CompletableFuture<T>> futures = action.get(); ++// endSpan(CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])), span); ++// return futures; ++// } ++// } ++ ++ public static void setError(Span span, Throwable error) { ++ span.recordException(error); ++ span.setStatus(StatusCode.ERROR); ++ } ++ ++ /** ++ * Finish the {@code span} when the given {@code future} is completed. ++ */ ++// private static void endSpan(CompletableFuture<?> future, Span span) { ++// addListener(future, (resp, error) -> { ++// if (error != null) { ++// setError(span, error); ++// } else { ++// span.setStatus(StatusCode.OK); ++// } ++// span.end(); ++// }); ++// } ++ ++ /** ++ * Wrap the provided {@code runnable} in a {@link Runnable} that is traced. ++ */ ++// public static Runnable tracedRunnable(final Runnable runnable, final String spanName) { ++// return tracedRunnable(runnable, () -> createSpan(spanName)); ++// } ++ ++ /** ++ * Wrap the provided {@code runnable} in a {@link Runnable} that is traced. ++ */ ++// public static Runnable tracedRunnable(final Runnable runnable, ++// final Supplier<Span> spanSupplier) { ++// // N.B. This method name follows the convention of this class, i.e., tracedFuture, rather ++// // than ++// // the convention of the OpenTelemetry classes, i.e., Context#wrap. ++// return () -> { ++// final Span span = spanSupplier.get(); ++// try (final Scope ignored = span.makeCurrent()) { ++// runnable.run(); ++// span.setStatus(StatusCode.OK); ++// } finally { ++// span.end(); ++// } ++// }; ++// } ++ ++ /** ++ * A {@link Runnable} that may also throw. ++ * @param <T> the type of {@link Throwable} that can be produced. ++ */ ++// @FunctionalInterface ++// public interface ThrowingRunnable<T extends Throwable> { ++// void run() throws T; ++// } ++ ++ /** ++ * Trace the execution of {@code runnable}. ++ */ ++// public static <T extends Throwable> void trace(final ThrowingRunnable<T> runnable, ++// final String spanName) throws T { ++// trace(runnable, () -> createSpan(spanName)); ++// } ++ ++ /** ++ * Trace the execution of {@code runnable}. ++ */ ++// public static <T extends Throwable> void trace(final ThrowingRunnable<T> runnable, ++// final Supplier<Span> spanSupplier) throws T { ++// Span span = spanSupplier.get(); ++// try (Scope ignored = span.makeCurrent()) { ++// runnable.run(); ++// span.setStatus(StatusCode.OK); ++// } catch (Throwable e) { ++// setError(span, e); ++// throw e; ++// } finally { ++// span.end(); ++// } ++// } ++ ++ /** ++ * A {@link Callable} that may also throw. ++ * @param <R> the result type of method call. ++ * @param <T> the type of {@link Throwable} that can be produced. ++ */ ++// @FunctionalInterface ++// public interface ThrowingCallable<R, T extends Throwable> { ++// R call() throws T; ++// } ++ ++// public static <R, T extends Throwable> R trace(final ThrowingCallable<R, T> callable, ++// final String spanName) throws T { ++// return trace(callable, () -> createSpan(spanName)); ++// } ++ ++// public static <R, T extends Throwable> R trace(final ThrowingCallable<R, T> callable, ++// final Supplier<Span> spanSupplier) throws T { ++// Span span = spanSupplier.get(); ++// try (Scope ignored = span.makeCurrent()) { ++// final R ret = callable.call(); ++// span.setStatus(StatusCode.OK); ++// return ret; ++// } catch (Throwable e) { ++// setError(span, e); ++// throw e; ++// } finally { ++// span.end(); ++// } ++// } ++ ++ public static <R> Callable<R> wrap(final Callable<R> callable, String spanName) { ++ //FIXME not necessarily server side, we just don't have the PhoenixConnection object here ++ return wrap(callable, () -> createServerSideSpan(spanName)); ++ } ++ ++ public static <R> Callable<R> wrap(final Callable<R> callable, final Supplier<Span> spanSupplier) { ++ return new Callable<R>() { ++ @Override ++ public R call() throws Exception { ++ Span span = spanSupplier.get(); ++ try (Scope ignored = span.makeCurrent()) { ++ final R ret = callable.call(); ++ span.setStatus(StatusCode.OK); ++ return ret; ++ } catch (Throwable e) { ++ setError(span, e); ++ throw e; ++ } finally { ++ span.end(); ++ } ++ } ++ }; ++ } ++ ++ public static boolean isTraceOn(String traceOption) { ++ Preconditions.checkArgument(traceOption != null); ++ if(traceOption.equalsIgnoreCase("ON")) return true; ++ if(traceOption.equalsIgnoreCase("OFF")) return false; ++ else { ++ throw new IllegalArgumentException("Unknown tracing option: " + traceOption); ++ } ++ } ++ ++ // These are copied from org.apache.hadoop.hbase.util.FutureUtils to avoid dependence on ++ // HBase IA.Private classes ++ ++ /** ++ * This is method is used when you just want to add a listener to the given future. We will call ++ * {@link CompletableFuture#whenComplete(BiConsumer)} to register the {@code action} to the ++ * {@code future}. Ignoring the return value of a Future is considered as a bad practice as it ++ * may suppress exceptions thrown from the code that completes the future, and this method will ++ * catch all the exception thrown from the {@code action} to catch possible code bugs. ++ * <p/> ++ * And the error prone check will always report FutureReturnValueIgnored because every method in ++ * the {@link CompletableFuture} class will return a new {@link CompletableFuture}, so you ++ * always have one future that has not been checked. So we introduce this method and add a ++ * suppress warnings annotation here. ++ */ ++ @SuppressWarnings("FutureReturnValueIgnored") ++ private static <T> void addListener(CompletableFuture<T> future, ++ BiConsumer<? super T, ? super Throwable> action) { ++ future.whenComplete((resp, error) -> { ++ try { ++ // See this post on stack overflow(shorten since the url is too long), ++ // https://s.apache.org/completionexception ++ // For a chain of CompleableFuture, only the first child CompletableFuture can get ++ // the ++ // original exception, others will get a CompletionException, which wraps the ++ // original ++ // exception. So here we unwrap it before passing it to the callback action. ++ action.accept(resp, unwrapCompletionException(error)); ++ } catch (Throwable t) { ++ LOGGER.error("Unexpected error caught when processing CompletableFuture", t); ++ } ++ }); ++ } ++ ++ /** ++ * Get the cause of the {@link Throwable} if it is a {@link CompletionException}. ++ */ ++ public static Throwable unwrapCompletionException(Throwable error) { ++ if (error instanceof CompletionException) { ++ Throwable cause = error.getCause(); ++ if (cause != null) { ++ return cause; ++ } ++ } ++ return error; ++ } ++} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceWriter.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceWriter.java +deleted file mode 100644 +index 1d2b75f18..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TraceWriter.java ++++ /dev/null +@@ -1,331 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import static org.apache.phoenix.metrics.MetricInfo.ANNOTATION; +-import static org.apache.phoenix.metrics.MetricInfo.DESCRIPTION; +-import static org.apache.phoenix.metrics.MetricInfo.END; +-import static org.apache.phoenix.metrics.MetricInfo.HOSTNAME; +-import static org.apache.phoenix.metrics.MetricInfo.PARENT; +-import static org.apache.phoenix.metrics.MetricInfo.SPAN; +-import static org.apache.phoenix.metrics.MetricInfo.START; +-import static org.apache.phoenix.metrics.MetricInfo.TAG; +-import static org.apache.phoenix.metrics.MetricInfo.TRACE; +- +-import java.sql.Connection; +-import java.sql.PreparedStatement; +-import java.sql.SQLException; +-import java.util.ArrayList; +-import java.util.List; +-import java.util.Map; +-import java.util.Properties; +-import java.util.concurrent.Executors; +-import java.util.concurrent.ScheduledExecutorService; +-import java.util.concurrent.TimeUnit; +- +-import org.apache.hadoop.conf.Configuration; +-import org.apache.hadoop.hbase.HBaseConfiguration; +-import org.apache.hadoop.hbase.util.Pair; +-import org.apache.htrace.Span; +-import org.apache.htrace.TimelineAnnotation; +-import org.apache.phoenix.compile.MutationPlan; +-import org.apache.phoenix.execute.MutationState; +-import org.apache.phoenix.jdbc.PhoenixConnection; +-import org.apache.phoenix.jdbc.PhoenixDatabaseMetaData; +-import org.apache.phoenix.jdbc.PhoenixPreparedStatement; +-import org.apache.phoenix.metrics.MetricInfo; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.schema.TableNotFoundException; +-import org.apache.phoenix.trace.util.Tracing; +-import org.apache.phoenix.util.QueryUtil; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-import org.apache.phoenix.thirdparty.com.google.common.annotations.VisibleForTesting; +-import org.apache.phoenix.thirdparty.com.google.common.base.Joiner; +-import org.apache.phoenix.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder; +- +-/** +- * Sink for the trace spans pushed into the queue by {@link TraceSpanReceiver}. The class +- * instantiates a thread pool of configurable size, which will pull the data from queue and write to +- * the Phoenix Trace Table in batches. Various configuration options include thread pool size and +- * batch commit size. +- */ +-public class TraceWriter { +- private static final Logger LOGGER = LoggerFactory.getLogger(TraceWriter.class); +- +- private static final String VARIABLE_VALUE = "?"; +- +- private static final Joiner COLUMN_JOIN = Joiner.on("."); +- static final String TAG_FAMILY = "tags"; +- /** +- * Count of the number of tags we are storing for this row +- */ +- static final String TAG_COUNT = COLUMN_JOIN.join(TAG_FAMILY, "count"); +- +- static final String ANNOTATION_FAMILY = "annotations"; +- static final String ANNOTATION_COUNT = COLUMN_JOIN.join(ANNOTATION_FAMILY, "count"); +- +- /** +- * Join strings on a comma +- */ +- private static final Joiner COMMAS = Joiner.on(','); +- +- private String tableName; +- private int batchSize; +- private int numThreads; +- private TraceSpanReceiver traceSpanReceiver; +- +- protected ScheduledExecutorService executor; +- +- public TraceWriter(String tableName, int numThreads, int batchSize) { +- +- this.batchSize = batchSize; +- this.numThreads = numThreads; +- this.tableName = tableName; +- } +- +- public void start() { +- +- traceSpanReceiver = getTraceSpanReceiver(); +- if (traceSpanReceiver == null) { +- LOGGER.warn( +- "No receiver has been initialized for TraceWriter. Traces will not be written."); +- LOGGER.warn("Restart Phoenix to try again."); +- return; +- } +- +- ThreadFactoryBuilder builder = new ThreadFactoryBuilder(); +- builder.setDaemon(true).setNameFormat("PHOENIX-METRICS-WRITER"); +- executor = Executors.newScheduledThreadPool(this.numThreads, builder.build()); +- +- for (int i = 0; i < this.numThreads; i++) { +- executor.scheduleAtFixedRate(new FlushMetrics(), 0, 10, TimeUnit.SECONDS); +- } +- +- LOGGER.info("Writing tracing metrics to phoenix table"); +- } +- +- @VisibleForTesting +- protected TraceSpanReceiver getTraceSpanReceiver() { +- return Tracing.getTraceSpanReceiver(); +- } +- +- public class FlushMetrics implements Runnable { +- +- private Connection conn; +- private int counter = 0; +- +- public FlushMetrics() { +- conn = getConnection(tableName); +- } +- +- @Override +- public void run() { +- if (conn == null) return; +- while (!traceSpanReceiver.isSpanAvailable()) { +- Span span = traceSpanReceiver.getSpan(); +- if (null == span) break; +- if (LOGGER.isTraceEnabled()) { +- LOGGER.trace("Span received: " + span.toJson()); +- } +- addToBatch(span); +- counter++; +- if (counter >= batchSize) { +- commitBatch(conn); +- counter = 0; +- } +- } +- } +- +- private void addToBatch(Span span) { +- +- String stmt = "UPSERT INTO " + tableName + " ("; +- // drop it into the queue of things that should be written +- List<String> keys = new ArrayList<String>(); +- List<Object> values = new ArrayList<Object>(); +- // we need to keep variable values in a separate set since they may have spaces, which +- // causes the parser to barf. Instead, we need to add them after the statement is +- // prepared +- List<String> variableValues = new ArrayList<String>(); +- keys.add(TRACE.columnName); +- values.add(span.getTraceId()); +- +- keys.add(DESCRIPTION.columnName); +- values.add(VARIABLE_VALUE); +- variableValues.add(span.getDescription()); +- +- keys.add(SPAN.traceName); +- values.add(span.getSpanId()); +- +- keys.add(PARENT.traceName); +- values.add(span.getParentId()); +- +- keys.add(START.traceName); +- values.add(span.getStartTimeMillis()); +- +- keys.add(END.traceName); +- values.add(span.getStopTimeMillis()); +- +- int annotationCount = 0; +- int tagCount = 0; +- +- // add the tags to the span. They were written in order received so we mark them as such +- for (TimelineAnnotation ta : span.getTimelineAnnotations()) { +- addDynamicEntry(keys, values, variableValues, TAG_FAMILY, +- Long.toString(ta.getTime()), ta.getMessage(), TAG, tagCount); +- tagCount++; +- } +- +- // add the annotations. We assume they are serialized as strings and integers, but that +- // can +- // change in the future +- Map<byte[], byte[]> annotations = span.getKVAnnotations(); +- for (Map.Entry<byte[], byte[]> annotation : annotations.entrySet()) { +- Pair<String, String> val = +- TracingUtils.readAnnotation(annotation.getKey(), annotation.getValue()); +- addDynamicEntry(keys, values, variableValues, ANNOTATION_FAMILY, val.getFirst(), +- val.getSecond(), ANNOTATION, annotationCount); +- annotationCount++; +- } +- +- // add the tag count, now that we know it +- keys.add(TAG_COUNT); +- // ignore the hostname in the tags, if we know it +- values.add(tagCount); +- +- keys.add(ANNOTATION_COUNT); +- values.add(annotationCount); +- +- // compile the statement together +- stmt += COMMAS.join(keys); +- stmt += ") VALUES (" + COMMAS.join(values) + ")"; +- +- if (LOGGER.isTraceEnabled()) { +- LOGGER.trace("Logging metrics to phoenix table via: " + stmt); +- LOGGER.trace("With tags: " + variableValues); +- } +- try (PreparedStatement ps = conn.prepareStatement(stmt)) { +- // add everything that wouldn't/may not parse +- int index = 1; +- for (String tag : variableValues) { +- ps.setString(index++, tag); +- } +- +- // Not going through the standard route of using statement.execute() as that code +- // path +- // is blocked if the metadata hasn't been been upgraded to the new minor release. +- MutationPlan plan = ps.unwrap(PhoenixPreparedStatement.class).compileMutation(stmt); +- MutationState state = conn.unwrap(PhoenixConnection.class).getMutationState(); +- MutationState newState = plan.execute(); +- state.join(newState); +- } catch (SQLException e) { +- LOGGER.error("Could not write metric: \n" + span + " to prepared statement:\n" + stmt, +- e); +- } +- } +- } +- +- public static String getDynamicColumnName(String family, String column, int count) { +- return COLUMN_JOIN.join(family, column) + count; +- } +- +- private void addDynamicEntry(List<String> keys, List<Object> values, +- List<String> variableValues, String family, String desc, String value, +- MetricInfo metric, int count) { +- // <family><.dynColumn><count> <VARCHAR> +- keys.add(getDynamicColumnName(family, metric.columnName, count) + " VARCHAR"); +- +- // build the annotation value +- String val = desc + " - " + value; +- values.add(VARIABLE_VALUE); +- variableValues.add(val); +- } +- +- protected Connection getConnection(String tableName) { +- +- try { +- // create the phoenix connection +- Properties props = new Properties(); +- props.setProperty(QueryServices.TRACING_FREQ_ATTRIB, Tracing.Frequency.NEVER.getKey()); +- Configuration conf = HBaseConfiguration.create(); +- Connection conn = QueryUtil.getConnectionOnServer(props, conf); +- +- if (!traceTableExists(conn, tableName)) { +- createTable(conn, tableName); +- } +- +- LOGGER.info( +- "Created new connection for tracing " + conn.toString() + " Table: " + tableName); +- return conn; +- } catch (Exception e) { +- LOGGER.error("Tracing will NOT be pursued. New connection failed for tracing Table: " +- + tableName, +- e); +- LOGGER.error("Restart Phoenix to retry."); +- return null; +- } +- } +- +- protected boolean traceTableExists(Connection conn, String traceTableName) throws SQLException { +- try { +- conn.unwrap(PhoenixConnection.class).getTable(traceTableName); +- return true; +- } catch (TableNotFoundException e) { +- return false; +- } +- } +- +- /** +- * Create a stats table with the given name. Stores the name for use later when creating upsert +- * statements +- * @param conn connection to use when creating the table +- * @param table name of the table to create +- * @throws SQLException if any phoenix operations fails +- */ +- protected void createTable(Connection conn, String table) throws SQLException { +- // only primary-key columns can be marked non-null +- String ddl = +- "create table if not exists " + table + "( " + TRACE.columnName +- + " bigint not null, " + PARENT.columnName + " bigint not null, " +- + SPAN.columnName + " bigint not null, " + DESCRIPTION.columnName +- + " varchar, " + START.columnName + " bigint, " + END.columnName +- + " bigint, " + HOSTNAME.columnName + " varchar, " + TAG_COUNT +- + " smallint, " + ANNOTATION_COUNT + " smallint" +- + " CONSTRAINT pk PRIMARY KEY (" + TRACE.columnName + ", " +- + PARENT.columnName + ", " + SPAN.columnName + "))\n" + +- // We have a config parameter that can be set so that tables are +- // transactional by default. If that's set, we still don't want these system +- // tables created as transactional tables, make these table non +- // transactional +- PhoenixDatabaseMetaData.TRANSACTIONAL + "=" + Boolean.FALSE; +- PreparedStatement stmt = conn.prepareStatement(ddl); +- stmt.execute(); +- } +- +- protected void commitBatch(Connection conn) { +- try { +- conn.commit(); +- } catch (SQLException e) { +- LOGGER.error( +- "Unable to commit traces on conn: " + conn.toString() + " to table: " + tableName, +- e); +- } +- } +- +-} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingIterator.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingIterator.java +index 4808f258a..b952a25c5 100644 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingIterator.java ++++ b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingIterator.java +@@ -18,46 +18,77 @@ + package org.apache.phoenix.trace; + + import java.sql.SQLException; ++import java.util.List; + + import org.apache.phoenix.iterate.DelegateResultIterator; + import org.apache.phoenix.iterate.ResultIterator; + import org.apache.phoenix.schema.tuple.Tuple; +-import org.apache.htrace.TraceScope; ++import org.apache.phoenix.thirdparty.com.google.common.collect.Lists; ++ ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; + + /** +- * A simple iterator that closes the trace scope when the iterator is closed. ++ * A simple iterator that closes the Span when the iterator is closed. + */ + public class TracingIterator extends DelegateResultIterator { + +- private TraceScope scope; ++ private final Span span; + private boolean started; + + /** + * @param scope a scope with a non-null span + * @param iterator delegate + */ +- public TracingIterator(TraceScope scope, ResultIterator iterator) { ++ public TracingIterator(ResultIterator iterator) { + super(iterator); +- this.scope = scope; ++ //FIXME this is not sever side, we just can't access the PhoenixConnection from here ++ span = TraceUtil.createServerSideSpan("Creating Iterator for scan: " + iterator); ++ span.setAttribute("plan", String.join("\n", getPlanSteps(iterator))); ++ //FIXME where to set the span attributes ? ++ } ++ ++ private List<String> getPlanSteps(ResultIterator iterator) { ++ List<String> planSteps = Lists.newArrayListWithExpectedSize(5); ++ iterator.explain(planSteps); ++ return planSteps; + } + + @Override + public void close() throws SQLException { +- scope.close(); +- super.close(); ++ // We start spans in the parent first, so we must close parent last. ++ try (Scope ignored = span.makeCurrent()) { ++ super.close(); ++ } catch (Exception e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ span.end(); ++ } + } + + @Override + public Tuple next() throws SQLException { +- if (!started) { +- scope.getSpan().addTimelineAnnotation("First request completed"); +- started = true; ++ // FIXME How much of a performance hit is this ? ++ try (Scope ignored = span.makeCurrent()) { ++ if (!started) { ++ span.addEvent("First request completed"); ++ //TODO should we set OK even if next() is never called ? Does it matter ? ++ span.setStatus(StatusCode.OK); ++ started = true; ++ } ++ try { ++ return super.next(); ++ } catch (SQLException e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } + } +- return super.next(); + } + + @Override + public String toString() { +- return "TracingIterator [scope=" + scope + ", started=" + started + "]"; ++ return "TracingIterator [span=" + span + ", started=" + started + "]"; + } + } +\ No newline at end of file +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingUtils.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingUtils.java +deleted file mode 100644 +index 47409e004..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/TracingUtils.java ++++ /dev/null +@@ -1,62 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import java.nio.charset.StandardCharsets; +- +-import org.apache.hadoop.hbase.util.Bytes; +-import org.apache.hadoop.hbase.util.Pair; +-import org.apache.htrace.Span; +- +-/** +- * Utilities for tracing +- */ +-public class TracingUtils { +- public static final String METRIC_SOURCE_KEY = "phoenix."; +- +- /** Set context to enable filtering */ +- public static final String METRICS_CONTEXT = "tracing"; +- +- /** Marker metric to ensure that we register the tracing mbeans */ +- public static final String METRICS_MARKER_CONTEXT = "marker"; +- +- public static void addAnnotation(Span span, String message, int value) { +- span.addKVAnnotation(message.getBytes(StandardCharsets.UTF_8), +- Bytes.toBytes(Integer.toString(value))); +- } +- +- public static Pair<String, String> readAnnotation(byte[] key, byte[] value) { +- return new Pair<String, String>(new String(key, StandardCharsets.UTF_8), +- Bytes.toString(value)); +- } +- +- /** +- * @see #getTraceMetricName(String) +- */ +- public static final String getTraceMetricName(long traceId) { +- return getTraceMetricName(Long.toString(traceId)); +- } +- +- /** +- * @param traceId unique id of the trace +- * @return the name of the metric record that should be generated for a given trace +- */ +- public static final String getTraceMetricName(String traceId) { +- return METRIC_SOURCE_KEY + traceId; +- } +-} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/NullSpan.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/NullSpan.java +deleted file mode 100644 +index afde49297..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/NullSpan.java ++++ /dev/null +@@ -1,118 +0,0 @@ +-/** +- * 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.phoenix.trace.util; +- +-import java.util.Collections; +-import java.util.List; +-import java.util.Map; +- +-import org.apache.htrace.Span; +-import org.apache.htrace.TimelineAnnotation; +-import org.apache.phoenix.util.StringUtil; +- +-/** +- * Fake {@link Span} that doesn't save any state, in place of <tt>null</tt> return values, to avoid +- * <tt>null</tt> check. +- */ +-public class NullSpan implements Span { +- +- public static final Span INSTANCE = new NullSpan(); +- +- /** +- * Private constructor to limit garbage +- */ +- private NullSpan() { +- } +- +- @Override +- public void stop() { +- } +- +- @Override +- public long getStartTimeMillis() { +- return 0; +- } +- +- @Override +- public long getStopTimeMillis() { +- return 0; +- } +- +- @Override +- public long getAccumulatedMillis() { +- return 0; +- } +- +- @Override +- public boolean isRunning() { +- return false; +- } +- +- @Override +- public String getDescription() { +- return "NullSpan"; +- } +- +- @Override +- public long getSpanId() { +- return 0; +- } +- +- @Override +- public long getTraceId() { +- return 0; +- } +- +- @Override +- public Span child(String description) { +- return INSTANCE; +- } +- +- @Override +- public long getParentId() { +- return 0; +- } +- +- @Override +- public void addKVAnnotation(byte[] key, byte[] value) { +- } +- +- @Override +- public void addTimelineAnnotation(String msg) { +- } +- +- @Override +- public Map<byte[], byte[]> getKVAnnotations() { +- return Collections.emptyMap(); +- } +- +- @Override +- public List<TimelineAnnotation> getTimelineAnnotations() { +- return Collections.emptyList(); +- } +- +- @Override +- public String getProcessId() { +- return null; +- } +- +- @Override +- public String toJson() { +- return StringUtil.EMPTY_STRING; +- } +-} +diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/Tracing.java b/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/Tracing.java +deleted file mode 100644 +index 2edff890f..000000000 +--- a/phoenix-core-client/src/main/java/org/apache/phoenix/trace/util/Tracing.java ++++ /dev/null +@@ -1,311 +0,0 @@ +-/** +- * 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.phoenix.trace.util; +- +-import static org.apache.phoenix.util.StringUtil.toBytes; +- +-import java.util.HashMap; +-import java.util.Map; +-import java.util.Properties; +-import java.util.concurrent.Callable; +- +-import javax.annotation.Nullable; +- +-import org.apache.hadoop.conf.Configuration; +-import org.apache.htrace.HTraceConfiguration; +-import org.apache.phoenix.call.CallRunner; +-import org.apache.phoenix.call.CallWrapper; +-import org.apache.phoenix.jdbc.PhoenixConnection; +-import org.apache.phoenix.parse.TraceStatement; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.trace.TraceSpanReceiver; +-import org.apache.htrace.Sampler; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.TraceScope; +-import org.apache.htrace.Tracer; +-import org.apache.htrace.impl.ProbabilitySampler; +-import org.apache.htrace.wrappers.TraceCallable; +-import org.apache.htrace.wrappers.TraceRunnable; +-import org.apache.phoenix.trace.TraceWriter; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-import org.apache.phoenix.thirdparty.com.google.common.base.Function; +-import org.apache.phoenix.thirdparty.com.google.common.base.Preconditions; +- +-import edu.umd.cs.findbugs.annotations.NonNull; +- +-/** +- * Helper class to manage using the {@link Tracer} within Phoenix +- */ +-public class Tracing { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(Tracing.class); +- +- private static final String SEPARATOR = "."; +- // Constants for tracing across the wire +- public static final String TRACE_ID_ATTRIBUTE_KEY = "phoenix.trace.traceid"; +- public static final String SPAN_ID_ATTRIBUTE_KEY = "phoenix.trace.spanid"; +- +- // Constants for passing into the metrics system +- private static final String TRACE_METRIC_PREFIX = "phoenix.trace.instance"; +- +- /** +- * Manage the types of frequencies that we support. By default, we never turn on tracing. +- */ +- public static enum Frequency { +- NEVER("never", CREATE_NEVER), // default +- ALWAYS("always", CREATE_ALWAYS), PROBABILITY("probability", CREATE_PROBABILITY); +- +- String key; +- Function<ConfigurationAdapter, Sampler<?>> builder; +- +- private Frequency(String key, Function<ConfigurationAdapter, Sampler<?>> builder) { +- this.key = key; +- this.builder = builder; +- } +- +- public String getKey() { +- return key; +- } +- +- static Frequency getSampler(String key) { +- for (Frequency type : Frequency.values()) { +- if (type.key.equals(key)) { +- return type; +- } +- } +- return NEVER; +- } +- } +- +- private static Function<ConfigurationAdapter, Sampler<?>> CREATE_ALWAYS = +- new Function<ConfigurationAdapter, Sampler<?>>() { +- @Override +- public Sampler<?> apply(ConfigurationAdapter arg0) { +- return Sampler.ALWAYS; +- } +- }; +- +- private static Function<ConfigurationAdapter, Sampler<?>> CREATE_NEVER = +- new Function<ConfigurationAdapter, Sampler<?>>() { +- @Override +- public Sampler<?> apply(ConfigurationAdapter arg0) { +- return Sampler.NEVER; +- } +- }; +- +- private static Function<ConfigurationAdapter, Sampler<?>> CREATE_PROBABILITY = +- new Function<ConfigurationAdapter, Sampler<?>>() { +- @Override +- public Sampler<?> apply(ConfigurationAdapter conf) { +- // get the connection properties for the probability information +- Map<String, String> items = new HashMap<String, String>(); +- items.put(ProbabilitySampler.SAMPLER_FRACTION_CONF_KEY, +- conf.get(QueryServices.TRACING_PROBABILITY_THRESHOLD_ATTRIB, Double.toString(QueryServicesOptions.DEFAULT_TRACING_PROBABILITY_THRESHOLD))); +- return new ProbabilitySampler(HTraceConfiguration.fromMap(items)); +- } +- }; +- +- public static Sampler<?> getConfiguredSampler(PhoenixConnection connection) { +- String tracelevel = connection.getQueryServices().getProps().get(QueryServices.TRACING_FREQ_ATTRIB, QueryServicesOptions.DEFAULT_TRACING_FREQ); +- return getSampler(tracelevel, new ConfigurationAdapter.ConnectionConfigurationAdapter( +- connection)); +- } +- +- public static Sampler<?> getConfiguredSampler(Configuration conf) { +- String tracelevel = conf.get(QueryServices.TRACING_FREQ_ATTRIB, QueryServicesOptions.DEFAULT_TRACING_FREQ); +- return getSampler(tracelevel, new ConfigurationAdapter.HadoopConfigConfigurationAdapter( +- conf)); +- } +- +- public static Sampler<?> getConfiguredSampler(TraceStatement traceStatement) { +- double samplingRate = traceStatement.getSamplingRate(); +- if (samplingRate >= 1.0) { +- return Sampler.ALWAYS; +- } else if (samplingRate < 1.0 && samplingRate > 0.0) { +- Map<String, String> items = new HashMap<String, String>(); +- items.put(ProbabilitySampler.SAMPLER_FRACTION_CONF_KEY, Double.toString(samplingRate)); +- return new ProbabilitySampler(HTraceConfiguration.fromMap(items)); +- } else { +- return Sampler.NEVER; +- } +- } +- +- private static Sampler<?> getSampler(String traceLevel, ConfigurationAdapter conf) { +- return Frequency.getSampler(traceLevel).builder.apply(conf); +- } +- +- public static void setSampling(Properties props, Frequency freq) { +- props.setProperty(QueryServices.TRACING_FREQ_ATTRIB, freq.key); +- } +- +- /** +- * Start a span with the currently configured sampling frequency. Creates a new 'current' span +- * on this thread - the previous 'current' span will be replaced with this newly created span. +- * <p> +- * Hands back the direct span as you shouldn't be detaching the span - use {@link TraceRunnable} +- * instead to detach a span from this operation. +- * @param connection from which to read parameters +- * @param string description of the span to start +- * @return the underlying span. +- */ +- public static TraceScope startNewSpan(PhoenixConnection connection, String string) { +- Sampler<?> sampler = connection.getSampler(); +- TraceScope scope = Trace.startSpan(string, sampler); +- addCustomAnnotationsToSpan(scope.getSpan(), connection); +- return scope; +- } +- +- public static String getSpanName(Span span) { +- return Tracing.TRACE_METRIC_PREFIX + span.getTraceId() + SEPARATOR + span.getParentId() +- + SEPARATOR + span.getSpanId(); +- } +- +- public static Span child(Span s, String d) { +- if (s == null) { +- return NullSpan.INSTANCE; +- } +- return s.child(d); +- } +- +- /** +- * Wrap the callable in a TraceCallable, if tracing. +- * @param callable to call +- * @param description description of the operation being run. If <tt>null</tt> uses the current +- * thread name +- * @return The callable provided, wrapped if tracing, 'callable' if not. +- */ +- public static <V> Callable<V> wrap(Callable<V> callable, String description) { +- if (Trace.isTracing()) { +- return new TraceCallable<V>(Trace.currentSpan(), callable, description); +- } +- return callable; +- } +- +- /** +- * Helper to automatically start and complete tracing on the given method, used in conjuction +- * with {@link CallRunner#run}. +- * <p> +- * This will always attempt start a new span (which will always start, unless the +- * {@link Sampler} says it shouldn't be traced). If you are just looking for flexible tracing +- * that only turns on if the current thread/query is already tracing, use +- * {@link #wrap(Callable, String)} or {@link Trace#wrap(Callable)}. +- * <p> +- * Ensures that the trace is closed, even if there is an exception from the +- * {@link org.apache.phoenix.call.CallRunner.CallableThrowable}. +- * <p> +- * Generally, this should wrap a long-running operation. +- * @param conn connection from which to determine if we are tracing, ala +- * {@link #startNewSpan(PhoenixConnection, String)} +- * @param desc description of the operation being run +- * @return the value returned from the call +- */ +- public static CallWrapper withTracing(PhoenixConnection conn, String desc) { +- return new TracingWrapper(conn, desc); +- } +- +- private static void addCustomAnnotationsToSpan(@Nullable Span span, @NonNull PhoenixConnection conn) { +- Preconditions.checkNotNull(conn); +- +- if (span == null) { +- return; +- } +- Map<String, String> annotations = conn.getCustomTracingAnnotations(); +- // copy over the annotations as bytes +- for (Map.Entry<String, String> annotation : annotations.entrySet()) { +- span.addKVAnnotation(toBytes(annotation.getKey()), toBytes(annotation.getValue())); +- } +- } +- +- private static class TracingWrapper implements CallWrapper { +- private TraceScope scope; +- private final PhoenixConnection conn; +- private final String desc; +- +- public TracingWrapper(PhoenixConnection conn, String desc){ +- this.conn = conn; +- this.desc = desc; +- } +- +- @Override +- public void before() { +- scope = Tracing.startNewSpan(conn, "Executing " + desc); +- } +- +- @Override +- public void after() { +- scope.close(); +- } +- } +- +- /** +- * Track if the tracing system has been initialized for phoenix +- */ +- private static boolean initialized = false; +- private static TraceSpanReceiver traceSpanReceiver = null; +- +- /** +- * Add the phoenix span receiver so we can log the traces. We have a single trace source for the +- * whole JVM +- */ +- public synchronized static void addTraceMetricsSource() { +- try { +- QueryServicesOptions options = QueryServicesOptions.withDefaults(); +- if (!initialized && options.isTracingEnabled()) { +- traceSpanReceiver = new TraceSpanReceiver(); +- Trace.addReceiver(traceSpanReceiver); +- TraceWriter traceWriter = new TraceWriter(options.getTableName(), options.getTracingThreadPoolSize(), options.getTracingBatchSize()); +- traceWriter.start(); +- } +- } catch (RuntimeException e) { +- LOGGER.warn("Tracing will outputs will not be written to any metrics sink! No " +- + "TraceMetricsSink found on the classpath", e); +- } catch (IllegalAccessError e) { +- // This is an issue when we have a class incompatibility error, such as when running +- // within SquirrelSQL which uses an older incompatible version of commons-collections. +- // Seeing as this only results in disabling tracing, we swallow this exception and just +- // continue on without tracing. +- LOGGER.warn("Class incompatibility while initializing metrics, metrics will be disabled", e); +- } +- initialized = true; +- } +- +- public static TraceSpanReceiver getTraceSpanReceiver() { +- return traceSpanReceiver; +- } +- +- public static boolean isTraceOn(String traceOption) { +- Preconditions.checkArgument(traceOption != null); +- if(traceOption.equalsIgnoreCase("ON")) return true; +- if(traceOption.equalsIgnoreCase("OFF")) return false; +- else { +- throw new IllegalArgumentException("Unknown tracing option: " + traceOption); +- } +- } +- +- /** +- * Check whether tracing is generally enabled. +- * @return true If tracing is enabled, false otherwise +- */ +- public static boolean isTracing() { +- return Trace.isTracing(); +- } +-} +diff --git a/phoenix-core-server/pom.xml b/phoenix-core-server/pom.xml +index bb55875b4..ca2c254ec 100644 +--- a/phoenix-core-server/pom.xml ++++ b/phoenix-core-server/pom.xml +@@ -128,10 +128,6 @@ + <groupId>com.github.stephenc.findbugs</groupId> + <artifactId>findbugs-annotations</artifactId> + </dependency> +- <dependency> +- <groupId>org.apache.htrace</groupId> +- <artifactId>htrace-core</artifactId> +- </dependency> + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/BaseScannerRegionObserver.java b/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/BaseScannerRegionObserver.java +index b25acfb72..f0932f9ce 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/BaseScannerRegionObserver.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/BaseScannerRegionObserver.java +@@ -17,6 +17,8 @@ + */ + package org.apache.phoenix.coprocessor; + ++import static org.apache.phoenix.util.ScanUtil.getPageSizeMsForFilter; ++ + import java.io.IOException; + import java.sql.SQLException; + import java.util.List; +@@ -48,8 +50,6 @@ import org.apache.hadoop.hbase.regionserver.compactions.CompactionLifeCycleTrack + import org.apache.hadoop.hbase.regionserver.compactions.CompactionRequest; + import org.apache.hadoop.hbase.util.Bytes; + import org.apache.hadoop.hbase.util.EnvironmentEdgeManager; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; + import org.apache.phoenix.coprocessorclient.BaseScannerRegionObserverConstants; + import org.apache.phoenix.execute.TupleProjector; + import org.apache.phoenix.filter.PagingFilter; +@@ -62,6 +62,7 @@ import org.apache.phoenix.query.QueryServices; + import org.apache.phoenix.query.QueryServicesOptions; + import org.apache.phoenix.schema.StaleRegionBoundaryCacheException; + import org.apache.phoenix.schema.TableNotFoundException; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.ClientUtil; + import org.apache.phoenix.util.MetaDataUtil; + import org.apache.phoenix.util.QueryUtil; +@@ -70,7 +71,8 @@ import org.apache.phoenix.schema.PTable; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + +-import static org.apache.phoenix.util.ScanUtil.getPageSizeMsForFilter; ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.context.Scope; + + abstract public class BaseScannerRegionObserver implements RegionObserver { + +@@ -105,7 +107,7 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + + byte[] actualStartRow = scan.getAttribute(BaseScannerRegionObserverConstants.SCAN_ACTUAL_START_ROW); + isStaleRegionBoundaries = (expectedUpperRegionKey != null && +- Bytes.compareTo(upperExclusiveRegionKey, expectedUpperRegionKey) != 0) || ++ Bytes.compareTo(upperExclusiveRegionKey, expectedUpperRegionKey) != 0) || + (actualStartRow != null && Bytes.compareTo(actualStartRow, lowerInclusiveRegionKey) < 0); + } else { + if (scan.isReversed()) { +@@ -188,14 +190,14 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + private final Scan scan; + private final ObserverContext<RegionCoprocessorEnvironment> c; + private boolean wasOverriden; +- ++ + public RegionScannerHolder(ObserverContext<RegionCoprocessorEnvironment> c, Scan scan, + final RegionScanner scanner) { + super(scanner); + this.c = c; + this.scan = scan; + } +- ++ + private void overrideDelegate() throws IOException { + if (wasOverriden) { + return; +@@ -207,9 +209,10 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + // and region servers to crash. See https://issues.apache.org/jira/browse/PHOENIX-1596 + // TraceScope can't be used here because closing the scope will end up calling + // currentSpan.stop() and that should happen only when we are closing the scanner. +- final Span savedSpan = Trace.currentSpan(); +- final Span child = Trace.startSpan(BaseScannerRegionObserverConstants.SCANNER_OPENED_TRACE_INFO, savedSpan).getSpan(); +- try { ++ //FIXME I don't think the above is true for OpenTelemetry. ++ //Just use the standard pattern, and see if it works. ++ Span span = TraceUtil.createServerSideSpan(BaseScannerRegionObserverConstants.SCANNER_OPENED_TRACE_INFO); ++ try (Scope scope = span.makeCurrent();){ + RegionScanner scanner = doPostScannerOpen(c, scan, delegate); + scanner = new DelegateRegionScanner(scanner) { + // This isn't very obvious but close() could be called in a thread +@@ -219,9 +222,7 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + try { + delegate.close(); + } finally { +- if (child != null) { +- child.stop(); +- } ++ span.end(); + } + } + }; +@@ -229,16 +230,10 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + wasOverriden = true; + success = true; + } catch (Throwable t) { ++ TraceUtil.setError(span, t); + ClientUtil.throwIOException(c.getEnvironment().getRegionInfo().getRegionNameAsString(), t); +- } finally { +- try { +- if (!success && child != null) { +- child.stop(); +- } +- } finally { +- Trace.continueSpan(savedSpan); +- } + } ++ // span is closed in scanner.close() + } + + @Override +@@ -262,7 +257,7 @@ abstract public class BaseScannerRegionObserver implements RegionObserver { + ScannerContextUtil.incrementSizeProgress(scannerContext, result); + return res; + } +- ++ + @Override + public boolean nextRaw(List<Cell> result) throws IOException { + overrideDelegate(); +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java b/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java +index 9497ce01a..ec45d61c9 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java +@@ -260,7 +260,6 @@ import org.apache.phoenix.schema.types.PTinyint; + import org.apache.phoenix.schema.types.PVarbinary; + import org.apache.phoenix.schema.types.PVarchar; + import org.apache.phoenix.thirdparty.com.google.common.base.Preconditions; +-import org.apache.phoenix.trace.util.Tracing; + import org.apache.phoenix.transaction.TransactionFactory; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.ClientUtil; +@@ -673,8 +672,6 @@ TABLE_FAMILY_BYTES, TABLE_SEQ_NUM_BYTES); + this.isSystemCatalogSplittable = MetaDataSplitPolicy.isSystemCatalogSplittable(config); + + LOGGER.info("Starting Tracing-Metrics Systems"); +- // Start the phoenix trace collection +- Tracing.addTraceMetricsSource(); + Metrics.ensureConfigured(); + metricsSource = MetricsMetadataSourceFactory.getMetadataMetricsSource(); + } +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java +index b2e3b5ff9..b0bf2030b 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java +@@ -80,9 +80,6 @@ import org.apache.hadoop.hbase.util.Pair; + import org.apache.hadoop.hbase.wal.WALEdit; + import org.apache.hadoop.hbase.wal.WALKey; + import org.apache.hadoop.io.WritableUtils; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.compile.ScanRanges; + import org.apache.phoenix.coprocessor.DelegateRegionCoprocessorEnvironment; + import org.apache.phoenix.coprocessor.generated.PTableProtos; +@@ -120,8 +117,7 @@ import org.apache.phoenix.schema.SortOrder; + import org.apache.phoenix.schema.tuple.MultiKeyValueTuple; + import org.apache.phoenix.schema.transform.TransformMaintainer; + import org.apache.phoenix.schema.types.PVarbinary; +-import org.apache.phoenix.trace.TracingUtils; +-import org.apache.phoenix.trace.util.NullSpan; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.ByteUtil; + import org.apache.phoenix.util.ClientUtil; + import org.apache.phoenix.util.EncodedColumnsUtil; +@@ -134,6 +130,10 @@ import org.apache.phoenix.util.ServerUtil.ConnectionType; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + import java.util.Set; + import java.util.concurrent.CountDownLatch; + import java.util.concurrent.TimeUnit; +@@ -1048,12 +1048,9 @@ public class IndexRegionObserver implements RegionCoprocessor, RegionObserver { + PhoenixIndexMetaData indexMetaData) throws Throwable { + List<IndexMaintainer> maintainers = indexMetaData.getIndexMaintainers(); + // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Starting to build index updates")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } +- current.addTimelineAnnotation("Built index updates, doing preStep"); ++ Span span = TraceUtil.createServerSideSpan("Starting to build index updates"); ++ try (Scope ignored = span.makeCurrent()) { ++ span.addEvent("Built index updates, doing preStep"); + // The rest of this method is for handling global index updates + context.indexUpdates = ArrayListMultimap.<HTableInterfaceReference, Pair<Mutation, byte[]>>create(); + prepareIndexMutations(context, maintainers, batchTimestamp); +@@ -1082,7 +1079,13 @@ public class IndexRegionObserver implements RegionCoprocessor, RegionObserver { + } + } + } +- TracingUtils.addAnnotation(current, "index update count", updateCount); ++ span.setAttribute("index update count", updateCount); ++ span.setStatus(StatusCode.OK); ++ } catch (Throwable t) { ++ TraceUtil.setError(span, t); ++ throw t; ++ } finally { ++ span.end(); + } + } + +@@ -1497,18 +1500,20 @@ public class IndexRegionObserver implements RegionCoprocessor, RegionObserver { + return; + } + +- // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Completing " + (post ? "post" : "pre") + " index writes")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } +- current.addTimelineAnnotation("Actually doing " + (post ? "post" : "pre") + " index update for first time"); ++ Span span = TraceUtil.createServerSideSpan("Completing " + (post ? "post" : "pre") + " index writes"); ++ try (Scope ignored = span.makeCurrent()) { ++ span.addEvent("Actually doing " + (post ? "post" : "pre") + " index update for first time"); + if (post) { + postWriter.write(indexUpdates, false, context.clientVersion); + } else { + preWriter.write(indexUpdates, false, context.clientVersion); + } ++ span.setStatus(StatusCode.OK); ++ } catch (IOException e) { ++ TraceUtil.setError(span, e); ++ throw e; ++ } finally { ++ span.end(); + } + } + +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/Indexer.java b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/Indexer.java +index cc7b771a4..73cdf09b0 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/Indexer.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/Indexer.java +@@ -52,9 +52,6 @@ import org.apache.hadoop.hbase.regionserver.Region; + import org.apache.hadoop.hbase.util.Bytes; + import org.apache.hadoop.hbase.util.Pair; + import org.apache.hadoop.hbase.wal.WALEdit; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.coprocessor.DelegateRegionCoprocessorEnvironment; + import org.apache.phoenix.coprocessorclient.BaseScannerRegionObserverConstants.ReplayWrite; + import org.apache.phoenix.hbase.index.LockManager.RowLock; +@@ -74,8 +71,7 @@ import org.apache.phoenix.hbase.index.write.RecoveryIndexWriter; + import org.apache.phoenix.hbase.index.write.recovery.PerRegionIndexWriteCache; + import org.apache.phoenix.hbase.index.write.recovery.StoreFailuresInCachePolicy; + import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.trace.TracingUtils; +-import org.apache.phoenix.trace.util.NullSpan; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.util.ClientUtil; + import org.apache.phoenix.util.EnvironmentEdgeManager; + import org.apache.phoenix.util.ScanUtil; +@@ -84,6 +80,10 @@ import org.apache.phoenix.util.ServerUtil.ConnectionType; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + import org.apache.phoenix.thirdparty.com.google.common.collect.Lists; + import org.apache.phoenix.thirdparty.com.google.common.collect.Multimap; + +@@ -104,7 +104,7 @@ import org.apache.phoenix.thirdparty.com.google.common.collect.Multimap; + * batches. + * <p> + * We don't need to implement {@link #postPut(ObserverContext, Put, WALEdit, Durability)} and +- * {@link #postDelete(ObserverContext, Delete, WALEdit, Durability)} hooks because ++ * {@link #postDelete(ObserverContext, Delete, WALEdit, Durability)} hooks because + * Phoenix always does batch mutations. + * <p> + */ +@@ -113,7 +113,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + private static final Logger LOGGER = LoggerFactory.getLogger(Indexer.class); + private static final OperationStatus IGNORE = new OperationStatus(OperationStatusCode.SUCCESS); + private static final OperationStatus NOWRITE = new OperationStatus(OperationStatusCode.SUCCESS); +- ++ + + protected IndexWriter writer; + protected IndexBuildManager builder; +@@ -130,7 +130,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + this.clientVersion = clientVersion; + } + } +- ++ + private ThreadLocal<BatchMutateContext> batchMutateContext = + new ThreadLocal<BatchMutateContext>(); + +@@ -177,7 +177,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + private long slowPreIncrementThreshold; + private int rowLockWaitDuration; + private String dataTableName; +- ++ + public static final String RecoveryFailurePolicyKeyForTesting = INDEX_RECOVERY_FAILURE_POLICY_KEY; + + public static final int INDEXING_SUPPORTED_MAJOR_VERSION = VersionUtil +@@ -206,13 +206,13 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + throw new FatalIndexBuildingFailureException(errormsg); + } + } +- ++ + this.builder = new IndexBuildManager(env); + // Clone the config since it is shared + DelegateRegionCoprocessorEnvironment indexWriterEnv = new DelegateRegionCoprocessorEnvironment(env, ConnectionType.INDEX_WRITER_CONNECTION); + // setup the actual index writer + this.writer = new IndexWriter(indexWriterEnv, serverName + "-index-writer"); +- ++ + this.rowLockWaitDuration = env.getConfiguration().getInt("hbase.rowlock.wait.duration", + DEFAULT_ROWLOCK_WAIT_DURATION); + this.lockManager = new LockManager(); +@@ -310,8 +310,8 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + return Result.EMPTY_RESULT; + } catch (Throwable t) { + throw ClientUtil.createIOException( +- "Unable to process ON DUPLICATE IGNORE for " + +- e.getEnvironment().getRegion().getRegionInfo().getTable().getNameAsString() + ++ "Unable to process ON DUPLICATE IGNORE for " + ++ e.getEnvironment().getRegion().getRegionInfo().getTable().getNameAsString() + + "(" + Bytes.toStringBinary(inc.getRow()) + ")", t); + } finally { + long duration = EnvironmentEdgeManager.currentTimeMillis() - start; +@@ -367,11 +367,11 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + // first group all the updates for a single row into a single update to be processed + Map<ImmutableBytesPtr, MultiMutation> mutationsMap = + new HashMap<ImmutableBytesPtr, MultiMutation>(); +- ++ + Durability defaultDurability = Durability.SYNC_WAL; + if (c.getEnvironment().getRegion() != null) { + defaultDurability = c.getEnvironment().getRegion().getTableDescriptor().getDurability(); +- defaultDurability = (defaultDurability == Durability.USE_DEFAULT) ? ++ defaultDurability = (defaultDurability == Durability.USE_DEFAULT) ? + Durability.SYNC_WAL : defaultDurability; + } + /* +@@ -390,12 +390,12 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + } + if (this.builder.isEnabled(m)) { + context.rowLocks.add(lockManager.lockRow(m.getRow(), rowLockWaitDuration)); +- Durability effectiveDurablity = (m.getDurability() == Durability.USE_DEFAULT) ? ++ Durability effectiveDurablity = (m.getDurability() == Durability.USE_DEFAULT) ? + defaultDurability : m.getDurability(); + if (effectiveDurablity.ordinal() > durability.ordinal()) { + durability = effectiveDurablity; + } +- // Track whether or not we need to ++ // Track whether or not we need to + ImmutableBytesPtr row = new ImmutableBytesPtr(m.getRow()); + if (mutationsMap.containsKey(row)) { + copyMutations = true; +@@ -420,7 +420,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + originalMutations = Lists.newArrayListWithExpectedSize(mutationsMap.size()); + mutations = originalMutations; + } +- ++ + Mutation firstMutation = miniBatchOp.getOperation(0); + ReplayWrite replayWrite = this.builder.getReplayWrite(firstMutation); + boolean resetTimeStamp = replayWrite == null; +@@ -448,7 +448,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + || replayWrite == ReplayWrite.REBUILD_INDEX_ONLY) { + miniBatchOp.setOperationStatus(i, NOWRITE); + } +- ++ + // Only copy mutations if we found duplicate rows + // which only occurs when we're partially rebuilding + // the index (since we'll potentially have both a +@@ -469,7 +469,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + } + } + } +- ++ + // dump all the index updates into a single WAL. They will get combined in the end anyways, so + // don't worry which one we get + WALEdit edit = miniBatchOp.getWalEdit(0); +@@ -477,17 +477,14 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + edit = new WALEdit(); + miniBatchOp.setWalEdit(0, edit); + } +- ++ + if (copyMutations || replayWrite != null) { + mutations = IndexManagementUtil.flattenMutationsByTimestamp(mutations); + } + + // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Starting to build index updates")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } ++ Span span = TraceUtil.createServerSideSpan("Starting to build index updates"); ++ try (Scope ignored = span.makeCurrent()) { + long start = EnvironmentEdgeManager.currentTimeMillis(); + + // get the index updates for all elements in this batch +@@ -504,8 +501,8 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + metricSource.incrementNumSlowIndexPrepareCalls(dataTableName); + } + metricSource.updateIndexPrepareTime(dataTableName, duration); +- current.addTimelineAnnotation("Built index updates, doing preStep"); +- TracingUtils.addAnnotation(current, "index update count", indexUpdates.size()); ++ span.addEvent("Built index updates, doing preStep"); ++ span.setAttribute("index update count", indexUpdates.size()); + byte[] tableName = c.getEnvironment().getRegion().getTableDescriptor().getTableName().getName(); + Iterator<Pair<Mutation, byte[]>> indexUpdatesItr = indexUpdates.iterator(); + List<Mutation> localUpdates = new ArrayList<Mutation>(indexUpdates.size()); +@@ -529,20 +526,26 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + edit.add(IndexedKeyValue.newIndexedKeyValue(entry.getSecond(), + entry.getFirst())); + } +- } + } + } ++ span.setStatus(StatusCode.OK); ++ } catch (Throwable t) { ++ TraceUtil.setError(span, t); ++ throw t; ++ } finally { ++ span.end(); ++ } + + } + + private void setBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c, BatchMutateContext context) { + this.batchMutateContext.set(context); + } +- ++ + private BatchMutateContext getBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c) { + return this.batchMutateContext.get(); + } +- ++ + private void removeBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c) { + this.batchMutateContext.remove(); + } +@@ -599,15 +602,11 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + return; + } + +- // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Completing index writes")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } ++ Span span = TraceUtil.createServerSideSpan("Completing index writes"); ++ try (Scope ignored = span.makeCurrent()) { + long start = EnvironmentEdgeManager.currentTimeMillis(); +- +- current.addTimelineAnnotation("Actually doing index update for first time"); ++ ++ span.addEvent("Actually doing index update for first time"); + writer.writeAndHandleFailure(context.indexUpdates, false, context.clientVersion); + + long duration = EnvironmentEdgeManager.currentTimeMillis() - start; +@@ -619,6 +618,12 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + metricSource.incrementNumSlowIndexWriteCalls(dataTableName); + } + metricSource.updateIndexWriteTime(dataTableName, duration); ++ span.end(); ++ } catch (Throwable t) { ++ TraceUtil.setError(span, t); ++ throw t; ++ } finally { ++ span.end(); + } + } + +@@ -644,7 +649,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + @Override + public void postOpen(final ObserverContext<RegionCoprocessorEnvironment> c) { + Multimap<HTableInterfaceReference, Mutation> updates = failedIndexEdits.getEdits(c.getEnvironment().getRegion()); +- ++ + if (this.disabled) { + return; + } +@@ -684,7 +689,7 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + org.apache.hadoop.hbase.coprocessor.ObserverContext<? extends RegionCoprocessorEnvironment> ctx, + org.apache.hadoop.hbase.client.RegionInfo info, org.apache.hadoop.hbase.wal.WALKey logKey, WALEdit logEdit) + throws IOException { +- ++ + if (this.disabled) { + return; + } +@@ -752,4 +757,3 @@ public class Indexer implements RegionObserver, RegionCoprocessor { + return null; + } + } +- +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/LockManager.java b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/LockManager.java +index ec189d3d0..071dbd6d8 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/LockManager.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/LockManager.java +@@ -24,15 +24,13 @@ import java.util.concurrent.TimeUnit; + import java.util.concurrent.locks.ReentrantLock; + + import org.apache.hadoop.hbase.exceptions.TimeoutIOException; +-import org.apache.htrace.Trace; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.hbase.index.util.ImmutableBytesPtr; + import org.apache.phoenix.util.EnvironmentEdgeManager; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + + /** +- * ++ * + * Manages reentrant row locks based on row keys. Phoenix needs to manage + * its own locking due to secondary indexes needing a consistent snapshot from + * the time the mvcc is acquired until the time it is advanced (PHOENIX-4053). +@@ -58,13 +56,9 @@ public class LockManager { + */ + public RowLock lockRow(ImmutableBytesPtr rowKey, long waitDurationMs) throws IOException { + RowLockImpl rowLock = new RowLockImpl(rowKey); +- TraceScope traceScope = null; + +- // If we're tracing start a span to show how long this took. +- if (Trace.isTracing()) { +- traceScope = Trace.startSpan("LockManager.lockRow"); +- traceScope.getSpan().addTimelineAnnotation("Getting a row lock"); +- } ++ // TODO(stackable): Add tracing back in ++ + boolean success = false; + try { + while (true) { +@@ -97,13 +91,6 @@ public class LockManager { + iie.initCause(ie); + Thread.currentThread().interrupt(); + throw iie; +- } finally { +- if (traceScope != null) { +- if (!success) { +- traceScope.getSpan().addTimelineAnnotation("Failed to get row lock"); +- } +- traceScope.close(); +- } + } + } + +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/index/PhoenixTransactionalIndexer.java b/phoenix-core-server/src/main/java/org/apache/phoenix/index/PhoenixTransactionalIndexer.java +index 74d19198f..4a25a7225 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/index/PhoenixTransactionalIndexer.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/index/PhoenixTransactionalIndexer.java +@@ -35,17 +35,13 @@ import org.apache.hadoop.hbase.coprocessor.RegionObserver; + import org.apache.hadoop.hbase.regionserver.MiniBatchOperationInProgress; + import org.apache.hadoop.hbase.util.Bytes; + import org.apache.hadoop.hbase.util.Pair; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.TraceScope; + import org.apache.phoenix.coprocessor.DelegateRegionCoprocessorEnvironment; + import org.apache.phoenix.coprocessorclient.MetaDataProtocol; + import org.apache.phoenix.execute.PhoenixTxIndexMutationGenerator; + import org.apache.phoenix.hbase.index.write.IndexWriter; + import org.apache.phoenix.hbase.index.write.LeaveIndexActiveFailurePolicy; + import org.apache.phoenix.hbase.index.write.ParallelWriterIndexCommitter; +-import org.apache.phoenix.trace.TracingUtils; +-import org.apache.phoenix.trace.util.NullSpan; ++import org.apache.phoenix.trace.TraceUtil; + import org.apache.phoenix.transaction.PhoenixTransactionContext; + import org.apache.phoenix.util.ClientUtil; + import org.apache.phoenix.util.ServerUtil.ConnectionType; +@@ -53,6 +49,10 @@ import org.apache.phoenix.util.TransactionUtil; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.StatusCode; ++import io.opentelemetry.context.Scope; ++ + /** + * Do all the work of managing local index updates for a transactional table from a single coprocessor. Since the transaction + * manager essentially time orders writes through conflict detection, the logic to maintain a secondary index is quite a +@@ -73,19 +73,19 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + this.clientVersion = clientVersion; + } + } +- ++ + private ThreadLocal<BatchMutateContext> batchMutateContext = + new ThreadLocal<BatchMutateContext>(); +- ++ + private PhoenixIndexCodec codec; + private IndexWriter writer; + private boolean stopped; +- ++ + @Override + public Optional<RegionObserver> getRegionObserver() { + return Optional.of(this); + } +- ++ + @Override + public void start(CoprocessorEnvironment e) throws IOException { + final RegionCoprocessorEnvironment env = (RegionCoprocessorEnvironment)e; +@@ -111,7 +111,7 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + private static Iterator<Mutation> getMutationIterator(final MiniBatchOperationInProgress<Mutation> miniBatchOp) { + return new Iterator<Mutation>() { + private int i = 0; +- ++ + @Override + public boolean hasNext() { + return i < miniBatchOp.size(); +@@ -126,10 +126,10 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + public void remove() { + throw new UnsupportedOperationException(); + } +- ++ + }; + } +- ++ + @Override + public void preBatchMutate(ObserverContext<RegionCoprocessorEnvironment> c, + MiniBatchOperationInProgress<Mutation> miniBatchOp) throws IOException { +@@ -146,23 +146,18 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + } + BatchMutateContext context = new BatchMutateContext(indexMetaData.getClientVersion()); + setBatchMutateContext(c, context); +- +- Collection<Pair<Mutation, byte[]>> indexUpdates = null; +- // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Starting to build index updates")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } + ++ Collection<Pair<Mutation, byte[]>> indexUpdates = null; ++ Span span = TraceUtil.createServerSideSpan("Starting to build index updates"); ++ try (Scope ignored = span.makeCurrent()) { + RegionCoprocessorEnvironment env = c.getEnvironment(); + PhoenixTransactionContext txnContext = indexMetaData.getTransactionContext(); + if (txnContext == null) { + throw new NullPointerException("Expected to find transaction in metadata for " + env.getRegionInfo().getTable().getNameAsString()); + } + PhoenixTxIndexMutationGenerator generator = new PhoenixTxIndexMutationGenerator(env.getConfiguration(), indexMetaData, +- env.getRegionInfo().getTable().getName(), +- env.getRegionInfo().getStartKey(), ++ env.getRegionInfo().getTable().getName(), ++ env.getRegionInfo().getStartKey(), + env.getRegionInfo().getEndKey()); + try (Table htable = env.getConnection().getTable(env.getRegionInfo().getTable())) { + // get the index updates for all elements in this batch +@@ -189,12 +184,16 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + context.indexUpdates = indexUpdates; + } + +- current.addTimelineAnnotation("Built index updates, doing preStep"); +- TracingUtils.addAnnotation(current, "index update count", context.indexUpdates.size()); ++ span.addEvent("Built index updates, doing preStep"); ++ span.setAttribute("index update count", context.indexUpdates.size()); ++ span.setStatus(StatusCode.OK); + } catch (Throwable t) { ++ TraceUtil.setError(span, t); + String msg = "Failed to update index with entries:" + indexUpdates; + LOGGER.error(msg, t); + ClientUtil.throwIOException(msg, t); ++ } finally { ++ span.end(); + } + } + +@@ -205,24 +204,22 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + if (context == null || context.indexUpdates == null) { + return; + } +- // get the current span, or just use a null-span to avoid a bunch of if statements +- try (TraceScope scope = Trace.startSpan("Starting to write index updates")) { +- Span current = scope.getSpan(); +- if (current == null) { +- current = NullSpan.INSTANCE; +- } +- ++ Span span = TraceUtil.createServerSideSpan("Starting to write index updates"); ++ try (Scope scope = span.makeCurrent()) { + if (success) { // if miniBatchOp was successfully written, write index updates + if (!context.indexUpdates.isEmpty()) { + this.writer.write(context.indexUpdates, false, context.clientVersion); + } +- current.addTimelineAnnotation("Wrote index updates"); ++ span.addEvent("Wrote index updates"); + } ++ span.setStatus(StatusCode.OK); + } catch (Throwable t) { ++ TraceUtil.setError(span, t); + String msg = "Failed to write index updates:" + context.indexUpdates; + LOGGER.error(msg, t); + ClientUtil.throwIOException(msg, t); + } finally { ++ span.end(); + removeBatchMutateContext(c); + } + } +@@ -230,11 +227,11 @@ public class PhoenixTransactionalIndexer implements RegionObserver, RegionCoproc + private void setBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c, BatchMutateContext context) { + this.batchMutateContext.set(context); + } +- ++ + private BatchMutateContext getBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c) { + return this.batchMutateContext.get(); + } +- ++ + private void removeBatchMutateContext(ObserverContext<RegionCoprocessorEnvironment> c) { + this.batchMutateContext.remove(); + } +diff --git a/phoenix-core-server/src/main/java/org/apache/phoenix/schema/stats/UpdateStatisticsTool.java b/phoenix-core-server/src/main/java/org/apache/phoenix/schema/stats/UpdateStatisticsTool.java +index 3d9837215..78d3d388a 100644 +--- a/phoenix-core-server/src/main/java/org/apache/phoenix/schema/stats/UpdateStatisticsTool.java ++++ b/phoenix-core-server/src/main/java/org/apache/phoenix/schema/stats/UpdateStatisticsTool.java +@@ -41,7 +41,6 @@ import org.apache.hadoop.mapreduce.lib.db.DBInputFormat.NullDBWritable; + import org.apache.hadoop.mapreduce.lib.output.NullOutputFormat; + import org.apache.hadoop.util.Tool; + import org.apache.hadoop.util.ToolRunner; +-import org.apache.htrace.SpanReceiver; + import org.apache.phoenix.jdbc.PhoenixConnection; + import org.apache.phoenix.mapreduce.util.ConnectionUtil; + import org.apache.phoenix.mapreduce.util.PhoenixConfigurationUtil; +@@ -53,6 +52,8 @@ import org.joda.time.Chronology; + import org.slf4j.Logger; + import org.slf4j.LoggerFactory; + ++import io.opentelemetry.api.trace.Span; ++ + import static org.apache.hadoop.fs.CommonConfigurationKeysPublic.FS_DEFAULT_NAME_KEY; + + import java.nio.charset.StandardCharsets; +@@ -220,7 +221,7 @@ public class UpdateStatisticsTool extends Configured implements Tool { + TableMapReduceUtil.addDependencyJars(job); + TableMapReduceUtil.addDependencyJarsForClasses(job.getConfiguration(), + PhoenixConnection.class, Chronology.class, CharStream.class, +- SpanReceiver.class, Gauge.class, MetricRegistriesImpl.class); ++ Span.class, Gauge.class, MetricRegistriesImpl.class); + + LOGGER.info("UpdateStatisticsTool running for: " + tableName + + " on snapshot: " + snapshotName + " with restore dir: " + restoreDir); +diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml +index 12d7ad250..5a124f288 100644 +--- a/phoenix-core/pom.xml ++++ b/phoenix-core/pom.xml +@@ -121,6 +121,21 @@ + <outputFile>${project.build.directory}/cached_classpath.txt</outputFile> + </configuration> + </execution> ++ <execution> ++ <id>copy-otel-agent-for-sqlline</id> ++ <goals> ++ <goal>copy</goal> ++ </goals> ++ <configuration> ++ <artifactItems> ++ <artifactItem> ++ <groupId>io.opentelemetry.javaagent</groupId> ++ <artifactId>opentelemetry-javaagent</artifactId> ++ </artifactItem> ++ </artifactItems> ++ <outputDirectory>${project.basedir}/../lib/tracing</outputDirectory> ++ </configuration> ++ </execution> + </executions> + </plugin> + <plugin> +@@ -393,11 +408,6 @@ + <artifactId>protobuf-java</artifactId> + <scope>test</scope> + </dependency> +- <dependency> +- <groupId>org.apache.htrace</groupId> +- <artifactId>htrace-core</artifactId> +- <scope>test</scope> +- </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> +@@ -448,6 +458,18 @@ + <artifactId>HdrHistogram</artifactId> + <scope>test</scope> + </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-api</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-context</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-semconv</artifactId> ++ </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> +diff --git a/phoenix-core/src/it/java/org/apache/phoenix/trace/BaseTracingTestIT.java b/phoenix-core/src/it/java/org/apache/phoenix/trace/BaseTracingTestIT.java +index 447926ece..33fb3ba28 100644 +--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/BaseTracingTestIT.java ++++ b/phoenix-core/src/it/java/org/apache/phoenix/trace/BaseTracingTestIT.java +@@ -29,13 +29,8 @@ import java.util.Properties; + import java.util.concurrent.CountDownLatch; + import java.util.concurrent.TimeUnit; + +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.impl.MilliSpan; + import org.apache.phoenix.end2end.ParallelStatsDisabledIT; + import org.apache.phoenix.jdbc.DelegateConnection; +-import org.apache.phoenix.trace.util.Tracing; +-import org.apache.phoenix.trace.util.Tracing.Frequency; + import org.apache.phoenix.util.PhoenixRuntime; + import org.apache.phoenix.util.PropertiesUtil; + import org.junit.After; +@@ -49,131 +44,93 @@ import org.slf4j.LoggerFactory; + */ + + public abstract class BaseTracingTestIT extends ParallelStatsDisabledIT { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(BaseTracingTestIT.class); +- +- protected CountDownLatch latch; +- protected int defaultTracingThreadPoolForTest = 1; +- protected int defaultTracingBatchSizeForTest = 1; +- protected String tracingTableName; +- protected TraceSpanReceiver traceSpanReceiver = null; +- protected TestTraceWriter testTraceWriter = null; +- +- @Before +- public void setup() { +- tracingTableName = "TRACING_" + generateUniqueName(); +- traceSpanReceiver = new TraceSpanReceiver(); +- Trace.addReceiver(traceSpanReceiver); +- testTraceWriter = +- new TestTraceWriter(tracingTableName, defaultTracingThreadPoolForTest, +- defaultTracingBatchSizeForTest); +- } +- +- @After +- public void cleanUp() { +- Trace.removeReceiver(traceSpanReceiver); +- if (testTraceWriter != null) testTraceWriter.stop(); +- } +- +- public static Connection getConnectionWithoutTracing() throws SQLException { +- Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES); +- return getConnectionWithoutTracing(props); +- } +- +- public static Connection getConnectionWithoutTracing(Properties props) throws SQLException { +- Connection conn = getConnectionWithTracingFrequency(props, Frequency.NEVER); +- return conn; +- } +- +- public static Connection getTracingConnection() throws Exception { +- return getTracingConnection(Collections.<String, String> emptyMap(), null); +- } +- +- public static Connection getTracingConnection(Map<String, String> customAnnotations, +- String tenantId) throws Exception { +- Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES); +- for (Map.Entry<String, String> annot : customAnnotations.entrySet()) { +- props.put(ANNOTATION_ATTRIB_PREFIX + annot.getKey(), annot.getValue()); +- } +- if (tenantId != null) { +- props.put(PhoenixRuntime.TENANT_ID_ATTRIB, tenantId); +- } +- return getConnectionWithTracingFrequency(props, Tracing.Frequency.ALWAYS); +- } +- +- public static Connection getConnectionWithTracingFrequency(Properties props, +- Tracing.Frequency frequency) throws SQLException { +- Tracing.setSampling(props, frequency); +- return DriverManager.getConnection(getUrl(), props); +- } +- +- protected Span createNewSpan(long traceid, long parentid, long spanid, String description, +- long startTime, long endTime, String processid, String... tags) { +- +- Span span = +- new MilliSpan.Builder().description(description).traceId(traceid) +- .parents(new long[] { parentid }).spanId(spanid).processId(processid) +- .begin(startTime).end(endTime).build(); +- +- int tagCount = 0; +- for (String annotation : tags) { +- span.addKVAnnotation((Integer.toString(tagCount++)).getBytes(), annotation.getBytes()); +- } +- return span; +- } +- +- private static class CountDownConnection extends DelegateConnection { +- private CountDownLatch commit; +- +- public CountDownConnection(Connection conn, CountDownLatch commit) { +- super(conn); +- this.commit = commit; +- } +- +- @Override +- public void commit() throws SQLException { +- super.commit(); +- commit.countDown(); +- } +- +- } +- +- protected class TestTraceWriter extends TraceWriter { +- +- public TestTraceWriter(String tableName, int numThreads, int batchSize) { +- super(tableName, numThreads, batchSize); +- } +- +- @Override +- protected Connection getConnection(String tableName) { +- try { +- Connection connection = +- new CountDownConnection(getConnectionWithoutTracing(), latch); +- if (!traceTableExists(connection, tableName)) { +- createTable(connection, tableName); +- } +- return connection; +- } catch (SQLException e) { +- LOGGER.error("New connection failed for tracing Table: " + tableName, e); +- return null; +- } +- } +- +- @Override +- protected TraceSpanReceiver getTraceSpanReceiver() { +- return traceSpanReceiver; +- } +- +- public void stop() { +- if (executor == null) return; +- try { +- executor.shutdownNow(); +- executor.awaitTermination(5, TimeUnit.SECONDS); +- } catch (InterruptedException e) { +- LOGGER.error("Failed to stop the thread. ", e); +- } +- } +- +- } ++// ++// private static final Logger LOGGER = LoggerFactory.getLogger(BaseTracingTestIT.class); ++// ++// protected CountDownLatch latch; ++// protected int defaultTracingThreadPoolForTest = 1; ++// protected int defaultTracingBatchSizeForTest = 1; ++// protected String tracingTableName; ++// protected TraceSpanReceiver traceSpanReceiver = null; ++// protected TestTraceWriter testTraceWriter = null; ++// ++// @Before ++// public void setup() { ++// tracingTableName = "TRACING_" + generateUniqueName(); ++// traceSpanReceiver = new TraceSpanReceiver(); ++// Trace.addReceiver(traceSpanReceiver); ++// testTraceWriter = ++// new TestTraceWriter(tracingTableName, defaultTracingThreadPoolForTest, ++// defaultTracingBatchSizeForTest); ++// } ++// ++// @After ++// public void cleanUp() { ++// Trace.removeReceiver(traceSpanReceiver); ++// if (testTraceWriter != null) testTraceWriter.stop(); ++// } ++// ++// public static Connection getConnectionWithoutTracing() throws SQLException { ++// Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES); ++// return getConnectionWithoutTracing(props); ++// } ++// ++// public static Connection getConnectionWithoutTracing(Properties props) throws SQLException { ++// Connection conn = getConnectionWithTracingFrequency(props, Frequency.NEVER); ++// return conn; ++// } ++// ++// public static Connection getTracingConnection() throws Exception { ++// return getTracingConnection(Collections.<String, String> emptyMap(), null); ++// } ++// ++// public static Connection getTracingConnection(Map<String, String> customAnnotations, ++// String tenantId) throws Exception { ++// Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES); ++// for (Map.Entry<String, String> annot : customAnnotations.entrySet()) { ++// props.put(ANNOTATION_ATTRIB_PREFIX + annot.getKey(), annot.getValue()); ++// } ++// if (tenantId != null) { ++// props.put(PhoenixRuntime.TENANT_ID_ATTRIB, tenantId); ++// } ++// return getConnectionWithTracingFrequency(props, Tracing.Frequency.ALWAYS); ++// } ++// ++// public static Connection getConnectionWithTracingFrequency(Properties props, ++// Tracing.Frequency frequency) throws SQLException { ++// Tracing.setSampling(props, frequency); ++// return DriverManager.getConnection(getUrl(), props); ++// } ++// ++// protected Span createNewSpan(long traceid, long parentid, long spanid, String description, ++// long startTime, long endTime, String processid, String... tags) { ++// ++// Span span = ++// new MilliSpan.Builder().description(description).traceId(traceid) ++// .parents(new long[] { parentid }).spanId(spanid).processId(processid) ++// .begin(startTime).end(endTime).build(); ++// ++// int tagCount = 0; ++// for (String annotation : tags) { ++// span.addKVAnnotation((Integer.toString(tagCount++)).getBytes(), annotation.getBytes()); ++// } ++// return span; ++// } ++// ++// private static class CountDownConnection extends DelegateConnection { ++// private CountDownLatch commit; ++// ++// public CountDownConnection(Connection conn, CountDownLatch commit) { ++// super(conn); ++// this.commit = commit; ++// } ++// ++// @Override ++// public void commit() throws SQLException { ++// super.commit(); ++// commit.countDown(); ++// } ++// ++// } + + } +diff --git a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTableMetricsWriterIT.java b/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTableMetricsWriterIT.java +deleted file mode 100644 +index 2508a3152..000000000 +--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTableMetricsWriterIT.java ++++ /dev/null +@@ -1,114 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import static org.junit.Assert.assertEquals; +-import static org.junit.Assert.assertTrue; +-import static org.junit.Assert.fail; +- +-import java.sql.Connection; +-import java.util.Collection; +-import java.util.concurrent.CountDownLatch; +-import java.util.concurrent.TimeUnit; +- +-import org.apache.htrace.Span; +-import org.apache.htrace.Tracer; +-import org.apache.phoenix.end2end.ParallelStatsDisabledTest; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.trace.TraceReader.SpanInfo; +-import org.apache.phoenix.trace.TraceReader.TraceHolder; +-import org.junit.Test; +-import org.junit.experimental.categories.Category; +- +-/** +- * Test that the logging sink stores the expected metrics/stats +- */ +-@Category(ParallelStatsDisabledTest.class) +-public class PhoenixTableMetricsWriterIT extends BaseTracingTestIT { +- +- /** +- * IT should create the target table if it hasn't been created yet, but not fail if the table +- * has already been created +- * @throws Exception on failure +- */ +- @Test +- public void testCreatesTable() throws Exception { +- +- Connection conn = getConnectionWithoutTracing(); +- +- // check for existence of the tracing table +- try { +- String ddl = "CREATE TABLE " + QueryServicesOptions.DEFAULT_TRACING_STATS_TABLE_NAME; +- conn.createStatement().execute(ddl); +- fail("Table " + QueryServicesOptions.DEFAULT_TRACING_STATS_TABLE_NAME +- + " was not created by the metrics sink"); +- } catch (Exception e) { +- // expected +- } +- } +- +- /** +- * Simple metrics writing and reading check, that uses the standard wrapping in the +- * {@link TraceWriter} +- * @throws Exception on failure +- */ +- @Test +- public void writeMetrics() throws Exception { +- +- Connection conn = getConnectionWithoutTracing(); +- latch = new CountDownLatch(1); +- testTraceWriter.start(); +- +- // create a simple metrics record +- long traceid = 987654; +- String description = "Some generic trace"; +- long spanid = 10; +- long parentid = 11; +- long startTime = 12; +- long endTime = 13; +- String processid = "Some process"; +- String annotation = "test annotation for a span"; +- +- Span span = createNewSpan(traceid, parentid, spanid, description, startTime, endTime, +- processid, annotation); +- +- Tracer.getInstance().deliver(span); +- assertTrue("Span never committed to table", latch.await(30, TimeUnit.SECONDS)); +- +- // make sure we only get expected stat entry (matcing the trace id), otherwise we could the +- // stats for the update as well +- TraceReader reader = new TraceReader(conn, tracingTableName); +- Collection<TraceHolder> traces = reader.readAll(10); +- assertEquals("Wrong number of traces in the tracing table", 1, traces.size()); +- +- // validate trace +- TraceHolder trace = traces.iterator().next(); +- // we are just going to get an orphan span b/c we don't send in a parent +- assertEquals("Didn't get expected orphaned spans!" + trace.orphans, 1, trace.orphans.size()); +- +- assertEquals(traceid, trace.traceid); +- SpanInfo spanInfo = trace.orphans.get(0); +- assertEquals(description, spanInfo.description); +- assertEquals(parentid, spanInfo.getParentIdForTesting()); +- assertEquals(startTime, spanInfo.start); +- assertEquals(endTime, spanInfo.end); +- assertEquals("Wrong number of tags", 0, spanInfo.tagCount); +- assertEquals("Wrong number of annotations", 1, spanInfo.annotationCount); +- } +- +-} +diff --git a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTracingEndToEndIT.java b/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTracingEndToEndIT.java +index b90948339..9796acb7f 100644 +--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTracingEndToEndIT.java ++++ b/phoenix-core/src/it/java/org/apache/phoenix/trace/PhoenixTracingEndToEndIT.java +@@ -32,13 +32,9 @@ import java.util.concurrent.CountDownLatch; + import java.util.concurrent.TimeUnit; + + import org.apache.hadoop.hbase.util.Bytes; +-import org.apache.htrace.*; +-import org.apache.htrace.impl.ProbabilitySampler; +-import org.apache.phoenix.coprocessorclient.BaseScannerRegionObserverConstants; ++import org.apache.phoenix.coprocessor.BaseScannerRegionObserver; + import org.apache.phoenix.end2end.ParallelStatsDisabledTest; + import org.apache.phoenix.jdbc.PhoenixConnection; +-import org.apache.phoenix.trace.TraceReader.SpanInfo; +-import org.apache.phoenix.trace.TraceReader.TraceHolder; + import org.junit.Before; + import org.junit.Ignore; + import org.junit.Test; +@@ -54,534 +50,534 @@ import org.apache.phoenix.thirdparty.com.google.common.collect.ImmutableMap; + @Category(ParallelStatsDisabledTest.class) + @Ignore("Will need to revisit for new HDFS/HBase/HTrace, broken on 5.x") + public class PhoenixTracingEndToEndIT extends BaseTracingTestIT { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(PhoenixTracingEndToEndIT.class); +- private static final int MAX_RETRIES = 10; +- private String enabledForLoggingTable; +- private String enableForLoggingIndex; +- +- @Before +- public void setupMetrics() throws Exception { +- enabledForLoggingTable = "ENABLED_FOR_LOGGING_" + generateUniqueName(); +- enableForLoggingIndex = "ENABALED_FOR_LOGGING_INDEX_" + generateUniqueName(); +- } +- +- /** +- * Simple test that we can correctly write spans to the phoenix table +- * @throws Exception on failure +- */ +- @Test +- public void testWriteSpans() throws Exception { +- +- LOGGER.info("testWriteSpans TableName: " + tracingTableName); +- // watch our sink so we know when commits happen +- latch = new CountDownLatch(1); +- +- testTraceWriter.start(); +- +- // write some spans +- TraceScope trace = Trace.startSpan("Start write test", Sampler.ALWAYS); +- Span span = trace.getSpan(); +- +- // add a child with some annotations +- Span child = span.child("child 1"); +- child.addTimelineAnnotation("timeline annotation"); +- TracingUtils.addAnnotation(child, "test annotation", 10); +- child.stop(); +- +- // sleep a little bit to get some time difference +- Thread.sleep(100); +- +- trace.close(); +- +- // pass the trace on +- Tracer.getInstance().deliver(span); +- +- // wait for the tracer to actually do the write +- assertTrue("Sink not flushed. commit() not called on the connection", latch.await(60, TimeUnit.SECONDS)); +- +- // look for the writes to make sure they were made +- Connection conn = getConnectionWithoutTracing(); +- checkStoredTraces(conn, new TraceChecker() { +- @Override +- public boolean foundTrace(TraceHolder trace, SpanInfo info) { +- if (info.description.equals("child 1")) { +- assertEquals("Not all annotations present", 1, info.annotationCount); +- assertEquals("Not all tags present", 1, info.tagCount); +- boolean found = false; +- for (String annotation : info.annotations) { +- if (annotation.startsWith("test annotation")) { +- found = true; +- } +- } +- assertTrue("Missing the annotations in span: " + info, found); +- found = false; +- for (String tag : info.tags) { +- if (tag.endsWith("timeline annotation")) { +- found = true; +- } +- } +- assertTrue("Missing the tags in span: " + info, found); +- return true; +- } +- return false; +- } +- }); +- } +- +- /** +- * Test that span will actually go into the this sink and be written on both side of the wire, +- * through the indexing code. +- * @throws Exception +- */ +- @Test +- public void testClientServerIndexingTracing() throws Exception { +- +- LOGGER.info("testClientServerIndexingTracing TableName: " + tracingTableName); +- // one call for client side, one call for server side +- latch = new CountDownLatch(2); +- testTraceWriter.start(); +- +- // separate connection so we don't create extra traces +- Connection conn = getConnectionWithoutTracing(); +- createTestTable(conn, true); +- +- // trace the requests we send +- Connection traceable = getTracingConnection(); +- LOGGER.debug("Doing dummy the writes to the tracked table"); +- String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; +- PreparedStatement stmt = traceable.prepareStatement(insert); +- stmt.setString(1, "key1"); +- stmt.setLong(2, 1); +- // this first trace just does a simple open/close of the span. Its not doing anything +- // terribly interesting because we aren't auto-committing on the connection, so it just +- // updates the mutation state and returns. +- stmt.execute(); +- stmt.setString(1, "key2"); +- stmt.setLong(2, 2); +- stmt.execute(); +- traceable.commit(); +- +- // wait for the latch to countdown, as the metrics system is time-based +- LOGGER.debug("Waiting for latch to complete!"); +- latch.await(200, TimeUnit.SECONDS);// should be way more than GC pauses +- +- // read the traces back out +- +- /* Expected: +- * 1. Single element trace - for first PreparedStatement#execute span +- * 2. Two element trace for second PreparedStatement#execute span +- * a. execute call +- * b. metadata lookup* +- * 3. Commit trace. +- * a. Committing to tables +- * i. Committing to single table +- * ii. hbase batch write* +- * i.I. span on server +- * i.II. building index updates +- * i.III. waiting for latch +- * where '*' is a generically named thread (e.g phoenix-1-thread-X) +- */ +- boolean indexingCompleted = checkStoredTraces(conn, new TraceChecker() { +- @Override +- public boolean foundTrace(TraceHolder trace, SpanInfo span) { +- String traceInfo = trace.toString(); +- // skip logging traces that are just traces about tracing +- if (traceInfo.contains(tracingTableName)) { +- return false; +- } +- return traceInfo.contains("Completing index"); +- } +- }); +- +- assertTrue("Never found indexing updates", indexingCompleted); +- } +- +- private void createTestTable(Connection conn, boolean withIndex) throws SQLException { +- // create a dummy table +- String ddl = +- "create table if not exists " + enabledForLoggingTable + "(" + "k varchar not null, " + "c1 bigint" +- + " CONSTRAINT pk PRIMARY KEY (k))"; +- conn.createStatement().execute(ddl); +- +- // early exit if we don't need to create an index +- if (!withIndex) { +- return; +- } +- // create an index on the table - we know indexing has some basic tracing +- ddl = "CREATE INDEX IF NOT EXISTS " + enableForLoggingIndex + " on " + enabledForLoggingTable + " (c1)"; +- conn.createStatement().execute(ddl); +- } +- +- @Test +- public void testScanTracing() throws Exception { +- +- LOGGER.info("testScanTracing TableName: " + tracingTableName); +- +- // separate connections to minimize amount of traces that are generated +- Connection traceable = getTracingConnection(); +- Connection conn = getConnectionWithoutTracing(); +- +- // one call for client side, one call for server side +- latch = new CountDownLatch(2); +- testTraceWriter.start(); +- +- // create a dummy table +- createTestTable(conn, false); +- +- // update the table, but don't trace these, to simplify the traces we read +- LOGGER.debug("Doing dummy the writes to the tracked table"); +- String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; +- PreparedStatement stmt = conn.prepareStatement(insert); +- stmt.setString(1, "key1"); +- stmt.setLong(2, 1); +- stmt.execute(); +- conn.commit(); +- conn.rollback(); +- +- // setup for next set of updates +- stmt.setString(1, "key2"); +- stmt.setLong(2, 2); +- stmt.execute(); +- conn.commit(); +- conn.rollback(); +- +- // do a scan of the table +- String read = "SELECT * FROM " + enabledForLoggingTable; +- ResultSet results = traceable.createStatement().executeQuery(read); +- assertTrue("Didn't get first result", results.next()); +- assertTrue("Didn't get second result", results.next()); +- results.close(); +- +- assertTrue("Get expected updates to trace table", latch.await(200, TimeUnit.SECONDS)); +- // don't trace reads either +- boolean tracingComplete = checkStoredTraces(conn, new TraceChecker(){ +- +- @Override +- public boolean foundTrace(TraceHolder currentTrace) { +- String traceInfo = currentTrace.toString(); +- return traceInfo.contains("Parallel scanner"); +- } +- }); +- assertTrue("Didn't find the parallel scanner in the tracing", tracingComplete); +- } +- +- @Test +- public void testScanTracingOnServer() throws Exception { +- +- LOGGER.info("testScanTracingOnServer TableName: " + tracingTableName); +- +- // separate connections to minimize amount of traces that are generated +- Connection traceable = getTracingConnection(); +- Connection conn = getConnectionWithoutTracing(); +- +- // one call for client side, one call for server side +- latch = new CountDownLatch(5); +- testTraceWriter.start(); +- +- // create a dummy table +- createTestTable(conn, false); +- +- // update the table, but don't trace these, to simplify the traces we read +- LOGGER.debug("Doing dummy the writes to the tracked table"); +- String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; +- PreparedStatement stmt = conn.prepareStatement(insert); +- stmt.setString(1, "key1"); +- stmt.setLong(2, 1); +- stmt.execute(); +- conn.commit(); +- +- // setup for next set of updates +- stmt.setString(1, "key2"); +- stmt.setLong(2, 2); +- stmt.execute(); +- conn.commit(); +- +- // do a scan of the table +- String read = "SELECT COUNT(*) FROM " + enabledForLoggingTable; +- ResultSet results = traceable.createStatement().executeQuery(read); +- assertTrue("Didn't get count result", results.next()); +- // make sure we got the expected count +- assertEquals("Didn't get the expected number of row", 2, results.getInt(1)); +- results.close(); +- +- assertTrue("Didn't get expected updates to trace table", latch.await(60, TimeUnit.SECONDS)); +- +- // don't trace reads either +- boolean found = checkStoredTraces(conn, new TraceChecker() { +- @Override +- public boolean foundTrace(TraceHolder trace) { +- String traceInfo = trace.toString(); +- return traceInfo.contains(BaseScannerRegionObserverConstants.SCANNER_OPENED_TRACE_INFO); +- } +- }); +- assertTrue("Didn't find the parallel scanner in the tracing", found); +- } +- +- @Test +- public void testCustomAnnotationTracing() throws Exception { +- +- LOGGER.info("testCustomAnnotationTracing TableName: " + tracingTableName); +- +- final String customAnnotationKey = "myannot"; +- final String customAnnotationValue = "a1"; +- final String tenantId = "tenant1"; +- // separate connections to minimize amount of traces that are generated +- Connection traceable = getTracingConnection(ImmutableMap.of(customAnnotationKey, customAnnotationValue), tenantId); +- Connection conn = getConnectionWithoutTracing(); +- +- // one call for client side, one call for server side +- latch = new CountDownLatch(2); +- testTraceWriter.start(); +- +- // create a dummy table +- createTestTable(conn, false); +- +- // update the table, but don't trace these, to simplify the traces we read +- LOGGER.debug("Doing dummy the writes to the tracked table"); +- String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; +- PreparedStatement stmt = conn.prepareStatement(insert); +- stmt.setString(1, "key1"); +- stmt.setLong(2, 1); +- stmt.execute(); +- conn.commit(); +- conn.rollback(); +- +- // setup for next set of updates +- stmt.setString(1, "key2"); +- stmt.setLong(2, 2); +- stmt.execute(); +- conn.commit(); +- conn.rollback(); +- +- // do a scan of the table +- String read = "SELECT * FROM " + enabledForLoggingTable; +- ResultSet results = traceable.createStatement().executeQuery(read); +- assertTrue("Didn't get first result", results.next()); +- assertTrue("Didn't get second result", results.next()); +- results.close(); +- +- assertTrue("Get expected updates to trace table", latch.await(200, TimeUnit.SECONDS)); +- +- assertAnnotationPresent(customAnnotationKey, customAnnotationValue, conn); +- assertAnnotationPresent(TENANT_ID_ATTRIB, tenantId, conn); +- // CurrentSCN is also added as an annotation. Not tested here because it screws up test setup. +- } +- +- @Test +- public void testTraceOnOrOff() throws Exception { +- Connection conn1 = getConnectionWithoutTracing(); //DriverManager.getConnection(getUrl()); +- try{ +- Statement statement = conn1.createStatement(); +- ResultSet rs = statement.executeQuery("TRACE ON"); +- assertTrue(rs.next()); +- PhoenixConnection pconn = (PhoenixConnection) conn1; +- long traceId = pconn.getTraceScope().getSpan().getTraceId(); +- assertEquals(traceId, rs.getLong(1)); +- assertEquals(traceId, rs.getLong("trace_id")); +- assertFalse(rs.next()); +- assertEquals(Sampler.ALWAYS, pconn.getSampler()); +- +- rs = statement.executeQuery("TRACE OFF"); +- assertTrue(rs.next()); +- assertEquals(traceId, rs.getLong(1)); +- assertEquals(traceId, rs.getLong("trace_id")); +- assertFalse(rs.next()); +- assertEquals(Sampler.NEVER, pconn.getSampler()); +- +- rs = statement.executeQuery("TRACE OFF"); +- assertFalse(rs.next()); +- +- rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.5"); +- rs.next(); +- assertTrue(((PhoenixConnection) conn1).getSampler() instanceof ProbabilitySampler); +- +- rs = statement.executeQuery("TRACE ON WITH SAMPLING 1.0"); +- assertTrue(rs.next()); +- traceId = pconn.getTraceScope().getSpan() +- .getTraceId(); +- assertEquals(traceId, rs.getLong(1)); +- assertEquals(traceId, rs.getLong("trace_id")); +- assertFalse(rs.next()); +- assertEquals(Sampler.ALWAYS, pconn.getSampler()); +- +- rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.5"); +- rs.next(); +- assertTrue(((PhoenixConnection) conn1).getSampler() instanceof ProbabilitySampler); +- +- rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.0"); +- rs.next(); +- assertEquals(Sampler.NEVER, pconn.getSampler()); +- +- rs = statement.executeQuery("TRACE OFF"); +- assertFalse(rs.next()); +- +- } finally { +- conn1.close(); +- } +- } +- +- @Test +- public void testSingleSpan() throws Exception { +- +- LOGGER.info("testSingleSpan TableName: " + tracingTableName); +- +- Properties props = new Properties(TEST_PROPERTIES); +- Connection conn = DriverManager.getConnection(getUrl(), props); +- latch = new CountDownLatch(1); +- testTraceWriter.start(); +- +- // create a simple metrics record +- long traceid = 987654; +- Span span = createNewSpan(traceid, Span.ROOT_SPAN_ID, 10, "root", 12, 13, "Some process", "test annotation for a span"); +- +- Tracer.getInstance().deliver(span); +- assertTrue("Updates not written in table", latch.await(60, TimeUnit.SECONDS)); +- +- // start a reader +- validateTraces(Collections.singletonList(span), conn, traceid, tracingTableName); +- } +- +- /** +- * Test multiple spans, within the same trace. Some spans are independent of the parent span, +- * some are child spans +- * @throws Exception on failure +- */ +- @Test +- public void testMultipleSpans() throws Exception { +- +- LOGGER.info("testMultipleSpans TableName: " + tracingTableName); +- +- Connection conn = getConnectionWithoutTracing(); +- latch = new CountDownLatch(4); +- testTraceWriter.start(); +- +- // create a simple metrics record +- long traceid = 12345; +- List<Span> spans = new ArrayList<Span>(); +- +- Span span = +- createNewSpan(traceid, Span.ROOT_SPAN_ID, 7777, "root", 10, 30, +- "root process", "root-span tag"); +- spans.add(span); +- +- // then create a child record +- span = +- createNewSpan(traceid, 7777, 6666, "c1", 11, 15, "c1 process", +- "first child"); +- spans.add(span); +- +- // create a different child +- span = +- createNewSpan(traceid, 7777, 5555, "c2", 11, 18, "c2 process", +- "second child"); +- spans.add(span); +- +- // create a child of the second child +- span = +- createNewSpan(traceid, 5555, 4444, "c3", 12, 16, "c3 process", +- "third child"); +- spans.add(span); +- +- for(Span span1 : spans) +- Tracer.getInstance().deliver(span1); +- +- assertTrue("Updates not written in table", latch.await(100, TimeUnit.SECONDS)); +- +- // start a reader +- validateTraces(spans, conn, traceid, tracingTableName); +- } +- +- private void validateTraces(List<Span> spans, Connection conn, long traceid, String tableName) +- throws Exception { +- TraceReader reader = new TraceReader(conn, tableName); +- Collection<TraceHolder> traces = reader.readAll(1); +- assertEquals("Got an unexpected number of traces!", 1, traces.size()); +- // make sure the trace matches what we wrote +- TraceHolder trace = traces.iterator().next(); +- assertEquals("Got an unexpected traceid", traceid, trace.traceid); +- assertEquals("Got an unexpected number of spans", spans.size(), trace.spans.size()); +- +- validateTrace(spans, trace); +- } +- +- /** +- * @param spans +- * @param trace +- */ +- private void validateTrace(List<Span> spans, TraceHolder trace) { +- // drop each span into a sorted list so we get the expected ordering +- Iterator<SpanInfo> spanIter = trace.spans.iterator(); +- for (Span span : spans) { +- SpanInfo spanInfo = spanIter.next(); +- LOGGER.info("Checking span:\n" + spanInfo); +- +- long parentId = span.getParentId(); +- if(parentId == Span.ROOT_SPAN_ID) { +- assertNull("Got a parent, but it was a root span!", spanInfo.parent); +- } else { +- assertEquals("Got an unexpected parent span id", parentId, spanInfo.parent.id); +- } +- +- assertEquals("Got an unexpected start time", span.getStartTimeMillis(), spanInfo.start); +- assertEquals("Got an unexpected end time", span.getStopTimeMillis(), spanInfo.end); +- +- int annotationCount = 0; +- for(Map.Entry<byte[], byte[]> entry : span.getKVAnnotations().entrySet()) { +- int count = annotationCount++; +- assertEquals("Didn't get expected annotation", count + " - " + Bytes.toString(entry.getValue()), +- spanInfo.annotations.get(count)); +- } +- assertEquals("Didn't get expected number of annotations", annotationCount, +- spanInfo.annotationCount); +- } +- } +- +- private void assertAnnotationPresent(final String annotationKey, final String annotationValue, Connection conn) throws Exception { +- boolean tracingComplete = checkStoredTraces(conn, new TraceChecker(){ +- @Override +- public boolean foundTrace(TraceHolder currentTrace) { +- return currentTrace.toString().contains(annotationKey + " - " + annotationValue); +- } +- }); +- +- assertTrue("Didn't find the custom annotation in the tracing", tracingComplete); +- } +- +- private boolean checkStoredTraces(Connection conn, TraceChecker checker) throws Exception { +- TraceReader reader = new TraceReader(conn, tracingTableName); +- int retries = 0; +- boolean found = false; +- outer: while (retries < MAX_RETRIES) { +- Collection<TraceHolder> traces = reader.readAll(100); +- for (TraceHolder trace : traces) { +- LOGGER.info("Got trace: " + trace); +- found = checker.foundTrace(trace); +- if (found) { +- break outer; +- } +- for (SpanInfo span : trace.spans) { +- found = checker.foundTrace(trace, span); +- if (found) { +- break outer; +- } +- } +- } +- LOGGER.info("====== Waiting for tracing updates to be propagated ========"); +- Thread.sleep(1000); +- retries++; +- } +- return found; +- } +- +- private abstract class TraceChecker { +- public boolean foundTrace(TraceHolder currentTrace) { +- return false; +- } +- +- public boolean foundTrace(TraceHolder currentTrace, SpanInfo currentSpan) { +- return false; +- } +- } ++// ++// private static final Logger LOGGER = LoggerFactory.getLogger(PhoenixTracingEndToEndIT.class); ++// private static final int MAX_RETRIES = 10; ++// private String enabledForLoggingTable; ++// private String enableForLoggingIndex; ++// ++// @Before ++// public void setupMetrics() throws Exception { ++// enabledForLoggingTable = "ENABLED_FOR_LOGGING_" + generateUniqueName(); ++// enableForLoggingIndex = "ENABALED_FOR_LOGGING_INDEX_" + generateUniqueName(); ++// } ++// ++// /** ++// * Simple test that we can correctly write spans to the phoenix table ++// * @throws Exception on failure ++// */ ++// @Test ++// public void testWriteSpans() throws Exception { ++// ++// LOGGER.info("testWriteSpans TableName: " + tracingTableName); ++// // watch our sink so we know when commits happen ++// latch = new CountDownLatch(1); ++// ++// testTraceWriter.start(); ++// ++// // write some spans ++// TraceScope trace = Trace.startSpan("Start write test", Sampler.ALWAYS); ++// Span span = trace.getSpan(); ++// ++// // add a child with some annotations ++// Span child = span.child("child 1"); ++// child.addTimelineAnnotation("timeline annotation"); ++// TracingUtils.addAnnotation(child, "test annotation", 10); ++// child.stop(); ++// ++// // sleep a little bit to get some time difference ++// Thread.sleep(100); ++// ++// trace.close(); ++// ++// // pass the trace on ++// Tracer.getInstance().deliver(span); ++// ++// // wait for the tracer to actually do the write ++// assertTrue("Sink not flushed. commit() not called on the connection", latch.await(60, TimeUnit.SECONDS)); ++// ++// // look for the writes to make sure they were made ++// Connection conn = getConnectionWithoutTracing(); ++// checkStoredTraces(conn, new TraceChecker() { ++// @Override ++// public boolean foundTrace(TraceHolder trace, SpanInfo info) { ++// if (info.description.equals("child 1")) { ++// assertEquals("Not all annotations present", 1, info.annotationCount); ++// assertEquals("Not all tags present", 1, info.tagCount); ++// boolean found = false; ++// for (String annotation : info.annotations) { ++// if (annotation.startsWith("test annotation")) { ++// found = true; ++// } ++// } ++// assertTrue("Missing the annotations in span: " + info, found); ++// found = false; ++// for (String tag : info.tags) { ++// if (tag.endsWith("timeline annotation")) { ++// found = true; ++// } ++// } ++// assertTrue("Missing the tags in span: " + info, found); ++// return true; ++// } ++// return false; ++// } ++// }); ++// } ++// ++// /** ++// * Test that span will actually go into the this sink and be written on both side of the wire, ++// * through the indexing code. ++// * @throws Exception ++// */ ++// @Test ++// public void testClientServerIndexingTracing() throws Exception { ++// ++// LOGGER.info("testClientServerIndexingTracing TableName: " + tracingTableName); ++// // one call for client side, one call for server side ++// latch = new CountDownLatch(2); ++// testTraceWriter.start(); ++// ++// // separate connection so we don't create extra traces ++// Connection conn = getConnectionWithoutTracing(); ++// createTestTable(conn, true); ++// ++// // trace the requests we send ++// Connection traceable = getTracingConnection(); ++// LOGGER.debug("Doing dummy the writes to the tracked table"); ++// String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; ++// PreparedStatement stmt = traceable.prepareStatement(insert); ++// stmt.setString(1, "key1"); ++// stmt.setLong(2, 1); ++// // this first trace just does a simple open/close of the span. Its not doing anything ++// // terribly interesting because we aren't auto-committing on the connection, so it just ++// // updates the mutation state and returns. ++// stmt.execute(); ++// stmt.setString(1, "key2"); ++// stmt.setLong(2, 2); ++// stmt.execute(); ++// traceable.commit(); ++// ++// // wait for the latch to countdown, as the metrics system is time-based ++// LOGGER.debug("Waiting for latch to complete!"); ++// latch.await(200, TimeUnit.SECONDS);// should be way more than GC pauses ++// ++// // read the traces back out ++// ++// /* Expected: ++// * 1. Single element trace - for first PreparedStatement#execute span ++// * 2. Two element trace for second PreparedStatement#execute span ++// * a. execute call ++// * b. metadata lookup* ++// * 3. Commit trace. ++// * a. Committing to tables ++// * i. Committing to single table ++// * ii. hbase batch write* ++// * i.I. span on server ++// * i.II. building index updates ++// * i.III. waiting for latch ++// * where '*' is a generically named thread (e.g phoenix-1-thread-X) ++// */ ++// boolean indexingCompleted = checkStoredTraces(conn, new TraceChecker() { ++// @Override ++// public boolean foundTrace(TraceHolder trace, SpanInfo span) { ++// String traceInfo = trace.toString(); ++// // skip logging traces that are just traces about tracing ++// if (traceInfo.contains(tracingTableName)) { ++// return false; ++// } ++// return traceInfo.contains("Completing index"); ++// } ++// }); ++// ++// assertTrue("Never found indexing updates", indexingCompleted); ++// } ++// ++// private void createTestTable(Connection conn, boolean withIndex) throws SQLException { ++// // create a dummy table ++// String ddl = ++// "create table if not exists " + enabledForLoggingTable + "(" + "k varchar not null, " + "c1 bigint" ++// + " CONSTRAINT pk PRIMARY KEY (k))"; ++// conn.createStatement().execute(ddl); ++// ++// // early exit if we don't need to create an index ++// if (!withIndex) { ++// return; ++// } ++// // create an index on the table - we know indexing has some basic tracing ++// ddl = "CREATE INDEX IF NOT EXISTS " + enableForLoggingIndex + " on " + enabledForLoggingTable + " (c1)"; ++// conn.createStatement().execute(ddl); ++// } ++// ++// @Test ++// public void testScanTracing() throws Exception { ++// ++// LOGGER.info("testScanTracing TableName: " + tracingTableName); ++// ++// // separate connections to minimize amount of traces that are generated ++// Connection traceable = getTracingConnection(); ++// Connection conn = getConnectionWithoutTracing(); ++// ++// // one call for client side, one call for server side ++// latch = new CountDownLatch(2); ++// testTraceWriter.start(); ++// ++// // create a dummy table ++// createTestTable(conn, false); ++// ++// // update the table, but don't trace these, to simplify the traces we read ++// LOGGER.debug("Doing dummy the writes to the tracked table"); ++// String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; ++// PreparedStatement stmt = conn.prepareStatement(insert); ++// stmt.setString(1, "key1"); ++// stmt.setLong(2, 1); ++// stmt.execute(); ++// conn.commit(); ++// conn.rollback(); ++// ++// // setup for next set of updates ++// stmt.setString(1, "key2"); ++// stmt.setLong(2, 2); ++// stmt.execute(); ++// conn.commit(); ++// conn.rollback(); ++// ++// // do a scan of the table ++// String read = "SELECT * FROM " + enabledForLoggingTable; ++// ResultSet results = traceable.createStatement().executeQuery(read); ++// assertTrue("Didn't get first result", results.next()); ++// assertTrue("Didn't get second result", results.next()); ++// results.close(); ++// ++// assertTrue("Get expected updates to trace table", latch.await(200, TimeUnit.SECONDS)); ++// // don't trace reads either ++// boolean tracingComplete = checkStoredTraces(conn, new TraceChecker(){ ++// ++// @Override ++// public boolean foundTrace(TraceHolder currentTrace) { ++// String traceInfo = currentTrace.toString(); ++// return traceInfo.contains("Parallel scanner"); ++// } ++// }); ++// assertTrue("Didn't find the parallel scanner in the tracing", tracingComplete); ++// } ++// ++// @Test ++// public void testScanTracingOnServer() throws Exception { ++// ++// LOGGER.info("testScanTracingOnServer TableName: " + tracingTableName); ++// ++// // separate connections to minimize amount of traces that are generated ++// Connection traceable = getTracingConnection(); ++// Connection conn = getConnectionWithoutTracing(); ++// ++// // one call for client side, one call for server side ++// latch = new CountDownLatch(5); ++// testTraceWriter.start(); ++// ++// // create a dummy table ++// createTestTable(conn, false); ++// ++// // update the table, but don't trace these, to simplify the traces we read ++// LOGGER.debug("Doing dummy the writes to the tracked table"); ++// String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; ++// PreparedStatement stmt = conn.prepareStatement(insert); ++// stmt.setString(1, "key1"); ++// stmt.setLong(2, 1); ++// stmt.execute(); ++// conn.commit(); ++// ++// // setup for next set of updates ++// stmt.setString(1, "key2"); ++// stmt.setLong(2, 2); ++// stmt.execute(); ++// conn.commit(); ++// ++// // do a scan of the table ++// String read = "SELECT COUNT(*) FROM " + enabledForLoggingTable; ++// ResultSet results = traceable.createStatement().executeQuery(read); ++// assertTrue("Didn't get count result", results.next()); ++// // make sure we got the expected count ++// assertEquals("Didn't get the expected number of row", 2, results.getInt(1)); ++// results.close(); ++// ++// assertTrue("Didn't get expected updates to trace table", latch.await(60, TimeUnit.SECONDS)); ++// ++// // don't trace reads either ++// boolean found = checkStoredTraces(conn, new TraceChecker() { ++// @Override ++// public boolean foundTrace(TraceHolder trace) { ++// String traceInfo = trace.toString(); ++// return traceInfo.contains(BaseScannerRegionObserver.SCANNER_OPENED_TRACE_INFO); ++// } ++// }); ++// assertTrue("Didn't find the parallel scanner in the tracing", found); ++// } ++// ++// @Test ++// public void testCustomAnnotationTracing() throws Exception { ++// ++// LOGGER.info("testCustomAnnotationTracing TableName: " + tracingTableName); ++// ++// final String customAnnotationKey = "myannot"; ++// final String customAnnotationValue = "a1"; ++// final String tenantId = "tenant1"; ++// // separate connections to minimize amount of traces that are generated ++// Connection traceable = getTracingConnection(ImmutableMap.of(customAnnotationKey, customAnnotationValue), tenantId); ++// Connection conn = getConnectionWithoutTracing(); ++// ++// // one call for client side, one call for server side ++// latch = new CountDownLatch(2); ++// testTraceWriter.start(); ++// ++// // create a dummy table ++// createTestTable(conn, false); ++// ++// // update the table, but don't trace these, to simplify the traces we read ++// LOGGER.debug("Doing dummy the writes to the tracked table"); ++// String insert = "UPSERT INTO " + enabledForLoggingTable + " VALUES (?, ?)"; ++// PreparedStatement stmt = conn.prepareStatement(insert); ++// stmt.setString(1, "key1"); ++// stmt.setLong(2, 1); ++// stmt.execute(); ++// conn.commit(); ++// conn.rollback(); ++// ++// // setup for next set of updates ++// stmt.setString(1, "key2"); ++// stmt.setLong(2, 2); ++// stmt.execute(); ++// conn.commit(); ++// conn.rollback(); ++// ++// // do a scan of the table ++// String read = "SELECT * FROM " + enabledForLoggingTable; ++// ResultSet results = traceable.createStatement().executeQuery(read); ++// assertTrue("Didn't get first result", results.next()); ++// assertTrue("Didn't get second result", results.next()); ++// results.close(); ++// ++// assertTrue("Get expected updates to trace table", latch.await(200, TimeUnit.SECONDS)); ++// ++// assertAnnotationPresent(customAnnotationKey, customAnnotationValue, conn); ++// assertAnnotationPresent(TENANT_ID_ATTRIB, tenantId, conn); ++// // CurrentSCN is also added as an annotation. Not tested here because it screws up test setup. ++// } ++// ++// @Test ++// public void testTraceOnOrOff() throws Exception { ++// Connection conn1 = getConnectionWithoutTracing(); //DriverManager.getConnection(getUrl()); ++// try{ ++// Statement statement = conn1.createStatement(); ++// ResultSet rs = statement.executeQuery("TRACE ON"); ++// assertTrue(rs.next()); ++// PhoenixConnection pconn = (PhoenixConnection) conn1; ++// long traceId = pconn.getTraceScope().getSpan().getTraceId(); ++// assertEquals(traceId, rs.getLong(1)); ++// assertEquals(traceId, rs.getLong("trace_id")); ++// assertFalse(rs.next()); ++// assertEquals(Sampler.ALWAYS, pconn.getSampler()); ++// ++// rs = statement.executeQuery("TRACE OFF"); ++// assertTrue(rs.next()); ++// assertEquals(traceId, rs.getLong(1)); ++// assertEquals(traceId, rs.getLong("trace_id")); ++// assertFalse(rs.next()); ++// assertEquals(Sampler.NEVER, pconn.getSampler()); ++// ++// rs = statement.executeQuery("TRACE OFF"); ++// assertFalse(rs.next()); ++// ++// rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.5"); ++// rs.next(); ++// assertTrue(((PhoenixConnection) conn1).getSampler() instanceof ProbabilitySampler); ++// ++// rs = statement.executeQuery("TRACE ON WITH SAMPLING 1.0"); ++// assertTrue(rs.next()); ++// traceId = pconn.getTraceScope().getSpan() ++// .getTraceId(); ++// assertEquals(traceId, rs.getLong(1)); ++// assertEquals(traceId, rs.getLong("trace_id")); ++// assertFalse(rs.next()); ++// assertEquals(Sampler.ALWAYS, pconn.getSampler()); ++// ++// rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.5"); ++// rs.next(); ++// assertTrue(((PhoenixConnection) conn1).getSampler() instanceof ProbabilitySampler); ++// ++// rs = statement.executeQuery("TRACE ON WITH SAMPLING 0.0"); ++// rs.next(); ++// assertEquals(Sampler.NEVER, pconn.getSampler()); ++// ++// rs = statement.executeQuery("TRACE OFF"); ++// assertFalse(rs.next()); ++// ++// } finally { ++// conn1.close(); ++// } ++// } ++// ++// @Test ++// public void testSingleSpan() throws Exception { ++// ++// LOGGER.info("testSingleSpan TableName: " + tracingTableName); ++// ++// Properties props = new Properties(TEST_PROPERTIES); ++// Connection conn = DriverManager.getConnection(getUrl(), props); ++// latch = new CountDownLatch(1); ++// testTraceWriter.start(); ++// ++// // create a simple metrics record ++// long traceid = 987654; ++// Span span = createNewSpan(traceid, Span.ROOT_SPAN_ID, 10, "root", 12, 13, "Some process", "test annotation for a span"); ++// ++// Tracer.getInstance().deliver(span); ++// assertTrue("Updates not written in table", latch.await(60, TimeUnit.SECONDS)); ++// ++// // start a reader ++// validateTraces(Collections.singletonList(span), conn, traceid, tracingTableName); ++// } ++// ++// /** ++// * Test multiple spans, within the same trace. Some spans are independent of the parent span, ++// * some are child spans ++// * @throws Exception on failure ++// */ ++// @Test ++// public void testMultipleSpans() throws Exception { ++// ++// LOGGER.info("testMultipleSpans TableName: " + tracingTableName); ++// ++// Connection conn = getConnectionWithoutTracing(); ++// latch = new CountDownLatch(4); ++// testTraceWriter.start(); ++// ++// // create a simple metrics record ++// long traceid = 12345; ++// List<Span> spans = new ArrayList<Span>(); ++// ++// Span span = ++// createNewSpan(traceid, Span.ROOT_SPAN_ID, 7777, "root", 10, 30, ++// "root process", "root-span tag"); ++// spans.add(span); ++// ++// // then create a child record ++// span = ++// createNewSpan(traceid, 7777, 6666, "c1", 11, 15, "c1 process", ++// "first child"); ++// spans.add(span); ++// ++// // create a different child ++// span = ++// createNewSpan(traceid, 7777, 5555, "c2", 11, 18, "c2 process", ++// "second child"); ++// spans.add(span); ++// ++// // create a child of the second child ++// span = ++// createNewSpan(traceid, 5555, 4444, "c3", 12, 16, "c3 process", ++// "third child"); ++// spans.add(span); ++// ++// for(Span span1 : spans) ++// Tracer.getInstance().deliver(span1); ++// ++// assertTrue("Updates not written in table", latch.await(100, TimeUnit.SECONDS)); ++// ++// // start a reader ++// validateTraces(spans, conn, traceid, tracingTableName); ++// } ++// ++// private void validateTraces(List<Span> spans, Connection conn, long traceid, String tableName) ++// throws Exception { ++// TraceReader reader = new TraceReader(conn, tableName); ++// Collection<TraceHolder> traces = reader.readAll(1); ++// assertEquals("Got an unexpected number of traces!", 1, traces.size()); ++// // make sure the trace matches what we wrote ++// TraceHolder trace = traces.iterator().next(); ++// assertEquals("Got an unexpected traceid", traceid, trace.traceid); ++// assertEquals("Got an unexpected number of spans", spans.size(), trace.spans.size()); ++// ++// validateTrace(spans, trace); ++// } ++// ++// /** ++// * @param spans ++// * @param trace ++// */ ++// private void validateTrace(List<Span> spans, TraceHolder trace) { ++// // drop each span into a sorted list so we get the expected ordering ++// Iterator<SpanInfo> spanIter = trace.spans.iterator(); ++// for (Span span : spans) { ++// SpanInfo spanInfo = spanIter.next(); ++// LOGGER.info("Checking span:\n" + spanInfo); ++// ++// long parentId = span.getParentId(); ++// if(parentId == Span.ROOT_SPAN_ID) { ++// assertNull("Got a parent, but it was a root span!", spanInfo.parent); ++// } else { ++// assertEquals("Got an unexpected parent span id", parentId, spanInfo.parent.id); ++// } ++// ++// assertEquals("Got an unexpected start time", span.getStartTimeMillis(), spanInfo.start); ++// assertEquals("Got an unexpected end time", span.getStopTimeMillis(), spanInfo.end); ++// ++// int annotationCount = 0; ++// for(Map.Entry<byte[], byte[]> entry : span.getKVAnnotations().entrySet()) { ++// int count = annotationCount++; ++// assertEquals("Didn't get expected annotation", count + " - " + Bytes.toString(entry.getValue()), ++// spanInfo.annotations.get(count)); ++// } ++// assertEquals("Didn't get expected number of annotations", annotationCount, ++// spanInfo.annotationCount); ++// } ++// } ++// ++// private void assertAnnotationPresent(final String annotationKey, final String annotationValue, Connection conn) throws Exception { ++// boolean tracingComplete = checkStoredTraces(conn, new TraceChecker(){ ++// @Override ++// public boolean foundTrace(TraceHolder currentTrace) { ++// return currentTrace.toString().contains(annotationKey + " - " + annotationValue); ++// } ++// }); ++// ++// assertTrue("Didn't find the custom annotation in the tracing", tracingComplete); ++// } ++// ++// private boolean checkStoredTraces(Connection conn, TraceChecker checker) throws Exception { ++// TraceReader reader = new TraceReader(conn, tracingTableName); ++// int retries = 0; ++// boolean found = false; ++// outer: while (retries < MAX_RETRIES) { ++// Collection<TraceHolder> traces = reader.readAll(100); ++// for (TraceHolder trace : traces) { ++// LOGGER.info("Got trace: " + trace); ++// found = checker.foundTrace(trace); ++// if (found) { ++// break outer; ++// } ++// for (SpanInfo span : trace.spans) { ++// found = checker.foundTrace(trace, span); ++// if (found) { ++// break outer; ++// } ++// } ++// } ++// LOGGER.info("====== Waiting for tracing updates to be propagated ========"); ++// Thread.sleep(1000); ++// retries++; ++// } ++// return found; ++// } ++// ++// private abstract class TraceChecker { ++// public boolean foundTrace(TraceHolder currentTrace) { ++// return false; ++// } ++// ++// public boolean foundTrace(TraceHolder currentTrace, SpanInfo currentSpan) { ++// return false; ++// } ++// } + + } +diff --git a/phoenix-core/src/test/java/org/apache/phoenix/metrics/LoggingSink.java b/phoenix-core/src/test/java/org/apache/phoenix/metrics/LoggingSink.java +deleted file mode 100644 +index d2bccb78c..000000000 +--- a/phoenix-core/src/test/java/org/apache/phoenix/metrics/LoggingSink.java ++++ /dev/null +@@ -1,60 +0,0 @@ +-/** +- * 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.phoenix.metrics; +- +-import org.apache.commons.configuration2.SubsetConfiguration; +-import org.apache.hadoop.metrics2.AbstractMetric; +-import org.apache.hadoop.metrics2.MetricsRecord; +-import org.apache.hadoop.metrics2.MetricsSink; +-import org.apache.phoenix.trace.TracingUtils; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-/** +- * Simple sink that just logs the output of all the metrics that start with +- * {@link org.apache.phoenix.trace.TracingUtils#METRIC_SOURCE_KEY} +- */ +-public class LoggingSink implements MetricsSink { +- +- private static final Logger LOGGER = LoggerFactory.getLogger(LoggingSink.class); +- +- @Override +- public void init(SubsetConfiguration config) { +- } +- +- @Override +- public void putMetrics(MetricsRecord record) { +- // we could wait until flush, but this is a really lightweight process, so we just write +- // them +- // as soon as we get them +- if (!LOGGER.isDebugEnabled()) { +- return; +- } +- LOGGER.debug("Found record:" + record.name()); +- for (AbstractMetric metric : record.metrics()) { +- // just print the metric we care about +- if (metric.name().startsWith(TracingUtils.METRIC_SOURCE_KEY)) { +- LOGGER.debug("\t metric:" + metric); +- } +- } +- } +- +- @Override +- public void flush() { +- } +-} +\ No newline at end of file +diff --git a/phoenix-core/src/test/java/org/apache/phoenix/trace/TraceSpanReceiverTest.java b/phoenix-core/src/test/java/org/apache/phoenix/trace/TraceSpanReceiverTest.java +deleted file mode 100644 +index bba1dd847..000000000 +--- a/phoenix-core/src/test/java/org/apache/phoenix/trace/TraceSpanReceiverTest.java ++++ /dev/null +@@ -1,82 +0,0 @@ +-/** +- * 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.phoenix.trace; +- +-import static org.junit.Assert.assertTrue; +- +-import org.apache.hadoop.hbase.util.Bytes; +-import org.apache.htrace.Span; +-import org.apache.htrace.Trace; +-import org.apache.htrace.Tracer; +-import org.apache.htrace.impl.MilliSpan; +-import org.junit.BeforeClass; +-import org.junit.Test; +- +-/** +- * Test that the @{link TraceSpanReceiver} correctly handles different kinds of traces +- */ +-public class TraceSpanReceiverTest { +- +- @BeforeClass +- public static synchronized void setup() throws Exception{ +- } +- +- /** +- * For PHOENIX-1126, Phoenix originally assumed all the annotation values were integers, +- * but HBase writes some strings as well, so we need to be able to handle that too +- */ +- @Test +- public void testNonIntegerAnnotations(){ +- Span span = getSpan(); +- // make sure its less than the length of an integer +- +- byte[] value = Bytes.toBytes("a"); +- byte[] someInt = Bytes.toBytes(1); +- assertTrue(someInt.length > value.length); +- +- // an annotation that is not an integer +- span.addKVAnnotation(Bytes.toBytes("key"), value); +- +- // Create the sink and write the span +- TraceSpanReceiver source = new TraceSpanReceiver(); +- Trace.addReceiver(source); +- +- Tracer.getInstance().deliver(span); +- +- assertTrue(source.getNumSpans() == 1); +- } +- +- @Test +- public void testIntegerAnnotations(){ +- Span span = getSpan(); +- +- // add annotation through the phoenix interfaces +- TracingUtils.addAnnotation(span, "message", 10); +- +- TraceSpanReceiver source = new TraceSpanReceiver(); +- Trace.addReceiver(source); +- +- Tracer.getInstance().deliver(span); +- assertTrue(source.getNumSpans() == 1); +- } +- +- private Span getSpan(){ +- // Spans with Trace Id as 0 will be rejected (See PHOENIX-3767 for details) +- return new MilliSpan("test span", 1, 1 , 2, "pid"); +- } +-} +diff --git a/phoenix-opentelemetry-trace-sampler/pom.xml b/phoenix-opentelemetry-trace-sampler/pom.xml +new file mode 100644 +index 000000000..be3f73be6 +--- /dev/null ++++ b/phoenix-opentelemetry-trace-sampler/pom.xml +@@ -0,0 +1,123 @@ ++<?xml version="1.0" encoding="UTF-8"?> ++<!-- ++ 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. ++--> ++<project xmlns="http://maven.apache.org/POM/4.0.0" ++ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ++ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ++ <modelVersion>4.0.0</modelVersion> ++ <parent> ++ <groupId>org.apache.phoenix</groupId> ++ <artifactId>phoenix</artifactId> ++ <version>5.3.0-SNAPSHOT</version> ++ </parent> ++ ++ <artifactId>phoenix-opentelemetry-trace-sampler</artifactId> ++ <packaging>jar</packaging> ++ <name>Phoenix Opentelemetry Trace Sampler</name> ++ ++ <properties> ++ ++ <jacoco.instruction.coverage.percentage>0.650</jacoco.instruction.coverage.percentage> ++ <jacoco.branch.coverage.percentage>0.500</jacoco.branch.coverage.percentage> ++ </properties> ++ ++ <dependencies> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-sdk</artifactId> ++ </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-sdk-extension-autoconfigure</artifactId> ++ </dependency> ++ </dependencies> ++ ++ <build> ++ <plugins> ++ <plugin> ++ <groupId>org.codehaus.mojo</groupId> ++ <artifactId>build-helper-maven-plugin</artifactId> ++ </plugin> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-failsafe-plugin</artifactId> ++ </plugin> ++<!-- <plugin>--> ++<!-- <artifactId>maven-dependency-plugin</artifactId>--> ++<!-- <configuration>--> ++<!-- <ignoredUnusedDeclaredDependencies>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.hbase.thirdparty:hbase-shaded-miscellaneous--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- javax.activation:activation--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- javax.xml.bind:jaxb-api--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.glassfish.jaxb:jax-runtime--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.hbase:hbase-it--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.phoenix:phoenix-hbase-compat-${hbase.compat.version}--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.hbase:hbase-testing-util--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.logging.log4j:log4j-api--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.logging.log4j:log4j-core--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.logging.log4j:log4j-slf4j-impl--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- <ignoredUnusedDeclaredDependency>--> ++<!-- org.apache.logging.log4j:log4j-1.2-api--> ++<!-- </ignoredUnusedDeclaredDependency>--> ++<!-- </ignoredUnusedDeclaredDependencies>--> ++<!-- <ignoredUsedUndeclaredDependencies>--> ++<!-- <ignoredUsedUndeclaredDependency>--> ++<!-- jakarta.xml.bind:jakarta.xml.bind-api--> ++<!-- </ignoredUsedUndeclaredDependency>--> ++<!-- </ignoredUsedUndeclaredDependencies>--> ++<!-- </configuration>--> ++<!-- </plugin>--> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-compiler-plugin</artifactId> ++ </plugin> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-surefire-plugin</artifactId> ++ <configuration> ++ <workingDirectory>${java.io.tmpdir}</workingDirectory> ++ <forkCount>1</forkCount> ++ <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> ++ </configuration> ++ </plugin> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-resources-plugin</artifactId> ++ </plugin> ++ </plugins> ++ </build> ++</project> +diff --git a/phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSampler.java b/phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSampler.java +new file mode 100644 +index 000000000..13cba142f +--- /dev/null ++++ b/phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSampler.java +@@ -0,0 +1,154 @@ ++/* ++ * 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.phoenix.trace; ++ ++import java.text.DecimalFormat; ++import java.text.DecimalFormatSymbols; ++import java.util.List; ++ ++import io.opentelemetry.api.common.AttributeKey; ++import io.opentelemetry.api.common.Attributes; ++import io.opentelemetry.api.internal.OtelEncodingUtils; ++import io.opentelemetry.api.trace.Span; ++import io.opentelemetry.api.trace.SpanContext; ++import io.opentelemetry.api.trace.SpanKind; ++import io.opentelemetry.context.Context; ++import io.opentelemetry.sdk.trace.data.LinkData; ++import io.opentelemetry.sdk.trace.samplers.Sampler; ++import io.opentelemetry.sdk.trace.samplers.SamplingResult; ++ ++/** ++ * This sampler works mostly like "parentbased_traceidratio", and takes much of the code from ++ * TraceIdRatioBasedSampler. ++ * ++ * It there is a valid parent span, it will use its isSampled flag. ++ * ++ * If there is no valid parent span (i.e. this is the root span), then it will honor the ++ * "sampling.priority" hint, sampling if its value is 1 or greater, and not otherwise. ++ * ++ * If there is no valid parent span, and the hint is not set, it behaves like ++ * TraceIdRatioBasedSampler. ++ */ ++public class PhoenixHintableSampler implements Sampler { ++ ++ private static final SamplingResult POSITIVE_SAMPLING_RESULT = SamplingResult.recordAndSample(); ++ ++ private static final SamplingResult NEGATIVE_SAMPLING_RESULT = SamplingResult.drop(); ++ ++ // We could use Boolean, but we're trying to mimic to the Opentracing hint behaviour ++ private static final AttributeKey<Long> SAMPLING_PRIORITY_ATTRIBUTE_KEY = ++ AttributeKey.longKey("sampling.priority"); ++ ++ private final long idUpperBound; ++ private final String description; ++ ++ static PhoenixHintableSampler create(double ratio) { ++ System.err.println("XXXX PhoenixHintableSampler.create ratio:" + ratio); ++ if (ratio < 0.0 || ratio > 1.0) { ++ throw new IllegalArgumentException("ratio must be in range [0.0, 1.0]"); ++ } ++ long idUpperBound; ++ // Special case the limits, to avoid any possible issues with lack of precision across ++ // double/long boundaries. For probability == 0.0, we use Long.MIN_VALUE as this guarantees ++ // that we will never sample a trace, even in the case where the id == Long.MIN_VALUE, since ++ // Math.Abs(Long.MIN_VALUE) == Long.MIN_VALUE. ++ if (ratio == 0.0) { ++ idUpperBound = Long.MIN_VALUE; ++ } else if (ratio == 1.0) { ++ idUpperBound = Long.MAX_VALUE; ++ } else { ++ idUpperBound = (long) (ratio * Long.MAX_VALUE); ++ } ++ return new PhoenixHintableSampler(ratio, idUpperBound); ++ } ++ ++ PhoenixHintableSampler(double ratio, long idUpperBound) { ++ this.idUpperBound = idUpperBound; ++ description = "PhoenixHintableSampler{" + decimalFormat(ratio) + "}"; ++ } ++ ++ @Override ++ public SamplingResult shouldSample(Context parentContext, String traceId, String name, ++ SpanKind spanKind, Attributes attributes, List<LinkData> parentLinks) { ++ ++ SpanContext parentSpanContext = Span.fromContext(parentContext).getSpanContext(); ++ if (parentSpanContext.isValid()) { ++ if (parentSpanContext.isSampled()) { ++ return POSITIVE_SAMPLING_RESULT; ++ } else { ++ return NEGATIVE_SAMPLING_RESULT; ++ } ++ } ++ ++ Long hint = attributes.get(SAMPLING_PRIORITY_ATTRIBUTE_KEY); ++ if (hint != null) { ++ if (hint <= 0) { ++ return NEGATIVE_SAMPLING_RESULT; ++ } else { ++ return POSITIVE_SAMPLING_RESULT; ++ } ++ } ++ ++ // Always sample if we are within probability range. This is true even for child spans (that ++ // may have had a different sampling samplingResult made) to allow for different sampling ++ // policies, ++ // and dynamic increases to sampling probabilities for debugging purposes. ++ // Note use of '<' for comparison. This ensures that we never sample for probability == 0.0, ++ // while allowing for a (very) small chance of *not* sampling if the id == Long.MAX_VALUE. ++ // This is considered a reasonable tradeoff for the simplicity/performance requirements ++ // (this ++ // code is executed in-line for every Span creation). ++ return Math.abs(getTraceIdRandomPart(traceId)) < idUpperBound ? POSITIVE_SAMPLING_RESULT ++ : NEGATIVE_SAMPLING_RESULT; ++ } ++ ++ @Override ++ public String getDescription() { ++ return description; ++ } ++ ++ @Override ++ public boolean equals(Object obj) { ++ if (!(obj instanceof PhoenixHintableSampler)) { ++ return false; ++ } ++ PhoenixHintableSampler that = (PhoenixHintableSampler) obj; ++ return idUpperBound == that.idUpperBound; ++ } ++ ++ @Override ++ public int hashCode() { ++ return Long.hashCode(idUpperBound); ++ } ++ ++ @Override ++ public String toString() { ++ return getDescription(); ++ } ++ ++ // Visible for testing ++ long getIdUpperBound() { ++ return idUpperBound; ++ } ++ ++ private static long getTraceIdRandomPart(String traceId) { ++ return OtelEncodingUtils.longFromBase16String(traceId, 16); ++ } ++ ++ private static String decimalFormat(double value) { ++ DecimalFormatSymbols decimalFormatSymbols = DecimalFormatSymbols.getInstance(); ++ decimalFormatSymbols.setDecimalSeparator('.'); ++ ++ DecimalFormat decimalFormat = new DecimalFormat("0.000000", decimalFormatSymbols); ++ return decimalFormat.format(value); ++ } ++ ++} +diff --git a/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java b/phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSamplerProvider.java +similarity index 59% +rename from phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java +rename to phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSamplerProvider.java +index 9c539c3bb..8bfb36914 100644 +--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java ++++ b/phoenix-opentelemetry-trace-sampler/src/main/java/org/apache/phoenix/trace/PhoenixHintableSamplerProvider.java +@@ -17,19 +17,21 @@ + */ + package org.apache.phoenix.trace; + +-import org.apache.hadoop.metrics2.MetricsSink; +-import org.apache.phoenix.metrics.Metrics; ++import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties; ++import io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSamplerProvider; ++import io.opentelemetry.sdk.trace.samplers.Sampler; + +-/** +- * +- */ +-public class TracingTestUtil { ++public class PhoenixHintableSamplerProvider implements ConfigurableSamplerProvider { + +- public static void registerSink(MetricsSink sink, String name){ +- Metrics.initialize().register(name, "test sink gets logged", sink); ++ @Override ++ public Sampler createSampler(ConfigProperties config) { ++ double ratio = config.getDouble("otel.traces.sampler.arg", 1.0d); ++ return PhoenixHintableSampler.create(ratio); + } + +- public static void unregisterSink(String name){ +- Metrics.initialize().unregisterSource(name); ++ @Override ++ public String getName() { ++ return "phoenix_hintable_sampler"; + } ++ + } +diff --git a/phoenix-opentelemetry-trace-sampler/src/main/resources/META-INF/services/io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSamplerProvider b/phoenix-opentelemetry-trace-sampler/src/main/resources/META-INF/services/io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSamplerProvider +new file mode 100644 +index 000000000..9a718dba7 +--- /dev/null ++++ b/phoenix-opentelemetry-trace-sampler/src/main/resources/META-INF/services/io.opentelemetry.sdk.autoconfigure.spi.traces.ConfigurableSamplerProvider +@@ -0,0 +1 @@ ++org.apache.phoenix.trace.PhoenixHintableSamplerProvider +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/README.md b/phoenix-tracing-webapp/README.md +deleted file mode 100755 +index 458d71c8e..000000000 +--- a/phoenix-tracing-webapp/README.md ++++ /dev/null +@@ -1,15 +0,0 @@ +-# TracingWebApp +-1. Build the web application- +- `mvn clean install` +- +-2. Start the TracingWebApp +- `java -jar target/phoenix-tracing-webapp-<version>-runnable.jar` +- +-3. View the Content - +- *http://localhost:8864/* +- +- ###Note +- You can set the port of the trace app by -Dphoenix.traceserver.http.port={portNo} +- +- eg: +- `-Dphoenix.traceserver.http.port=8887` server will start in 8887 +diff --git a/phoenix-tracing-webapp/pom.xml b/phoenix-tracing-webapp/pom.xml +deleted file mode 100755 +index 2a7bfb939..000000000 +--- a/phoenix-tracing-webapp/pom.xml ++++ /dev/null +@@ -1,207 +0,0 @@ +-<?xml version="1.0" encoding="UTF-8"?> +-<!-- +- 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. +---> +-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +- <modelVersion>4.0.0</modelVersion> +- +- <parent> +- <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix</artifactId> +- <version>5.3.0-SNAPSHOT</version> +- </parent> +- +- <artifactId>phoenix-tracing-webapp</artifactId> +- <name>Phoenix - Tracing Web Application</name> +- <description>Tracing web application will visualize the phoenix traces</description> +- +- <properties> +- <!-- tracing webapp only versions --> +- <servlet.api.version>3.1.0</servlet.api.version> +- </properties> +- +- +- <dependencies> +- <dependency> +- <groupId>javax.servlet</groupId> +- <artifactId>javax.servlet-api</artifactId> +- <version>${servlet.api.version}</version> +- </dependency> +- <dependency> +- <groupId>org.eclipse.jetty</groupId> +- <artifactId>jetty-server</artifactId> +- <version>${jetty.version}</version> +- </dependency> +- <dependency> +- <groupId>org.eclipse.jetty</groupId> +- <artifactId>jetty-util</artifactId> +- <version>${jetty.version}</version> +- </dependency> +- <dependency> +- <groupId>org.eclipse.jetty</groupId> +- <artifactId>jetty-webapp</artifactId> +- <version>${jetty.version}</version> +- </dependency> +- <dependency> +- <groupId>org.slf4j</groupId> +- <artifactId>slf4j-api</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.logging.log4j</groupId> +- <artifactId>log4j-api</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.logging.log4j</groupId> +- <artifactId>log4j-core</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.logging.log4j</groupId> +- <artifactId>log4j-slf4j-impl</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.logging.log4j</groupId> +- <artifactId>log4j-1.2-api</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix-core</artifactId> +- <scope>provided</scope> +- </dependency> +- <dependency> +- <groupId>org.apache.hadoop</groupId> +- <artifactId>hadoop-common</artifactId> +- </dependency> +- <dependency> +- <groupId>org.apache.hbase</groupId> +- <artifactId>hbase-common</artifactId> +- </dependency> +- </dependencies> +- +- <build> +- <plugins> +- <plugin> +- <groupId>org.apache.maven.plugins</groupId> +- <artifactId>maven-failsafe-plugin</artifactId> +- <configuration> +- <skipITs>true</skipITs> +- </configuration> +- </plugin> +- <plugin> +- <groupId>org.apache.maven.plugins</groupId> +- <artifactId>maven-surefire-plugin</artifactId> +- <configuration> +- <skip>true</skip> +- </configuration> +- </plugin> +- <plugin> +- <groupId>org.codehaus.mojo</groupId> +- <artifactId>build-helper-maven-plugin</artifactId> +- </plugin> +- <plugin> +- <artifactId>maven-assembly-plugin</artifactId> +- <executions> +- <execution> +- <id>runnable</id> +- <phase>package</phase> +- <goals> +- <goal>single</goal> +- </goals> +- <configuration> +- <attach>true</attach> +- <archive> +- <manifest> +- <addClasspath>true</addClasspath> +- <mainClass>org.apache.phoenix.tracingwebapp.http.Main</mainClass> +- </manifest> +- </archive> +- <finalName>${project.artifactId}-${project.version}</finalName> +- <descriptors> +- <descriptor>src/build/trace-server-runnable.xml</descriptor> +- </descriptors> +- </configuration> +- </execution> +- </executions> +- </plugin> +- <plugin> +- <groupId>org.apache.rat</groupId> +- <artifactId>apache-rat-plugin</artifactId> +- <configuration> +- <excludes> +- <exclude>**/webapp/**</exclude> +- <exclude>**/*.xml</exclude> +- <exclude>**/README.md</exclude> +- </excludes> +- </configuration> +- </plugin> +- </plugins> +- </build> +- <profiles> +- <profile> +- <!-- These tests fail with recent SSL libraries. See PHOENIX-6784. +- You need to be using an older Linux distro, or use the +- export OPENSSL_CONF=/dev/null +- workaround to run these tests +- --> +- <id>jasmin-tests</id> +- <activation> +- <property> +- <name>jasmine-tests</name> +- </property> +- </activation> +- <build> +- <plugins> +- <plugin> +- <groupId>com.github.searls</groupId> +- <artifactId>jasmine-maven-plugin</artifactId> +- <executions> +- <execution> +- <goals> +- <goal>test</goal> +- </goals> +- </execution> +- </executions> +- <configuration> +- <phantomjs> +- <version>2.1.1</version> +- </phantomjs> +- <!--browserVersion>FIREFOX_16</browserVersion--> +- <preloadSources combine.children="append"> +- <source>${project.basedir}/src/main/webapp/js/lib/jquery.min.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/angular.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/angular-route.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/angular-mocks.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/ng-google-chart.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/bootstrap.js</source> +- <source>${project.basedir}/src/main/webapp/js/lib/ui-bootstrap-tpls.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/accordion-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/timeline-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/search-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/dependency-tree-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/app.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/list-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/trace-count-controllers.js</source> +- <source>${project.basedir}/src/main/webapp/js/controllers/trace-distribution-controllers.js</source> +- </preloadSources> +- <!--jsSrcDir>${basedir}/src/main/webapp/js/controllers</jsSrcDir--> +- <jsTestSrcDir>${basedir}/src/test/webapp/js/specs</jsTestSrcDir> +- </configuration> +- </plugin> +- </plugins> +- </build> +- </profile> +- </profiles> +- </project> +diff --git a/phoenix-tracing-webapp/src/build/trace-server-runnable.xml b/phoenix-tracing-webapp/src/build/trace-server-runnable.xml +deleted file mode 100755 +index 92d2a1798..000000000 +--- a/phoenix-tracing-webapp/src/build/trace-server-runnable.xml ++++ /dev/null +@@ -1,74 +0,0 @@ +-<?xml version='1.0'?> +-<!-- +- +- 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. +- +---> +- +-<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" +- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +- xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> +- <id>runnable</id> +- <formats> +- <format>jar</format> +- </formats> +- <includeBaseDirectory>false</includeBaseDirectory> +- <containerDescriptorHandlers> +- <containerDescriptorHandler> +- <!-- +- aggregate SPI's so that things like HDFS FileSystem works in uberjar +- http://docs.oracle.com/javase/tutorial/sound/SPI-intro.html +- --> +- <handlerName>metaInf-services</handlerName> +- </containerDescriptorHandler> +- </containerDescriptorHandlers> +- <dependencySets> +- <dependencySet> +- <unpack>true</unpack> +- <outputDirectory>/</outputDirectory> +- <includes> +- <include>org.apache.phoenix:phoenix-tracing-webapp</include> +- <include>org.apache.hbase:hbase-common</include> +- <include>org.apache.hadoop:hadoop-common</include> +- <include>javax.servlet:javax.servlet-api</include> +- <include>org.eclipse.jetty:*</include> +- <include>org.slf4j:slf4j-api</include> +- <include>org.slf4j:slf4j-log4j12</include> +- <include>log4j:log4j</include> +- <include>com.fasterxml.jackson.core:jackson-databind</include> +- <include>com.fasterxml.woodstox:woodstox-core</include> +- <include>org.codehaus.woodstox:stax2-api</include> +- <include>com.google.guava:guava</include> +- <include>commons-collections:commons-collections</include> +- <include>commons-cli:commons-cli</include> +- </includes> +- </dependencySet> +- </dependencySets> +- <fileSets> +- <fileSet> +- <directory>src/main/webapp</directory> +- </fileSet> +- </fileSets> +- <files> +- <file> +- <source>README.md</source> +- <outputDirectory>/</outputDirectory> +- <filtered>true</filtered> +- </file> +- </files> +-</assembly> +diff --git a/phoenix-tracing-webapp/src/main/config/checkstyle/checker.xml b/phoenix-tracing-webapp/src/main/config/checkstyle/checker.xml +deleted file mode 100755 +index 8e840543c..000000000 +--- a/phoenix-tracing-webapp/src/main/config/checkstyle/checker.xml ++++ /dev/null +@@ -1,277 +0,0 @@ +-<?xml version="1.0"?> +-<!-- +-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. +---> +- +-<!-- +- This version of checkstyle is based on the Apache Calcite checkstyle +- checkstyle configuration, which in turn is based on Giraph and Hadoop and +- common-math configurations. +- +- The documentation for checkstyle is available at +- +- http://checkstyle.sourceforge.net +---> +- +-<!DOCTYPE module PUBLIC +- "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" +- "https://checkstyle.org/dtds/configuration_1_3.dtd"> +- +-<!-- Calcite customization of default Checkstyle behavior --> +-<module name="Checker"> +- <property name="localeLanguage" value="en"/> +- +- <!-- Checks for headers --> +- <!-- See http://checkstyle.sf.net/config_header.html --> +- <!-- Verify that EVERY source file has the appropriate license --> +- <module name="Header"> +- <property name="headerFile" value="${checkstyle.header.file}"/> +- </module> +- +- <!-- Checks for Javadoc comments (checker). --> +- <!-- See http://checkstyle.sf.net/config_javadoc.html --> +- <!-- Require package javadoc --> +- <module name="JavadocPackage"/> +- +- <!-- Miscellaneous other checks (checker). --> +- <!-- See http://checkstyle.sf.net/config_misc.html --> +- <!-- Require files to end with newline characters --> +- <module name="NewlineAtEndOfFile"> +- <property name="lineSeparator" value="lf"/> +- </module> +- +- <!-- Checks for whitespace (tree walker) --> +- <!-- See http://checkstyle.sf.net/config_whitespace.html --> +- <!-- No tabs allowed! --> +- <module name="FileTabCharacter"/> +- +- <!-- Checks for Size Violations. --> +- <!-- See http://checkstyle.sf.net/config_sizes.html --> +- <!-- Lines cannot exceed 100 chars, except if they are hyperlinks +- or strings (possibly preceded by '+' and followed by say '),'. --> +- <module name="LineLength"> +- <property name="max" value="100"/> +- <property name="ignorePattern" value="^import|@see|@link|@BaseMessage|href|^[ +]*".*"[);,]*$"/> +- </module> +- +- <module name="TreeWalker"> +- +- <!-- Checks for blocks. You know, those {}'s --> +- <!-- See http://checkstyle.sf.net/config_blocks.html --> +- <!-- No empty blocks (i.e. catch); must contain at least a comment --> +- <module name="EmptyBlock"> +- <property name="option" value="text"/> +- </module> +- <module name="AvoidNestedBlocks"> +- <property name="allowInSwitchCase" value="true"/> +- </module> +- <module name="LeftCurly"/> +- <!-- No if/else/do/for/while without braces --> +- <module name="NeedBraces"/> +- <module name="RightCurly"/> +- +- <!-- Checks for class design --> +- <!-- See http://checkstyle.sf.net/config_design.html --> +- <!-- Utility class should not be instantiated, they must have a +- private constructor --> +- <module name="HideUtilityClassConstructor"/> +- +- <!-- Checks for common coding problems --> +- <!-- See http://checkstyle.sf.net/config_coding.html --> +- <module name="EmptyStatement"/> +- <!-- Require hash code override when equals is --> +- <module name="EqualsHashCode"/> +- <!-- Disallow unnecessary instantiation of Boolean, String --> +- <module name="IllegalInstantiation"> +- <property name="classes" value="java.lang.Boolean, java.lang.String"/> +- </module> +- <!-- Switch statements should be complete and with independent cases --> +- <module name="FallThrough"/> +- <module name="SimplifyBooleanExpression"/> +- <module name="SimplifyBooleanReturn"/> +- <!-- Only one statement per line allowed --> +- <module name="OneStatementPerLine"/> +- <!-- Don't add up parentheses when they are not required --> +- <module name="UnnecessaryParentheses" /> +- <!-- Don't use = or != for string comparisons --> +- <module name="StringLiteralEquality" /> +- <!-- Don't declare multiple variables in the same statement --> +- <module name="MultipleVariableDeclarations" /> +- <!-- String literals more than one character long should not be +- repeated several times --> +- <!-- the "unchecked" string is also accepted to allow +- @SuppressWarnings("unchecked") --> +- <!-- Disabling for now until we have a better ignoreStringsRegexp --> +- <!-- +- <module name="MultipleStringLiterals" > +- <property name="ignoreStringsRegexp" value='^(("")|(".")|("unchecked"))$'/> +- </module> +- --> +- +- <!-- Checks for imports --> +- <!-- See http://checkstyle.sf.net/config_import.html --> +- <module name="RedundantImport"/> +- <!-- Import should be explicit, and only from pure java packages. +- But we allow imports that are only used in javadoc. --> +- <module name="UnusedImports"> +- <property name="processJavadoc" value="true"/> +- </module> +- <module name="IllegalImport" /> +- <module name="AvoidStarImport" /> +- <module name="ImportOrder"> +- <property name="groups" value="java,javax,lib,shared,common,platform,org,com,io,net,scala,clover"/> +- <property name="ordered" value="true"/> +- <property name="separated" value="true"/> +- <property name="option" value="bottom"/> +- </module> +- +- <!-- Checks for Javadoc comments (tree walker). --> +- <!-- See http://checkstyle.sf.net/config_javadoc.html --> +- <!-- Javadoc must be formatted correctly --> +- <module name="JavadocStyle"> +- <property name="checkFirstSentence" value="false"/> +- </module> +- <!-- Must have class / interface header comments --> +- <module name="JavadocType"/> +- +- <!-- Miscellaneous other checks (tree walker). --> +- <!-- See http://checkstyle.sf.net/config_misc.html --> +- <!-- Java style arrays --> +- <module name="ArrayTypeStyle"/> +- <!-- Indentation --> +- <module name="Indentation"> +- <property name="caseIndent" value="0"/> +- <property name="basicOffset" value="4"/> +- <property name="braceAdjustment" value="0"/> +- </module> +- <!-- Turn this on to see what needs to be done +- <module name="TodoComment"/> +- --> +- <module name="UpperEll"/> +- +- <module name="OperatorWrap"/> +- +- <!-- Modifier Checks --> +- <!-- See http://checkstyle.sf.net/config_modifiers.html --> +- <!-- Use a consistent way to put modifiers --> +- <module name="ModifierOrder"/> +- <module name="RedundantModifier"/> +- +- <!-- Checks for Naming Conventions. --> +- <!-- See http://checkstyle.sf.net/config_naming.html --> +- <!-- Constant names should obey the traditional all uppercase +- naming convention --> +- <module name="ConstantName"/> +- <module name="LocalFinalVariableName"> +- <!-- Allow '_' except first. --> +- <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> +- </module> +- <module name="LocalVariableName"> +- <!-- Allow '_' except first. --> +- <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> +- </module> +- <module name="MemberName"/> +- <module name="MethodName"> +- <!-- Allow trailing '_', signifying private methods. +- Also allow '_' prefix, indicating disabled method or junit test. --> +- <property name="format" value="^_?[a-z][a-zA-Z0-9]*_?$"/> +- </module> +- <module name="PackageName"/> +- <module name="ParameterName"> +- <!-- Allow trailing '_'. --> +- <property name="format" value="^[a-z][a-zA-Z0-9]*_?$"/> +- </module> +- <module name="StaticVariableName"/> +- <module name="TypeName"/> +- +- <!-- Checks for regexp expressions. --> +- <!-- See http://checkstyle.sf.net/config_regexp.html --> +- +- <!-- No trailing whitespace --> +- <module name="Regexp"> +- <property name="format" value="[ \t]+$"/> +- <property name="illegalPattern" value="true"/> +- <property name="message" value="Trailing whitespace"/> +- </module> +- +- <!-- Authors should be in pom.xml file --> +- <module name="Regexp"> +- <property name="format" value="@author"/> +- <property name="illegalPattern" value="true"/> +- <property name="message" value="developers names should be in pom file"/> +- </module> +- +- <!-- No multi-line C-style comments except at start of line. --> +- <module name="Regexp"> +- <property name="format" value="^ +/\*[^*][^/]$"/> +- <property name="illegalPattern" value="true"/> +- <property name="message" value="C-style comment"/> +- </module> +- +- <module name="Regexp"> +- <property name="format" value="^ +/\*$"/> +- <property name="illegalPattern" value="true"/> +- <property name="message" value="C-style comment"/> +- </module> +- +- <!-- Over time, we will revise this down --> +- <module name="MethodLength"> +- <property name="max" value="390"/> +- </module> +- +- <!-- Checks for whitespace (tree walker) --> +- <!-- See http://checkstyle.sf.net/config_whitespace.html --> +- <module name="EmptyForIteratorPad"/> +- <!-- Spacing around methods --> +- <module name="MethodParamPad"> +- <property name="option" value="nospace"/> +- <property name="allowLineBreaks" value="true"/> +- </module> +- <!-- No whitespace before a token --> +- <module name="NoWhitespaceBefore"/> +- <!-- Whitespace after tokens is required --> +- <module name="WhitespaceAfter"/> +- <!-- Whitespace around tokens is required --> +- <module name="WhitespaceAround"> +- <property name="allowEmptyConstructors" value="true"/> +- <property name="allowEmptyMethods" value="true"/> +- </module> +- <module name="ParenPad"/> +- <module name="TypecastParenPad"/> +- <!-- No extra whitespace around types --> +- <module name="GenericWhitespace"/> +- +- <!-- Setup special comments to suppress specific checks from source files --> +- <module name="SuppressionCommentFilter"> +- <property name="offCommentFormat" value="CHECKSTYLE\: stop ([\w\|]+)"/> +- <property name="onCommentFormat" value="CHECKSTYLE\: resume ([\w\|]+)"/> +- <property name="checkFormat" value="$1"/> +- </module> +- +- <!-- Turn off all checks between OFF and ON --> +- <module name="SuppressionCommentFilter"> +- <property name="offCommentFormat" value="CHECKSTYLE\: OFF"/> +- <property name="onCommentFormat" value="CHECKSTYLE\: ON"/> +- </module> +- +- <!-- Turn off checks for the next N lines. --> +- <module name="SuppressWithNearbyCommentFilter"> +- <property name="commentFormat" value="CHECKSTYLE: +IGNORE (\d+)"/> +- <property name="influenceFormat" value="$1"/> +- </module> +- </module> +- +-</module> +diff --git a/phoenix-tracing-webapp/src/main/config/checkstyle/header.txt b/phoenix-tracing-webapp/src/main/config/checkstyle/header.txt +deleted file mode 100755 +index 2a4297155..000000000 +--- a/phoenix-tracing-webapp/src/main/config/checkstyle/header.txt ++++ /dev/null +@@ -1,16 +0,0 @@ +-/* +- * 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. +- */ +diff --git a/phoenix-tracing-webapp/src/main/config/checkstyle/suppressions.xml b/phoenix-tracing-webapp/src/main/config/checkstyle/suppressions.xml +deleted file mode 100755 +index 6662eca97..000000000 +--- a/phoenix-tracing-webapp/src/main/config/checkstyle/suppressions.xml ++++ /dev/null +@@ -1,46 +0,0 @@ +-<?xml version="1.0"?> +-<!DOCTYPE suppressions PUBLIC +- "-//Puppy Crawl//DTD Suppressions 1.1//EN" +- "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> +-<!-- +-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. +---> +-<suppressions> +- <!-- Suppress checks on generated files. --> +- <suppress checks="Header" files="CalciteResource.properties"/> +- <suppress checks=".*" files="org-apache-calcite-jdbc.properties"/> +- <suppress checks=".*" files="Foo.java"/> +- <suppress checks=".*" files=".*/target/maven-archiver/pom.properties"/> +- <suppress checks=".*" files="git.properties"/> +- <suppress checks=".*" files="trace.properties"/> +- <suppress checks=".*" files="release.properties"/> +- +- <!-- This file triggers https://github.com/checkstyle/checkstyle/issues/92, +- through no fault of its own. --> +- <suppress checks=".*" files="SqlSimpleParser.java"/> +- +- <!-- Don't complain about field names such as cust_id --> +- <suppress checks=".*Name" files="JdbcExample.java"/> +- +- <!-- Suppress JavadocPackage in the test packages --> +- <suppress checks="JavadocPackage" files="src[/\\]test[/\\]java[/\\]"/> +- +- <!-- And likewise in ubenchmark --> +- <suppress checks="JavadocPackage" files="StatementTest.java"/> +- +- <!-- Method names in Resource can have underscores --> +- <suppress checks="MethodName" files="CalciteResource.java"/> +-</suppressions> +diff --git a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/ConnectionFactory.java b/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/ConnectionFactory.java +deleted file mode 100644 +index b7a1df1ad..000000000 +--- a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/ConnectionFactory.java ++++ /dev/null +@@ -1,43 +0,0 @@ +-/* +- * 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.phoenix.tracingwebapp.http; +- +-import java.sql.Connection; +-import java.sql.DriverManager; +-import java.sql.SQLException; +- +-/** +-* +-* ConnectionFactory is to handle database connection +-* +-*/ +-public class ConnectionFactory { +- +- private static Connection con; +- //TODO : need to get port and host from configuration +- protected static String PHOENIX_HOST = "localhost"; +- protected static int PHOENIX_PORT = 2181; +- +- public static Connection getConnection() throws SQLException, ClassNotFoundException { +- if (con == null || con.isClosed()) { +- Class.forName("org.apache.phoenix.jdbc.PhoenixDriver"); +- con = DriverManager.getConnection("jdbc:phoenix:"+PHOENIX_HOST+":"+PHOENIX_PORT); +- } +- return con; +- } +-} +diff --git a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/EntityFactory.java b/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/EntityFactory.java +deleted file mode 100644 +index a17630de7..000000000 +--- a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/EntityFactory.java ++++ /dev/null +@@ -1,84 +0,0 @@ +-/* +- * 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.phoenix.tracingwebapp.http; +- +-import java.sql.Connection; +-import java.sql.PreparedStatement; +-import java.sql.ResultSet; +-import java.sql.ResultSetMetaData; +-import java.sql.SQLException; +-import java.util.ArrayList; +-import java.util.HashMap; +-import java.util.List; +-import java.util.Map; +- +-/** +- * EntityFactory is used to get results entities For SQL query +- */ +-public class EntityFactory { +- +- private String queryString; +- protected Connection connection; +- +- public EntityFactory(Connection connection, String queryString) { +- this.queryString = queryString; +- this.connection = connection; +- } +- +- public List<Map<String, Object>> findMultiple() +- throws SQLException { +- ResultSet rs = null; +- PreparedStatement ps = null; +- try { +- ps = this.connection.prepareStatement(this.queryString); +- rs = ps.executeQuery(); +- return getEntitiesFromResultSet(rs); +- } catch (SQLException e) { +- throw (e); +- } finally { +- if (rs != null) { +- rs.close(); +- } +- if (ps != null) { +- ps.close(); +- } +- } +- } +- +- protected static List<Map<String, Object>> getEntitiesFromResultSet( +- ResultSet resultSet) throws SQLException { +- ArrayList<Map<String, Object>> entities = new ArrayList<>(); +- while (resultSet.next()) { +- entities.add(getEntityFromResultSet(resultSet)); +- } +- return entities; +- } +- +- protected static Map<String, Object> getEntityFromResultSet(ResultSet resultSet) +- throws SQLException { +- ResultSetMetaData metaData = resultSet.getMetaData(); +- int columnCount = metaData.getColumnCount(); +- Map<String, Object> resultsMap = new HashMap<>(); +- for (int i = 1; i <= columnCount; ++i) { +- String columnName = metaData.getColumnName(i).toLowerCase(); +- Object object = resultSet.getObject(i); +- resultsMap.put(columnName, object); +- } +- return resultsMap; +- } +- +-} +diff --git a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/Main.java b/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/Main.java +deleted file mode 100755 +index f420feda3..000000000 +--- a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/Main.java ++++ /dev/null +@@ -1,85 +0,0 @@ +-/* +- * 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.phoenix.tracingwebapp.http; +- +-import java.net.URL; +-import java.security.ProtectionDomain; +- +-import org.apache.hadoop.conf.Configured; +-import org.apache.hadoop.hbase.HBaseConfiguration; +-import org.apache.hadoop.util.Tool; +-import org.apache.hadoop.util.ToolRunner; +-import org.apache.log4j.BasicConfigurator; +-import org.slf4j.Logger; +-import org.slf4j.LoggerFactory; +- +-import org.eclipse.jetty.server.Server; +-import org.eclipse.jetty.webapp.WebAppContext; +- +-/** +- * tracing web app runner +- */ +-public final class Main extends Configured implements Tool { +- +- protected static final Logger LOGGER = LoggerFactory.getLogger(Main.class); +- public static final String PHONIX_DBSERVER_PORT_KEY = +- "phoenix.dbserver.port"; +- public static final int DEFAULT_DBSERVER_PORT = 2181; +- public static final String PHONIX_DBSERVER_HOST_KEY = +- "phoenix.dbserver.host"; +- public static final String DEFAULT_DBSERVER_HOST = "localhost"; +- public static final String TRACE_SERVER_HTTP_PORT_KEY = +- "phoenix.traceserver.http.port"; +- public static final int DEFAULT_HTTP_PORT = 8864; +- public static final String TRACE_SERVER_HTTP_JETTY_HOME_KEY = +- "phoenix.traceserver.http.home"; +- public static final String DEFAULT_HTTP_HOME = "/"; +- public static final String DEFAULT_WEBAPP_DIR_LOCATION = "src/main/webapp"; +- +- public static void main(String[] args) throws Exception { +- int ret = ToolRunner.run(HBaseConfiguration.create(), new Main(), args); +- System.exit(ret); +- } +- +- @Override +- public int run(String[] arg0) throws Exception { +- // logProcessInfo(getConf()); +- final int port = getConf().getInt(TRACE_SERVER_HTTP_PORT_KEY, +- DEFAULT_HTTP_PORT); +- BasicConfigurator.configure(); +- final String home = getConf().get(TRACE_SERVER_HTTP_JETTY_HOME_KEY, +- DEFAULT_HTTP_HOME); +- //setting up the embedded server +- Server server = new Server(port); +- WebAppContext root = new WebAppContext(); +- +- URL webAppDir = Thread.currentThread().getContextClassLoader().getResource(DEFAULT_WEBAPP_DIR_LOCATION); +- if (webAppDir == null) { +- throw new RuntimeException(String.format("No %s directory was found into the JAR file", DEFAULT_WEBAPP_DIR_LOCATION)); +- } +- +- root.setContextPath(home); +- root.setDescriptor(DEFAULT_WEBAPP_DIR_LOCATION + "/WEB-INF/web.xml"); +- root.setResourceBase(webAppDir.toURI().toString()); +- root.setParentLoaderPriority(true); +- server.setHandler(root); +- +- server.start(); +- server.join(); +- return 0; +- } +-} +diff --git a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/TraceServlet.java b/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/TraceServlet.java +deleted file mode 100755 +index db31d83a2..000000000 +--- a/phoenix-tracing-webapp/src/main/java/org/apache/phoenix/tracingwebapp/http/TraceServlet.java ++++ /dev/null +@@ -1,182 +0,0 @@ +-/* +- * 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.phoenix.tracingwebapp.http; +- +-import java.io.IOException; +-import java.io.PrintWriter; +- +-import javax.servlet.ServletException; +-import javax.servlet.http.HttpServlet; +-import javax.servlet.http.HttpServletRequest; +-import javax.servlet.http.HttpServletResponse; +- +-import org.apache.hadoop.conf.Configuration; +-import org.apache.hadoop.hbase.HBaseConfiguration; +-import org.apache.phoenix.query.QueryServices; +-import org.apache.phoenix.query.QueryServicesOptions; +-import org.apache.phoenix.util.JacksonUtil; +- +-import java.sql.Connection; +-import java.sql.SQLException; +-import java.util.List; +-import java.util.Map; +- +-/** +- * +- * Server to show trace information +- * +- */ +-public class TraceServlet extends HttpServlet { +- +- private static final long serialVersionUID = -354285100083055559L; +- private static Connection con; +- protected String DEFAULT_LIMIT = "25"; +- protected String DEFAULT_COUNTBY = "hostname"; +- protected String DESCRIPTION_COUNTBY = "description"; +- protected String LOGIC_AND = "AND"; +- protected String LOGIC_OR = "OR"; +- protected String TRACING_TABLE = "SYSTEM.TRACING_STATS"; +- +- @Override +- public void init() { +- Configuration conf = HBaseConfiguration.create(); +- TRACING_TABLE = +- conf.get(QueryServices.TRACING_STATS_TABLE_NAME_ATTRIB, +- QueryServicesOptions.DEFAULT_TRACING_STATS_TABLE_NAME); +- } +- +- protected void doGet(HttpServletRequest request, HttpServletResponse response) +- throws ServletException, IOException { +- +- //reading url params +- String action = request.getParameter("action"); +- String limit = request.getParameter("limit"); +- String traceid = request.getParameter("traceid"); +- String parentid = request.getParameter("parentid"); +- String jsonObject = "{}"; +- if ("getall".equals(action)) { +- jsonObject = getAll(limit); +- } else if ("getCount".equals(action)) { +- jsonObject = getCount(DESCRIPTION_COUNTBY); +- } else if ("getDistribution".equals(action)) { +- jsonObject = getCount(DEFAULT_COUNTBY); +- } else if ("searchTrace".equals(action)) { +- jsonObject = searchTrace(parentid, traceid, LOGIC_OR); +- } else { +- jsonObject = "{ \"Server\": \"Phoenix Tracing Web App\", \"API version\": 0.1 }"; +- } +- //response send as json +- response.setContentType("application/json"); +- String output = jsonObject; +- PrintWriter out = response.getWriter(); +- out.print(output); +- out.flush(); +- } +- +- //get all trace results with limit count +- protected String getAll(String limit) { +- String json = null; +- if(limit == null) { +- limit = DEFAULT_LIMIT; +- } +- try{ +- Long.parseLong(limit); +- } catch (NumberFormatException e) { +- throw new RuntimeException("The LIMIT passed to the query is not a number.", e); +- } +- String sqlQuery = "SELECT * FROM " + TRACING_TABLE + " LIMIT "+limit; +- json = getResults(sqlQuery); +- return getJson(json); +- } +- +- //get count on traces can pick on param to count +- protected String getCount(String countby) { +- String json = null; +- if(countby == null) { +- countby = DEFAULT_COUNTBY; +- } +- String sqlQuery = "SELECT "+countby+", COUNT(*) AS count FROM " + TRACING_TABLE + " GROUP BY "+countby+" HAVING COUNT(*) > 1 "; +- json = getResults(sqlQuery); +- return json; +- } +- +- //search the trace over parent id or trace id +- protected String searchTrace(String parentId, String traceId, String logic) { +- +- String json = null; +- String query = null; +- // Check the parent Id, trace id type or long or not. +- try { +- if (parentId != null) { +- Long.parseLong(parentId); +- } +- if (traceId != null) { +- Long.parseLong(traceId); +- } +- } catch (NumberFormatException e) { +- throw new RuntimeException("The passed parentId/traceId is not a number.", e); +- } +- if (logic != null && !logic.equals(LOGIC_AND) && !logic.equals(LOGIC_OR)) { +- throw new RuntimeException("Wrong logical operator passed to the query. Only " + LOGIC_AND + "," + LOGIC_OR + " are allowed."); +- } +- if (parentId != null && traceId != null) { +- query = "SELECT * FROM " + TRACING_TABLE + " WHERE parent_id=" + parentId + " " + logic + " trace_id=" + traceId; +- } else if (parentId != null && traceId == null) { +- query = "SELECT * FROM " + TRACING_TABLE + " WHERE parent_id=" + parentId; +- } else if (parentId == null && traceId != null) { +- query = "SELECT * FROM " + TRACING_TABLE + " WHERE trace_id=" + traceId; +- } +- json = getResults(query); +- return getJson(json); +- } +- +- //return json string +- protected String getJson(String json) { +- String output = json.toString().replace("_id\":", "_id\":\"") +- .replace(",\"hostname", "\",\"hostname") +- .replace(",\"parent", "\",\"parent") +- .replace(",\"end", "\",\"end"); +- return output; +- } +- +- //get results with passing sql query +- protected String getResults(String sqlQuery) { +- String json = null; +- if (sqlQuery == null) { +- json = "{error:true,msg:'SQL was null'}"; +- } else { +- try { +- con = ConnectionFactory.getConnection(); +- EntityFactory nutrientEntityFactory = new EntityFactory(con, sqlQuery); +- List<Map<String, Object>> nutrients = nutrientEntityFactory +- .findMultiple(); +- json = JacksonUtil.getObjectWriter().writeValueAsString(nutrients); +- } catch (Exception e) { +- json = "{error:true,msg:'Server Error:" + e.getMessage() + "'}"; +- } finally { +- if (con != null) { +- try { +- con.close(); +- } catch (SQLException e) { +- json = "{error:true,msg:'SQL Serrver Error:" + e.getMessage() + "'}"; +- } +- } +- } +- } +- return json; +- } +-} +diff --git a/phoenix-tracing-webapp/src/main/webapp/WEB-INF/web.xml b/phoenix-tracing-webapp/src/main/webapp/WEB-INF/web.xml +deleted file mode 100755 +index ed4ced2b5..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/WEB-INF/web.xml ++++ /dev/null +@@ -1,15 +0,0 @@ +-<?xml version="1.0" encoding="ISO-8859-1"?> +-<web-app +- xmlns="http://java.sun.com/xml/ns/javaee" +- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" +- version="2.5"> +- <servlet> +- <servlet-name>Trace</servlet-name> +- <servlet-class>org.apache.phoenix.tracingwebapp.http.TraceServlet</servlet-class> +- </servlet> +- <servlet-mapping> +- <servlet-name>Trace</servlet-name> +- <url-pattern>/trace/*</url-pattern> +- </servlet-mapping> +-</web-app> +diff --git a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css b/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css +deleted file mode 100755 +index b0fdfcbf9..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css ++++ /dev/null +@@ -1,476 +0,0 @@ +-/*! +- * Bootstrap v3.3.4 (http://getbootstrap.com) +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- */ +- +-.btn-default, +-.btn-primary, +-.btn-success, +-.btn-info, +-.btn-warning, +-.btn-danger { +- text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); +- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); +-} +-.btn-default:active, +-.btn-primary:active, +-.btn-success:active, +-.btn-info:active, +-.btn-warning:active, +-.btn-danger:active, +-.btn-default.active, +-.btn-primary.active, +-.btn-success.active, +-.btn-info.active, +-.btn-warning.active, +-.btn-danger.active { +- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +-} +-.btn-default .badge, +-.btn-primary .badge, +-.btn-success .badge, +-.btn-info .badge, +-.btn-warning .badge, +-.btn-danger .badge { +- text-shadow: none; +-} +-.btn:active, +-.btn.active { +- background-image: none; +-} +-.btn-default { +- text-shadow: 0 1px 0 #fff; +- background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); +- background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); +- background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #dbdbdb; +- border-color: #ccc; +-} +-.btn-default:hover, +-.btn-default:focus { +- background-color: #e0e0e0; +- background-position: 0 -15px; +-} +-.btn-default:active, +-.btn-default.active { +- background-color: #e0e0e0; +- border-color: #dbdbdb; +-} +-.btn-default.disabled, +-.btn-default:disabled, +-.btn-default[disabled] { +- background-color: #e0e0e0; +- background-image: none; +-} +-.btn-primary { +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #245580; +-} +-.btn-primary:hover, +-.btn-primary:focus { +- background-color: #265a88; +- background-position: 0 -15px; +-} +-.btn-primary:active, +-.btn-primary.active { +- background-color: #265a88; +- border-color: #245580; +-} +-.btn-primary.disabled, +-.btn-primary:disabled, +-.btn-primary[disabled] { +- background-color: #265a88; +- background-image: none; +-} +-.btn-success { +- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); +- background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); +- background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #3e8f3e; +-} +-.btn-success:hover, +-.btn-success:focus { +- background-color: #419641; +- background-position: 0 -15px; +-} +-.btn-success:active, +-.btn-success.active { +- background-color: #419641; +- border-color: #3e8f3e; +-} +-.btn-success.disabled, +-.btn-success:disabled, +-.btn-success[disabled] { +- background-color: #419641; +- background-image: none; +-} +-.btn-info { +- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); +- background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); +- background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #28a4c9; +-} +-.btn-info:hover, +-.btn-info:focus { +- background-color: #2aabd2; +- background-position: 0 -15px; +-} +-.btn-info:active, +-.btn-info.active { +- background-color: #2aabd2; +- border-color: #28a4c9; +-} +-.btn-info.disabled, +-.btn-info:disabled, +-.btn-info[disabled] { +- background-color: #2aabd2; +- background-image: none; +-} +-.btn-warning { +- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); +- background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); +- background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #e38d13; +-} +-.btn-warning:hover, +-.btn-warning:focus { +- background-color: #eb9316; +- background-position: 0 -15px; +-} +-.btn-warning:active, +-.btn-warning.active { +- background-color: #eb9316; +- border-color: #e38d13; +-} +-.btn-warning.disabled, +-.btn-warning:disabled, +-.btn-warning[disabled] { +- background-color: #eb9316; +- background-image: none; +-} +-.btn-danger { +- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); +- background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); +- background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-color: #b92c28; +-} +-.btn-danger:hover, +-.btn-danger:focus { +- background-color: #c12e2a; +- background-position: 0 -15px; +-} +-.btn-danger:active, +-.btn-danger.active { +- background-color: #c12e2a; +- border-color: #b92c28; +-} +-.btn-danger.disabled, +-.btn-danger:disabled, +-.btn-danger[disabled] { +- background-color: #c12e2a; +- background-image: none; +-} +-.thumbnail, +-.img-thumbnail { +- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +- box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +-} +-.dropdown-menu > li > a:hover, +-.dropdown-menu > li > a:focus { +- background-color: #e8e8e8; +- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); +- background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); +- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); +- background-repeat: repeat-x; +-} +-.dropdown-menu > .active > a, +-.dropdown-menu > .active > a:hover, +-.dropdown-menu > .active > a:focus { +- background-color: #2e6da4; +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); +- background-repeat: repeat-x; +-} +-.navbar-default { +- background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); +- background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); +- background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +- border-radius: 4px; +- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); +-} +-.navbar-default .navbar-nav > .open > a, +-.navbar-default .navbar-nav > .active > a { +- background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); +- background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); +- background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); +- background-repeat: repeat-x; +- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); +- box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); +-} +-.navbar-brand, +-.navbar-nav > li > a { +- text-shadow: 0 1px 0 rgba(255, 255, 255, .25); +-} +-.navbar-inverse { +- background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); +- background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); +- background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +- background-repeat: repeat-x; +-} +-.navbar-inverse .navbar-nav > .open > a, +-.navbar-inverse .navbar-nav > .active > a { +- background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); +- background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); +- background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); +- background-repeat: repeat-x; +- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); +- box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); +-} +-.navbar-inverse .navbar-brand, +-.navbar-inverse .navbar-nav > li > a { +- text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); +-} +-.navbar-static-top, +-.navbar-fixed-top, +-.navbar-fixed-bottom { +- border-radius: 0; +-} +-@media (max-width: 767px) { +- .navbar .navbar-nav .open .dropdown-menu > .active > a, +- .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, +- .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { +- color: #fff; +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); +- background-repeat: repeat-x; +- } +-} +-.alert { +- text-shadow: 0 1px 0 rgba(255, 255, 255, .2); +- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); +- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); +-} +-.alert-success { +- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); +- background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); +- background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); +- background-repeat: repeat-x; +- border-color: #b2dba1; +-} +-.alert-info { +- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); +- background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); +- background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); +- background-repeat: repeat-x; +- border-color: #9acfea; +-} +-.alert-warning { +- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); +- background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); +- background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); +- background-repeat: repeat-x; +- border-color: #f5e79e; +-} +-.alert-danger { +- background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); +- background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); +- background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); +- background-repeat: repeat-x; +- border-color: #dca7a7; +-} +-.progress { +- background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); +- background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); +- background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar { +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar-success { +- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); +- background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); +- background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar-info { +- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); +- background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); +- background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar-warning { +- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); +- background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); +- background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar-danger { +- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); +- background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); +- background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); +- background-repeat: repeat-x; +-} +-.progress-bar-striped { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +-} +-.list-group { +- border-radius: 4px; +- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +- box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +-} +-.list-group-item.active, +-.list-group-item.active:hover, +-.list-group-item.active:focus { +- text-shadow: 0 -1px 0 #286090; +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); +- background-repeat: repeat-x; +- border-color: #2b669a; +-} +-.list-group-item.active .badge, +-.list-group-item.active:hover .badge, +-.list-group-item.active:focus .badge { +- text-shadow: none; +-} +-.panel { +- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); +- box-shadow: 0 1px 2px rgba(0, 0, 0, .05); +-} +-.panel-default > .panel-heading { +- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); +- background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); +- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); +- background-repeat: repeat-x; +-} +-.panel-primary > .panel-heading { +- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); +- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); +- background-repeat: repeat-x; +-} +-.panel-success > .panel-heading { +- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); +- background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); +- background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); +- background-repeat: repeat-x; +-} +-.panel-info > .panel-heading { +- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); +- background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); +- background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); +- background-repeat: repeat-x; +-} +-.panel-warning > .panel-heading { +- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); +- background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); +- background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); +- background-repeat: repeat-x; +-} +-.panel-danger > .panel-heading { +- background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); +- background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); +- background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); +- background-repeat: repeat-x; +-} +-.well { +- background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); +- background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); +- background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); +- background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); +- background-repeat: repeat-x; +- border-color: #dcdcdc; +- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); +- box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); +-} +-/*# sourceMappingURL=bootstrap-theme.css.map */ +diff --git a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css.map b/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css.map +deleted file mode 100755 +index 5a12d6317..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap-theme.css.map ++++ /dev/null +@@ -1 +0,0 @@ +-{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","bootstrap-theme.css","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &:disabled,\n &[disabled] {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n",".btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default:disabled,\n.btn-default[disabled] {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary:disabled,\n.btn-primary[disabled] {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success:disabled,\n.btn-success[disabled] {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info:disabled,\n.btn-info[disabled] {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning:disabled,\n.btn-warning[disabled] {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger:disabled,\n.btn-danger[disabled] {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css b/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css +deleted file mode 100755 +index fb15e3d69..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css ++++ /dev/null +@@ -1,6584 +0,0 @@ +-/*! +- * Bootstrap v3.3.4 (http://getbootstrap.com) +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- */ +- +-/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ +-html { +- font-family: sans-serif; +- -webkit-text-size-adjust: 100%; +- -ms-text-size-adjust: 100%; +-} +-body { +- margin: 0; +-} +-article, +-aside, +-details, +-figcaption, +-figure, +-footer, +-header, +-hgroup, +-main, +-menu, +-nav, +-section, +-summary { +- display: block; +-} +-audio, +-canvas, +-progress, +-video { +- display: inline-block; +- vertical-align: baseline; +-} +-audio:not([controls]) { +- display: none; +- height: 0; +-} +-[hidden], +-template { +- display: none; +-} +-a { +- background-color: transparent; +-} +-a:active, +-a:hover { +- outline: 0; +-} +-abbr[title] { +- border-bottom: 1px dotted; +-} +-b, +-strong { +- font-weight: bold; +-} +-dfn { +- font-style: italic; +-} +-h1 { +- margin: .67em 0; +- font-size: 2em; +-} +-mark { +- color: #000; +- background: #ff0; +-} +-small { +- font-size: 80%; +-} +-sub, +-sup { +- position: relative; +- font-size: 75%; +- line-height: 0; +- vertical-align: baseline; +-} +-sup { +- top: -.5em; +-} +-sub { +- bottom: -.25em; +-} +-img { +- border: 0; +-} +-svg:not(:root) { +- overflow: hidden; +-} +-figure { +- margin: 1em 40px; +-} +-hr { +- height: 0; +- -webkit-box-sizing: content-box; +- -moz-box-sizing: content-box; +- box-sizing: content-box; +-} +-pre { +- overflow: auto; +-} +-code, +-kbd, +-pre, +-samp { +- font-family: monospace, monospace; +- font-size: 1em; +-} +-button, +-input, +-optgroup, +-select, +-textarea { +- margin: 0; +- font: inherit; +- color: inherit; +-} +-button { +- overflow: visible; +-} +-button, +-select { +- text-transform: none; +-} +-button, +-html input[type="button"], +-input[type="reset"], +-input[type="submit"] { +- -webkit-appearance: button; +- cursor: pointer; +-} +-button[disabled], +-html input[disabled] { +- cursor: default; +-} +-button::-moz-focus-inner, +-input::-moz-focus-inner { +- padding: 0; +- border: 0; +-} +-input { +- line-height: normal; +-} +-input[type="checkbox"], +-input[type="radio"] { +- -webkit-box-sizing: border-box; +- -moz-box-sizing: border-box; +- box-sizing: border-box; +- padding: 0; +-} +-input[type="number"]::-webkit-inner-spin-button, +-input[type="number"]::-webkit-outer-spin-button { +- height: auto; +-} +-input[type="search"] { +- -webkit-box-sizing: content-box; +- -moz-box-sizing: content-box; +- box-sizing: content-box; +- -webkit-appearance: textfield; +-} +-input[type="search"]::-webkit-search-cancel-button, +-input[type="search"]::-webkit-search-decoration { +- -webkit-appearance: none; +-} +-fieldset { +- padding: .35em .625em .75em; +- margin: 0 2px; +- border: 1px solid #c0c0c0; +-} +-legend { +- padding: 0; +- border: 0; +-} +-textarea { +- overflow: auto; +-} +-optgroup { +- font-weight: bold; +-} +-table { +- border-spacing: 0; +- border-collapse: collapse; +-} +-td, +-th { +- padding: 0; +-} +-/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +-@media print { +- *, +- *:before, +- *:after { +- color: #000 !important; +- text-shadow: none !important; +- background: transparent !important; +- -webkit-box-shadow: none !important; +- box-shadow: none !important; +- } +- a, +- a:visited { +- text-decoration: underline; +- } +- a[href]:after { +- content: " (" attr(href) ")"; +- } +- abbr[title]:after { +- content: " (" attr(title) ")"; +- } +- a[href^="#"]:after, +- a[href^="javascript:"]:after { +- content: ""; +- } +- pre, +- blockquote { +- border: 1px solid #999; +- +- page-break-inside: avoid; +- } +- thead { +- display: table-header-group; +- } +- tr, +- img { +- page-break-inside: avoid; +- } +- img { +- max-width: 100% !important; +- } +- p, +- h2, +- h3 { +- orphans: 3; +- widows: 3; +- } +- h2, +- h3 { +- page-break-after: avoid; +- } +- select { +- background: #fff !important; +- } +- .navbar { +- display: none; +- } +- .btn > .caret, +- .dropup > .btn > .caret { +- border-top-color: #000 !important; +- } +- .label { +- border: 1px solid #000; +- } +- .table { +- border-collapse: collapse !important; +- } +- .table td, +- .table th { +- background-color: #fff !important; +- } +- .table-bordered th, +- .table-bordered td { +- border: 1px solid #ddd !important; +- } +-} +-@font-face { +- font-family: 'Glyphicons Halflings'; +- +- src: url('../fonts/glyphicons-halflings-regular.eot'); +- src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +-} +-.glyphicon { +- position: relative; +- top: 1px; +- display: inline-block; +- font-family: 'Glyphicons Halflings'; +- font-style: normal; +- font-weight: normal; +- line-height: 1; +- +- -webkit-font-smoothing: antialiased; +- -moz-osx-font-smoothing: grayscale; +-} +-.glyphicon-asterisk:before { +- content: "\2a"; +-} +-.glyphicon-plus:before { +- content: "\2b"; +-} +-.glyphicon-euro:before, +-.glyphicon-eur:before { +- content: "\20ac"; +-} +-.glyphicon-minus:before { +- content: "\2212"; +-} +-.glyphicon-cloud:before { +- content: "\2601"; +-} +-.glyphicon-envelope:before { +- content: "\2709"; +-} +-.glyphicon-pencil:before { +- content: "\270f"; +-} +-.glyphicon-glass:before { +- content: "\e001"; +-} +-.glyphicon-music:before { +- content: "\e002"; +-} +-.glyphicon-search:before { +- content: "\e003"; +-} +-.glyphicon-heart:before { +- content: "\e005"; +-} +-.glyphicon-star:before { +- content: "\e006"; +-} +-.glyphicon-star-empty:before { +- content: "\e007"; +-} +-.glyphicon-user:before { +- content: "\e008"; +-} +-.glyphicon-film:before { +- content: "\e009"; +-} +-.glyphicon-th-large:before { +- content: "\e010"; +-} +-.glyphicon-th:before { +- content: "\e011"; +-} +-.glyphicon-th-list:before { +- content: "\e012"; +-} +-.glyphicon-ok:before { +- content: "\e013"; +-} +-.glyphicon-remove:before { +- content: "\e014"; +-} +-.glyphicon-zoom-in:before { +- content: "\e015"; +-} +-.glyphicon-zoom-out:before { +- content: "\e016"; +-} +-.glyphicon-off:before { +- content: "\e017"; +-} +-.glyphicon-signal:before { +- content: "\e018"; +-} +-.glyphicon-cog:before { +- content: "\e019"; +-} +-.glyphicon-trash:before { +- content: "\e020"; +-} +-.glyphicon-home:before { +- content: "\e021"; +-} +-.glyphicon-file:before { +- content: "\e022"; +-} +-.glyphicon-time:before { +- content: "\e023"; +-} +-.glyphicon-road:before { +- content: "\e024"; +-} +-.glyphicon-download-alt:before { +- content: "\e025"; +-} +-.glyphicon-download:before { +- content: "\e026"; +-} +-.glyphicon-upload:before { +- content: "\e027"; +-} +-.glyphicon-inbox:before { +- content: "\e028"; +-} +-.glyphicon-play-circle:before { +- content: "\e029"; +-} +-.glyphicon-repeat:before { +- content: "\e030"; +-} +-.glyphicon-refresh:before { +- content: "\e031"; +-} +-.glyphicon-list-alt:before { +- content: "\e032"; +-} +-.glyphicon-lock:before { +- content: "\e033"; +-} +-.glyphicon-flag:before { +- content: "\e034"; +-} +-.glyphicon-headphones:before { +- content: "\e035"; +-} +-.glyphicon-volume-off:before { +- content: "\e036"; +-} +-.glyphicon-volume-down:before { +- content: "\e037"; +-} +-.glyphicon-volume-up:before { +- content: "\e038"; +-} +-.glyphicon-qrcode:before { +- content: "\e039"; +-} +-.glyphicon-barcode:before { +- content: "\e040"; +-} +-.glyphicon-tag:before { +- content: "\e041"; +-} +-.glyphicon-tags:before { +- content: "\e042"; +-} +-.glyphicon-book:before { +- content: "\e043"; +-} +-.glyphicon-bookmark:before { +- content: "\e044"; +-} +-.glyphicon-print:before { +- content: "\e045"; +-} +-.glyphicon-camera:before { +- content: "\e046"; +-} +-.glyphicon-font:before { +- content: "\e047"; +-} +-.glyphicon-bold:before { +- content: "\e048"; +-} +-.glyphicon-italic:before { +- content: "\e049"; +-} +-.glyphicon-text-height:before { +- content: "\e050"; +-} +-.glyphicon-text-width:before { +- content: "\e051"; +-} +-.glyphicon-align-left:before { +- content: "\e052"; +-} +-.glyphicon-align-center:before { +- content: "\e053"; +-} +-.glyphicon-align-right:before { +- content: "\e054"; +-} +-.glyphicon-align-justify:before { +- content: "\e055"; +-} +-.glyphicon-list:before { +- content: "\e056"; +-} +-.glyphicon-indent-left:before { +- content: "\e057"; +-} +-.glyphicon-indent-right:before { +- content: "\e058"; +-} +-.glyphicon-facetime-video:before { +- content: "\e059"; +-} +-.glyphicon-picture:before { +- content: "\e060"; +-} +-.glyphicon-map-marker:before { +- content: "\e062"; +-} +-.glyphicon-adjust:before { +- content: "\e063"; +-} +-.glyphicon-tint:before { +- content: "\e064"; +-} +-.glyphicon-edit:before { +- content: "\e065"; +-} +-.glyphicon-share:before { +- content: "\e066"; +-} +-.glyphicon-check:before { +- content: "\e067"; +-} +-.glyphicon-move:before { +- content: "\e068"; +-} +-.glyphicon-step-backward:before { +- content: "\e069"; +-} +-.glyphicon-fast-backward:before { +- content: "\e070"; +-} +-.glyphicon-backward:before { +- content: "\e071"; +-} +-.glyphicon-play:before { +- content: "\e072"; +-} +-.glyphicon-pause:before { +- content: "\e073"; +-} +-.glyphicon-stop:before { +- content: "\e074"; +-} +-.glyphicon-forward:before { +- content: "\e075"; +-} +-.glyphicon-fast-forward:before { +- content: "\e076"; +-} +-.glyphicon-step-forward:before { +- content: "\e077"; +-} +-.glyphicon-eject:before { +- content: "\e078"; +-} +-.glyphicon-chevron-left:before { +- content: "\e079"; +-} +-.glyphicon-chevron-right:before { +- content: "\e080"; +-} +-.glyphicon-plus-sign:before { +- content: "\e081"; +-} +-.glyphicon-minus-sign:before { +- content: "\e082"; +-} +-.glyphicon-remove-sign:before { +- content: "\e083"; +-} +-.glyphicon-ok-sign:before { +- content: "\e084"; +-} +-.glyphicon-question-sign:before { +- content: "\e085"; +-} +-.glyphicon-info-sign:before { +- content: "\e086"; +-} +-.glyphicon-screenshot:before { +- content: "\e087"; +-} +-.glyphicon-remove-circle:before { +- content: "\e088"; +-} +-.glyphicon-ok-circle:before { +- content: "\e089"; +-} +-.glyphicon-ban-circle:before { +- content: "\e090"; +-} +-.glyphicon-arrow-left:before { +- content: "\e091"; +-} +-.glyphicon-arrow-right:before { +- content: "\e092"; +-} +-.glyphicon-arrow-up:before { +- content: "\e093"; +-} +-.glyphicon-arrow-down:before { +- content: "\e094"; +-} +-.glyphicon-share-alt:before { +- content: "\e095"; +-} +-.glyphicon-resize-full:before { +- content: "\e096"; +-} +-.glyphicon-resize-small:before { +- content: "\e097"; +-} +-.glyphicon-exclamation-sign:before { +- content: "\e101"; +-} +-.glyphicon-gift:before { +- content: "\e102"; +-} +-.glyphicon-leaf:before { +- content: "\e103"; +-} +-.glyphicon-fire:before { +- content: "\e104"; +-} +-.glyphicon-eye-open:before { +- content: "\e105"; +-} +-.glyphicon-eye-close:before { +- content: "\e106"; +-} +-.glyphicon-warning-sign:before { +- content: "\e107"; +-} +-.glyphicon-plane:before { +- content: "\e108"; +-} +-.glyphicon-calendar:before { +- content: "\e109"; +-} +-.glyphicon-random:before { +- content: "\e110"; +-} +-.glyphicon-comment:before { +- content: "\e111"; +-} +-.glyphicon-magnet:before { +- content: "\e112"; +-} +-.glyphicon-chevron-up:before { +- content: "\e113"; +-} +-.glyphicon-chevron-down:before { +- content: "\e114"; +-} +-.glyphicon-retweet:before { +- content: "\e115"; +-} +-.glyphicon-shopping-cart:before { +- content: "\e116"; +-} +-.glyphicon-folder-close:before { +- content: "\e117"; +-} +-.glyphicon-folder-open:before { +- content: "\e118"; +-} +-.glyphicon-resize-vertical:before { +- content: "\e119"; +-} +-.glyphicon-resize-horizontal:before { +- content: "\e120"; +-} +-.glyphicon-hdd:before { +- content: "\e121"; +-} +-.glyphicon-bullhorn:before { +- content: "\e122"; +-} +-.glyphicon-bell:before { +- content: "\e123"; +-} +-.glyphicon-certificate:before { +- content: "\e124"; +-} +-.glyphicon-thumbs-up:before { +- content: "\e125"; +-} +-.glyphicon-thumbs-down:before { +- content: "\e126"; +-} +-.glyphicon-hand-right:before { +- content: "\e127"; +-} +-.glyphicon-hand-left:before { +- content: "\e128"; +-} +-.glyphicon-hand-up:before { +- content: "\e129"; +-} +-.glyphicon-hand-down:before { +- content: "\e130"; +-} +-.glyphicon-circle-arrow-right:before { +- content: "\e131"; +-} +-.glyphicon-circle-arrow-left:before { +- content: "\e132"; +-} +-.glyphicon-circle-arrow-up:before { +- content: "\e133"; +-} +-.glyphicon-circle-arrow-down:before { +- content: "\e134"; +-} +-.glyphicon-globe:before { +- content: "\e135"; +-} +-.glyphicon-wrench:before { +- content: "\e136"; +-} +-.glyphicon-tasks:before { +- content: "\e137"; +-} +-.glyphicon-filter:before { +- content: "\e138"; +-} +-.glyphicon-briefcase:before { +- content: "\e139"; +-} +-.glyphicon-fullscreen:before { +- content: "\e140"; +-} +-.glyphicon-dashboard:before { +- content: "\e141"; +-} +-.glyphicon-paperclip:before { +- content: "\e142"; +-} +-.glyphicon-heart-empty:before { +- content: "\e143"; +-} +-.glyphicon-link:before { +- content: "\e144"; +-} +-.glyphicon-phone:before { +- content: "\e145"; +-} +-.glyphicon-pushpin:before { +- content: "\e146"; +-} +-.glyphicon-usd:before { +- content: "\e148"; +-} +-.glyphicon-gbp:before { +- content: "\e149"; +-} +-.glyphicon-sort:before { +- content: "\e150"; +-} +-.glyphicon-sort-by-alphabet:before { +- content: "\e151"; +-} +-.glyphicon-sort-by-alphabet-alt:before { +- content: "\e152"; +-} +-.glyphicon-sort-by-order:before { +- content: "\e153"; +-} +-.glyphicon-sort-by-order-alt:before { +- content: "\e154"; +-} +-.glyphicon-sort-by-attributes:before { +- content: "\e155"; +-} +-.glyphicon-sort-by-attributes-alt:before { +- content: "\e156"; +-} +-.glyphicon-unchecked:before { +- content: "\e157"; +-} +-.glyphicon-expand:before { +- content: "\e158"; +-} +-.glyphicon-collapse-down:before { +- content: "\e159"; +-} +-.glyphicon-collapse-up:before { +- content: "\e160"; +-} +-.glyphicon-log-in:before { +- content: "\e161"; +-} +-.glyphicon-flash:before { +- content: "\e162"; +-} +-.glyphicon-log-out:before { +- content: "\e163"; +-} +-.glyphicon-new-window:before { +- content: "\e164"; +-} +-.glyphicon-record:before { +- content: "\e165"; +-} +-.glyphicon-save:before { +- content: "\e166"; +-} +-.glyphicon-open:before { +- content: "\e167"; +-} +-.glyphicon-saved:before { +- content: "\e168"; +-} +-.glyphicon-import:before { +- content: "\e169"; +-} +-.glyphicon-export:before { +- content: "\e170"; +-} +-.glyphicon-send:before { +- content: "\e171"; +-} +-.glyphicon-floppy-disk:before { +- content: "\e172"; +-} +-.glyphicon-floppy-saved:before { +- content: "\e173"; +-} +-.glyphicon-floppy-remove:before { +- content: "\e174"; +-} +-.glyphicon-floppy-save:before { +- content: "\e175"; +-} +-.glyphicon-floppy-open:before { +- content: "\e176"; +-} +-.glyphicon-credit-card:before { +- content: "\e177"; +-} +-.glyphicon-transfer:before { +- content: "\e178"; +-} +-.glyphicon-cutlery:before { +- content: "\e179"; +-} +-.glyphicon-header:before { +- content: "\e180"; +-} +-.glyphicon-compressed:before { +- content: "\e181"; +-} +-.glyphicon-earphone:before { +- content: "\e182"; +-} +-.glyphicon-phone-alt:before { +- content: "\e183"; +-} +-.glyphicon-tower:before { +- content: "\e184"; +-} +-.glyphicon-stats:before { +- content: "\e185"; +-} +-.glyphicon-sd-video:before { +- content: "\e186"; +-} +-.glyphicon-hd-video:before { +- content: "\e187"; +-} +-.glyphicon-subtitles:before { +- content: "\e188"; +-} +-.glyphicon-sound-stereo:before { +- content: "\e189"; +-} +-.glyphicon-sound-dolby:before { +- content: "\e190"; +-} +-.glyphicon-sound-5-1:before { +- content: "\e191"; +-} +-.glyphicon-sound-6-1:before { +- content: "\e192"; +-} +-.glyphicon-sound-7-1:before { +- content: "\e193"; +-} +-.glyphicon-copyright-mark:before { +- content: "\e194"; +-} +-.glyphicon-registration-mark:before { +- content: "\e195"; +-} +-.glyphicon-cloud-download:before { +- content: "\e197"; +-} +-.glyphicon-cloud-upload:before { +- content: "\e198"; +-} +-.glyphicon-tree-conifer:before { +- content: "\e199"; +-} +-.glyphicon-tree-deciduous:before { +- content: "\e200"; +-} +-.glyphicon-cd:before { +- content: "\e201"; +-} +-.glyphicon-save-file:before { +- content: "\e202"; +-} +-.glyphicon-open-file:before { +- content: "\e203"; +-} +-.glyphicon-level-up:before { +- content: "\e204"; +-} +-.glyphicon-copy:before { +- content: "\e205"; +-} +-.glyphicon-paste:before { +- content: "\e206"; +-} +-.glyphicon-alert:before { +- content: "\e209"; +-} +-.glyphicon-equalizer:before { +- content: "\e210"; +-} +-.glyphicon-king:before { +- content: "\e211"; +-} +-.glyphicon-queen:before { +- content: "\e212"; +-} +-.glyphicon-pawn:before { +- content: "\e213"; +-} +-.glyphicon-bishop:before { +- content: "\e214"; +-} +-.glyphicon-knight:before { +- content: "\e215"; +-} +-.glyphicon-baby-formula:before { +- content: "\e216"; +-} +-.glyphicon-tent:before { +- content: "\26fa"; +-} +-.glyphicon-blackboard:before { +- content: "\e218"; +-} +-.glyphicon-bed:before { +- content: "\e219"; +-} +-.glyphicon-apple:before { +- content: "\f8ff"; +-} +-.glyphicon-erase:before { +- content: "\e221"; +-} +-.glyphicon-hourglass:before { +- content: "\231b"; +-} +-.glyphicon-lamp:before { +- content: "\e223"; +-} +-.glyphicon-duplicate:before { +- content: "\e224"; +-} +-.glyphicon-piggy-bank:before { +- content: "\e225"; +-} +-.glyphicon-scissors:before { +- content: "\e226"; +-} +-.glyphicon-bitcoin:before { +- content: "\e227"; +-} +-.glyphicon-btc:before { +- content: "\e227"; +-} +-.glyphicon-xbt:before { +- content: "\e227"; +-} +-.glyphicon-yen:before { +- content: "\00a5"; +-} +-.glyphicon-jpy:before { +- content: "\00a5"; +-} +-.glyphicon-ruble:before { +- content: "\20bd"; +-} +-.glyphicon-rub:before { +- content: "\20bd"; +-} +-.glyphicon-scale:before { +- content: "\e230"; +-} +-.glyphicon-ice-lolly:before { +- content: "\e231"; +-} +-.glyphicon-ice-lolly-tasted:before { +- content: "\e232"; +-} +-.glyphicon-education:before { +- content: "\e233"; +-} +-.glyphicon-option-horizontal:before { +- content: "\e234"; +-} +-.glyphicon-option-vertical:before { +- content: "\e235"; +-} +-.glyphicon-menu-hamburger:before { +- content: "\e236"; +-} +-.glyphicon-modal-window:before { +- content: "\e237"; +-} +-.glyphicon-oil:before { +- content: "\e238"; +-} +-.glyphicon-grain:before { +- content: "\e239"; +-} +-.glyphicon-sunglasses:before { +- content: "\e240"; +-} +-.glyphicon-text-size:before { +- content: "\e241"; +-} +-.glyphicon-text-color:before { +- content: "\e242"; +-} +-.glyphicon-text-background:before { +- content: "\e243"; +-} +-.glyphicon-object-align-top:before { +- content: "\e244"; +-} +-.glyphicon-object-align-bottom:before { +- content: "\e245"; +-} +-.glyphicon-object-align-horizontal:before { +- content: "\e246"; +-} +-.glyphicon-object-align-left:before { +- content: "\e247"; +-} +-.glyphicon-object-align-vertical:before { +- content: "\e248"; +-} +-.glyphicon-object-align-right:before { +- content: "\e249"; +-} +-.glyphicon-triangle-right:before { +- content: "\e250"; +-} +-.glyphicon-triangle-left:before { +- content: "\e251"; +-} +-.glyphicon-triangle-bottom:before { +- content: "\e252"; +-} +-.glyphicon-triangle-top:before { +- content: "\e253"; +-} +-.glyphicon-console:before { +- content: "\e254"; +-} +-.glyphicon-superscript:before { +- content: "\e255"; +-} +-.glyphicon-subscript:before { +- content: "\e256"; +-} +-.glyphicon-menu-left:before { +- content: "\e257"; +-} +-.glyphicon-menu-right:before { +- content: "\e258"; +-} +-.glyphicon-menu-down:before { +- content: "\e259"; +-} +-.glyphicon-menu-up:before { +- content: "\e260"; +-} +-* { +- -webkit-box-sizing: border-box; +- -moz-box-sizing: border-box; +- box-sizing: border-box; +-} +-*:before, +-*:after { +- -webkit-box-sizing: border-box; +- -moz-box-sizing: border-box; +- box-sizing: border-box; +-} +-html { +- font-size: 10px; +- +- -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +-} +-body { +- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +- font-size: 14px; +- line-height: 1.42857143; +- color: #333; +- background-color: #fff; +-} +-input, +-button, +-select, +-textarea { +- font-family: inherit; +- font-size: inherit; +- line-height: inherit; +-} +-a { +- color: #337ab7; +- text-decoration: none; +-} +-a:hover, +-a:focus { +- color: #23527c; +- text-decoration: underline; +-} +-a:focus { +- outline: thin dotted; +- outline: 5px auto -webkit-focus-ring-color; +- outline-offset: -2px; +-} +-figure { +- margin: 0; +-} +-img { +- vertical-align: middle; +-} +-.img-responsive, +-.thumbnail > img, +-.thumbnail a > img, +-.carousel-inner > .item > img, +-.carousel-inner > .item > a > img { +- display: block; +- max-width: 100%; +- height: auto; +-} +-.img-rounded { +- border-radius: 6px; +-} +-.img-thumbnail { +- display: inline-block; +- max-width: 100%; +- height: auto; +- padding: 4px; +- line-height: 1.42857143; +- background-color: #fff; +- border: 1px solid #ddd; +- border-radius: 4px; +- -webkit-transition: all .2s ease-in-out; +- -o-transition: all .2s ease-in-out; +- transition: all .2s ease-in-out; +-} +-.img-circle { +- border-radius: 50%; +-} +-hr { +- margin-top: 20px; +- margin-bottom: 20px; +- border: 0; +- border-top: 1px solid #eee; +-} +-.sr-only { +- position: absolute; +- width: 1px; +- height: 1px; +- padding: 0; +- margin: -1px; +- overflow: hidden; +- clip: rect(0, 0, 0, 0); +- border: 0; +-} +-.sr-only-focusable:active, +-.sr-only-focusable:focus { +- position: static; +- width: auto; +- height: auto; +- margin: 0; +- overflow: visible; +- clip: auto; +-} +-[role="button"] { +- cursor: pointer; +-} +-h1, +-h2, +-h3, +-h4, +-h5, +-h6, +-.h1, +-.h2, +-.h3, +-.h4, +-.h5, +-.h6 { +- font-family: inherit; +- font-weight: 500; +- line-height: 1.1; +- color: inherit; +-} +-h1 small, +-h2 small, +-h3 small, +-h4 small, +-h5 small, +-h6 small, +-.h1 small, +-.h2 small, +-.h3 small, +-.h4 small, +-.h5 small, +-.h6 small, +-h1 .small, +-h2 .small, +-h3 .small, +-h4 .small, +-h5 .small, +-h6 .small, +-.h1 .small, +-.h2 .small, +-.h3 .small, +-.h4 .small, +-.h5 .small, +-.h6 .small { +- font-weight: normal; +- line-height: 1; +- color: #777; +-} +-h1, +-.h1, +-h2, +-.h2, +-h3, +-.h3 { +- margin-top: 20px; +- margin-bottom: 10px; +-} +-h1 small, +-.h1 small, +-h2 small, +-.h2 small, +-h3 small, +-.h3 small, +-h1 .small, +-.h1 .small, +-h2 .small, +-.h2 .small, +-h3 .small, +-.h3 .small { +- font-size: 65%; +-} +-h4, +-.h4, +-h5, +-.h5, +-h6, +-.h6 { +- margin-top: 10px; +- margin-bottom: 10px; +-} +-h4 small, +-.h4 small, +-h5 small, +-.h5 small, +-h6 small, +-.h6 small, +-h4 .small, +-.h4 .small, +-h5 .small, +-.h5 .small, +-h6 .small, +-.h6 .small { +- font-size: 75%; +-} +-h1, +-.h1 { +- font-size: 36px; +-} +-h2, +-.h2 { +- font-size: 30px; +-} +-h3, +-.h3 { +- font-size: 24px; +-} +-h4, +-.h4 { +- font-size: 18px; +-} +-h5, +-.h5 { +- font-size: 14px; +-} +-h6, +-.h6 { +- font-size: 12px; +-} +-p { +- margin: 0 0 10px; +-} +-.lead { +- margin-bottom: 20px; +- font-size: 16px; +- font-weight: 300; +- line-height: 1.4; +-} +-@media (min-width: 768px) { +- .lead { +- font-size: 21px; +- } +-} +-small, +-.small { +- font-size: 85%; +-} +-mark, +-.mark { +- padding: .2em; +- background-color: #fcf8e3; +-} +-.text-left { +- text-align: left; +-} +-.text-right { +- text-align: right; +-} +-.text-center { +- text-align: center; +-} +-.text-justify { +- text-align: justify; +-} +-.text-nowrap { +- white-space: nowrap; +-} +-.text-lowercase { +- text-transform: lowercase; +-} +-.text-uppercase { +- text-transform: uppercase; +-} +-.text-capitalize { +- text-transform: capitalize; +-} +-.text-muted { +- color: #777; +-} +-.text-primary { +- color: #337ab7; +-} +-a.text-primary:hover { +- color: #286090; +-} +-.text-success { +- color: #3c763d; +-} +-a.text-success:hover { +- color: #2b542c; +-} +-.text-info { +- color: #31708f; +-} +-a.text-info:hover { +- color: #245269; +-} +-.text-warning { +- color: #8a6d3b; +-} +-a.text-warning:hover { +- color: #66512c; +-} +-.text-danger { +- color: #a94442; +-} +-a.text-danger:hover { +- color: #843534; +-} +-.bg-primary { +- color: #fff; +- background-color: #337ab7; +-} +-a.bg-primary:hover { +- background-color: #286090; +-} +-.bg-success { +- background-color: #dff0d8; +-} +-a.bg-success:hover { +- background-color: #c1e2b3; +-} +-.bg-info { +- background-color: #d9edf7; +-} +-a.bg-info:hover { +- background-color: #afd9ee; +-} +-.bg-warning { +- background-color: #fcf8e3; +-} +-a.bg-warning:hover { +- background-color: #f7ecb5; +-} +-.bg-danger { +- background-color: #f2dede; +-} +-a.bg-danger:hover { +- background-color: #e4b9b9; +-} +-.page-header { +- padding-bottom: 9px; +- margin: 40px 0 20px; +- border-bottom: 1px solid #eee; +-} +-ul, +-ol { +- margin-top: 0; +- margin-bottom: 10px; +-} +-ul ul, +-ol ul, +-ul ol, +-ol ol { +- margin-bottom: 0; +-} +-.list-unstyled { +- padding-left: 0; +- list-style: none; +-} +-.list-inline { +- padding-left: 0; +- margin-left: -5px; +- list-style: none; +-} +-.list-inline > li { +- display: inline-block; +- padding-right: 5px; +- padding-left: 5px; +-} +-dl { +- margin-top: 0; +- margin-bottom: 20px; +-} +-dt, +-dd { +- line-height: 1.42857143; +-} +-dt { +- font-weight: bold; +-} +-dd { +- margin-left: 0; +-} +-@media (min-width: 768px) { +- .dl-horizontal dt { +- float: left; +- width: 160px; +- overflow: hidden; +- clear: left; +- text-align: right; +- text-overflow: ellipsis; +- white-space: nowrap; +- } +- .dl-horizontal dd { +- margin-left: 180px; +- } +-} +-abbr[title], +-abbr[data-original-title] { +- cursor: help; +- border-bottom: 1px dotted #777; +-} +-.initialism { +- font-size: 90%; +- text-transform: uppercase; +-} +-blockquote { +- padding: 10px 20px; +- margin: 0 0 20px; +- font-size: 17.5px; +- border-left: 5px solid #eee; +-} +-blockquote p:last-child, +-blockquote ul:last-child, +-blockquote ol:last-child { +- margin-bottom: 0; +-} +-blockquote footer, +-blockquote small, +-blockquote .small { +- display: block; +- font-size: 80%; +- line-height: 1.42857143; +- color: #777; +-} +-blockquote footer:before, +-blockquote small:before, +-blockquote .small:before { +- content: '\2014 \00A0'; +-} +-.blockquote-reverse, +-blockquote.pull-right { +- padding-right: 15px; +- padding-left: 0; +- text-align: right; +- border-right: 5px solid #eee; +- border-left: 0; +-} +-.blockquote-reverse footer:before, +-blockquote.pull-right footer:before, +-.blockquote-reverse small:before, +-blockquote.pull-right small:before, +-.blockquote-reverse .small:before, +-blockquote.pull-right .small:before { +- content: ''; +-} +-.blockquote-reverse footer:after, +-blockquote.pull-right footer:after, +-.blockquote-reverse small:after, +-blockquote.pull-right small:after, +-.blockquote-reverse .small:after, +-blockquote.pull-right .small:after { +- content: '\00A0 \2014'; +-} +-address { +- margin-bottom: 20px; +- font-style: normal; +- line-height: 1.42857143; +-} +-code, +-kbd, +-pre, +-samp { +- font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +-} +-code { +- padding: 2px 4px; +- font-size: 90%; +- color: #c7254e; +- background-color: #f9f2f4; +- border-radius: 4px; +-} +-kbd { +- padding: 2px 4px; +- font-size: 90%; +- color: #fff; +- background-color: #333; +- border-radius: 3px; +- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); +- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); +-} +-kbd kbd { +- padding: 0; +- font-size: 100%; +- font-weight: bold; +- -webkit-box-shadow: none; +- box-shadow: none; +-} +-pre { +- display: block; +- padding: 9.5px; +- margin: 0 0 10px; +- font-size: 13px; +- line-height: 1.42857143; +- color: #333; +- word-break: break-all; +- word-wrap: break-word; +- background-color: #f5f5f5; +- border: 1px solid #ccc; +- border-radius: 4px; +-} +-pre code { +- padding: 0; +- font-size: inherit; +- color: inherit; +- white-space: pre-wrap; +- background-color: transparent; +- border-radius: 0; +-} +-.pre-scrollable { +- max-height: 340px; +- overflow-y: scroll; +-} +-.container { +- padding-right: 15px; +- padding-left: 15px; +- margin-right: auto; +- margin-left: auto; +-} +-@media (min-width: 768px) { +- .container { +- width: 750px; +- } +-} +-@media (min-width: 992px) { +- .container { +- width: 970px; +- } +-} +-@media (min-width: 1200px) { +- .container { +- width: 1170px; +- } +-} +-.container-fluid { +- padding-right: 15px; +- padding-left: 15px; +- margin-right: auto; +- margin-left: auto; +-} +-.row { +- margin-right: -15px; +- margin-left: -15px; +-} +-.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { +- position: relative; +- min-height: 1px; +- padding-right: 15px; +- padding-left: 15px; +-} +-.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { +- float: left; +-} +-.col-xs-12 { +- width: 100%; +-} +-.col-xs-11 { +- width: 91.66666667%; +-} +-.col-xs-10 { +- width: 83.33333333%; +-} +-.col-xs-9 { +- width: 75%; +-} +-.col-xs-8 { +- width: 66.66666667%; +-} +-.col-xs-7 { +- width: 58.33333333%; +-} +-.col-xs-6 { +- width: 50%; +-} +-.col-xs-5 { +- width: 41.66666667%; +-} +-.col-xs-4 { +- width: 33.33333333%; +-} +-.col-xs-3 { +- width: 25%; +-} +-.col-xs-2 { +- width: 16.66666667%; +-} +-.col-xs-1 { +- width: 8.33333333%; +-} +-.col-xs-pull-12 { +- right: 100%; +-} +-.col-xs-pull-11 { +- right: 91.66666667%; +-} +-.col-xs-pull-10 { +- right: 83.33333333%; +-} +-.col-xs-pull-9 { +- right: 75%; +-} +-.col-xs-pull-8 { +- right: 66.66666667%; +-} +-.col-xs-pull-7 { +- right: 58.33333333%; +-} +-.col-xs-pull-6 { +- right: 50%; +-} +-.col-xs-pull-5 { +- right: 41.66666667%; +-} +-.col-xs-pull-4 { +- right: 33.33333333%; +-} +-.col-xs-pull-3 { +- right: 25%; +-} +-.col-xs-pull-2 { +- right: 16.66666667%; +-} +-.col-xs-pull-1 { +- right: 8.33333333%; +-} +-.col-xs-pull-0 { +- right: auto; +-} +-.col-xs-push-12 { +- left: 100%; +-} +-.col-xs-push-11 { +- left: 91.66666667%; +-} +-.col-xs-push-10 { +- left: 83.33333333%; +-} +-.col-xs-push-9 { +- left: 75%; +-} +-.col-xs-push-8 { +- left: 66.66666667%; +-} +-.col-xs-push-7 { +- left: 58.33333333%; +-} +-.col-xs-push-6 { +- left: 50%; +-} +-.col-xs-push-5 { +- left: 41.66666667%; +-} +-.col-xs-push-4 { +- left: 33.33333333%; +-} +-.col-xs-push-3 { +- left: 25%; +-} +-.col-xs-push-2 { +- left: 16.66666667%; +-} +-.col-xs-push-1 { +- left: 8.33333333%; +-} +-.col-xs-push-0 { +- left: auto; +-} +-.col-xs-offset-12 { +- margin-left: 100%; +-} +-.col-xs-offset-11 { +- margin-left: 91.66666667%; +-} +-.col-xs-offset-10 { +- margin-left: 83.33333333%; +-} +-.col-xs-offset-9 { +- margin-left: 75%; +-} +-.col-xs-offset-8 { +- margin-left: 66.66666667%; +-} +-.col-xs-offset-7 { +- margin-left: 58.33333333%; +-} +-.col-xs-offset-6 { +- margin-left: 50%; +-} +-.col-xs-offset-5 { +- margin-left: 41.66666667%; +-} +-.col-xs-offset-4 { +- margin-left: 33.33333333%; +-} +-.col-xs-offset-3 { +- margin-left: 25%; +-} +-.col-xs-offset-2 { +- margin-left: 16.66666667%; +-} +-.col-xs-offset-1 { +- margin-left: 8.33333333%; +-} +-.col-xs-offset-0 { +- margin-left: 0; +-} +-@media (min-width: 768px) { +- .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { +- float: left; +- } +- .col-sm-12 { +- width: 100%; +- } +- .col-sm-11 { +- width: 91.66666667%; +- } +- .col-sm-10 { +- width: 83.33333333%; +- } +- .col-sm-9 { +- width: 75%; +- } +- .col-sm-8 { +- width: 66.66666667%; +- } +- .col-sm-7 { +- width: 58.33333333%; +- } +- .col-sm-6 { +- width: 50%; +- } +- .col-sm-5 { +- width: 41.66666667%; +- } +- .col-sm-4 { +- width: 33.33333333%; +- } +- .col-sm-3 { +- width: 25%; +- } +- .col-sm-2 { +- width: 16.66666667%; +- } +- .col-sm-1 { +- width: 8.33333333%; +- } +- .col-sm-pull-12 { +- right: 100%; +- } +- .col-sm-pull-11 { +- right: 91.66666667%; +- } +- .col-sm-pull-10 { +- right: 83.33333333%; +- } +- .col-sm-pull-9 { +- right: 75%; +- } +- .col-sm-pull-8 { +- right: 66.66666667%; +- } +- .col-sm-pull-7 { +- right: 58.33333333%; +- } +- .col-sm-pull-6 { +- right: 50%; +- } +- .col-sm-pull-5 { +- right: 41.66666667%; +- } +- .col-sm-pull-4 { +- right: 33.33333333%; +- } +- .col-sm-pull-3 { +- right: 25%; +- } +- .col-sm-pull-2 { +- right: 16.66666667%; +- } +- .col-sm-pull-1 { +- right: 8.33333333%; +- } +- .col-sm-pull-0 { +- right: auto; +- } +- .col-sm-push-12 { +- left: 100%; +- } +- .col-sm-push-11 { +- left: 91.66666667%; +- } +- .col-sm-push-10 { +- left: 83.33333333%; +- } +- .col-sm-push-9 { +- left: 75%; +- } +- .col-sm-push-8 { +- left: 66.66666667%; +- } +- .col-sm-push-7 { +- left: 58.33333333%; +- } +- .col-sm-push-6 { +- left: 50%; +- } +- .col-sm-push-5 { +- left: 41.66666667%; +- } +- .col-sm-push-4 { +- left: 33.33333333%; +- } +- .col-sm-push-3 { +- left: 25%; +- } +- .col-sm-push-2 { +- left: 16.66666667%; +- } +- .col-sm-push-1 { +- left: 8.33333333%; +- } +- .col-sm-push-0 { +- left: auto; +- } +- .col-sm-offset-12 { +- margin-left: 100%; +- } +- .col-sm-offset-11 { +- margin-left: 91.66666667%; +- } +- .col-sm-offset-10 { +- margin-left: 83.33333333%; +- } +- .col-sm-offset-9 { +- margin-left: 75%; +- } +- .col-sm-offset-8 { +- margin-left: 66.66666667%; +- } +- .col-sm-offset-7 { +- margin-left: 58.33333333%; +- } +- .col-sm-offset-6 { +- margin-left: 50%; +- } +- .col-sm-offset-5 { +- margin-left: 41.66666667%; +- } +- .col-sm-offset-4 { +- margin-left: 33.33333333%; +- } +- .col-sm-offset-3 { +- margin-left: 25%; +- } +- .col-sm-offset-2 { +- margin-left: 16.66666667%; +- } +- .col-sm-offset-1 { +- margin-left: 8.33333333%; +- } +- .col-sm-offset-0 { +- margin-left: 0; +- } +-} +-@media (min-width: 992px) { +- .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { +- float: left; +- } +- .col-md-12 { +- width: 100%; +- } +- .col-md-11 { +- width: 91.66666667%; +- } +- .col-md-10 { +- width: 83.33333333%; +- } +- .col-md-9 { +- width: 75%; +- } +- .col-md-8 { +- width: 66.66666667%; +- } +- .col-md-7 { +- width: 58.33333333%; +- } +- .col-md-6 { +- width: 50%; +- } +- .col-md-5 { +- width: 41.66666667%; +- } +- .col-md-4 { +- width: 33.33333333%; +- } +- .col-md-3 { +- width: 25%; +- } +- .col-md-2 { +- width: 16.66666667%; +- } +- .col-md-1 { +- width: 8.33333333%; +- } +- .col-md-pull-12 { +- right: 100%; +- } +- .col-md-pull-11 { +- right: 91.66666667%; +- } +- .col-md-pull-10 { +- right: 83.33333333%; +- } +- .col-md-pull-9 { +- right: 75%; +- } +- .col-md-pull-8 { +- right: 66.66666667%; +- } +- .col-md-pull-7 { +- right: 58.33333333%; +- } +- .col-md-pull-6 { +- right: 50%; +- } +- .col-md-pull-5 { +- right: 41.66666667%; +- } +- .col-md-pull-4 { +- right: 33.33333333%; +- } +- .col-md-pull-3 { +- right: 25%; +- } +- .col-md-pull-2 { +- right: 16.66666667%; +- } +- .col-md-pull-1 { +- right: 8.33333333%; +- } +- .col-md-pull-0 { +- right: auto; +- } +- .col-md-push-12 { +- left: 100%; +- } +- .col-md-push-11 { +- left: 91.66666667%; +- } +- .col-md-push-10 { +- left: 83.33333333%; +- } +- .col-md-push-9 { +- left: 75%; +- } +- .col-md-push-8 { +- left: 66.66666667%; +- } +- .col-md-push-7 { +- left: 58.33333333%; +- } +- .col-md-push-6 { +- left: 50%; +- } +- .col-md-push-5 { +- left: 41.66666667%; +- } +- .col-md-push-4 { +- left: 33.33333333%; +- } +- .col-md-push-3 { +- left: 25%; +- } +- .col-md-push-2 { +- left: 16.66666667%; +- } +- .col-md-push-1 { +- left: 8.33333333%; +- } +- .col-md-push-0 { +- left: auto; +- } +- .col-md-offset-12 { +- margin-left: 100%; +- } +- .col-md-offset-11 { +- margin-left: 91.66666667%; +- } +- .col-md-offset-10 { +- margin-left: 83.33333333%; +- } +- .col-md-offset-9 { +- margin-left: 75%; +- } +- .col-md-offset-8 { +- margin-left: 66.66666667%; +- } +- .col-md-offset-7 { +- margin-left: 58.33333333%; +- } +- .col-md-offset-6 { +- margin-left: 50%; +- } +- .col-md-offset-5 { +- margin-left: 41.66666667%; +- } +- .col-md-offset-4 { +- margin-left: 33.33333333%; +- } +- .col-md-offset-3 { +- margin-left: 25%; +- } +- .col-md-offset-2 { +- margin-left: 16.66666667%; +- } +- .col-md-offset-1 { +- margin-left: 8.33333333%; +- } +- .col-md-offset-0 { +- margin-left: 0; +- } +-} +-@media (min-width: 1200px) { +- .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { +- float: left; +- } +- .col-lg-12 { +- width: 100%; +- } +- .col-lg-11 { +- width: 91.66666667%; +- } +- .col-lg-10 { +- width: 83.33333333%; +- } +- .col-lg-9 { +- width: 75%; +- } +- .col-lg-8 { +- width: 66.66666667%; +- } +- .col-lg-7 { +- width: 58.33333333%; +- } +- .col-lg-6 { +- width: 50%; +- } +- .col-lg-5 { +- width: 41.66666667%; +- } +- .col-lg-4 { +- width: 33.33333333%; +- } +- .col-lg-3 { +- width: 25%; +- } +- .col-lg-2 { +- width: 16.66666667%; +- } +- .col-lg-1 { +- width: 8.33333333%; +- } +- .col-lg-pull-12 { +- right: 100%; +- } +- .col-lg-pull-11 { +- right: 91.66666667%; +- } +- .col-lg-pull-10 { +- right: 83.33333333%; +- } +- .col-lg-pull-9 { +- right: 75%; +- } +- .col-lg-pull-8 { +- right: 66.66666667%; +- } +- .col-lg-pull-7 { +- right: 58.33333333%; +- } +- .col-lg-pull-6 { +- right: 50%; +- } +- .col-lg-pull-5 { +- right: 41.66666667%; +- } +- .col-lg-pull-4 { +- right: 33.33333333%; +- } +- .col-lg-pull-3 { +- right: 25%; +- } +- .col-lg-pull-2 { +- right: 16.66666667%; +- } +- .col-lg-pull-1 { +- right: 8.33333333%; +- } +- .col-lg-pull-0 { +- right: auto; +- } +- .col-lg-push-12 { +- left: 100%; +- } +- .col-lg-push-11 { +- left: 91.66666667%; +- } +- .col-lg-push-10 { +- left: 83.33333333%; +- } +- .col-lg-push-9 { +- left: 75%; +- } +- .col-lg-push-8 { +- left: 66.66666667%; +- } +- .col-lg-push-7 { +- left: 58.33333333%; +- } +- .col-lg-push-6 { +- left: 50%; +- } +- .col-lg-push-5 { +- left: 41.66666667%; +- } +- .col-lg-push-4 { +- left: 33.33333333%; +- } +- .col-lg-push-3 { +- left: 25%; +- } +- .col-lg-push-2 { +- left: 16.66666667%; +- } +- .col-lg-push-1 { +- left: 8.33333333%; +- } +- .col-lg-push-0 { +- left: auto; +- } +- .col-lg-offset-12 { +- margin-left: 100%; +- } +- .col-lg-offset-11 { +- margin-left: 91.66666667%; +- } +- .col-lg-offset-10 { +- margin-left: 83.33333333%; +- } +- .col-lg-offset-9 { +- margin-left: 75%; +- } +- .col-lg-offset-8 { +- margin-left: 66.66666667%; +- } +- .col-lg-offset-7 { +- margin-left: 58.33333333%; +- } +- .col-lg-offset-6 { +- margin-left: 50%; +- } +- .col-lg-offset-5 { +- margin-left: 41.66666667%; +- } +- .col-lg-offset-4 { +- margin-left: 33.33333333%; +- } +- .col-lg-offset-3 { +- margin-left: 25%; +- } +- .col-lg-offset-2 { +- margin-left: 16.66666667%; +- } +- .col-lg-offset-1 { +- margin-left: 8.33333333%; +- } +- .col-lg-offset-0 { +- margin-left: 0; +- } +-} +-table { +- background-color: transparent; +-} +-caption { +- padding-top: 8px; +- padding-bottom: 8px; +- color: #777; +- text-align: left; +-} +-th { +- text-align: left; +-} +-.table { +- width: 100%; +- max-width: 100%; +- margin-bottom: 20px; +-} +-.table > thead > tr > th, +-.table > tbody > tr > th, +-.table > tfoot > tr > th, +-.table > thead > tr > td, +-.table > tbody > tr > td, +-.table > tfoot > tr > td { +- padding: 8px; +- line-height: 1.42857143; +- vertical-align: top; +- border-top: 1px solid #ddd; +-} +-.table > thead > tr > th { +- vertical-align: bottom; +- border-bottom: 2px solid #ddd; +-} +-.table > caption + thead > tr:first-child > th, +-.table > colgroup + thead > tr:first-child > th, +-.table > thead:first-child > tr:first-child > th, +-.table > caption + thead > tr:first-child > td, +-.table > colgroup + thead > tr:first-child > td, +-.table > thead:first-child > tr:first-child > td { +- border-top: 0; +-} +-.table > tbody + tbody { +- border-top: 2px solid #ddd; +-} +-.table .table { +- background-color: #fff; +-} +-.table-condensed > thead > tr > th, +-.table-condensed > tbody > tr > th, +-.table-condensed > tfoot > tr > th, +-.table-condensed > thead > tr > td, +-.table-condensed > tbody > tr > td, +-.table-condensed > tfoot > tr > td { +- padding: 5px; +-} +-.table-bordered { +- border: 1px solid #ddd; +-} +-.table-bordered > thead > tr > th, +-.table-bordered > tbody > tr > th, +-.table-bordered > tfoot > tr > th, +-.table-bordered > thead > tr > td, +-.table-bordered > tbody > tr > td, +-.table-bordered > tfoot > tr > td { +- border: 1px solid #ddd; +-} +-.table-bordered > thead > tr > th, +-.table-bordered > thead > tr > td { +- border-bottom-width: 2px; +-} +-.table-striped > tbody > tr:nth-of-type(odd) { +- background-color: #f9f9f9; +-} +-.table-hover > tbody > tr:hover { +- background-color: #f5f5f5; +-} +-table col[class*="col-"] { +- position: static; +- display: table-column; +- float: none; +-} +-table td[class*="col-"], +-table th[class*="col-"] { +- position: static; +- display: table-cell; +- float: none; +-} +-.table > thead > tr > td.active, +-.table > tbody > tr > td.active, +-.table > tfoot > tr > td.active, +-.table > thead > tr > th.active, +-.table > tbody > tr > th.active, +-.table > tfoot > tr > th.active, +-.table > thead > tr.active > td, +-.table > tbody > tr.active > td, +-.table > tfoot > tr.active > td, +-.table > thead > tr.active > th, +-.table > tbody > tr.active > th, +-.table > tfoot > tr.active > th { +- background-color: #f5f5f5; +-} +-.table-hover > tbody > tr > td.active:hover, +-.table-hover > tbody > tr > th.active:hover, +-.table-hover > tbody > tr.active:hover > td, +-.table-hover > tbody > tr:hover > .active, +-.table-hover > tbody > tr.active:hover > th { +- background-color: #e8e8e8; +-} +-.table > thead > tr > td.success, +-.table > tbody > tr > td.success, +-.table > tfoot > tr > td.success, +-.table > thead > tr > th.success, +-.table > tbody > tr > th.success, +-.table > tfoot > tr > th.success, +-.table > thead > tr.success > td, +-.table > tbody > tr.success > td, +-.table > tfoot > tr.success > td, +-.table > thead > tr.success > th, +-.table > tbody > tr.success > th, +-.table > tfoot > tr.success > th { +- background-color: #dff0d8; +-} +-.table-hover > tbody > tr > td.success:hover, +-.table-hover > tbody > tr > th.success:hover, +-.table-hover > tbody > tr.success:hover > td, +-.table-hover > tbody > tr:hover > .success, +-.table-hover > tbody > tr.success:hover > th { +- background-color: #d0e9c6; +-} +-.table > thead > tr > td.info, +-.table > tbody > tr > td.info, +-.table > tfoot > tr > td.info, +-.table > thead > tr > th.info, +-.table > tbody > tr > th.info, +-.table > tfoot > tr > th.info, +-.table > thead > tr.info > td, +-.table > tbody > tr.info > td, +-.table > tfoot > tr.info > td, +-.table > thead > tr.info > th, +-.table > tbody > tr.info > th, +-.table > tfoot > tr.info > th { +- background-color: #d9edf7; +-} +-.table-hover > tbody > tr > td.info:hover, +-.table-hover > tbody > tr > th.info:hover, +-.table-hover > tbody > tr.info:hover > td, +-.table-hover > tbody > tr:hover > .info, +-.table-hover > tbody > tr.info:hover > th { +- background-color: #c4e3f3; +-} +-.table > thead > tr > td.warning, +-.table > tbody > tr > td.warning, +-.table > tfoot > tr > td.warning, +-.table > thead > tr > th.warning, +-.table > tbody > tr > th.warning, +-.table > tfoot > tr > th.warning, +-.table > thead > tr.warning > td, +-.table > tbody > tr.warning > td, +-.table > tfoot > tr.warning > td, +-.table > thead > tr.warning > th, +-.table > tbody > tr.warning > th, +-.table > tfoot > tr.warning > th { +- background-color: #fcf8e3; +-} +-.table-hover > tbody > tr > td.warning:hover, +-.table-hover > tbody > tr > th.warning:hover, +-.table-hover > tbody > tr.warning:hover > td, +-.table-hover > tbody > tr:hover > .warning, +-.table-hover > tbody > tr.warning:hover > th { +- background-color: #faf2cc; +-} +-.table > thead > tr > td.danger, +-.table > tbody > tr > td.danger, +-.table > tfoot > tr > td.danger, +-.table > thead > tr > th.danger, +-.table > tbody > tr > th.danger, +-.table > tfoot > tr > th.danger, +-.table > thead > tr.danger > td, +-.table > tbody > tr.danger > td, +-.table > tfoot > tr.danger > td, +-.table > thead > tr.danger > th, +-.table > tbody > tr.danger > th, +-.table > tfoot > tr.danger > th { +- background-color: #f2dede; +-} +-.table-hover > tbody > tr > td.danger:hover, +-.table-hover > tbody > tr > th.danger:hover, +-.table-hover > tbody > tr.danger:hover > td, +-.table-hover > tbody > tr:hover > .danger, +-.table-hover > tbody > tr.danger:hover > th { +- background-color: #ebcccc; +-} +-.table-responsive { +- min-height: .01%; +- overflow-x: auto; +-} +-@media screen and (max-width: 767px) { +- .table-responsive { +- width: 100%; +- margin-bottom: 15px; +- overflow-y: hidden; +- -ms-overflow-style: -ms-autohiding-scrollbar; +- border: 1px solid #ddd; +- } +- .table-responsive > .table { +- margin-bottom: 0; +- } +- .table-responsive > .table > thead > tr > th, +- .table-responsive > .table > tbody > tr > th, +- .table-responsive > .table > tfoot > tr > th, +- .table-responsive > .table > thead > tr > td, +- .table-responsive > .table > tbody > tr > td, +- .table-responsive > .table > tfoot > tr > td { +- white-space: nowrap; +- } +- .table-responsive > .table-bordered { +- border: 0; +- } +- .table-responsive > .table-bordered > thead > tr > th:first-child, +- .table-responsive > .table-bordered > tbody > tr > th:first-child, +- .table-responsive > .table-bordered > tfoot > tr > th:first-child, +- .table-responsive > .table-bordered > thead > tr > td:first-child, +- .table-responsive > .table-bordered > tbody > tr > td:first-child, +- .table-responsive > .table-bordered > tfoot > tr > td:first-child { +- border-left: 0; +- } +- .table-responsive > .table-bordered > thead > tr > th:last-child, +- .table-responsive > .table-bordered > tbody > tr > th:last-child, +- .table-responsive > .table-bordered > tfoot > tr > th:last-child, +- .table-responsive > .table-bordered > thead > tr > td:last-child, +- .table-responsive > .table-bordered > tbody > tr > td:last-child, +- .table-responsive > .table-bordered > tfoot > tr > td:last-child { +- border-right: 0; +- } +- .table-responsive > .table-bordered > tbody > tr:last-child > th, +- .table-responsive > .table-bordered > tfoot > tr:last-child > th, +- .table-responsive > .table-bordered > tbody > tr:last-child > td, +- .table-responsive > .table-bordered > tfoot > tr:last-child > td { +- border-bottom: 0; +- } +-} +-fieldset { +- min-width: 0; +- padding: 0; +- margin: 0; +- border: 0; +-} +-legend { +- display: block; +- width: 100%; +- padding: 0; +- margin-bottom: 20px; +- font-size: 21px; +- line-height: inherit; +- color: #333; +- border: 0; +- border-bottom: 1px solid #e5e5e5; +-} +-label { +- display: inline-block; +- max-width: 100%; +- margin-bottom: 5px; +- font-weight: bold; +-} +-input[type="search"] { +- -webkit-box-sizing: border-box; +- -moz-box-sizing: border-box; +- box-sizing: border-box; +-} +-input[type="radio"], +-input[type="checkbox"] { +- margin: 4px 0 0; +- margin-top: 1px \9; +- line-height: normal; +-} +-input[type="file"] { +- display: block; +-} +-input[type="range"] { +- display: block; +- width: 100%; +-} +-select[multiple], +-select[size] { +- height: auto; +-} +-input[type="file"]:focus, +-input[type="radio"]:focus, +-input[type="checkbox"]:focus { +- outline: thin dotted; +- outline: 5px auto -webkit-focus-ring-color; +- outline-offset: -2px; +-} +-output { +- display: block; +- padding-top: 7px; +- font-size: 14px; +- line-height: 1.42857143; +- color: #555; +-} +-.form-control { +- display: block; +- width: 100%; +- height: 34px; +- padding: 6px 12px; +- font-size: 14px; +- line-height: 1.42857143; +- color: #555; +- background-color: #fff; +- background-image: none; +- border: 1px solid #ccc; +- border-radius: 4px; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; +- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +-} +-.form-control:focus { +- border-color: #66afe9; +- outline: 0; +- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); +- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); +-} +-.form-control::-moz-placeholder { +- color: #999; +- opacity: 1; +-} +-.form-control:-ms-input-placeholder { +- color: #999; +-} +-.form-control::-webkit-input-placeholder { +- color: #999; +-} +-.form-control[disabled], +-.form-control[readonly], +-fieldset[disabled] .form-control { +- background-color: #eee; +- opacity: 1; +-} +-.form-control[disabled], +-fieldset[disabled] .form-control { +- cursor: not-allowed; +-} +-textarea.form-control { +- height: auto; +-} +-input[type="search"] { +- -webkit-appearance: none; +-} +-@media screen and (-webkit-min-device-pixel-ratio: 0) { +- input[type="date"], +- input[type="time"], +- input[type="datetime-local"], +- input[type="month"] { +- line-height: 34px; +- } +- input[type="date"].input-sm, +- input[type="time"].input-sm, +- input[type="datetime-local"].input-sm, +- input[type="month"].input-sm, +- .input-group-sm input[type="date"], +- .input-group-sm input[type="time"], +- .input-group-sm input[type="datetime-local"], +- .input-group-sm input[type="month"] { +- line-height: 30px; +- } +- input[type="date"].input-lg, +- input[type="time"].input-lg, +- input[type="datetime-local"].input-lg, +- input[type="month"].input-lg, +- .input-group-lg input[type="date"], +- .input-group-lg input[type="time"], +- .input-group-lg input[type="datetime-local"], +- .input-group-lg input[type="month"] { +- line-height: 46px; +- } +-} +-.form-group { +- margin-bottom: 15px; +-} +-.radio, +-.checkbox { +- position: relative; +- display: block; +- margin-top: 10px; +- margin-bottom: 10px; +-} +-.radio label, +-.checkbox label { +- min-height: 20px; +- padding-left: 20px; +- margin-bottom: 0; +- font-weight: normal; +- cursor: pointer; +-} +-.radio input[type="radio"], +-.radio-inline input[type="radio"], +-.checkbox input[type="checkbox"], +-.checkbox-inline input[type="checkbox"] { +- position: absolute; +- margin-top: 4px \9; +- margin-left: -20px; +-} +-.radio + .radio, +-.checkbox + .checkbox { +- margin-top: -5px; +-} +-.radio-inline, +-.checkbox-inline { +- position: relative; +- display: inline-block; +- padding-left: 20px; +- margin-bottom: 0; +- font-weight: normal; +- vertical-align: middle; +- cursor: pointer; +-} +-.radio-inline + .radio-inline, +-.checkbox-inline + .checkbox-inline { +- margin-top: 0; +- margin-left: 10px; +-} +-input[type="radio"][disabled], +-input[type="checkbox"][disabled], +-input[type="radio"].disabled, +-input[type="checkbox"].disabled, +-fieldset[disabled] input[type="radio"], +-fieldset[disabled] input[type="checkbox"] { +- cursor: not-allowed; +-} +-.radio-inline.disabled, +-.checkbox-inline.disabled, +-fieldset[disabled] .radio-inline, +-fieldset[disabled] .checkbox-inline { +- cursor: not-allowed; +-} +-.radio.disabled label, +-.checkbox.disabled label, +-fieldset[disabled] .radio label, +-fieldset[disabled] .checkbox label { +- cursor: not-allowed; +-} +-.form-control-static { +- min-height: 34px; +- padding-top: 7px; +- padding-bottom: 7px; +- margin-bottom: 0; +-} +-.form-control-static.input-lg, +-.form-control-static.input-sm { +- padding-right: 0; +- padding-left: 0; +-} +-.input-sm { +- height: 30px; +- padding: 5px 10px; +- font-size: 12px; +- line-height: 1.5; +- border-radius: 3px; +-} +-select.input-sm { +- height: 30px; +- line-height: 30px; +-} +-textarea.input-sm, +-select[multiple].input-sm { +- height: auto; +-} +-.form-group-sm .form-control { +- height: 30px; +- padding: 5px 10px; +- font-size: 12px; +- line-height: 1.5; +- border-radius: 3px; +-} +-select.form-group-sm .form-control { +- height: 30px; +- line-height: 30px; +-} +-textarea.form-group-sm .form-control, +-select[multiple].form-group-sm .form-control { +- height: auto; +-} +-.form-group-sm .form-control-static { +- height: 30px; +- min-height: 32px; +- padding: 5px 10px; +- font-size: 12px; +- line-height: 1.5; +-} +-.input-lg { +- height: 46px; +- padding: 10px 16px; +- font-size: 18px; +- line-height: 1.3333333; +- border-radius: 6px; +-} +-select.input-lg { +- height: 46px; +- line-height: 46px; +-} +-textarea.input-lg, +-select[multiple].input-lg { +- height: auto; +-} +-.form-group-lg .form-control { +- height: 46px; +- padding: 10px 16px; +- font-size: 18px; +- line-height: 1.3333333; +- border-radius: 6px; +-} +-select.form-group-lg .form-control { +- height: 46px; +- line-height: 46px; +-} +-textarea.form-group-lg .form-control, +-select[multiple].form-group-lg .form-control { +- height: auto; +-} +-.form-group-lg .form-control-static { +- height: 46px; +- min-height: 38px; +- padding: 10px 16px; +- font-size: 18px; +- line-height: 1.3333333; +-} +-.has-feedback { +- position: relative; +-} +-.has-feedback .form-control { +- padding-right: 42.5px; +-} +-.form-control-feedback { +- position: absolute; +- top: 0; +- right: 0; +- z-index: 2; +- display: block; +- width: 34px; +- height: 34px; +- line-height: 34px; +- text-align: center; +- pointer-events: none; +-} +-.input-lg + .form-control-feedback { +- width: 46px; +- height: 46px; +- line-height: 46px; +-} +-.input-sm + .form-control-feedback { +- width: 30px; +- height: 30px; +- line-height: 30px; +-} +-.has-success .help-block, +-.has-success .control-label, +-.has-success .radio, +-.has-success .checkbox, +-.has-success .radio-inline, +-.has-success .checkbox-inline, +-.has-success.radio label, +-.has-success.checkbox label, +-.has-success.radio-inline label, +-.has-success.checkbox-inline label { +- color: #3c763d; +-} +-.has-success .form-control { +- border-color: #3c763d; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +-} +-.has-success .form-control:focus { +- border-color: #2b542c; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; +-} +-.has-success .input-group-addon { +- color: #3c763d; +- background-color: #dff0d8; +- border-color: #3c763d; +-} +-.has-success .form-control-feedback { +- color: #3c763d; +-} +-.has-warning .help-block, +-.has-warning .control-label, +-.has-warning .radio, +-.has-warning .checkbox, +-.has-warning .radio-inline, +-.has-warning .checkbox-inline, +-.has-warning.radio label, +-.has-warning.checkbox label, +-.has-warning.radio-inline label, +-.has-warning.checkbox-inline label { +- color: #8a6d3b; +-} +-.has-warning .form-control { +- border-color: #8a6d3b; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +-} +-.has-warning .form-control:focus { +- border-color: #66512c; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; +-} +-.has-warning .input-group-addon { +- color: #8a6d3b; +- background-color: #fcf8e3; +- border-color: #8a6d3b; +-} +-.has-warning .form-control-feedback { +- color: #8a6d3b; +-} +-.has-error .help-block, +-.has-error .control-label, +-.has-error .radio, +-.has-error .checkbox, +-.has-error .radio-inline, +-.has-error .checkbox-inline, +-.has-error.radio label, +-.has-error.checkbox label, +-.has-error.radio-inline label, +-.has-error.checkbox-inline label { +- color: #a94442; +-} +-.has-error .form-control { +- border-color: #a94442; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +-} +-.has-error .form-control:focus { +- border-color: #843534; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; +-} +-.has-error .input-group-addon { +- color: #a94442; +- background-color: #f2dede; +- border-color: #a94442; +-} +-.has-error .form-control-feedback { +- color: #a94442; +-} +-.has-feedback label ~ .form-control-feedback { +- top: 25px; +-} +-.has-feedback label.sr-only ~ .form-control-feedback { +- top: 0; +-} +-.help-block { +- display: block; +- margin-top: 5px; +- margin-bottom: 10px; +- color: #737373; +-} +-@media (min-width: 768px) { +- .form-inline .form-group { +- display: inline-block; +- margin-bottom: 0; +- vertical-align: middle; +- } +- .form-inline .form-control { +- display: inline-block; +- width: auto; +- vertical-align: middle; +- } +- .form-inline .form-control-static { +- display: inline-block; +- } +- .form-inline .input-group { +- display: inline-table; +- vertical-align: middle; +- } +- .form-inline .input-group .input-group-addon, +- .form-inline .input-group .input-group-btn, +- .form-inline .input-group .form-control { +- width: auto; +- } +- .form-inline .input-group > .form-control { +- width: 100%; +- } +- .form-inline .control-label { +- margin-bottom: 0; +- vertical-align: middle; +- } +- .form-inline .radio, +- .form-inline .checkbox { +- display: inline-block; +- margin-top: 0; +- margin-bottom: 0; +- vertical-align: middle; +- } +- .form-inline .radio label, +- .form-inline .checkbox label { +- padding-left: 0; +- } +- .form-inline .radio input[type="radio"], +- .form-inline .checkbox input[type="checkbox"] { +- position: relative; +- margin-left: 0; +- } +- .form-inline .has-feedback .form-control-feedback { +- top: 0; +- } +-} +-.form-horizontal .radio, +-.form-horizontal .checkbox, +-.form-horizontal .radio-inline, +-.form-horizontal .checkbox-inline { +- padding-top: 7px; +- margin-top: 0; +- margin-bottom: 0; +-} +-.form-horizontal .radio, +-.form-horizontal .checkbox { +- min-height: 27px; +-} +-.form-horizontal .form-group { +- margin-right: -15px; +- margin-left: -15px; +-} +-@media (min-width: 768px) { +- .form-horizontal .control-label { +- padding-top: 7px; +- margin-bottom: 0; +- text-align: right; +- } +-} +-.form-horizontal .has-feedback .form-control-feedback { +- right: 15px; +-} +-@media (min-width: 768px) { +- .form-horizontal .form-group-lg .control-label { +- padding-top: 14.333333px; +- } +-} +-@media (min-width: 768px) { +- .form-horizontal .form-group-sm .control-label { +- padding-top: 6px; +- } +-} +-.btn { +- display: inline-block; +- padding: 6px 12px; +- margin-bottom: 0; +- font-size: 14px; +- font-weight: normal; +- line-height: 1.42857143; +- text-align: center; +- white-space: nowrap; +- vertical-align: middle; +- -ms-touch-action: manipulation; +- touch-action: manipulation; +- cursor: pointer; +- -webkit-user-select: none; +- -moz-user-select: none; +- -ms-user-select: none; +- user-select: none; +- background-image: none; +- border: 1px solid transparent; +- border-radius: 4px; +-} +-.btn:focus, +-.btn:active:focus, +-.btn.active:focus, +-.btn.focus, +-.btn:active.focus, +-.btn.active.focus { +- outline: thin dotted; +- outline: 5px auto -webkit-focus-ring-color; +- outline-offset: -2px; +-} +-.btn:hover, +-.btn:focus, +-.btn.focus { +- color: #333; +- text-decoration: none; +-} +-.btn:active, +-.btn.active { +- background-image: none; +- outline: 0; +- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +-} +-.btn.disabled, +-.btn[disabled], +-fieldset[disabled] .btn { +- pointer-events: none; +- cursor: not-allowed; +- filter: alpha(opacity=65); +- -webkit-box-shadow: none; +- box-shadow: none; +- opacity: .65; +-} +-.btn-default { +- color: #333; +- background-color: #fff; +- border-color: #ccc; +-} +-.btn-default:hover, +-.btn-default:focus, +-.btn-default.focus, +-.btn-default:active, +-.btn-default.active, +-.open > .dropdown-toggle.btn-default { +- color: #333; +- background-color: #e6e6e6; +- border-color: #adadad; +-} +-.btn-default:active, +-.btn-default.active, +-.open > .dropdown-toggle.btn-default { +- background-image: none; +-} +-.btn-default.disabled, +-.btn-default[disabled], +-fieldset[disabled] .btn-default, +-.btn-default.disabled:hover, +-.btn-default[disabled]:hover, +-fieldset[disabled] .btn-default:hover, +-.btn-default.disabled:focus, +-.btn-default[disabled]:focus, +-fieldset[disabled] .btn-default:focus, +-.btn-default.disabled.focus, +-.btn-default[disabled].focus, +-fieldset[disabled] .btn-default.focus, +-.btn-default.disabled:active, +-.btn-default[disabled]:active, +-fieldset[disabled] .btn-default:active, +-.btn-default.disabled.active, +-.btn-default[disabled].active, +-fieldset[disabled] .btn-default.active { +- background-color: #fff; +- border-color: #ccc; +-} +-.btn-default .badge { +- color: #fff; +- background-color: #333; +-} +-.btn-primary { +- color: #fff; +- background-color: #337ab7; +- border-color: #2e6da4; +-} +-.btn-primary:hover, +-.btn-primary:focus, +-.btn-primary.focus, +-.btn-primary:active, +-.btn-primary.active, +-.open > .dropdown-toggle.btn-primary { +- color: #fff; +- background-color: #286090; +- border-color: #204d74; +-} +-.btn-primary:active, +-.btn-primary.active, +-.open > .dropdown-toggle.btn-primary { +- background-image: none; +-} +-.btn-primary.disabled, +-.btn-primary[disabled], +-fieldset[disabled] .btn-primary, +-.btn-primary.disabled:hover, +-.btn-primary[disabled]:hover, +-fieldset[disabled] .btn-primary:hover, +-.btn-primary.disabled:focus, +-.btn-primary[disabled]:focus, +-fieldset[disabled] .btn-primary:focus, +-.btn-primary.disabled.focus, +-.btn-primary[disabled].focus, +-fieldset[disabled] .btn-primary.focus, +-.btn-primary.disabled:active, +-.btn-primary[disabled]:active, +-fieldset[disabled] .btn-primary:active, +-.btn-primary.disabled.active, +-.btn-primary[disabled].active, +-fieldset[disabled] .btn-primary.active { +- background-color: #337ab7; +- border-color: #2e6da4; +-} +-.btn-primary .badge { +- color: #337ab7; +- background-color: #fff; +-} +-.btn-success { +- color: #fff; +- background-color: #5cb85c; +- border-color: #4cae4c; +-} +-.btn-success:hover, +-.btn-success:focus, +-.btn-success.focus, +-.btn-success:active, +-.btn-success.active, +-.open > .dropdown-toggle.btn-success { +- color: #fff; +- background-color: #449d44; +- border-color: #398439; +-} +-.btn-success:active, +-.btn-success.active, +-.open > .dropdown-toggle.btn-success { +- background-image: none; +-} +-.btn-success.disabled, +-.btn-success[disabled], +-fieldset[disabled] .btn-success, +-.btn-success.disabled:hover, +-.btn-success[disabled]:hover, +-fieldset[disabled] .btn-success:hover, +-.btn-success.disabled:focus, +-.btn-success[disabled]:focus, +-fieldset[disabled] .btn-success:focus, +-.btn-success.disabled.focus, +-.btn-success[disabled].focus, +-fieldset[disabled] .btn-success.focus, +-.btn-success.disabled:active, +-.btn-success[disabled]:active, +-fieldset[disabled] .btn-success:active, +-.btn-success.disabled.active, +-.btn-success[disabled].active, +-fieldset[disabled] .btn-success.active { +- background-color: #5cb85c; +- border-color: #4cae4c; +-} +-.btn-success .badge { +- color: #5cb85c; +- background-color: #fff; +-} +-.btn-info { +- color: #fff; +- background-color: #5bc0de; +- border-color: #46b8da; +-} +-.btn-info:hover, +-.btn-info:focus, +-.btn-info.focus, +-.btn-info:active, +-.btn-info.active, +-.open > .dropdown-toggle.btn-info { +- color: #fff; +- background-color: #31b0d5; +- border-color: #269abc; +-} +-.btn-info:active, +-.btn-info.active, +-.open > .dropdown-toggle.btn-info { +- background-image: none; +-} +-.btn-info.disabled, +-.btn-info[disabled], +-fieldset[disabled] .btn-info, +-.btn-info.disabled:hover, +-.btn-info[disabled]:hover, +-fieldset[disabled] .btn-info:hover, +-.btn-info.disabled:focus, +-.btn-info[disabled]:focus, +-fieldset[disabled] .btn-info:focus, +-.btn-info.disabled.focus, +-.btn-info[disabled].focus, +-fieldset[disabled] .btn-info.focus, +-.btn-info.disabled:active, +-.btn-info[disabled]:active, +-fieldset[disabled] .btn-info:active, +-.btn-info.disabled.active, +-.btn-info[disabled].active, +-fieldset[disabled] .btn-info.active { +- background-color: #5bc0de; +- border-color: #46b8da; +-} +-.btn-info .badge { +- color: #5bc0de; +- background-color: #fff; +-} +-.btn-warning { +- color: #fff; +- background-color: #f0ad4e; +- border-color: #eea236; +-} +-.btn-warning:hover, +-.btn-warning:focus, +-.btn-warning.focus, +-.btn-warning:active, +-.btn-warning.active, +-.open > .dropdown-toggle.btn-warning { +- color: #fff; +- background-color: #ec971f; +- border-color: #d58512; +-} +-.btn-warning:active, +-.btn-warning.active, +-.open > .dropdown-toggle.btn-warning { +- background-image: none; +-} +-.btn-warning.disabled, +-.btn-warning[disabled], +-fieldset[disabled] .btn-warning, +-.btn-warning.disabled:hover, +-.btn-warning[disabled]:hover, +-fieldset[disabled] .btn-warning:hover, +-.btn-warning.disabled:focus, +-.btn-warning[disabled]:focus, +-fieldset[disabled] .btn-warning:focus, +-.btn-warning.disabled.focus, +-.btn-warning[disabled].focus, +-fieldset[disabled] .btn-warning.focus, +-.btn-warning.disabled:active, +-.btn-warning[disabled]:active, +-fieldset[disabled] .btn-warning:active, +-.btn-warning.disabled.active, +-.btn-warning[disabled].active, +-fieldset[disabled] .btn-warning.active { +- background-color: #f0ad4e; +- border-color: #eea236; +-} +-.btn-warning .badge { +- color: #f0ad4e; +- background-color: #fff; +-} +-.btn-danger { +- color: #fff; +- background-color: #d9534f; +- border-color: #d43f3a; +-} +-.btn-danger:hover, +-.btn-danger:focus, +-.btn-danger.focus, +-.btn-danger:active, +-.btn-danger.active, +-.open > .dropdown-toggle.btn-danger { +- color: #fff; +- background-color: #c9302c; +- border-color: #ac2925; +-} +-.btn-danger:active, +-.btn-danger.active, +-.open > .dropdown-toggle.btn-danger { +- background-image: none; +-} +-.btn-danger.disabled, +-.btn-danger[disabled], +-fieldset[disabled] .btn-danger, +-.btn-danger.disabled:hover, +-.btn-danger[disabled]:hover, +-fieldset[disabled] .btn-danger:hover, +-.btn-danger.disabled:focus, +-.btn-danger[disabled]:focus, +-fieldset[disabled] .btn-danger:focus, +-.btn-danger.disabled.focus, +-.btn-danger[disabled].focus, +-fieldset[disabled] .btn-danger.focus, +-.btn-danger.disabled:active, +-.btn-danger[disabled]:active, +-fieldset[disabled] .btn-danger:active, +-.btn-danger.disabled.active, +-.btn-danger[disabled].active, +-fieldset[disabled] .btn-danger.active { +- background-color: #d9534f; +- border-color: #d43f3a; +-} +-.btn-danger .badge { +- color: #d9534f; +- background-color: #fff; +-} +-.btn-link { +- font-weight: normal; +- color: #337ab7; +- border-radius: 0; +-} +-.btn-link, +-.btn-link:active, +-.btn-link.active, +-.btn-link[disabled], +-fieldset[disabled] .btn-link { +- background-color: transparent; +- -webkit-box-shadow: none; +- box-shadow: none; +-} +-.btn-link, +-.btn-link:hover, +-.btn-link:focus, +-.btn-link:active { +- border-color: transparent; +-} +-.btn-link:hover, +-.btn-link:focus { +- color: #23527c; +- text-decoration: underline; +- background-color: transparent; +-} +-.btn-link[disabled]:hover, +-fieldset[disabled] .btn-link:hover, +-.btn-link[disabled]:focus, +-fieldset[disabled] .btn-link:focus { +- color: #777; +- text-decoration: none; +-} +-.btn-lg, +-.btn-group-lg > .btn { +- padding: 10px 16px; +- font-size: 18px; +- line-height: 1.3333333; +- border-radius: 6px; +-} +-.btn-sm, +-.btn-group-sm > .btn { +- padding: 5px 10px; +- font-size: 12px; +- line-height: 1.5; +- border-radius: 3px; +-} +-.btn-xs, +-.btn-group-xs > .btn { +- padding: 1px 5px; +- font-size: 12px; +- line-height: 1.5; +- border-radius: 3px; +-} +-.btn-block { +- display: block; +- width: 100%; +-} +-.btn-block + .btn-block { +- margin-top: 5px; +-} +-input[type="submit"].btn-block, +-input[type="reset"].btn-block, +-input[type="button"].btn-block { +- width: 100%; +-} +-.fade { +- opacity: 0; +- -webkit-transition: opacity .15s linear; +- -o-transition: opacity .15s linear; +- transition: opacity .15s linear; +-} +-.fade.in { +- opacity: 1; +-} +-.collapse { +- display: none; +-} +-.collapse.in { +- display: block; +-} +-tr.collapse.in { +- display: table-row; +-} +-tbody.collapse.in { +- display: table-row-group; +-} +-.collapsing { +- position: relative; +- height: 0; +- overflow: hidden; +- -webkit-transition-timing-function: ease; +- -o-transition-timing-function: ease; +- transition-timing-function: ease; +- -webkit-transition-duration: .35s; +- -o-transition-duration: .35s; +- transition-duration: .35s; +- -webkit-transition-property: height, visibility; +- -o-transition-property: height, visibility; +- transition-property: height, visibility; +-} +-.caret { +- display: inline-block; +- width: 0; +- height: 0; +- margin-left: 2px; +- vertical-align: middle; +- border-top: 4px dashed; +- border-right: 4px solid transparent; +- border-left: 4px solid transparent; +-} +-.dropup, +-.dropdown { +- position: relative; +-} +-.dropdown-toggle:focus { +- outline: 0; +-} +-.dropdown-menu { +- position: absolute; +- top: 100%; +- left: 0; +- z-index: 1000; +- display: none; +- float: left; +- min-width: 160px; +- padding: 5px 0; +- margin: 2px 0 0; +- font-size: 14px; +- text-align: left; +- list-style: none; +- background-color: #fff; +- -webkit-background-clip: padding-box; +- background-clip: padding-box; +- border: 1px solid #ccc; +- border: 1px solid rgba(0, 0, 0, .15); +- border-radius: 4px; +- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); +- box-shadow: 0 6px 12px rgba(0, 0, 0, .175); +-} +-.dropdown-menu.pull-right { +- right: 0; +- left: auto; +-} +-.dropdown-menu .divider { +- height: 1px; +- margin: 9px 0; +- overflow: hidden; +- background-color: #e5e5e5; +-} +-.dropdown-menu > li > a { +- display: block; +- padding: 3px 20px; +- clear: both; +- font-weight: normal; +- line-height: 1.42857143; +- color: #333; +- white-space: nowrap; +-} +-.dropdown-menu > li > a:hover, +-.dropdown-menu > li > a:focus { +- color: #262626; +- text-decoration: none; +- background-color: #f5f5f5; +-} +-.dropdown-menu > .active > a, +-.dropdown-menu > .active > a:hover, +-.dropdown-menu > .active > a:focus { +- color: #fff; +- text-decoration: none; +- background-color: #337ab7; +- outline: 0; +-} +-.dropdown-menu > .disabled > a, +-.dropdown-menu > .disabled > a:hover, +-.dropdown-menu > .disabled > a:focus { +- color: #777; +-} +-.dropdown-menu > .disabled > a:hover, +-.dropdown-menu > .disabled > a:focus { +- text-decoration: none; +- cursor: not-allowed; +- background-color: transparent; +- background-image: none; +- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +-} +-.open > .dropdown-menu { +- display: block; +-} +-.open > a { +- outline: 0; +-} +-.dropdown-menu-right { +- right: 0; +- left: auto; +-} +-.dropdown-menu-left { +- right: auto; +- left: 0; +-} +-.dropdown-header { +- display: block; +- padding: 3px 20px; +- font-size: 12px; +- line-height: 1.42857143; +- color: #777; +- white-space: nowrap; +-} +-.dropdown-backdrop { +- position: fixed; +- top: 0; +- right: 0; +- bottom: 0; +- left: 0; +- z-index: 990; +-} +-.pull-right > .dropdown-menu { +- right: 0; +- left: auto; +-} +-.dropup .caret, +-.navbar-fixed-bottom .dropdown .caret { +- content: ""; +- border-top: 0; +- border-bottom: 4px solid; +-} +-.dropup .dropdown-menu, +-.navbar-fixed-bottom .dropdown .dropdown-menu { +- top: auto; +- bottom: 100%; +- margin-bottom: 2px; +-} +-@media (min-width: 768px) { +- .navbar-right .dropdown-menu { +- right: 0; +- left: auto; +- } +- .navbar-right .dropdown-menu-left { +- right: auto; +- left: 0; +- } +-} +-.btn-group, +-.btn-group-vertical { +- position: relative; +- display: inline-block; +- vertical-align: middle; +-} +-.btn-group > .btn, +-.btn-group-vertical > .btn { +- position: relative; +- float: left; +-} +-.btn-group > .btn:hover, +-.btn-group-vertical > .btn:hover, +-.btn-group > .btn:focus, +-.btn-group-vertical > .btn:focus, +-.btn-group > .btn:active, +-.btn-group-vertical > .btn:active, +-.btn-group > .btn.active, +-.btn-group-vertical > .btn.active { +- z-index: 2; +-} +-.btn-group .btn + .btn, +-.btn-group .btn + .btn-group, +-.btn-group .btn-group + .btn, +-.btn-group .btn-group + .btn-group { +- margin-left: -1px; +-} +-.btn-toolbar { +- margin-left: -5px; +-} +-.btn-toolbar .btn-group, +-.btn-toolbar .input-group { +- float: left; +-} +-.btn-toolbar > .btn, +-.btn-toolbar > .btn-group, +-.btn-toolbar > .input-group { +- margin-left: 5px; +-} +-.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { +- border-radius: 0; +-} +-.btn-group > .btn:first-child { +- margin-left: 0; +-} +-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { +- border-top-right-radius: 0; +- border-bottom-right-radius: 0; +-} +-.btn-group > .btn:last-child:not(:first-child), +-.btn-group > .dropdown-toggle:not(:first-child) { +- border-top-left-radius: 0; +- border-bottom-left-radius: 0; +-} +-.btn-group > .btn-group { +- float: left; +-} +-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { +- border-radius: 0; +-} +-.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +-.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { +- border-top-right-radius: 0; +- border-bottom-right-radius: 0; +-} +-.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { +- border-top-left-radius: 0; +- border-bottom-left-radius: 0; +-} +-.btn-group .dropdown-toggle:active, +-.btn-group.open .dropdown-toggle { +- outline: 0; +-} +-.btn-group > .btn + .dropdown-toggle { +- padding-right: 8px; +- padding-left: 8px; +-} +-.btn-group > .btn-lg + .dropdown-toggle { +- padding-right: 12px; +- padding-left: 12px; +-} +-.btn-group.open .dropdown-toggle { +- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +-} +-.btn-group.open .dropdown-toggle.btn-link { +- -webkit-box-shadow: none; +- box-shadow: none; +-} +-.btn .caret { +- margin-left: 0; +-} +-.btn-lg .caret { +- border-width: 5px 5px 0; +- border-bottom-width: 0; +-} +-.dropup .btn-lg .caret { +- border-width: 0 5px 5px; +-} +-.btn-group-vertical > .btn, +-.btn-group-vertical > .btn-group, +-.btn-group-vertical > .btn-group > .btn { +- display: block; +- float: none; +- width: 100%; +- max-width: 100%; +-} +-.btn-group-vertical > .btn-group > .btn { +- float: none; +-} +-.btn-group-vertical > .btn + .btn, +-.btn-group-vertical > .btn + .btn-group, +-.btn-group-vertical > .btn-group + .btn, +-.btn-group-vertical > .btn-group + .btn-group { +- margin-top: -1px; +- margin-left: 0; +-} +-.btn-group-vertical > .btn:not(:first-child):not(:last-child) { +- border-radius: 0; +-} +-.btn-group-vertical > .btn:first-child:not(:last-child) { +- border-top-right-radius: 4px; +- border-bottom-right-radius: 0; +- border-bottom-left-radius: 0; +-} +-.btn-group-vertical > .btn:last-child:not(:first-child) { +- border-top-left-radius: 0; +- border-top-right-radius: 0; +- border-bottom-left-radius: 4px; +-} +-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { +- border-radius: 0; +-} +-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { +- border-bottom-right-radius: 0; +- border-bottom-left-radius: 0; +-} +-.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { +- border-top-left-radius: 0; +- border-top-right-radius: 0; +-} +-.btn-group-justified { +- display: table; +- width: 100%; +- table-layout: fixed; +- border-collapse: separate; +-} +-.btn-group-justified > .btn, +-.btn-group-justified > .btn-group { +- display: table-cell; +- float: none; +- width: 1%; +-} +-.btn-group-justified > .btn-group .btn { +- width: 100%; +-} +-.btn-group-justified > .btn-group .dropdown-menu { +- left: auto; +-} +-[data-toggle="buttons"] > .btn input[type="radio"], +-[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +-[data-toggle="buttons"] > .btn input[type="checkbox"], +-[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { +- position: absolute; +- clip: rect(0, 0, 0, 0); +- pointer-events: none; +-} +-.input-group { +- position: relative; +- display: table; +- border-collapse: separate; +-} +-.input-group[class*="col-"] { +- float: none; +- padding-right: 0; +- padding-left: 0; +-} +-.input-group .form-control { +- position: relative; +- z-index: 2; +- float: left; +- width: 100%; +- margin-bottom: 0; +-} +-.input-group-lg > .form-control, +-.input-group-lg > .input-group-addon, +-.input-group-lg > .input-group-btn > .btn { +- height: 46px; +- padding: 10px 16px; +- font-size: 18px; +- line-height: 1.3333333; +- border-radius: 6px; +-} +-select.input-group-lg > .form-control, +-select.input-group-lg > .input-group-addon, +-select.input-group-lg > .input-group-btn > .btn { +- height: 46px; +- line-height: 46px; +-} +-textarea.input-group-lg > .form-control, +-textarea.input-group-lg > .input-group-addon, +-textarea.input-group-lg > .input-group-btn > .btn, +-select[multiple].input-group-lg > .form-control, +-select[multiple].input-group-lg > .input-group-addon, +-select[multiple].input-group-lg > .input-group-btn > .btn { +- height: auto; +-} +-.input-group-sm > .form-control, +-.input-group-sm > .input-group-addon, +-.input-group-sm > .input-group-btn > .btn { +- height: 30px; +- padding: 5px 10px; +- font-size: 12px; +- line-height: 1.5; +- border-radius: 3px; +-} +-select.input-group-sm > .form-control, +-select.input-group-sm > .input-group-addon, +-select.input-group-sm > .input-group-btn > .btn { +- height: 30px; +- line-height: 30px; +-} +-textarea.input-group-sm > .form-control, +-textarea.input-group-sm > .input-group-addon, +-textarea.input-group-sm > .input-group-btn > .btn, +-select[multiple].input-group-sm > .form-control, +-select[multiple].input-group-sm > .input-group-addon, +-select[multiple].input-group-sm > .input-group-btn > .btn { +- height: auto; +-} +-.input-group-addon, +-.input-group-btn, +-.input-group .form-control { +- display: table-cell; +-} +-.input-group-addon:not(:first-child):not(:last-child), +-.input-group-btn:not(:first-child):not(:last-child), +-.input-group .form-control:not(:first-child):not(:last-child) { +- border-radius: 0; +-} +-.input-group-addon, +-.input-group-btn { +- width: 1%; +- white-space: nowrap; +- vertical-align: middle; +-} +-.input-group-addon { +- padding: 6px 12px; +- font-size: 14px; +- font-weight: normal; +- line-height: 1; +- color: #555; +- text-align: center; +- background-color: #eee; +- border: 1px solid #ccc; +- border-radius: 4px; +-} +-.input-group-addon.input-sm { +- padding: 5px 10px; +- font-size: 12px; +- border-radius: 3px; +-} +-.input-group-addon.input-lg { +- padding: 10px 16px; +- font-size: 18px; +- border-radius: 6px; +-} +-.input-group-addon input[type="radio"], +-.input-group-addon input[type="checkbox"] { +- margin-top: 0; +-} +-.input-group .form-control:first-child, +-.input-group-addon:first-child, +-.input-group-btn:first-child > .btn, +-.input-group-btn:first-child > .btn-group > .btn, +-.input-group-btn:first-child > .dropdown-toggle, +-.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +-.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { +- border-top-right-radius: 0; +- border-bottom-right-radius: 0; +-} +-.input-group-addon:first-child { +- border-right: 0; +-} +-.input-group .form-control:last-child, +-.input-group-addon:last-child, +-.input-group-btn:last-child > .btn, +-.input-group-btn:last-child > .btn-group > .btn, +-.input-group-btn:last-child > .dropdown-toggle, +-.input-group-btn:first-child > .btn:not(:first-child), +-.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { +- border-top-left-radius: 0; +- border-bottom-left-radius: 0; +-} +-.input-group-addon:last-child { +- border-left: 0; +-} +-.input-group-btn { +- position: relative; +- font-size: 0; +- white-space: nowrap; +-} +-.input-group-btn > .btn { +- position: relative; +-} +-.input-group-btn > .btn + .btn { +- margin-left: -1px; +-} +-.input-group-btn > .btn:hover, +-.input-group-btn > .btn:focus, +-.input-group-btn > .btn:active { +- z-index: 2; +-} +-.input-group-btn:first-child > .btn, +-.input-group-btn:first-child > .btn-group { +- margin-right: -1px; +-} +-.input-group-btn:last-child > .btn, +-.input-group-btn:last-child > .btn-group { +- margin-left: -1px; +-} +-.nav { +- padding-left: 0; +- margin-bottom: 0; +- list-style: none; +-} +-.nav > li { +- position: relative; +- display: block; +-} +-.nav > li > a { +- position: relative; +- display: block; +- padding: 10px 15px; +-} +-.nav > li > a:hover, +-.nav > li > a:focus { +- text-decoration: none; +- background-color: #eee; +-} +-.nav > li.disabled > a { +- color: #777; +-} +-.nav > li.disabled > a:hover, +-.nav > li.disabled > a:focus { +- color: #777; +- text-decoration: none; +- cursor: not-allowed; +- background-color: transparent; +-} +-.nav .open > a, +-.nav .open > a:hover, +-.nav .open > a:focus { +- background-color: #eee; +- border-color: #337ab7; +-} +-.nav .nav-divider { +- height: 1px; +- margin: 9px 0; +- overflow: hidden; +- background-color: #e5e5e5; +-} +-.nav > li > a > img { +- max-width: none; +-} +-.nav-tabs { +- border-bottom: 1px solid #ddd; +-} +-.nav-tabs > li { +- float: left; +- margin-bottom: -1px; +-} +-.nav-tabs > li > a { +- margin-right: 2px; +- line-height: 1.42857143; +- border: 1px solid transparent; +- border-radius: 4px 4px 0 0; +-} +-.nav-tabs > li > a:hover { +- border-color: #eee #eee #ddd; +-} +-.nav-tabs > li.active > a, +-.nav-tabs > li.active > a:hover, +-.nav-tabs > li.active > a:focus { +- color: #555; +- cursor: default; +- background-color: #fff; +- border: 1px solid #ddd; +- border-bottom-color: transparent; +-} +-.nav-tabs.nav-justified { +- width: 100%; +- border-bottom: 0; +-} +-.nav-tabs.nav-justified > li { +- float: none; +-} +-.nav-tabs.nav-justified > li > a { +- margin-bottom: 5px; +- text-align: center; +-} +-.nav-tabs.nav-justified > .dropdown .dropdown-menu { +- top: auto; +- left: auto; +-} +-@media (min-width: 768px) { +- .nav-tabs.nav-justified > li { +- display: table-cell; +- width: 1%; +- } +- .nav-tabs.nav-justified > li > a { +- margin-bottom: 0; +- } +-} +-.nav-tabs.nav-justified > li > a { +- margin-right: 0; +- border-radius: 4px; +-} +-.nav-tabs.nav-justified > .active > a, +-.nav-tabs.nav-justified > .active > a:hover, +-.nav-tabs.nav-justified > .active > a:focus { +- border: 1px solid #ddd; +-} +-@media (min-width: 768px) { +- .nav-tabs.nav-justified > li > a { +- border-bottom: 1px solid #ddd; +- border-radius: 4px 4px 0 0; +- } +- .nav-tabs.nav-justified > .active > a, +- .nav-tabs.nav-justified > .active > a:hover, +- .nav-tabs.nav-justified > .active > a:focus { +- border-bottom-color: #fff; +- } +-} +-.nav-pills > li { +- float: left; +-} +-.nav-pills > li > a { +- border-radius: 4px; +-} +-.nav-pills > li + li { +- margin-left: 2px; +-} +-.nav-pills > li.active > a, +-.nav-pills > li.active > a:hover, +-.nav-pills > li.active > a:focus { +- color: #fff; +- background-color: #337ab7; +-} +-.nav-stacked > li { +- float: none; +-} +-.nav-stacked > li + li { +- margin-top: 2px; +- margin-left: 0; +-} +-.nav-justified { +- width: 100%; +-} +-.nav-justified > li { +- float: none; +-} +-.nav-justified > li > a { +- margin-bottom: 5px; +- text-align: center; +-} +-.nav-justified > .dropdown .dropdown-menu { +- top: auto; +- left: auto; +-} +-@media (min-width: 768px) { +- .nav-justified > li { +- display: table-cell; +- width: 1%; +- } +- .nav-justified > li > a { +- margin-bottom: 0; +- } +-} +-.nav-tabs-justified { +- border-bottom: 0; +-} +-.nav-tabs-justified > li > a { +- margin-right: 0; +- border-radius: 4px; +-} +-.nav-tabs-justified > .active > a, +-.nav-tabs-justified > .active > a:hover, +-.nav-tabs-justified > .active > a:focus { +- border: 1px solid #ddd; +-} +-@media (min-width: 768px) { +- .nav-tabs-justified > li > a { +- border-bottom: 1px solid #ddd; +- border-radius: 4px 4px 0 0; +- } +- .nav-tabs-justified > .active > a, +- .nav-tabs-justified > .active > a:hover, +- .nav-tabs-justified > .active > a:focus { +- border-bottom-color: #fff; +- } +-} +-.tab-content > .tab-pane { +- display: none; +-} +-.tab-content > .active { +- display: block; +-} +-.nav-tabs .dropdown-menu { +- margin-top: -1px; +- border-top-left-radius: 0; +- border-top-right-radius: 0; +-} +-.navbar { +- position: relative; +- min-height: 50px; +- margin-bottom: 20px; +- border: 1px solid transparent; +-} +-@media (min-width: 768px) { +- .navbar { +- border-radius: 4px; +- } +-} +-@media (min-width: 768px) { +- .navbar-header { +- float: left; +- } +-} +-.navbar-collapse { +- padding-right: 15px; +- padding-left: 15px; +- overflow-x: visible; +- -webkit-overflow-scrolling: touch; +- border-top: 1px solid transparent; +- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); +- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); +-} +-.navbar-collapse.in { +- overflow-y: auto; +-} +-@media (min-width: 768px) { +- .navbar-collapse { +- width: auto; +- border-top: 0; +- -webkit-box-shadow: none; +- box-shadow: none; +- } +- .navbar-collapse.collapse { +- display: block !important; +- height: auto !important; +- padding-bottom: 0; +- overflow: visible !important; +- } +- .navbar-collapse.in { +- overflow-y: visible; +- } +- .navbar-fixed-top .navbar-collapse, +- .navbar-static-top .navbar-collapse, +- .navbar-fixed-bottom .navbar-collapse { +- padding-right: 0; +- padding-left: 0; +- } +-} +-.navbar-fixed-top .navbar-collapse, +-.navbar-fixed-bottom .navbar-collapse { +- max-height: 340px; +-} +-@media (max-device-width: 480px) and (orientation: landscape) { +- .navbar-fixed-top .navbar-collapse, +- .navbar-fixed-bottom .navbar-collapse { +- max-height: 200px; +- } +-} +-.container > .navbar-header, +-.container-fluid > .navbar-header, +-.container > .navbar-collapse, +-.container-fluid > .navbar-collapse { +- margin-right: -15px; +- margin-left: -15px; +-} +-@media (min-width: 768px) { +- .container > .navbar-header, +- .container-fluid > .navbar-header, +- .container > .navbar-collapse, +- .container-fluid > .navbar-collapse { +- margin-right: 0; +- margin-left: 0; +- } +-} +-.navbar-static-top { +- z-index: 1000; +- border-width: 0 0 1px; +-} +-@media (min-width: 768px) { +- .navbar-static-top { +- border-radius: 0; +- } +-} +-.navbar-fixed-top, +-.navbar-fixed-bottom { +- position: fixed; +- right: 0; +- left: 0; +- z-index: 1030; +-} +-@media (min-width: 768px) { +- .navbar-fixed-top, +- .navbar-fixed-bottom { +- border-radius: 0; +- } +-} +-.navbar-fixed-top { +- top: 0; +- border-width: 0 0 1px; +-} +-.navbar-fixed-bottom { +- bottom: 0; +- margin-bottom: 0; +- border-width: 1px 0 0; +-} +-.navbar-brand { +- float: left; +- height: 50px; +- padding: 15px 15px; +- font-size: 18px; +- line-height: 20px; +-} +-.navbar-brand:hover, +-.navbar-brand:focus { +- text-decoration: none; +-} +-.navbar-brand > img { +- display: block; +-} +-@media (min-width: 768px) { +- .navbar > .container .navbar-brand, +- .navbar > .container-fluid .navbar-brand { +- margin-left: -15px; +- } +-} +-.navbar-toggle { +- position: relative; +- float: right; +- padding: 9px 10px; +- margin-top: 8px; +- margin-right: 15px; +- margin-bottom: 8px; +- background-color: transparent; +- background-image: none; +- border: 1px solid transparent; +- border-radius: 4px; +-} +-.navbar-toggle:focus { +- outline: 0; +-} +-.navbar-toggle .icon-bar { +- display: block; +- width: 22px; +- height: 2px; +- border-radius: 1px; +-} +-.navbar-toggle .icon-bar + .icon-bar { +- margin-top: 4px; +-} +-@media (min-width: 768px) { +- .navbar-toggle { +- display: none; +- } +-} +-.navbar-nav { +- margin: 7.5px -15px; +-} +-.navbar-nav > li > a { +- padding-top: 10px; +- padding-bottom: 10px; +- line-height: 20px; +-} +-@media (max-width: 767px) { +- .navbar-nav .open .dropdown-menu { +- position: static; +- float: none; +- width: auto; +- margin-top: 0; +- background-color: transparent; +- border: 0; +- -webkit-box-shadow: none; +- box-shadow: none; +- } +- .navbar-nav .open .dropdown-menu > li > a, +- .navbar-nav .open .dropdown-menu .dropdown-header { +- padding: 5px 15px 5px 25px; +- } +- .navbar-nav .open .dropdown-menu > li > a { +- line-height: 20px; +- } +- .navbar-nav .open .dropdown-menu > li > a:hover, +- .navbar-nav .open .dropdown-menu > li > a:focus { +- background-image: none; +- } +-} +-@media (min-width: 768px) { +- .navbar-nav { +- float: left; +- margin: 0; +- } +- .navbar-nav > li { +- float: left; +- } +- .navbar-nav > li > a { +- padding-top: 15px; +- padding-bottom: 15px; +- } +-} +-.navbar-form { +- padding: 10px 15px; +- margin-top: 8px; +- margin-right: -15px; +- margin-bottom: 8px; +- margin-left: -15px; +- border-top: 1px solid transparent; +- border-bottom: 1px solid transparent; +- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); +- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); +-} +-@media (min-width: 768px) { +- .navbar-form .form-group { +- display: inline-block; +- margin-bottom: 0; +- vertical-align: middle; +- } +- .navbar-form .form-control { +- display: inline-block; +- width: auto; +- vertical-align: middle; +- } +- .navbar-form .form-control-static { +- display: inline-block; +- } +- .navbar-form .input-group { +- display: inline-table; +- vertical-align: middle; +- } +- .navbar-form .input-group .input-group-addon, +- .navbar-form .input-group .input-group-btn, +- .navbar-form .input-group .form-control { +- width: auto; +- } +- .navbar-form .input-group > .form-control { +- width: 100%; +- } +- .navbar-form .control-label { +- margin-bottom: 0; +- vertical-align: middle; +- } +- .navbar-form .radio, +- .navbar-form .checkbox { +- display: inline-block; +- margin-top: 0; +- margin-bottom: 0; +- vertical-align: middle; +- } +- .navbar-form .radio label, +- .navbar-form .checkbox label { +- padding-left: 0; +- } +- .navbar-form .radio input[type="radio"], +- .navbar-form .checkbox input[type="checkbox"] { +- position: relative; +- margin-left: 0; +- } +- .navbar-form .has-feedback .form-control-feedback { +- top: 0; +- } +-} +-@media (max-width: 767px) { +- .navbar-form .form-group { +- margin-bottom: 5px; +- } +- .navbar-form .form-group:last-child { +- margin-bottom: 0; +- } +-} +-@media (min-width: 768px) { +- .navbar-form { +- width: auto; +- padding-top: 0; +- padding-bottom: 0; +- margin-right: 0; +- margin-left: 0; +- border: 0; +- -webkit-box-shadow: none; +- box-shadow: none; +- } +-} +-.navbar-nav > li > .dropdown-menu { +- margin-top: 0; +- border-top-left-radius: 0; +- border-top-right-radius: 0; +-} +-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { +- margin-bottom: 0; +- border-top-left-radius: 4px; +- border-top-right-radius: 4px; +- border-bottom-right-radius: 0; +- border-bottom-left-radius: 0; +-} +-.navbar-btn { +- margin-top: 8px; +- margin-bottom: 8px; +-} +-.navbar-btn.btn-sm { +- margin-top: 10px; +- margin-bottom: 10px; +-} +-.navbar-btn.btn-xs { +- margin-top: 14px; +- margin-bottom: 14px; +-} +-.navbar-text { +- margin-top: 15px; +- margin-bottom: 15px; +-} +-@media (min-width: 768px) { +- .navbar-text { +- float: left; +- margin-right: 15px; +- margin-left: 15px; +- } +-} +-@media (min-width: 768px) { +- .navbar-left { +- float: left !important; +- } +- .navbar-right { +- float: right !important; +- margin-right: -15px; +- } +- .navbar-right ~ .navbar-right { +- margin-right: 0; +- } +-} +-.navbar-default { +- background-color: #f8f8f8; +- border-color: #e7e7e7; +-} +-.navbar-default .navbar-brand { +- color: #777; +-} +-.navbar-default .navbar-brand:hover, +-.navbar-default .navbar-brand:focus { +- color: #5e5e5e; +- background-color: transparent; +-} +-.navbar-default .navbar-text { +- color: #777; +-} +-.navbar-default .navbar-nav > li > a { +- color: #777; +-} +-.navbar-default .navbar-nav > li > a:hover, +-.navbar-default .navbar-nav > li > a:focus { +- color: #333; +- background-color: transparent; +-} +-.navbar-default .navbar-nav > .active > a, +-.navbar-default .navbar-nav > .active > a:hover, +-.navbar-default .navbar-nav > .active > a:focus { +- color: #555; +- background-color: #e7e7e7; +-} +-.navbar-default .navbar-nav > .disabled > a, +-.navbar-default .navbar-nav > .disabled > a:hover, +-.navbar-default .navbar-nav > .disabled > a:focus { +- color: #ccc; +- background-color: transparent; +-} +-.navbar-default .navbar-toggle { +- border-color: #ddd; +-} +-.navbar-default .navbar-toggle:hover, +-.navbar-default .navbar-toggle:focus { +- background-color: #ddd; +-} +-.navbar-default .navbar-toggle .icon-bar { +- background-color: #888; +-} +-.navbar-default .navbar-collapse, +-.navbar-default .navbar-form { +- border-color: #e7e7e7; +-} +-.navbar-default .navbar-nav > .open > a, +-.navbar-default .navbar-nav > .open > a:hover, +-.navbar-default .navbar-nav > .open > a:focus { +- color: #555; +- background-color: #e7e7e7; +-} +-@media (max-width: 767px) { +- .navbar-default .navbar-nav .open .dropdown-menu > li > a { +- color: #777; +- } +- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, +- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { +- color: #333; +- background-color: transparent; +- } +- .navbar-default .navbar-nav .open .dropdown-menu > .active > a, +- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, +- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { +- color: #555; +- background-color: #e7e7e7; +- } +- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, +- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, +- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { +- color: #ccc; +- background-color: transparent; +- } +-} +-.navbar-default .navbar-link { +- color: #777; +-} +-.navbar-default .navbar-link:hover { +- color: #333; +-} +-.navbar-default .btn-link { +- color: #777; +-} +-.navbar-default .btn-link:hover, +-.navbar-default .btn-link:focus { +- color: #333; +-} +-.navbar-default .btn-link[disabled]:hover, +-fieldset[disabled] .navbar-default .btn-link:hover, +-.navbar-default .btn-link[disabled]:focus, +-fieldset[disabled] .navbar-default .btn-link:focus { +- color: #ccc; +-} +-.navbar-inverse { +- background-color: #222; +- border-color: #080808; +-} +-.navbar-inverse .navbar-brand { +- color: #9d9d9d; +-} +-.navbar-inverse .navbar-brand:hover, +-.navbar-inverse .navbar-brand:focus { +- color: #fff; +- background-color: transparent; +-} +-.navbar-inverse .navbar-text { +- color: #9d9d9d; +-} +-.navbar-inverse .navbar-nav > li > a { +- color: #9d9d9d; +-} +-.navbar-inverse .navbar-nav > li > a:hover, +-.navbar-inverse .navbar-nav > li > a:focus { +- color: #fff; +- background-color: transparent; +-} +-.navbar-inverse .navbar-nav > .active > a, +-.navbar-inverse .navbar-nav > .active > a:hover, +-.navbar-inverse .navbar-nav > .active > a:focus { +- color: #fff; +- background-color: #080808; +-} +-.navbar-inverse .navbar-nav > .disabled > a, +-.navbar-inverse .navbar-nav > .disabled > a:hover, +-.navbar-inverse .navbar-nav > .disabled > a:focus { +- color: #444; +- background-color: transparent; +-} +-.navbar-inverse .navbar-toggle { +- border-color: #333; +-} +-.navbar-inverse .navbar-toggle:hover, +-.navbar-inverse .navbar-toggle:focus { +- background-color: #333; +-} +-.navbar-inverse .navbar-toggle .icon-bar { +- background-color: #fff; +-} +-.navbar-inverse .navbar-collapse, +-.navbar-inverse .navbar-form { +- border-color: #101010; +-} +-.navbar-inverse .navbar-nav > .open > a, +-.navbar-inverse .navbar-nav > .open > a:hover, +-.navbar-inverse .navbar-nav > .open > a:focus { +- color: #fff; +- background-color: #080808; +-} +-@media (max-width: 767px) { +- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { +- border-color: #080808; +- } +- .navbar-inverse .navbar-nav .open .dropdown-menu .divider { +- background-color: #080808; +- } +- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { +- color: #9d9d9d; +- } +- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, +- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { +- color: #fff; +- background-color: transparent; +- } +- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, +- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, +- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { +- color: #fff; +- background-color: #080808; +- } +- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, +- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, +- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { +- color: #444; +- background-color: transparent; +- } +-} +-.navbar-inverse .navbar-link { +- color: #9d9d9d; +-} +-.navbar-inverse .navbar-link:hover { +- color: #fff; +-} +-.navbar-inverse .btn-link { +- color: #9d9d9d; +-} +-.navbar-inverse .btn-link:hover, +-.navbar-inverse .btn-link:focus { +- color: #fff; +-} +-.navbar-inverse .btn-link[disabled]:hover, +-fieldset[disabled] .navbar-inverse .btn-link:hover, +-.navbar-inverse .btn-link[disabled]:focus, +-fieldset[disabled] .navbar-inverse .btn-link:focus { +- color: #444; +-} +-.breadcrumb { +- padding: 8px 15px; +- margin-bottom: 20px; +- list-style: none; +- background-color: #f5f5f5; +- border-radius: 4px; +-} +-.breadcrumb > li { +- display: inline-block; +-} +-.breadcrumb > li + li:before { +- padding: 0 5px; +- color: #ccc; +- content: "/\00a0"; +-} +-.breadcrumb > .active { +- color: #777; +-} +-.pagination { +- display: inline-block; +- padding-left: 0; +- margin: 20px 0; +- border-radius: 4px; +-} +-.pagination > li { +- display: inline; +-} +-.pagination > li > a, +-.pagination > li > span { +- position: relative; +- float: left; +- padding: 6px 12px; +- margin-left: -1px; +- line-height: 1.42857143; +- color: #337ab7; +- text-decoration: none; +- background-color: #fff; +- border: 1px solid #ddd; +-} +-.pagination > li:first-child > a, +-.pagination > li:first-child > span { +- margin-left: 0; +- border-top-left-radius: 4px; +- border-bottom-left-radius: 4px; +-} +-.pagination > li:last-child > a, +-.pagination > li:last-child > span { +- border-top-right-radius: 4px; +- border-bottom-right-radius: 4px; +-} +-.pagination > li > a:hover, +-.pagination > li > span:hover, +-.pagination > li > a:focus, +-.pagination > li > span:focus { +- color: #23527c; +- background-color: #eee; +- border-color: #ddd; +-} +-.pagination > .active > a, +-.pagination > .active > span, +-.pagination > .active > a:hover, +-.pagination > .active > span:hover, +-.pagination > .active > a:focus, +-.pagination > .active > span:focus { +- z-index: 2; +- color: #fff; +- cursor: default; +- background-color: #337ab7; +- border-color: #337ab7; +-} +-.pagination > .disabled > span, +-.pagination > .disabled > span:hover, +-.pagination > .disabled > span:focus, +-.pagination > .disabled > a, +-.pagination > .disabled > a:hover, +-.pagination > .disabled > a:focus { +- color: #777; +- cursor: not-allowed; +- background-color: #fff; +- border-color: #ddd; +-} +-.pagination-lg > li > a, +-.pagination-lg > li > span { +- padding: 10px 16px; +- font-size: 18px; +-} +-.pagination-lg > li:first-child > a, +-.pagination-lg > li:first-child > span { +- border-top-left-radius: 6px; +- border-bottom-left-radius: 6px; +-} +-.pagination-lg > li:last-child > a, +-.pagination-lg > li:last-child > span { +- border-top-right-radius: 6px; +- border-bottom-right-radius: 6px; +-} +-.pagination-sm > li > a, +-.pagination-sm > li > span { +- padding: 5px 10px; +- font-size: 12px; +-} +-.pagination-sm > li:first-child > a, +-.pagination-sm > li:first-child > span { +- border-top-left-radius: 3px; +- border-bottom-left-radius: 3px; +-} +-.pagination-sm > li:last-child > a, +-.pagination-sm > li:last-child > span { +- border-top-right-radius: 3px; +- border-bottom-right-radius: 3px; +-} +-.pager { +- padding-left: 0; +- margin: 20px 0; +- text-align: center; +- list-style: none; +-} +-.pager li { +- display: inline; +-} +-.pager li > a, +-.pager li > span { +- display: inline-block; +- padding: 5px 14px; +- background-color: #fff; +- border: 1px solid #ddd; +- border-radius: 15px; +-} +-.pager li > a:hover, +-.pager li > a:focus { +- text-decoration: none; +- background-color: #eee; +-} +-.pager .next > a, +-.pager .next > span { +- float: right; +-} +-.pager .previous > a, +-.pager .previous > span { +- float: left; +-} +-.pager .disabled > a, +-.pager .disabled > a:hover, +-.pager .disabled > a:focus, +-.pager .disabled > span { +- color: #777; +- cursor: not-allowed; +- background-color: #fff; +-} +-.label { +- display: inline; +- padding: .2em .6em .3em; +- font-size: 75%; +- font-weight: bold; +- line-height: 1; +- color: #fff; +- text-align: center; +- white-space: nowrap; +- vertical-align: baseline; +- border-radius: .25em; +-} +-a.label:hover, +-a.label:focus { +- color: #fff; +- text-decoration: none; +- cursor: pointer; +-} +-.label:empty { +- display: none; +-} +-.btn .label { +- position: relative; +- top: -1px; +-} +-.label-default { +- background-color: #777; +-} +-.label-default[href]:hover, +-.label-default[href]:focus { +- background-color: #5e5e5e; +-} +-.label-primary { +- background-color: #337ab7; +-} +-.label-primary[href]:hover, +-.label-primary[href]:focus { +- background-color: #286090; +-} +-.label-success { +- background-color: #5cb85c; +-} +-.label-success[href]:hover, +-.label-success[href]:focus { +- background-color: #449d44; +-} +-.label-info { +- background-color: #5bc0de; +-} +-.label-info[href]:hover, +-.label-info[href]:focus { +- background-color: #31b0d5; +-} +-.label-warning { +- background-color: #f0ad4e; +-} +-.label-warning[href]:hover, +-.label-warning[href]:focus { +- background-color: #ec971f; +-} +-.label-danger { +- background-color: #d9534f; +-} +-.label-danger[href]:hover, +-.label-danger[href]:focus { +- background-color: #c9302c; +-} +-.badge { +- display: inline-block; +- min-width: 10px; +- padding: 3px 7px; +- font-size: 12px; +- font-weight: bold; +- line-height: 1; +- color: #fff; +- text-align: center; +- white-space: nowrap; +- vertical-align: baseline; +- background-color: #777; +- border-radius: 10px; +-} +-.badge:empty { +- display: none; +-} +-.btn .badge { +- position: relative; +- top: -1px; +-} +-.btn-xs .badge, +-.btn-group-xs > .btn .badge { +- top: 0; +- padding: 1px 5px; +-} +-a.badge:hover, +-a.badge:focus { +- color: #fff; +- text-decoration: none; +- cursor: pointer; +-} +-.list-group-item.active > .badge, +-.nav-pills > .active > a > .badge { +- color: #337ab7; +- background-color: #fff; +-} +-.list-group-item > .badge { +- float: right; +-} +-.list-group-item > .badge + .badge { +- margin-right: 5px; +-} +-.nav-pills > li > a > .badge { +- margin-left: 3px; +-} +-.jumbotron { +- padding: 30px 15px; +- margin-bottom: 30px; +- color: inherit; +- background-color: #eee; +-} +-.jumbotron h1, +-.jumbotron .h1 { +- color: inherit; +-} +-.jumbotron p { +- margin-bottom: 15px; +- font-size: 21px; +- font-weight: 200; +-} +-.jumbotron > hr { +- border-top-color: #d5d5d5; +-} +-.container .jumbotron, +-.container-fluid .jumbotron { +- border-radius: 6px; +-} +-.jumbotron .container { +- max-width: 100%; +-} +-@media screen and (min-width: 768px) { +- .jumbotron { +- padding: 48px 0; +- } +- .container .jumbotron, +- .container-fluid .jumbotron { +- padding-right: 60px; +- padding-left: 60px; +- } +- .jumbotron h1, +- .jumbotron .h1 { +- font-size: 63px; +- } +-} +-.thumbnail { +- display: block; +- padding: 4px; +- margin-bottom: 20px; +- line-height: 1.42857143; +- background-color: #fff; +- border: 1px solid #ddd; +- border-radius: 4px; +- -webkit-transition: border .2s ease-in-out; +- -o-transition: border .2s ease-in-out; +- transition: border .2s ease-in-out; +-} +-.thumbnail > img, +-.thumbnail a > img { +- margin-right: auto; +- margin-left: auto; +-} +-a.thumbnail:hover, +-a.thumbnail:focus, +-a.thumbnail.active { +- border-color: #337ab7; +-} +-.thumbnail .caption { +- padding: 9px; +- color: #333; +-} +-.alert { +- padding: 15px; +- margin-bottom: 20px; +- border: 1px solid transparent; +- border-radius: 4px; +-} +-.alert h4 { +- margin-top: 0; +- color: inherit; +-} +-.alert .alert-link { +- font-weight: bold; +-} +-.alert > p, +-.alert > ul { +- margin-bottom: 0; +-} +-.alert > p + p { +- margin-top: 5px; +-} +-.alert-dismissable, +-.alert-dismissible { +- padding-right: 35px; +-} +-.alert-dismissable .close, +-.alert-dismissible .close { +- position: relative; +- top: -2px; +- right: -21px; +- color: inherit; +-} +-.alert-success { +- color: #3c763d; +- background-color: #dff0d8; +- border-color: #d6e9c6; +-} +-.alert-success hr { +- border-top-color: #c9e2b3; +-} +-.alert-success .alert-link { +- color: #2b542c; +-} +-.alert-info { +- color: #31708f; +- background-color: #d9edf7; +- border-color: #bce8f1; +-} +-.alert-info hr { +- border-top-color: #a6e1ec; +-} +-.alert-info .alert-link { +- color: #245269; +-} +-.alert-warning { +- color: #8a6d3b; +- background-color: #fcf8e3; +- border-color: #faebcc; +-} +-.alert-warning hr { +- border-top-color: #f7e1b5; +-} +-.alert-warning .alert-link { +- color: #66512c; +-} +-.alert-danger { +- color: #a94442; +- background-color: #f2dede; +- border-color: #ebccd1; +-} +-.alert-danger hr { +- border-top-color: #e4b9c0; +-} +-.alert-danger .alert-link { +- color: #843534; +-} +-@-webkit-keyframes progress-bar-stripes { +- from { +- background-position: 40px 0; +- } +- to { +- background-position: 0 0; +- } +-} +-@-o-keyframes progress-bar-stripes { +- from { +- background-position: 40px 0; +- } +- to { +- background-position: 0 0; +- } +-} +-@keyframes progress-bar-stripes { +- from { +- background-position: 40px 0; +- } +- to { +- background-position: 0 0; +- } +-} +-.progress { +- height: 20px; +- margin-bottom: 20px; +- overflow: hidden; +- background-color: #f5f5f5; +- border-radius: 4px; +- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); +- box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); +-} +-.progress-bar { +- float: left; +- width: 0; +- height: 100%; +- font-size: 12px; +- line-height: 20px; +- color: #fff; +- text-align: center; +- background-color: #337ab7; +- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); +- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); +- -webkit-transition: width .6s ease; +- -o-transition: width .6s ease; +- transition: width .6s ease; +-} +-.progress-striped .progress-bar, +-.progress-bar-striped { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- -webkit-background-size: 40px 40px; +- background-size: 40px 40px; +-} +-.progress.active .progress-bar, +-.progress-bar.active { +- -webkit-animation: progress-bar-stripes 2s linear infinite; +- -o-animation: progress-bar-stripes 2s linear infinite; +- animation: progress-bar-stripes 2s linear infinite; +-} +-.progress-bar-success { +- background-color: #5cb85c; +-} +-.progress-striped .progress-bar-success { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +-} +-.progress-bar-info { +- background-color: #5bc0de; +-} +-.progress-striped .progress-bar-info { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +-} +-.progress-bar-warning { +- background-color: #f0ad4e; +-} +-.progress-striped .progress-bar-warning { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +-} +-.progress-bar-danger { +- background-color: #d9534f; +-} +-.progress-striped .progress-bar-danger { +- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +-} +-.media { +- margin-top: 15px; +-} +-.media:first-child { +- margin-top: 0; +-} +-.media, +-.media-body { +- overflow: hidden; +- zoom: 1; +-} +-.media-body { +- width: 10000px; +-} +-.media-object { +- display: block; +-} +-.media-right, +-.media > .pull-right { +- padding-left: 10px; +-} +-.media-left, +-.media > .pull-left { +- padding-right: 10px; +-} +-.media-left, +-.media-right, +-.media-body { +- display: table-cell; +- vertical-align: top; +-} +-.media-middle { +- vertical-align: middle; +-} +-.media-bottom { +- vertical-align: bottom; +-} +-.media-heading { +- margin-top: 0; +- margin-bottom: 5px; +-} +-.media-list { +- padding-left: 0; +- list-style: none; +-} +-.list-group { +- padding-left: 0; +- margin-bottom: 20px; +-} +-.list-group-item { +- position: relative; +- display: block; +- padding: 10px 15px; +- margin-bottom: -1px; +- background-color: #fff; +- border: 1px solid #ddd; +-} +-.list-group-item:first-child { +- border-top-left-radius: 4px; +- border-top-right-radius: 4px; +-} +-.list-group-item:last-child { +- margin-bottom: 0; +- border-bottom-right-radius: 4px; +- border-bottom-left-radius: 4px; +-} +-a.list-group-item { +- color: #555; +-} +-a.list-group-item .list-group-item-heading { +- color: #333; +-} +-a.list-group-item:hover, +-a.list-group-item:focus { +- color: #555; +- text-decoration: none; +- background-color: #f5f5f5; +-} +-.list-group-item.disabled, +-.list-group-item.disabled:hover, +-.list-group-item.disabled:focus { +- color: #777; +- cursor: not-allowed; +- background-color: #eee; +-} +-.list-group-item.disabled .list-group-item-heading, +-.list-group-item.disabled:hover .list-group-item-heading, +-.list-group-item.disabled:focus .list-group-item-heading { +- color: inherit; +-} +-.list-group-item.disabled .list-group-item-text, +-.list-group-item.disabled:hover .list-group-item-text, +-.list-group-item.disabled:focus .list-group-item-text { +- color: #777; +-} +-.list-group-item.active, +-.list-group-item.active:hover, +-.list-group-item.active:focus { +- z-index: 2; +- color: #fff; +- background-color: #337ab7; +- border-color: #337ab7; +-} +-.list-group-item.active .list-group-item-heading, +-.list-group-item.active:hover .list-group-item-heading, +-.list-group-item.active:focus .list-group-item-heading, +-.list-group-item.active .list-group-item-heading > small, +-.list-group-item.active:hover .list-group-item-heading > small, +-.list-group-item.active:focus .list-group-item-heading > small, +-.list-group-item.active .list-group-item-heading > .small, +-.list-group-item.active:hover .list-group-item-heading > .small, +-.list-group-item.active:focus .list-group-item-heading > .small { +- color: inherit; +-} +-.list-group-item.active .list-group-item-text, +-.list-group-item.active:hover .list-group-item-text, +-.list-group-item.active:focus .list-group-item-text { +- color: #c7ddef; +-} +-.list-group-item-success { +- color: #3c763d; +- background-color: #dff0d8; +-} +-a.list-group-item-success { +- color: #3c763d; +-} +-a.list-group-item-success .list-group-item-heading { +- color: inherit; +-} +-a.list-group-item-success:hover, +-a.list-group-item-success:focus { +- color: #3c763d; +- background-color: #d0e9c6; +-} +-a.list-group-item-success.active, +-a.list-group-item-success.active:hover, +-a.list-group-item-success.active:focus { +- color: #fff; +- background-color: #3c763d; +- border-color: #3c763d; +-} +-.list-group-item-info { +- color: #31708f; +- background-color: #d9edf7; +-} +-a.list-group-item-info { +- color: #31708f; +-} +-a.list-group-item-info .list-group-item-heading { +- color: inherit; +-} +-a.list-group-item-info:hover, +-a.list-group-item-info:focus { +- color: #31708f; +- background-color: #c4e3f3; +-} +-a.list-group-item-info.active, +-a.list-group-item-info.active:hover, +-a.list-group-item-info.active:focus { +- color: #fff; +- background-color: #31708f; +- border-color: #31708f; +-} +-.list-group-item-warning { +- color: #8a6d3b; +- background-color: #fcf8e3; +-} +-a.list-group-item-warning { +- color: #8a6d3b; +-} +-a.list-group-item-warning .list-group-item-heading { +- color: inherit; +-} +-a.list-group-item-warning:hover, +-a.list-group-item-warning:focus { +- color: #8a6d3b; +- background-color: #faf2cc; +-} +-a.list-group-item-warning.active, +-a.list-group-item-warning.active:hover, +-a.list-group-item-warning.active:focus { +- color: #fff; +- background-color: #8a6d3b; +- border-color: #8a6d3b; +-} +-.list-group-item-danger { +- color: #a94442; +- background-color: #f2dede; +-} +-a.list-group-item-danger { +- color: #a94442; +-} +-a.list-group-item-danger .list-group-item-heading { +- color: inherit; +-} +-a.list-group-item-danger:hover, +-a.list-group-item-danger:focus { +- color: #a94442; +- background-color: #ebcccc; +-} +-a.list-group-item-danger.active, +-a.list-group-item-danger.active:hover, +-a.list-group-item-danger.active:focus { +- color: #fff; +- background-color: #a94442; +- border-color: #a94442; +-} +-.list-group-item-heading { +- margin-top: 0; +- margin-bottom: 5px; +-} +-.list-group-item-text { +- margin-bottom: 0; +- line-height: 1.3; +-} +-.panel { +- margin-bottom: 20px; +- background-color: #fff; +- border: 1px solid transparent; +- border-radius: 4px; +- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); +- box-shadow: 0 1px 1px rgba(0, 0, 0, .05); +-} +-.panel-body { +- padding: 15px; +-} +-.panel-heading { +- padding: 10px 15px; +- border-bottom: 1px solid transparent; +- border-top-left-radius: 3px; +- border-top-right-radius: 3px; +-} +-.panel-heading > .dropdown .dropdown-toggle { +- color: inherit; +-} +-.panel-title { +- margin-top: 0; +- margin-bottom: 0; +- font-size: 16px; +- color: inherit; +-} +-.panel-title > a, +-.panel-title > small, +-.panel-title > .small, +-.panel-title > small > a, +-.panel-title > .small > a { +- color: inherit; +-} +-.panel-footer { +- padding: 10px 15px; +- background-color: #f5f5f5; +- border-top: 1px solid #ddd; +- border-bottom-right-radius: 3px; +- border-bottom-left-radius: 3px; +-} +-.panel > .list-group, +-.panel > .panel-collapse > .list-group { +- margin-bottom: 0; +-} +-.panel > .list-group .list-group-item, +-.panel > .panel-collapse > .list-group .list-group-item { +- border-width: 1px 0; +- border-radius: 0; +-} +-.panel > .list-group:first-child .list-group-item:first-child, +-.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { +- border-top: 0; +- border-top-left-radius: 3px; +- border-top-right-radius: 3px; +-} +-.panel > .list-group:last-child .list-group-item:last-child, +-.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { +- border-bottom: 0; +- border-bottom-right-radius: 3px; +- border-bottom-left-radius: 3px; +-} +-.panel-heading + .list-group .list-group-item:first-child { +- border-top-width: 0; +-} +-.list-group + .panel-footer { +- border-top-width: 0; +-} +-.panel > .table, +-.panel > .table-responsive > .table, +-.panel > .panel-collapse > .table { +- margin-bottom: 0; +-} +-.panel > .table caption, +-.panel > .table-responsive > .table caption, +-.panel > .panel-collapse > .table caption { +- padding-right: 15px; +- padding-left: 15px; +-} +-.panel > .table:first-child, +-.panel > .table-responsive:first-child > .table:first-child { +- border-top-left-radius: 3px; +- border-top-right-radius: 3px; +-} +-.panel > .table:first-child > thead:first-child > tr:first-child, +-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +-.panel > .table:first-child > tbody:first-child > tr:first-child, +-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { +- border-top-left-radius: 3px; +- border-top-right-radius: 3px; +-} +-.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +-.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +-.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +-.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { +- border-top-left-radius: 3px; +-} +-.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +-.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +-.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +-.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { +- border-top-right-radius: 3px; +-} +-.panel > .table:last-child, +-.panel > .table-responsive:last-child > .table:last-child { +- border-bottom-right-radius: 3px; +- border-bottom-left-radius: 3px; +-} +-.panel > .table:last-child > tbody:last-child > tr:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +-.panel > .table:last-child > tfoot:last-child > tr:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { +- border-bottom-right-radius: 3px; +- border-bottom-left-radius: 3px; +-} +-.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +-.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +-.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +-.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { +- border-bottom-left-radius: 3px; +-} +-.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +-.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +-.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +-.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { +- border-bottom-right-radius: 3px; +-} +-.panel > .panel-body + .table, +-.panel > .panel-body + .table-responsive, +-.panel > .table + .panel-body, +-.panel > .table-responsive + .panel-body { +- border-top: 1px solid #ddd; +-} +-.panel > .table > tbody:first-child > tr:first-child th, +-.panel > .table > tbody:first-child > tr:first-child td { +- border-top: 0; +-} +-.panel > .table-bordered, +-.panel > .table-responsive > .table-bordered { +- border: 0; +-} +-.panel > .table-bordered > thead > tr > th:first-child, +-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +-.panel > .table-bordered > tbody > tr > th:first-child, +-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +-.panel > .table-bordered > tfoot > tr > th:first-child, +-.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +-.panel > .table-bordered > thead > tr > td:first-child, +-.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +-.panel > .table-bordered > tbody > tr > td:first-child, +-.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +-.panel > .table-bordered > tfoot > tr > td:first-child, +-.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { +- border-left: 0; +-} +-.panel > .table-bordered > thead > tr > th:last-child, +-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +-.panel > .table-bordered > tbody > tr > th:last-child, +-.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +-.panel > .table-bordered > tfoot > tr > th:last-child, +-.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +-.panel > .table-bordered > thead > tr > td:last-child, +-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +-.panel > .table-bordered > tbody > tr > td:last-child, +-.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +-.panel > .table-bordered > tfoot > tr > td:last-child, +-.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { +- border-right: 0; +-} +-.panel > .table-bordered > thead > tr:first-child > td, +-.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +-.panel > .table-bordered > tbody > tr:first-child > td, +-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +-.panel > .table-bordered > thead > tr:first-child > th, +-.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +-.panel > .table-bordered > tbody > tr:first-child > th, +-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { +- border-bottom: 0; +-} +-.panel > .table-bordered > tbody > tr:last-child > td, +-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +-.panel > .table-bordered > tfoot > tr:last-child > td, +-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +-.panel > .table-bordered > tbody > tr:last-child > th, +-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +-.panel > .table-bordered > tfoot > tr:last-child > th, +-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { +- border-bottom: 0; +-} +-.panel > .table-responsive { +- margin-bottom: 0; +- border: 0; +-} +-.panel-group { +- margin-bottom: 20px; +-} +-.panel-group .panel { +- margin-bottom: 0; +- border-radius: 4px; +-} +-.panel-group .panel + .panel { +- margin-top: 5px; +-} +-.panel-group .panel-heading { +- border-bottom: 0; +-} +-.panel-group .panel-heading + .panel-collapse > .panel-body, +-.panel-group .panel-heading + .panel-collapse > .list-group { +- border-top: 1px solid #ddd; +-} +-.panel-group .panel-footer { +- border-top: 0; +-} +-.panel-group .panel-footer + .panel-collapse .panel-body { +- border-bottom: 1px solid #ddd; +-} +-.panel-default { +- border-color: #ddd; +-} +-.panel-default > .panel-heading { +- color: #333; +- background-color: #f5f5f5; +- border-color: #ddd; +-} +-.panel-default > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #ddd; +-} +-.panel-default > .panel-heading .badge { +- color: #f5f5f5; +- background-color: #333; +-} +-.panel-default > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #ddd; +-} +-.panel-primary { +- border-color: #337ab7; +-} +-.panel-primary > .panel-heading { +- color: #fff; +- background-color: #337ab7; +- border-color: #337ab7; +-} +-.panel-primary > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #337ab7; +-} +-.panel-primary > .panel-heading .badge { +- color: #337ab7; +- background-color: #fff; +-} +-.panel-primary > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #337ab7; +-} +-.panel-success { +- border-color: #d6e9c6; +-} +-.panel-success > .panel-heading { +- color: #3c763d; +- background-color: #dff0d8; +- border-color: #d6e9c6; +-} +-.panel-success > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #d6e9c6; +-} +-.panel-success > .panel-heading .badge { +- color: #dff0d8; +- background-color: #3c763d; +-} +-.panel-success > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #d6e9c6; +-} +-.panel-info { +- border-color: #bce8f1; +-} +-.panel-info > .panel-heading { +- color: #31708f; +- background-color: #d9edf7; +- border-color: #bce8f1; +-} +-.panel-info > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #bce8f1; +-} +-.panel-info > .panel-heading .badge { +- color: #d9edf7; +- background-color: #31708f; +-} +-.panel-info > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #bce8f1; +-} +-.panel-warning { +- border-color: #faebcc; +-} +-.panel-warning > .panel-heading { +- color: #8a6d3b; +- background-color: #fcf8e3; +- border-color: #faebcc; +-} +-.panel-warning > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #faebcc; +-} +-.panel-warning > .panel-heading .badge { +- color: #fcf8e3; +- background-color: #8a6d3b; +-} +-.panel-warning > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #faebcc; +-} +-.panel-danger { +- border-color: #ebccd1; +-} +-.panel-danger > .panel-heading { +- color: #a94442; +- background-color: #f2dede; +- border-color: #ebccd1; +-} +-.panel-danger > .panel-heading + .panel-collapse > .panel-body { +- border-top-color: #ebccd1; +-} +-.panel-danger > .panel-heading .badge { +- color: #f2dede; +- background-color: #a94442; +-} +-.panel-danger > .panel-footer + .panel-collapse > .panel-body { +- border-bottom-color: #ebccd1; +-} +-.embed-responsive { +- position: relative; +- display: block; +- height: 0; +- padding: 0; +- overflow: hidden; +-} +-.embed-responsive .embed-responsive-item, +-.embed-responsive iframe, +-.embed-responsive embed, +-.embed-responsive object, +-.embed-responsive video { +- position: absolute; +- top: 0; +- bottom: 0; +- left: 0; +- width: 100%; +- height: 100%; +- border: 0; +-} +-.embed-responsive-16by9 { +- padding-bottom: 56.25%; +-} +-.embed-responsive-4by3 { +- padding-bottom: 75%; +-} +-.well { +- min-height: 20px; +- padding: 19px; +- margin-bottom: 20px; +- background-color: #f5f5f5; +- border: 1px solid #e3e3e3; +- border-radius: 4px; +- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); +- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); +-} +-.well blockquote { +- border-color: #ddd; +- border-color: rgba(0, 0, 0, .15); +-} +-.well-lg { +- padding: 24px; +- border-radius: 6px; +-} +-.well-sm { +- padding: 9px; +- border-radius: 3px; +-} +-.close { +- float: right; +- font-size: 21px; +- font-weight: bold; +- line-height: 1; +- color: #000; +- text-shadow: 0 1px 0 #fff; +- filter: alpha(opacity=20); +- opacity: .2; +-} +-.close:hover, +-.close:focus { +- color: #000; +- text-decoration: none; +- cursor: pointer; +- filter: alpha(opacity=50); +- opacity: .5; +-} +-button.close { +- -webkit-appearance: none; +- padding: 0; +- cursor: pointer; +- background: transparent; +- border: 0; +-} +-.modal-open { +- overflow: hidden; +-} +-.modal { +- position: fixed; +- top: 0; +- right: 0; +- bottom: 0; +- left: 0; +- z-index: 1050; +- display: none; +- overflow: hidden; +- -webkit-overflow-scrolling: touch; +- outline: 0; +-} +-.modal.fade .modal-dialog { +- -webkit-transition: -webkit-transform .3s ease-out; +- -o-transition: -o-transform .3s ease-out; +- transition: transform .3s ease-out; +- -webkit-transform: translate(0, -25%); +- -ms-transform: translate(0, -25%); +- -o-transform: translate(0, -25%); +- transform: translate(0, -25%); +-} +-.modal.in .modal-dialog { +- -webkit-transform: translate(0, 0); +- -ms-transform: translate(0, 0); +- -o-transform: translate(0, 0); +- transform: translate(0, 0); +-} +-.modal-open .modal { +- overflow-x: hidden; +- overflow-y: auto; +-} +-.modal-dialog { +- position: relative; +- width: auto; +- margin: 10px; +-} +-.modal-content { +- position: relative; +- background-color: #fff; +- -webkit-background-clip: padding-box; +- background-clip: padding-box; +- border: 1px solid #999; +- border: 1px solid rgba(0, 0, 0, .2); +- border-radius: 6px; +- outline: 0; +- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); +- box-shadow: 0 3px 9px rgba(0, 0, 0, .5); +-} +-.modal-backdrop { +- position: fixed; +- top: 0; +- right: 0; +- bottom: 0; +- left: 0; +- z-index: 1040; +- background-color: #000; +-} +-.modal-backdrop.fade { +- filter: alpha(opacity=0); +- opacity: 0; +-} +-.modal-backdrop.in { +- filter: alpha(opacity=50); +- opacity: .5; +-} +-.modal-header { +- min-height: 16.42857143px; +- padding: 15px; +- border-bottom: 1px solid #e5e5e5; +-} +-.modal-header .close { +- margin-top: -2px; +-} +-.modal-title { +- margin: 0; +- line-height: 1.42857143; +-} +-.modal-body { +- position: relative; +- padding: 15px; +-} +-.modal-footer { +- padding: 15px; +- text-align: right; +- border-top: 1px solid #e5e5e5; +-} +-.modal-footer .btn + .btn { +- margin-bottom: 0; +- margin-left: 5px; +-} +-.modal-footer .btn-group .btn + .btn { +- margin-left: -1px; +-} +-.modal-footer .btn-block + .btn-block { +- margin-left: 0; +-} +-.modal-scrollbar-measure { +- position: absolute; +- top: -9999px; +- width: 50px; +- height: 50px; +- overflow: scroll; +-} +-@media (min-width: 768px) { +- .modal-dialog { +- width: 600px; +- margin: 30px auto; +- } +- .modal-content { +- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); +- box-shadow: 0 5px 15px rgba(0, 0, 0, .5); +- } +- .modal-sm { +- width: 300px; +- } +-} +-@media (min-width: 992px) { +- .modal-lg { +- width: 900px; +- } +-} +-.tooltip { +- position: absolute; +- z-index: 1070; +- display: block; +- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +- font-size: 12px; +- font-weight: normal; +- line-height: 1.4; +- filter: alpha(opacity=0); +- opacity: 0; +-} +-.tooltip.in { +- filter: alpha(opacity=90); +- opacity: .9; +-} +-.tooltip.top { +- padding: 5px 0; +- margin-top: -3px; +-} +-.tooltip.right { +- padding: 0 5px; +- margin-left: 3px; +-} +-.tooltip.bottom { +- padding: 5px 0; +- margin-top: 3px; +-} +-.tooltip.left { +- padding: 0 5px; +- margin-left: -3px; +-} +-.tooltip-inner { +- max-width: 200px; +- padding: 3px 8px; +- color: #fff; +- text-align: center; +- text-decoration: none; +- background-color: #000; +- border-radius: 4px; +-} +-.tooltip-arrow { +- position: absolute; +- width: 0; +- height: 0; +- border-color: transparent; +- border-style: solid; +-} +-.tooltip.top .tooltip-arrow { +- bottom: 0; +- left: 50%; +- margin-left: -5px; +- border-width: 5px 5px 0; +- border-top-color: #000; +-} +-.tooltip.top-left .tooltip-arrow { +- right: 5px; +- bottom: 0; +- margin-bottom: -5px; +- border-width: 5px 5px 0; +- border-top-color: #000; +-} +-.tooltip.top-right .tooltip-arrow { +- bottom: 0; +- left: 5px; +- margin-bottom: -5px; +- border-width: 5px 5px 0; +- border-top-color: #000; +-} +-.tooltip.right .tooltip-arrow { +- top: 50%; +- left: 0; +- margin-top: -5px; +- border-width: 5px 5px 5px 0; +- border-right-color: #000; +-} +-.tooltip.left .tooltip-arrow { +- top: 50%; +- right: 0; +- margin-top: -5px; +- border-width: 5px 0 5px 5px; +- border-left-color: #000; +-} +-.tooltip.bottom .tooltip-arrow { +- top: 0; +- left: 50%; +- margin-left: -5px; +- border-width: 0 5px 5px; +- border-bottom-color: #000; +-} +-.tooltip.bottom-left .tooltip-arrow { +- top: 0; +- right: 5px; +- margin-top: -5px; +- border-width: 0 5px 5px; +- border-bottom-color: #000; +-} +-.tooltip.bottom-right .tooltip-arrow { +- top: 0; +- left: 5px; +- margin-top: -5px; +- border-width: 0 5px 5px; +- border-bottom-color: #000; +-} +-.popover { +- position: absolute; +- top: 0; +- left: 0; +- z-index: 1060; +- display: none; +- max-width: 276px; +- padding: 1px; +- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +- font-size: 14px; +- font-weight: normal; +- line-height: 1.42857143; +- text-align: left; +- white-space: normal; +- background-color: #fff; +- -webkit-background-clip: padding-box; +- background-clip: padding-box; +- border: 1px solid #ccc; +- border: 1px solid rgba(0, 0, 0, .2); +- border-radius: 6px; +- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); +- box-shadow: 0 5px 10px rgba(0, 0, 0, .2); +-} +-.popover.top { +- margin-top: -10px; +-} +-.popover.right { +- margin-left: 10px; +-} +-.popover.bottom { +- margin-top: 10px; +-} +-.popover.left { +- margin-left: -10px; +-} +-.popover-title { +- padding: 8px 14px; +- margin: 0; +- font-size: 14px; +- background-color: #f7f7f7; +- border-bottom: 1px solid #ebebeb; +- border-radius: 5px 5px 0 0; +-} +-.popover-content { +- padding: 9px 14px; +-} +-.popover > .arrow, +-.popover > .arrow:after { +- position: absolute; +- display: block; +- width: 0; +- height: 0; +- border-color: transparent; +- border-style: solid; +-} +-.popover > .arrow { +- border-width: 11px; +-} +-.popover > .arrow:after { +- content: ""; +- border-width: 10px; +-} +-.popover.top > .arrow { +- bottom: -11px; +- left: 50%; +- margin-left: -11px; +- border-top-color: #999; +- border-top-color: rgba(0, 0, 0, .25); +- border-bottom-width: 0; +-} +-.popover.top > .arrow:after { +- bottom: 1px; +- margin-left: -10px; +- content: " "; +- border-top-color: #fff; +- border-bottom-width: 0; +-} +-.popover.right > .arrow { +- top: 50%; +- left: -11px; +- margin-top: -11px; +- border-right-color: #999; +- border-right-color: rgba(0, 0, 0, .25); +- border-left-width: 0; +-} +-.popover.right > .arrow:after { +- bottom: -10px; +- left: 1px; +- content: " "; +- border-right-color: #fff; +- border-left-width: 0; +-} +-.popover.bottom > .arrow { +- top: -11px; +- left: 50%; +- margin-left: -11px; +- border-top-width: 0; +- border-bottom-color: #999; +- border-bottom-color: rgba(0, 0, 0, .25); +-} +-.popover.bottom > .arrow:after { +- top: 1px; +- margin-left: -10px; +- content: " "; +- border-top-width: 0; +- border-bottom-color: #fff; +-} +-.popover.left > .arrow { +- top: 50%; +- right: -11px; +- margin-top: -11px; +- border-right-width: 0; +- border-left-color: #999; +- border-left-color: rgba(0, 0, 0, .25); +-} +-.popover.left > .arrow:after { +- right: 1px; +- bottom: -10px; +- content: " "; +- border-right-width: 0; +- border-left-color: #fff; +-} +-.carousel { +- position: relative; +-} +-.carousel-inner { +- position: relative; +- width: 100%; +- overflow: hidden; +-} +-.carousel-inner > .item { +- position: relative; +- display: none; +- -webkit-transition: .6s ease-in-out left; +- -o-transition: .6s ease-in-out left; +- transition: .6s ease-in-out left; +-} +-.carousel-inner > .item > img, +-.carousel-inner > .item > a > img { +- line-height: 1; +-} +-@media all and (transform-3d), (-webkit-transform-3d) { +- .carousel-inner > .item { +- -webkit-transition: -webkit-transform .6s ease-in-out; +- -o-transition: -o-transform .6s ease-in-out; +- transition: transform .6s ease-in-out; +- +- -webkit-backface-visibility: hidden; +- backface-visibility: hidden; +- -webkit-perspective: 1000; +- perspective: 1000; +- } +- .carousel-inner > .item.next, +- .carousel-inner > .item.active.right { +- left: 0; +- -webkit-transform: translate3d(100%, 0, 0); +- transform: translate3d(100%, 0, 0); +- } +- .carousel-inner > .item.prev, +- .carousel-inner > .item.active.left { +- left: 0; +- -webkit-transform: translate3d(-100%, 0, 0); +- transform: translate3d(-100%, 0, 0); +- } +- .carousel-inner > .item.next.left, +- .carousel-inner > .item.prev.right, +- .carousel-inner > .item.active { +- left: 0; +- -webkit-transform: translate3d(0, 0, 0); +- transform: translate3d(0, 0, 0); +- } +-} +-.carousel-inner > .active, +-.carousel-inner > .next, +-.carousel-inner > .prev { +- display: block; +-} +-.carousel-inner > .active { +- left: 0; +-} +-.carousel-inner > .next, +-.carousel-inner > .prev { +- position: absolute; +- top: 0; +- width: 100%; +-} +-.carousel-inner > .next { +- left: 100%; +-} +-.carousel-inner > .prev { +- left: -100%; +-} +-.carousel-inner > .next.left, +-.carousel-inner > .prev.right { +- left: 0; +-} +-.carousel-inner > .active.left { +- left: -100%; +-} +-.carousel-inner > .active.right { +- left: 100%; +-} +-.carousel-control { +- position: absolute; +- top: 0; +- bottom: 0; +- left: 0; +- width: 15%; +- font-size: 20px; +- color: #fff; +- text-align: center; +- text-shadow: 0 1px 2px rgba(0, 0, 0, .6); +- filter: alpha(opacity=50); +- opacity: .5; +-} +-.carousel-control.left { +- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); +- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); +- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); +- background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +- background-repeat: repeat-x; +-} +-.carousel-control.right { +- right: 0; +- left: auto; +- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); +- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); +- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); +- background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); +- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +- background-repeat: repeat-x; +-} +-.carousel-control:hover, +-.carousel-control:focus { +- color: #fff; +- text-decoration: none; +- filter: alpha(opacity=90); +- outline: 0; +- opacity: .9; +-} +-.carousel-control .icon-prev, +-.carousel-control .icon-next, +-.carousel-control .glyphicon-chevron-left, +-.carousel-control .glyphicon-chevron-right { +- position: absolute; +- top: 50%; +- z-index: 5; +- display: inline-block; +-} +-.carousel-control .icon-prev, +-.carousel-control .glyphicon-chevron-left { +- left: 50%; +- margin-left: -10px; +-} +-.carousel-control .icon-next, +-.carousel-control .glyphicon-chevron-right { +- right: 50%; +- margin-right: -10px; +-} +-.carousel-control .icon-prev, +-.carousel-control .icon-next { +- width: 20px; +- height: 20px; +- margin-top: -10px; +- font-family: serif; +- line-height: 1; +-} +-.carousel-control .icon-prev:before { +- content: '\2039'; +-} +-.carousel-control .icon-next:before { +- content: '\203a'; +-} +-.carousel-indicators { +- position: absolute; +- bottom: 10px; +- left: 50%; +- z-index: 15; +- width: 60%; +- padding-left: 0; +- margin-left: -30%; +- text-align: center; +- list-style: none; +-} +-.carousel-indicators li { +- display: inline-block; +- width: 10px; +- height: 10px; +- margin: 1px; +- text-indent: -999px; +- cursor: pointer; +- background-color: #000 \9; +- background-color: rgba(0, 0, 0, 0); +- border: 1px solid #fff; +- border-radius: 10px; +-} +-.carousel-indicators .active { +- width: 12px; +- height: 12px; +- margin: 0; +- background-color: #fff; +-} +-.carousel-caption { +- position: absolute; +- right: 15%; +- bottom: 20px; +- left: 15%; +- z-index: 10; +- padding-top: 20px; +- padding-bottom: 20px; +- color: #fff; +- text-align: center; +- text-shadow: 0 1px 2px rgba(0, 0, 0, .6); +-} +-.carousel-caption .btn { +- text-shadow: none; +-} +-@media screen and (min-width: 768px) { +- .carousel-control .glyphicon-chevron-left, +- .carousel-control .glyphicon-chevron-right, +- .carousel-control .icon-prev, +- .carousel-control .icon-next { +- width: 30px; +- height: 30px; +- margin-top: -15px; +- font-size: 30px; +- } +- .carousel-control .glyphicon-chevron-left, +- .carousel-control .icon-prev { +- margin-left: -15px; +- } +- .carousel-control .glyphicon-chevron-right, +- .carousel-control .icon-next { +- margin-right: -15px; +- } +- .carousel-caption { +- right: 20%; +- left: 20%; +- padding-bottom: 30px; +- } +- .carousel-indicators { +- bottom: 20px; +- } +-} +-.clearfix:before, +-.clearfix:after, +-.dl-horizontal dd:before, +-.dl-horizontal dd:after, +-.container:before, +-.container:after, +-.container-fluid:before, +-.container-fluid:after, +-.row:before, +-.row:after, +-.form-horizontal .form-group:before, +-.form-horizontal .form-group:after, +-.btn-toolbar:before, +-.btn-toolbar:after, +-.btn-group-vertical > .btn-group:before, +-.btn-group-vertical > .btn-group:after, +-.nav:before, +-.nav:after, +-.navbar:before, +-.navbar:after, +-.navbar-header:before, +-.navbar-header:after, +-.navbar-collapse:before, +-.navbar-collapse:after, +-.pager:before, +-.pager:after, +-.panel-body:before, +-.panel-body:after, +-.modal-footer:before, +-.modal-footer:after { +- display: table; +- content: " "; +-} +-.clearfix:after, +-.dl-horizontal dd:after, +-.container:after, +-.container-fluid:after, +-.row:after, +-.form-horizontal .form-group:after, +-.btn-toolbar:after, +-.btn-group-vertical > .btn-group:after, +-.nav:after, +-.navbar:after, +-.navbar-header:after, +-.navbar-collapse:after, +-.pager:after, +-.panel-body:after, +-.modal-footer:after { +- clear: both; +-} +-.center-block { +- display: block; +- margin-right: auto; +- margin-left: auto; +-} +-.pull-right { +- float: right !important; +-} +-.pull-left { +- float: left !important; +-} +-.hide { +- display: none !important; +-} +-.show { +- display: block !important; +-} +-.invisible { +- visibility: hidden; +-} +-.text-hide { +- font: 0/0 a; +- color: transparent; +- text-shadow: none; +- background-color: transparent; +- border: 0; +-} +-.hidden { +- display: none !important; +-} +-.affix { +- position: fixed; +-} +-@-ms-viewport { +- width: device-width; +-} +-.visible-xs, +-.visible-sm, +-.visible-md, +-.visible-lg { +- display: none !important; +-} +-.visible-xs-block, +-.visible-xs-inline, +-.visible-xs-inline-block, +-.visible-sm-block, +-.visible-sm-inline, +-.visible-sm-inline-block, +-.visible-md-block, +-.visible-md-inline, +-.visible-md-inline-block, +-.visible-lg-block, +-.visible-lg-inline, +-.visible-lg-inline-block { +- display: none !important; +-} +-@media (max-width: 767px) { +- .visible-xs { +- display: block !important; +- } +- table.visible-xs { +- display: table; +- } +- tr.visible-xs { +- display: table-row !important; +- } +- th.visible-xs, +- td.visible-xs { +- display: table-cell !important; +- } +-} +-@media (max-width: 767px) { +- .visible-xs-block { +- display: block !important; +- } +-} +-@media (max-width: 767px) { +- .visible-xs-inline { +- display: inline !important; +- } +-} +-@media (max-width: 767px) { +- .visible-xs-inline-block { +- display: inline-block !important; +- } +-} +-@media (min-width: 768px) and (max-width: 991px) { +- .visible-sm { +- display: block !important; +- } +- table.visible-sm { +- display: table; +- } +- tr.visible-sm { +- display: table-row !important; +- } +- th.visible-sm, +- td.visible-sm { +- display: table-cell !important; +- } +-} +-@media (min-width: 768px) and (max-width: 991px) { +- .visible-sm-block { +- display: block !important; +- } +-} +-@media (min-width: 768px) and (max-width: 991px) { +- .visible-sm-inline { +- display: inline !important; +- } +-} +-@media (min-width: 768px) and (max-width: 991px) { +- .visible-sm-inline-block { +- display: inline-block !important; +- } +-} +-@media (min-width: 992px) and (max-width: 1199px) { +- .visible-md { +- display: block !important; +- } +- table.visible-md { +- display: table; +- } +- tr.visible-md { +- display: table-row !important; +- } +- th.visible-md, +- td.visible-md { +- display: table-cell !important; +- } +-} +-@media (min-width: 992px) and (max-width: 1199px) { +- .visible-md-block { +- display: block !important; +- } +-} +-@media (min-width: 992px) and (max-width: 1199px) { +- .visible-md-inline { +- display: inline !important; +- } +-} +-@media (min-width: 992px) and (max-width: 1199px) { +- .visible-md-inline-block { +- display: inline-block !important; +- } +-} +-@media (min-width: 1200px) { +- .visible-lg { +- display: block !important; +- } +- table.visible-lg { +- display: table; +- } +- tr.visible-lg { +- display: table-row !important; +- } +- th.visible-lg, +- td.visible-lg { +- display: table-cell !important; +- } +-} +-@media (min-width: 1200px) { +- .visible-lg-block { +- display: block !important; +- } +-} +-@media (min-width: 1200px) { +- .visible-lg-inline { +- display: inline !important; +- } +-} +-@media (min-width: 1200px) { +- .visible-lg-inline-block { +- display: inline-block !important; +- } +-} +-@media (max-width: 767px) { +- .hidden-xs { +- display: none !important; +- } +-} +-@media (min-width: 768px) and (max-width: 991px) { +- .hidden-sm { +- display: none !important; +- } +-} +-@media (min-width: 992px) and (max-width: 1199px) { +- .hidden-md { +- display: none !important; +- } +-} +-@media (min-width: 1200px) { +- .hidden-lg { +- display: none !important; +- } +-} +-.visible-print { +- display: none !important; +-} +-@media print { +- .visible-print { +- display: block !important; +- } +- table.visible-print { +- display: table; +- } +- tr.visible-print { +- display: table-row !important; +- } +- th.visible-print, +- td.visible-print { +- display: table-cell !important; +- } +-} +-.visible-print-block { +- display: none !important; +-} +-@media print { +- .visible-print-block { +- display: block !important; +- } +-} +-.visible-print-inline { +- display: none !important; +-} +-@media print { +- .visible-print-inline { +- display: inline !important; +- } +-} +-.visible-print-inline-block { +- display: none !important; +-} +-@media print { +- .visible-print-inline-block { +- display: inline-block !important; +- } +-} +-@media print { +- .hidden-print { +- display: none !important; +- } +-} +-/*# sourceMappingURL=bootstrap.css.map */ +diff --git a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css.map b/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css.map +deleted file mode 100755 +index 2fd84f36e..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/css/bootstrap.css.map ++++ /dev/null +@@ -1 +0,0 @@ +-{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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AAA;EHqR9C;AGpRmC;EAAW,kBAAA;EHuR9C;AGtRmC;EAAW,kBAAA;EHyR9C;AGxRmC;EAAW,kBAAA;EH2R9C;AG1RmC;EAAW,kBAAA;EH6R9C;AG5RmC;EAAW,kBAAA;EH+R9C;AG9RmC;EAAW,kBAAA;EHiS9C;AGhSmC;EAAW,kBAAA;EHmS9C;AGlSmC;EAAW,kBAAA;EHqS9C;AGpSmC;EAAW,kBAAA;EHuS9C;AGtSmC;EAAW,kBAAA;EHyS9C;AGxSmC;EAAW,kBAAA;EH2S9C;AG1SmC;EAAW,kBAAA;EH6S9C;AG5SmC;EAAW,kBAAA;EH+S9C;AG9SmC;EAAW,kBAAA;EHiT9C;AGhTmC;EAAW,kBAAA;EHmT9C;AGlTmC;EAAW,kBAAA;EHqT9C;AGpTmC;EAAW,kBAAA;EHuT9C;AGtTmC;EAAW,kBAAA;EHyT9C;AGxTmC;EAAW,kBAAA;EH2T9C;AG1TmC;EAAW,kBAAA;EH6T9C;AG5TmC;EAAW,kBAAA;EH+T9C;AG9TmC;EAAW,kBAAA;EHiU9C;AGhUmC;EAAW,kBAAA;EHmU9C;AGlUmC;EAAW,kBAAA;EHqU9C;AGpUmC;EAAW,kBAAA;EHuU9C;AGtUmC;EAAW,kBAAA;EHyU9C;AGxUmC;EAAW,kBAAA;EH2U9C;AG1UmC;EAAW,kBAAA;EH6U9C;AG5UmC;EAAW,kBAAA;EH+U9C;AG9UmC;EAAW,kBAAA;EHiV9C;AGhVmC;EAAW,kBAAA;EHmV9C;AGlVmC;EAAW,kBAAA;EHqV9C;AGpVmC;EAAW,kBAAA;EHuV9C;AGtVmC;EAAW,kBAAA;EHyV9C;AGxVmC;EAAW,kBAAA;EH2V9C;AG1VmC;EAAW,kBAAA;EH6V9C;AG5VmC;EAAW,kBAAA;EH+V9C;AG9VmC;EAAW,kBAAA;EHiW9C;AGhWmC;EAAW,kBAAA;EHmW9C;AGlWmC;EAAW,kBAAA;EHqW9C;AGpWmC;EAAW,kBAAA;EHuW9C;AGtWmC;EAAW,kBAAA;EHyW9C;AGxWmC;EAAW,kBAAA;EH2W9C;AG1WmC;EAAW,kBAAA;EH6W9C;AG5WmC;EAAW,kBAAA;EH+W9C;AG9WmC;EAAW,kBAAA;EHiX9C;AGhXmC;EAAW,kBAAA;EHmX9C;AGlXmC;EAAW,kBAAA;EHqX9C;AGpXmC;EAAW,kBAAA;EHuX9C;AGtXmC;EAAW,kBAAA;EHyX9C;AGxXmC;EAAW,kBAAA;EH2X9C;AG1XmC;EAAW,kBAAA;EH6X9C;AG5XmC;EAAW,kBAAA;EH+X9C;AG9XmC;EAAW,kBAAA;EHiY9C;AGhYmC;EAAW,kBAAA;EHmY9C;AGlYmC;EAAW,kBAAA;EHqY9C;AGpYmC;EAAW,kBAAA;EHuY9C;AGtYmC;EAAW,kBAAA;EHyY9C;AGxYmC;EAAW,kBAAA;EH2Y9C;AG1YmC;EAAW,kBAAA;EH6Y9C;AG5YmC;EAAW,kBAAA;EH+Y9C;AG9YmC;EAAW,kBAAA;EHiZ9C;AGhZmC;EAAW,kBAAA;EHmZ9C;AGlZmC;EAAW,kBAAA;EHqZ9C;AGpZmC;EAAW,kBAAA;EHuZ9C;AGtZmC;EAAW,kBAAA;EHyZ9C;AGxZmC;EAAW,kBAAA;EH2Z9C;AG1ZmC;EAAW,kBAAA;EH6Z9C;AG5ZmC;EAAW,kBAAA;EH+Z9C;AG9ZmC;EAAW,kBAAA;EHia9C;AGhamC;EAAW,kBAAA;EHma9C;AGlamC;EAAW,kBAAA;EHqa9C;AGpamC;EAAW,kBAAA;EHua9C;AGtamC;EAAW,kBAAA;EHya9C;AGxamC;EAAW,kBAAA;EH2a9C;AG1amC;EAAW,kBAAA;EH6a9C;AG5amC;EAAW,kBAAA;EH+a9C;AG9amC;EAAW,kBAAA;EHib9C;AGhbmC;EAAW,kBAAA;EHmb9C;AGlbmC;EAAW,kBAAA;EHqb9C;AGpbmC;EAAW,kBAAA;EHub9C;AGtbmC;EAAW,kBAAA;EHyb9C;AGxbmC;EAAW,kBAAA;EH2b9C;AG1bmC;EAAW,kBAAA;EH6b9C;AG5bmC;EAAW,kBAAA;EH+b9C;AG9bmC;EAAW,kBAAA;EHic9C;AGhcmC;EAAW,kBAAA;EHmc9C;AGlcmC;EAAW,kBAAA;EHqc9C;AGpcmC;EAAW,kBAAA;EHuc9C;AGtcmC;EAAW,kBAAA;EHyc9C;AGxcmC;EAAW,kBAAA;EH2c9C;AG1cmC;EAAW,kBAAA;EH6c9C;AG5cmC;EAAW,kBAAA;EH+c9C;AG9cmC;EAAW,kBAAA;EHid9C;AGhdmC;EAAW,kBAAA;EHmd9C;AGldmC;EAAW,kBAAA;EHqd9C;AGpdmC;EAAW,kBAAA;EHud9C;AGtdmC;EAAW,kBAAA;EHyd9C;AGxdmC;EAAW,kBAAA;EH2d9C;AG1dmC;EAAW,kBAAA;EH6d9C;AG5dmC;EAAW,kBAAA;EH+d9C;AG9dmC;EAAW,kBAAA;EHie9C;AGhemC;EAAW,kBAAA;EHme9C;AGlemC;EAAW,kBAAA;EHqe9C;AGpemC;EAAW,kBAAA;EHue9C;AGtemC;EAAW,kBAAA;EHye9C;AGxemC;EAAW,kBAAA;EH2e9C;AG1emC;EAAW,kBAAA;EH6e9C;AG5emC;EAAW,kBAAA;EH+e9C;AG9emC;EAAW,kBAAA;EHif9C;AGhfmC;EAAW,kBAAA;EHmf9C;AGlfmC;EAAW,kBAAA;EHqf9C;AGpfmC;EAAW,kBAAA;EHuf9C;AGtfmC;EAAW,kBAAA;EHyf9C;AGxfmC;EAAW,kBAAA;EH2f9C;AG1fmC;EAAW,kBAAA;EH6f9C;AG5fmC;EAAW,kBAAA;EH+f9C;AG9fmC;EAAW,kBAAA;EHigB9C;AGhgBmC;EAAW,kBAAA;EHmgB9C;AGlgBmC;EAAW,kBAAA;EHqgB9C;AGpgBmC;EAAW,kBAAA;EHugB9C;AGtgBmC;EAAW,kBAAA;EHygB9C;AGxgBmC;EAAW,kBAAA;EH2gB9C;AG1gBmC;EAAW,kBAAA;EH6gB9C;AG5gBmC;EAAW,kBAAA;EH+gB9C;AG9gBmC;EAAW,kBAAA;EHihB9C;AGhhBmC;EAAW,kBAAA;EHmhB9C;AGlhBmC;EAAW,kBAAA;EHqhB9C;AGphBmC;EAAW,kBAAA;EHuhB9C;AGthBmC;EAAW,kBAAA;EHyhB9C;AGxhBmC;EAAW,kBAAA;EH2hB9C;AG1hBmC;EAAW,kBAAA;EH6hB9C;AG5hBmC;EAAW,kBAAA;EH+hB9C;AG9hBmC;EAAW,kBAAA;EHiiB9C;AGhiBmC;EAAW,kBAAA;EHmiB9C;AGliBmC;EAAW,kBAAA;EHqiB9C;AGpiBmC;EAAW,kBAAA;EHuiB9C;AGtiBmC;EAAW,kBAAA;EHyiB9C;AGxiBmC;EAAW,kBAAA;EH2iB9C;AG1iBmC;EAAW,kBAAA;EH6iB9C;AG5iBmC;EAAW,kBAAA;EH+iB9C;AG9iBmC;EAAW,kBAAA;EHijB9C;AGhjBmC;EAAW,kBAAA;EHmjB9C;AGljBmC;EAAW,kBAAA;EHqjB9C;AGpjBmC;EAAW,kBAAA;EHujB9C;AGtjBmC;EAAW,kBAAA;EHyjB9C;AGxjBmC;EAAW,kBAAA;EH2jB9C;AG1jBmC;EAAW,kBAAA;EH6jB9C;AG5jBmC;EAAW,kBAAA;EH+jB9C;AG9jBmC;EAAW,kBAAA;EHikB9C;AGhkBmC;EAAW,kBAAA;EHmkB9C;AGlkBmC;EAAW,kBAAA;EHqkB9C;AGpkBmC;EAAW,kBAAA;EHukB9C;AGtkBmC;EAAW,kBAAA;EHykB9C;AGxkBmC;EAAW,kBAAA;EH2kB9C;AG1kBmC;EAAW,kBAAA;EH6kB9C;AG5kBmC;EAAW,kBAAA;EH+kB9C;AG9kBmC;EAAW,kBAAA;EHilB9C;AGhlBmC;EAAW,kBAAA;EHmlB9C;AGllBmC;EAAW,kBAAA;EHqlB9C;AGplBmC;EAAW,kBAAA;EHulB9C;AGtlBmC;EAAW,kBAAA;EHylB9C;AGxlBmC;EAAW,kBAAA;EH2lB9C;AG1lBmC;EAAW,kBAAA;EH6lB9C;AG5lBmC;EAAW,kBAAA;EH+lB9C;AG9lBmC;EAAW,kBAAA;EHimB9C;AGhmBmC;EAAW,kBAAA;EHmmB9C;AGlmBmC;EAAW,kBAAA;EHqmB9C;AGpmBmC;EAAW,kBAAA;EHumB9C;AGtmBmC;EAAW,kBAAA;EHymB9C;AGxmBmC;EAAW,kBAAA;EH2mB9C;AG1mBmC;EAAW,kBAAA;EH6mB9C;AG5mBmC;EAAW,kBAAA;EH+mB9C;AG9mBmC;EAAW,kBAAA;EHinB9C;AGhnBmC;EAAW,kBAAA;EHmnB9C;AGlnBmC;EAAW,kBAAA;EHqnB9C;AGpnBmC;EAAW,kBAAA;EHunB9C;AGtnBmC;EAAW,kBAAA;EHynB9C;AGxnBmC;EAAW,kBAAA;EH2nB9C;AG1nBmC;EAAW,kBAAA;EH6nB9C;AG5nBmC;EAAW,kBAAA;EH+nB9C;AG9nBmC;EAAW,kBAAA;EHioB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGxoBmC;EAAW,kBAAA;EH2oB9C;AG1oBmC;EAAW,kBAAA;EH6oB9C;AG5oBmC;EAAW,kBAAA;EH+oB9C;AG9oBmC;EAAW,kBAAA;EHipB9C;AGhpBmC;EAAW,kBAAA;EHmpB9C;AGlpBmC;EAAW,kBAAA;EHqpB9C;AGppBmC;EAAW,kBAAA;EHupB9C;AGtpBmC;EAAW,kBAAA;EHypB9C;AGxpBmC;EAAW,kBAAA;EH2pB9C;AG1pBmC;EAAW,kBAAA;EH6pB9C;AG5pBmC;EAAW,kBAAA;EH+pB9C;AG9pBmC;EAAW,kBAAA;EHiqB9C;AGhqBmC;EAAW,kBAAA;EHmqB9C;AGlqBmC;EAAW,kBAAA;EHqqB9C;AGpqBmC;EAAW,kBAAA;EHuqB9C;AGtqBmC;EAAW,kBAAA;EHyqB9C;AGxqBmC;EAAW,kBAAA;EH2qB9C;AG1qBmC;EAAW,kBAAA;EH6qB9C;AG5qBmC;EAAW,kBAAA;EH+qB9C;AG9qBmC;EAAW,kBAAA;EHirB9C;AGhrBmC;EAAW,kBAAA;EHmrB9C;AGlrBmC;EAAW,kBAAA;EHqrB9C;AGprBmC;EAAW,kBAAA;EHurB9C;AGtrBmC;EAAW,kBAAA;EHyrB9C;AGxrBmC;EAAW,kBAAA;EH2rB9C;AG1rBmC;EAAW,kBAAA;EH6rB9C;AG5rBmC;EAAW,kBAAA;EH+rB9C;AG9rBmC;EAAW,kBAAA;EHisB9C;AGhsBmC;EAAW,kBAAA;EHmsB9C;AGlsBmC;EAAW,kBAAA;EHqsB9C;AGpsBmC;EAAW,kBAAA;EHusB9C;AGtsBmC;EAAW,kBAAA;EHysB9C;AGxsBmC;EAAW,kBAAA;EH2sB9C;AG1sBmC;EAAW,kBAAA;EH6sB9C;AG5sBmC;EAAW,kBAAA;EH+sB9C;AG9sBmC;EAAW,kBAAA;EHitB9C;AGhtBmC;EAAW,kBAAA;EHmtB9C;AGltBmC;EAAW,kBAAA;EHqtB9C;AGptBmC;EAAW,kBAAA;EHutB9C;AGttBmC;EAAW,kBAAA;EHytB9C;AGxtBmC;EAAW,k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H;Ae1jDC;EACE,YAAA;Ef4jDH;Ae7jDC;EACE,qBAAA;Ef+jDH;AehkDC;EACE,qBAAA;EfkkDH;AenkDC;EACE,YAAA;EfqkDH;AetkDC;EACE,qBAAA;EfwkDH;AezkDC;EACE,oBAAA;Ef2kDH;AevkDC;EACE,aAAA;EfykDH;AezlDC;EACE,YAAA;Ef2lDH;Ae5lDC;EACE,oBAAA;Ef8lDH;Ae/lDC;EACE,oBAAA;EfimDH;AelmDC;EACE,WAAA;EfomDH;AermDC;EACE,oBAAA;EfumDH;AexmDC;EACE,oBAAA;Ef0mDH;Ae3mDC;EACE,WAAA;Ef6mDH;Ae9mDC;EACE,oBAAA;EfgnDH;AejnDC;EACE,oBAAA;EfmnDH;AepnDC;EACE,WAAA;EfsnDH;AevnDC;EACE,oBAAA;EfynDH;Ae1nDC;EACE,mBAAA;Ef4nDH;AexnDC;EACE,YAAA;Ef0nDH;Ae5mDC;EACE,mBAAA;Ef8mDH;Ae/mDC;EACE,2BAAA;EfinDH;AelnDC;EACE,2BAAA;EfonDH;AernDC;EACE,kBAAA;EfunDH;AexnDC;EACE,2BAAA;Ef0nDH;Ae3nDC;EACE,2BAAA;Ef6nDH;Ae9nDC;EACE,kBAAA;EfgoDH;AejoDC;EACE,2BAAA;EfmoDH;AepoDC;EACE,2BAAA;EfsoDH;AevoDC;EACE,kBAAA;EfyoDH;Ae1oDC;EACE,2BAAA;Ef4oDH;Ae7oDC;EACE,0BAAA;Ef+oDH;AehpDC;EACE,iBAAA;EfkpDH;AalpDD;EElCI;IACE,aAAA;IfurDH;EehrDD;IACE,aAAA;IfkrDD;EenrDD;IACE,qBAAA;IfqrDD;EetrDD;IACE,qBAAA;IfwrDD;EezrDD;IACE,YAAA;If2rDD;Ee5rDD;IACE,qBAAA;If8rDD;Ee/rDD;IACE,qBAAA;IfisDD;EelsDD;IACE,YAAA;IfosDD;EersDD;IACE,qBAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,YAAA;If6sDD;Ee9sDD;IACE,qBAAA;IfgtDD;EejtDD;IACE,oBAAA;IfmtDD;EersDD;IACE,aAAA;IfusDD;EexsDD;IACE,qBAAA;If0sDD;Ee3sDD;IACE,qBAAA;If6sDD;Ee9sDD;IACE,YAAA;IfgtDD;EejtDD;IACE,qBAAA;IfmtDD;EeptDD;IACE,qBAAA;IfstDD;EevtDD;IACE,YAAA;IfytDD;Ee1tDD;IACE,qBAAA;If4tDD;Ee7tDD;IACE,qBAAA;If+tDD;EehuDD;IACE,YAAA;IfkuDD;EenuDD;IACE,qBAAA;IfquDD;EetuDD;IACE,oBAAA;IfwuDD;EepuDD;IACE,aAAA;IfsuDD;EetvDD;IACE,YAAA;IfwvDD;EezvDD;IACE,oBAAA;If2vDD;Ee5vDD;IACE,oBAAA;If8vDD;Ee/vDD;IACE,WAAA;IfiwDD;EelwDD;IACE,oBAAA;IfowDD;EerwDD;IACE,oBAAA;IfuwDD;EexwDD;IACE,WAAA;If0wDD;Ee3wDD;IACE,oBAAA;If6wDD;Ee9wDD;IACE,oBAAA;IfgxDD;EejxDD;IACE,WAAA;IfmxDD;EepxDD;IACE,oBAAA;IfsxDD;EevxDD;IACE,mBAAA;IfyxDD;EerxDD;IACE,YAAA;IfuxDD;EezwDD;IACE,mBAAA;If2wDD;Ee5wDD;IACE,2BAAA;If8wDD;Ee/wDD;IACE,2BAAA;IfixDD;EelxDD;IACE,kBAAA;IfoxDD;EerxDD;IACE,2BAAA;IfuxDD;EexxDD;IACE,2BAAA;If0xDD;Ee3xDD;IACE,kBAAA;If6xDD;Ee9xDD;IACE,2BAAA;IfgyDD;EejyDD;IACE,2BAAA;IfmyDD;EepyDD;IACE,kBAAA;IfsyDD;EevyDD;IACE,2BAAA;IfyyDD;Ee1yDD;IACE,0BAAA;If4yDD;Ee7yDD;IACE,iBAAA;If+yDD;EACF;AavyDD;EE3CI;IACE,aAAA;Ifq1DH;Ee90DD;IACE,aAAA;Ifg1DD;Eej1DD;IACE,qBAAA;Ifm1DD;Eep1DD;IACE,qBAAA;Ifs1DD;Eev1DD;IACE,YAAA;Ify1DD;Ee11DD;IACE,qBAAA;If41DD;Ee71DD;IACE,qBAAA;If+1DD;Eeh2DD;IACE,YAAA;Ifk2DD;Een2DD;IACE,qBAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,YAAA;If22DD;Ee52DD;IACE,qBAAA;If82DD;Ee/2DD;IACE,oBAAA;Ifi3DD;Een2DD;IACE,aAAA;Ifq2DD;Eet2DD;IACE,qBAAA;Ifw2DD;Eez2DD;IACE,qBAAA;If22DD;Ee52DD;IACE,YAAA;If82DD;Ee/2DD;IACE,qBAAA;Ifi3DD;Eel3DD;IACE,qBAAA;Ifo3DD;Eer3DD;IACE,YAAA;Ifu3DD;Eex3DD;IACE,qBAAA;If03DD;Ee33DD;IACE,qBAAA;If63DD;Ee93DD;IACE,YAAA;Ifg4DD;Eej4DD;IACE,qBAAA;Ifm4DD;Eep4DD;IACE,oBAAA;Ifs4DD;Eel4DD;IACE,aAAA;Ifo4DD;Eep5DD;IACE,YAAA;Ifs5DD;Eev5DD;IACE,oBAAA;Ify5DD;Ee15DD;IACE,oBAAA;If45DD;Ee75DD;IACE,WAAA;If+5DD;Eeh6DD;IACE,oBAAA;Ifk6DD;Een6DD;IACE,oBAAA;Ifq6DD;Eet6DD;IACE,WAAA;Ifw6DD;Eez6DD;IACE,oBAAA;If26DD;Ee56DD;IACE,oBAAA;If86DD;Ee/6DD;IACE,WAAA;Ifi7DD;Eel7DD;IACE,oBAAA;Ifo7DD;Eer7DD;IACE,mBAAA;Ifu7DD;Een7DD;IACE,YAAA;Ifq7DD;Eev6DD;IACE,mBAAA;Ify6DD;Ee16DD;IACE,2BAAA;If46DD;Ee76DD;IACE,2BAAA;If+6DD;Eeh7DD;IACE,kBAAA;Ifk7DD;Een7DD;IACE,2BAAA;Ifq7DD;Eet7DD;IACE,2BAAA;Ifw7DD;Eez7DD;IACE,kBAAA;If27DD;Ee57DD;IACE,2BAAA;If87DD;Ee/7DD;IACE,2BAAA;Ifi8DD;Eel8DD;IACE,kBAAA;Ifo8DD;Eer8DD;IACE,2BAAA;Ifu8DD;Eex8DD;IACE,0BAAA;If08DD;Ee38DD;IACE,iBAAA;If68DD;EACF;Aal8DD;EE9CI;IACE,aAAA;Ifm/DH;Ee5+DD;IACE,aAAA;If8+DD;Ee/+DD;IACE,qBAAA;Ifi/DD;Eel/DD;IACE,qBAAA;Ifo/DD;Eer/DD;IACE,YAAA;Ifu/DD;Eex/DD;IACE,qBAAA;If0/DD;Ee3/DD;IACE,qBAAA;If6/DD;Ee9/DD;IACE,YAAA;IfggED;EejgED;IACE,qBAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,YAAA;IfygED;Ee1gED;IACE,qBAAA;If4gED;Ee7gED;IACE,oBAAA;If+gED;EejgED;IACE,aAAA;IfmgED;EepgED;IACE,qBAAA;IfsgED;EevgED;IACE,qBAAA;IfygED;Ee1gED;IACE,YAAA;If4gED;Ee7gED;IACE,qBAAA;If+gED;EehhED;IACE,qBAAA;IfkhED;EenhED;IACE,YAAA;IfqhED;EethED;IACE,qBAAA;IfwhED;EezhED;IACE,qBAAA;If2hED;Ee5hED;IACE,YAAA;If8hED;Ee/hED;IACE,qBAAA;IfiiED;EeliED;IACE,oBAAA;IfoiED;EehiED;IACE,aAAA;IfkiED;EeljED;IACE,YAAA;IfojED;EerjED;IACE,oBAAA;IfujED;EexjED;IACE,oBAAA;If0jED;Ee3jED;IACE,WAAA;If6jED;Ee9jED;IACE,oBAAA;IfgkED;EejkED;IACE,oBAAA;IfmkED;EepkED;IACE,WAAA;IfskED;EevkED;IACE,oBAAA;IfykED;Ee1kED;IACE,oBAAA;If4kED;Ee7kED;IACE,WAAA;If+kED;EehlED;IACE,oBAAA;IfklED;EenlED;IACE,mBAAA;IfqlED;EejlED;IACE,YAAA;IfmlED;EerkED;IACE,mBAAA;IfukED;EexkED;IACE,2BAAA;If0kED;Ee3kED;IACE,2BAAA;If6kED;Ee9kED;IACE,kBAAA;IfglED;EejlED;IACE,2BAAA;IfmlED;EeplED;IACE,2BAAA;IfslED;EevlED;IACE,kBAAA;IfylED;Ee1lED;IACE,2BAAA;If4lED;Ee7lED;IACE,2BAAA;If+lED;EehmED;IACE,kBAAA;IfkmED;EenmED;IACE,2BAAA;IfqmED;EetmED;IACE,0BAAA;IfwmED;EezmED;IACE,iBAAA;If2mED;EACF;AgB/qED;EACE,+BAAA;EhBirED;AgB/qED;EACE,kBAAA;EACA,qBAAA;EACA,gBAAA;EACA,kBAAA;EhBirED;AgB/qE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","file":"bootstrap.css","sourcesContent":["/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\2a\";\n}\n.glyphicon-plus:before {\n content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #ffffff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #ffffff;\n background-color: #333333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #dddddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #dddddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #dddddd;\n}\n.table .table {\n background-color: #ffffff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #dddddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #ffffff;\n background-image: none;\n border: 1px solid #cccccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n}\ntextarea.form-group-sm .form-control,\nselect[multiple].form-group-sm .form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n min-height: 32px;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n}\ntextarea.form-group-lg .form-control,\nselect[multiple].form-group-lg .form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n min-height: 38px;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default {\n color: #333333;\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #333333;\n}\n.btn-primary {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #ffffff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.btn-success {\n color: #ffffff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #ffffff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #ffffff;\n}\n.btn-info {\n color: #ffffff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #ffffff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #ffffff;\n}\n.btn-warning {\n color: #ffffff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #ffffff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #ffffff;\n}\n.btn-danger {\n color: #ffffff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #ffffff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #ffffff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #ffffff;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #ffffff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px solid;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-bottom-left-radius: 4px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #dddddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #dddddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #ffffff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #dddddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #dddddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777777;\n}\n.navbar-default .navbar-link:hover {\n color: #333333;\n}\n.navbar-default .btn-link {\n color: #777777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #cccccc;\n}\n.navbar-inverse {\n background-color: #222222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #ffffff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #ffffff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #ffffff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #ffffff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #cccccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n color: #23527c;\n background-color: #eeeeee;\n border-color: #dddddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #ffffff;\n border-color: #dddddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #ffffff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #ffffff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #ffffff;\n line-height: 1;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #ffffff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item {\n color: #555555;\n}\na.list-group-item .list-group-item-heading {\n color: #333333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n text-decoration: none;\n color: #555555;\n background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #ffffff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #dddddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #dddddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #dddddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #dddddd;\n}\n.panel-default {\n border-color: #dddddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #dddddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #dddddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #dddddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000000;\n text-shadow: 0 1px 0 #ffffff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #ffffff;\n border: 1px solid #999999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n min-height: 16.42857143px;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #ffffff;\n text-align: center;\n text-decoration: none;\n background-color: #000000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n white-space: normal;\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #ffffff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #ffffff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #ffffff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #ffffff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n -moz-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #ffffff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #ffffff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #ffffff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n //\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n// Upstream patch for normalize.css submitted: https://github.com/necolas/normalize.css/pull/379 - remove this fix once that is merged\n\n[role=\"button\"] {\n cursor: pointer;\n}","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: @input-height-base;\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n min-height: (@line-height-computed + @font-size-base);\n\n &.input-lg,\n &.input-sm {\n padding-left: 0;\n padding-right: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n }\n .form-control-static {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n min-height: (@line-height-computed + @font-size-small);\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n }\n .form-control-static {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n min-height: (@line-height-computed + @font-size-large);\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: (@grid-gutter-width / 2);\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: ((@padding-large-vertical * @line-height-large) + 1);\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base solid;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding (@jumbotron-padding / 2);\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding: (@jumbotron-padding * 1.6) 0;\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Linked list items\n//\n// Use anchor elements instead of `li`s or `div`s to create linked list items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-small;\n font-weight: normal;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Reset font and text properties given new insertion method\n font-family: @font-family-base;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: @line-height-base;\n text-align: left;\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: -15px;\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: -15px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]} +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/css/font-awesome.css b/phoenix-tracing-webapp/src/main/webapp/css/font-awesome.css +deleted file mode 100755 +index 2dcdc2207..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/css/font-awesome.css ++++ /dev/null +@@ -1,1801 +0,0 @@ +-/*! +- * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome +- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) +- */ +-/* FONT PATH +- * -------------------------- */ +-@font-face { +- font-family: 'FontAwesome'; +- src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); +- src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); +- font-weight: normal; +- font-style: normal; +-} +-.fa { +- display: inline-block; +- font: normal normal normal 14px/1 FontAwesome; +- font-size: inherit; +- text-rendering: auto; +- -webkit-font-smoothing: antialiased; +- -moz-osx-font-smoothing: grayscale; +- transform: translate(0, 0); +-} +-/* makes the font 33% larger relative to the icon container */ +-.fa-lg { +- font-size: 1.33333333em; +- line-height: 0.75em; +- vertical-align: -15%; +-} +-.fa-2x { +- font-size: 2em; +-} +-.fa-3x { +- font-size: 3em; +-} +-.fa-4x { +- font-size: 4em; +-} +-.fa-5x { +- font-size: 5em; +-} +-.fa-fw { +- width: 1.28571429em; +- text-align: center; +-} +-.fa-ul { +- padding-left: 0; +- margin-left: 2.14285714em; +- list-style-type: none; +-} +-.fa-ul > li { +- position: relative; +-} +-.fa-li { +- position: absolute; +- left: -2.14285714em; +- width: 2.14285714em; +- top: 0.14285714em; +- text-align: center; +-} +-.fa-li.fa-lg { +- left: -1.85714286em; +-} +-.fa-border { +- padding: .2em .25em .15em; +- border: solid 0.08em #eeeeee; +- border-radius: .1em; +-} +-.pull-right { +- float: right; +-} +-.pull-left { +- float: left; +-} +-.fa.pull-left { +- margin-right: .3em; +-} +-.fa.pull-right { +- margin-left: .3em; +-} +-.fa-spin { +- -webkit-animation: fa-spin 2s infinite linear; +- animation: fa-spin 2s infinite linear; +-} +-.fa-pulse { +- -webkit-animation: fa-spin 1s infinite steps(8); +- animation: fa-spin 1s infinite steps(8); +-} +-@-webkit-keyframes fa-spin { +- 0% { +- -webkit-transform: rotate(0deg); +- transform: rotate(0deg); +- } +- 100% { +- -webkit-transform: rotate(359deg); +- transform: rotate(359deg); +- } +-} +-@keyframes fa-spin { +- 0% { +- -webkit-transform: rotate(0deg); +- transform: rotate(0deg); +- } +- 100% { +- -webkit-transform: rotate(359deg); +- transform: rotate(359deg); +- } +-} +-.fa-rotate-90 { +- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +- -webkit-transform: rotate(90deg); +- -ms-transform: rotate(90deg); +- transform: rotate(90deg); +-} +-.fa-rotate-180 { +- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); +- -webkit-transform: rotate(180deg); +- -ms-transform: rotate(180deg); +- transform: rotate(180deg); +-} +-.fa-rotate-270 { +- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +- -webkit-transform: rotate(270deg); +- -ms-transform: rotate(270deg); +- transform: rotate(270deg); +-} +-.fa-flip-horizontal { +- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); +- -webkit-transform: scale(-1, 1); +- -ms-transform: scale(-1, 1); +- transform: scale(-1, 1); +-} +-.fa-flip-vertical { +- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); +- -webkit-transform: scale(1, -1); +- -ms-transform: scale(1, -1); +- transform: scale(1, -1); +-} +-:root .fa-rotate-90, +-:root .fa-rotate-180, +-:root .fa-rotate-270, +-:root .fa-flip-horizontal, +-:root .fa-flip-vertical { +- filter: none; +-} +-.fa-stack { +- position: relative; +- display: inline-block; +- width: 2em; +- height: 2em; +- line-height: 2em; +- vertical-align: middle; +-} +-.fa-stack-1x, +-.fa-stack-2x { +- position: absolute; +- left: 0; +- width: 100%; +- text-align: center; +-} +-.fa-stack-1x { +- line-height: inherit; +-} +-.fa-stack-2x { +- font-size: 2em; +-} +-.fa-inverse { +- color: #ffffff; +-} +-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +- readers do not read off random characters that represent icons */ +-.fa-glass:before { +- content: "\f000"; +-} +-.fa-music:before { +- content: "\f001"; +-} +-.fa-search:before { +- content: "\f002"; +-} +-.fa-envelope-o:before { +- content: "\f003"; +-} +-.fa-heart:before { +- content: "\f004"; +-} +-.fa-star:before { +- content: "\f005"; +-} +-.fa-star-o:before { +- content: "\f006"; +-} +-.fa-user:before { +- content: "\f007"; +-} +-.fa-film:before { +- content: "\f008"; +-} +-.fa-th-large:before { +- content: "\f009"; +-} +-.fa-th:before { +- content: "\f00a"; +-} +-.fa-th-list:before { +- content: "\f00b"; +-} +-.fa-check:before { +- content: "\f00c"; +-} +-.fa-remove:before, +-.fa-close:before, +-.fa-times:before { +- content: "\f00d"; +-} +-.fa-search-plus:before { +- content: "\f00e"; +-} +-.fa-search-minus:before { +- content: "\f010"; +-} +-.fa-power-off:before { +- content: "\f011"; +-} +-.fa-signal:before { +- content: "\f012"; +-} +-.fa-gear:before, +-.fa-cog:before { +- content: "\f013"; +-} +-.fa-trash-o:before { +- content: "\f014"; +-} +-.fa-home:before { +- content: "\f015"; +-} +-.fa-file-o:before { +- content: "\f016"; +-} +-.fa-clock-o:before { +- content: "\f017"; +-} +-.fa-road:before { +- content: "\f018"; +-} +-.fa-download:before { +- content: "\f019"; +-} +-.fa-arrow-circle-o-down:before { +- content: "\f01a"; +-} +-.fa-arrow-circle-o-up:before { +- content: "\f01b"; +-} +-.fa-inbox:before { +- content: "\f01c"; +-} +-.fa-play-circle-o:before { +- content: "\f01d"; +-} +-.fa-rotate-right:before, +-.fa-repeat:before { +- content: "\f01e"; +-} +-.fa-refresh:before { +- content: "\f021"; +-} +-.fa-list-alt:before { +- content: "\f022"; +-} +-.fa-lock:before { +- content: "\f023"; +-} +-.fa-flag:before { +- content: "\f024"; +-} +-.fa-headphones:before { +- content: "\f025"; +-} +-.fa-volume-off:before { +- content: "\f026"; +-} +-.fa-volume-down:before { +- content: "\f027"; +-} +-.fa-volume-up:before { +- content: "\f028"; +-} +-.fa-qrcode:before { +- content: "\f029"; +-} +-.fa-barcode:before { +- content: "\f02a"; +-} +-.fa-tag:before { +- content: "\f02b"; +-} +-.fa-tags:before { +- content: "\f02c"; +-} +-.fa-book:before { +- content: "\f02d"; +-} +-.fa-bookmark:before { +- content: "\f02e"; +-} +-.fa-print:before { +- content: "\f02f"; +-} +-.fa-camera:before { +- content: "\f030"; +-} +-.fa-font:before { +- content: "\f031"; +-} +-.fa-bold:before { +- content: "\f032"; +-} +-.fa-italic:before { +- content: "\f033"; +-} +-.fa-text-height:before { +- content: "\f034"; +-} +-.fa-text-width:before { +- content: "\f035"; +-} +-.fa-align-left:before { +- content: "\f036"; +-} +-.fa-align-center:before { +- content: "\f037"; +-} +-.fa-align-right:before { +- content: "\f038"; +-} +-.fa-align-justify:before { +- content: "\f039"; +-} +-.fa-list:before { +- content: "\f03a"; +-} +-.fa-dedent:before, +-.fa-outdent:before { +- content: "\f03b"; +-} +-.fa-indent:before { +- content: "\f03c"; +-} +-.fa-video-camera:before { +- content: "\f03d"; +-} +-.fa-photo:before, +-.fa-image:before, +-.fa-picture-o:before { +- content: "\f03e"; +-} +-.fa-pencil:before { +- content: "\f040"; +-} +-.fa-map-marker:before { +- content: "\f041"; +-} +-.fa-adjust:before { +- content: "\f042"; +-} +-.fa-tint:before { +- content: "\f043"; +-} +-.fa-edit:before, +-.fa-pencil-square-o:before { +- content: "\f044"; +-} +-.fa-share-square-o:before { +- content: "\f045"; +-} +-.fa-check-square-o:before { +- content: "\f046"; +-} +-.fa-arrows:before { +- content: "\f047"; +-} +-.fa-step-backward:before { +- content: "\f048"; +-} +-.fa-fast-backward:before { +- content: "\f049"; +-} +-.fa-backward:before { +- content: "\f04a"; +-} +-.fa-play:before { +- content: "\f04b"; +-} +-.fa-pause:before { +- content: "\f04c"; +-} +-.fa-stop:before { +- content: "\f04d"; +-} +-.fa-forward:before { +- content: "\f04e"; +-} +-.fa-fast-forward:before { +- content: "\f050"; +-} +-.fa-step-forward:before { +- content: "\f051"; +-} +-.fa-eject:before { +- content: "\f052"; +-} +-.fa-chevron-left:before { +- content: "\f053"; +-} +-.fa-chevron-right:before { +- content: "\f054"; +-} +-.fa-plus-circle:before { +- content: "\f055"; +-} +-.fa-minus-circle:before { +- content: "\f056"; +-} +-.fa-times-circle:before { +- content: "\f057"; +-} +-.fa-check-circle:before { +- content: "\f058"; +-} +-.fa-question-circle:before { +- content: "\f059"; +-} +-.fa-info-circle:before { +- content: "\f05a"; +-} +-.fa-crosshairs:before { +- content: "\f05b"; +-} +-.fa-times-circle-o:before { +- content: "\f05c"; +-} +-.fa-check-circle-o:before { +- content: "\f05d"; +-} +-.fa-ban:before { +- content: "\f05e"; +-} +-.fa-arrow-left:before { +- content: "\f060"; +-} +-.fa-arrow-right:before { +- content: "\f061"; +-} +-.fa-arrow-up:before { +- content: "\f062"; +-} +-.fa-arrow-down:before { +- content: "\f063"; +-} +-.fa-mail-forward:before, +-.fa-share:before { +- content: "\f064"; +-} +-.fa-expand:before { +- content: "\f065"; +-} +-.fa-compress:before { +- content: "\f066"; +-} +-.fa-plus:before { +- content: "\f067"; +-} +-.fa-minus:before { +- content: "\f068"; +-} +-.fa-asterisk:before { +- content: "\f069"; +-} +-.fa-exclamation-circle:before { +- content: "\f06a"; +-} +-.fa-gift:before { +- content: "\f06b"; +-} +-.fa-leaf:before { +- content: "\f06c"; +-} +-.fa-fire:before { +- content: "\f06d"; +-} +-.fa-eye:before { +- content: "\f06e"; +-} +-.fa-eye-slash:before { +- content: "\f070"; +-} +-.fa-warning:before, +-.fa-exclamation-triangle:before { +- content: "\f071"; +-} +-.fa-plane:before { +- content: "\f072"; +-} +-.fa-calendar:before { +- content: "\f073"; +-} +-.fa-random:before { +- content: "\f074"; +-} +-.fa-comment:before { +- content: "\f075"; +-} +-.fa-magnet:before { +- content: "\f076"; +-} +-.fa-chevron-up:before { +- content: "\f077"; +-} +-.fa-chevron-down:before { +- content: "\f078"; +-} +-.fa-retweet:before { +- content: "\f079"; +-} +-.fa-shopping-cart:before { +- content: "\f07a"; +-} +-.fa-folder:before { +- content: "\f07b"; +-} +-.fa-folder-open:before { +- content: "\f07c"; +-} +-.fa-arrows-v:before { +- content: "\f07d"; +-} +-.fa-arrows-h:before { +- content: "\f07e"; +-} +-.fa-bar-chart-o:before, +-.fa-bar-chart:before { +- content: "\f080"; +-} +-.fa-twitter-square:before { +- content: "\f081"; +-} +-.fa-facebook-square:before { +- content: "\f082"; +-} +-.fa-camera-retro:before { +- content: "\f083"; +-} +-.fa-key:before { +- content: "\f084"; +-} +-.fa-gears:before, +-.fa-cogs:before { +- content: "\f085"; +-} +-.fa-comments:before { +- content: "\f086"; +-} +-.fa-thumbs-o-up:before { +- content: "\f087"; +-} +-.fa-thumbs-o-down:before { +- content: "\f088"; +-} +-.fa-star-half:before { +- content: "\f089"; +-} +-.fa-heart-o:before { +- content: "\f08a"; +-} +-.fa-sign-out:before { +- content: "\f08b"; +-} +-.fa-linkedin-square:before { +- content: "\f08c"; +-} +-.fa-thumb-tack:before { +- content: "\f08d"; +-} +-.fa-external-link:before { +- content: "\f08e"; +-} +-.fa-sign-in:before { +- content: "\f090"; +-} +-.fa-trophy:before { +- content: "\f091"; +-} +-.fa-github-square:before { +- content: "\f092"; +-} +-.fa-upload:before { +- content: "\f093"; +-} +-.fa-lemon-o:before { +- content: "\f094"; +-} +-.fa-phone:before { +- content: "\f095"; +-} +-.fa-square-o:before { +- content: "\f096"; +-} +-.fa-bookmark-o:before { +- content: "\f097"; +-} +-.fa-phone-square:before { +- content: "\f098"; +-} +-.fa-twitter:before { +- content: "\f099"; +-} +-.fa-facebook-f:before, +-.fa-facebook:before { +- content: "\f09a"; +-} +-.fa-github:before { +- content: "\f09b"; +-} +-.fa-unlock:before { +- content: "\f09c"; +-} +-.fa-credit-card:before { +- content: "\f09d"; +-} +-.fa-rss:before { +- content: "\f09e"; +-} +-.fa-hdd-o:before { +- content: "\f0a0"; +-} +-.fa-bullhorn:before { +- content: "\f0a1"; +-} +-.fa-bell:before { +- content: "\f0f3"; +-} +-.fa-certificate:before { +- content: "\f0a3"; +-} +-.fa-hand-o-right:before { +- content: "\f0a4"; +-} +-.fa-hand-o-left:before { +- content: "\f0a5"; +-} +-.fa-hand-o-up:before { +- content: "\f0a6"; +-} +-.fa-hand-o-down:before { +- content: "\f0a7"; +-} +-.fa-arrow-circle-left:before { +- content: "\f0a8"; +-} +-.fa-arrow-circle-right:before { +- content: "\f0a9"; +-} +-.fa-arrow-circle-up:before { +- content: "\f0aa"; +-} +-.fa-arrow-circle-down:before { +- content: "\f0ab"; +-} +-.fa-globe:before { +- content: "\f0ac"; +-} +-.fa-wrench:before { +- content: "\f0ad"; +-} +-.fa-tasks:before { +- content: "\f0ae"; +-} +-.fa-filter:before { +- content: "\f0b0"; +-} +-.fa-briefcase:before { +- content: "\f0b1"; +-} +-.fa-arrows-alt:before { +- content: "\f0b2"; +-} +-.fa-group:before, +-.fa-users:before { +- content: "\f0c0"; +-} +-.fa-chain:before, +-.fa-link:before { +- content: "\f0c1"; +-} +-.fa-cloud:before { +- content: "\f0c2"; +-} +-.fa-flask:before { +- content: "\f0c3"; +-} +-.fa-cut:before, +-.fa-scissors:before { +- content: "\f0c4"; +-} +-.fa-copy:before, +-.fa-files-o:before { +- content: "\f0c5"; +-} +-.fa-paperclip:before { +- content: "\f0c6"; +-} +-.fa-save:before, +-.fa-floppy-o:before { +- content: "\f0c7"; +-} +-.fa-square:before { +- content: "\f0c8"; +-} +-.fa-navicon:before, +-.fa-reorder:before, +-.fa-bars:before { +- content: "\f0c9"; +-} +-.fa-list-ul:before { +- content: "\f0ca"; +-} +-.fa-list-ol:before { +- content: "\f0cb"; +-} +-.fa-strikethrough:before { +- content: "\f0cc"; +-} +-.fa-underline:before { +- content: "\f0cd"; +-} +-.fa-table:before { +- content: "\f0ce"; +-} +-.fa-magic:before { +- content: "\f0d0"; +-} +-.fa-truck:before { +- content: "\f0d1"; +-} +-.fa-pinterest:before { +- content: "\f0d2"; +-} +-.fa-pinterest-square:before { +- content: "\f0d3"; +-} +-.fa-google-plus-square:before { +- content: "\f0d4"; +-} +-.fa-google-plus:before { +- content: "\f0d5"; +-} +-.fa-money:before { +- content: "\f0d6"; +-} +-.fa-caret-down:before { +- content: "\f0d7"; +-} +-.fa-caret-up:before { +- content: "\f0d8"; +-} +-.fa-caret-left:before { +- content: "\f0d9"; +-} +-.fa-caret-right:before { +- content: "\f0da"; +-} +-.fa-columns:before { +- content: "\f0db"; +-} +-.fa-unsorted:before, +-.fa-sort:before { +- content: "\f0dc"; +-} +-.fa-sort-down:before, +-.fa-sort-desc:before { +- content: "\f0dd"; +-} +-.fa-sort-up:before, +-.fa-sort-asc:before { +- content: "\f0de"; +-} +-.fa-envelope:before { +- content: "\f0e0"; +-} +-.fa-linkedin:before { +- content: "\f0e1"; +-} +-.fa-rotate-left:before, +-.fa-undo:before { +- content: "\f0e2"; +-} +-.fa-legal:before, +-.fa-gavel:before { +- content: "\f0e3"; +-} +-.fa-dashboard:before, +-.fa-tachometer:before { +- content: "\f0e4"; +-} +-.fa-comment-o:before { +- content: "\f0e5"; +-} +-.fa-comments-o:before { +- content: "\f0e6"; +-} +-.fa-flash:before, +-.fa-bolt:before { +- content: "\f0e7"; +-} +-.fa-sitemap:before { +- content: "\f0e8"; +-} +-.fa-umbrella:before { +- content: "\f0e9"; +-} +-.fa-paste:before, +-.fa-clipboard:before { +- content: "\f0ea"; +-} +-.fa-lightbulb-o:before { +- content: "\f0eb"; +-} +-.fa-exchange:before { +- content: "\f0ec"; +-} +-.fa-cloud-download:before { +- content: "\f0ed"; +-} +-.fa-cloud-upload:before { +- content: "\f0ee"; +-} +-.fa-user-md:before { +- content: "\f0f0"; +-} +-.fa-stethoscope:before { +- content: "\f0f1"; +-} +-.fa-suitcase:before { +- content: "\f0f2"; +-} +-.fa-bell-o:before { +- content: "\f0a2"; +-} +-.fa-coffee:before { +- content: "\f0f4"; +-} +-.fa-cutlery:before { +- content: "\f0f5"; +-} +-.fa-file-text-o:before { +- content: "\f0f6"; +-} +-.fa-building-o:before { +- content: "\f0f7"; +-} +-.fa-hospital-o:before { +- content: "\f0f8"; +-} +-.fa-ambulance:before { +- content: "\f0f9"; +-} +-.fa-medkit:before { +- content: "\f0fa"; +-} +-.fa-fighter-jet:before { +- content: "\f0fb"; +-} +-.fa-beer:before { +- content: "\f0fc"; +-} +-.fa-h-square:before { +- content: "\f0fd"; +-} +-.fa-plus-square:before { +- content: "\f0fe"; +-} +-.fa-angle-double-left:before { +- content: "\f100"; +-} +-.fa-angle-double-right:before { +- content: "\f101"; +-} +-.fa-angle-double-up:before { +- content: "\f102"; +-} +-.fa-angle-double-down:before { +- content: "\f103"; +-} +-.fa-angle-left:before { +- content: "\f104"; +-} +-.fa-angle-right:before { +- content: "\f105"; +-} +-.fa-angle-up:before { +- content: "\f106"; +-} +-.fa-angle-down:before { +- content: "\f107"; +-} +-.fa-desktop:before { +- content: "\f108"; +-} +-.fa-laptop:before { +- content: "\f109"; +-} +-.fa-tablet:before { +- content: "\f10a"; +-} +-.fa-mobile-phone:before, +-.fa-mobile:before { +- content: "\f10b"; +-} +-.fa-circle-o:before { +- content: "\f10c"; +-} +-.fa-quote-left:before { +- content: "\f10d"; +-} +-.fa-quote-right:before { +- content: "\f10e"; +-} +-.fa-spinner:before { +- content: "\f110"; +-} +-.fa-circle:before { +- content: "\f111"; +-} +-.fa-mail-reply:before, +-.fa-reply:before { +- content: "\f112"; +-} +-.fa-github-alt:before { +- content: "\f113"; +-} +-.fa-folder-o:before { +- content: "\f114"; +-} +-.fa-folder-open-o:before { +- content: "\f115"; +-} +-.fa-smile-o:before { +- content: "\f118"; +-} +-.fa-frown-o:before { +- content: "\f119"; +-} +-.fa-meh-o:before { +- content: "\f11a"; +-} +-.fa-gamepad:before { +- content: "\f11b"; +-} +-.fa-keyboard-o:before { +- content: "\f11c"; +-} +-.fa-flag-o:before { +- content: "\f11d"; +-} +-.fa-flag-checkered:before { +- content: "\f11e"; +-} +-.fa-terminal:before { +- content: "\f120"; +-} +-.fa-code:before { +- content: "\f121"; +-} +-.fa-mail-reply-all:before, +-.fa-reply-all:before { +- content: "\f122"; +-} +-.fa-star-half-empty:before, +-.fa-star-half-full:before, +-.fa-star-half-o:before { +- content: "\f123"; +-} +-.fa-location-arrow:before { +- content: "\f124"; +-} +-.fa-crop:before { +- content: "\f125"; +-} +-.fa-code-fork:before { +- content: "\f126"; +-} +-.fa-unlink:before, +-.fa-chain-broken:before { +- content: "\f127"; +-} +-.fa-question:before { +- content: "\f128"; +-} +-.fa-info:before { +- content: "\f129"; +-} +-.fa-exclamation:before { +- content: "\f12a"; +-} +-.fa-superscript:before { +- content: "\f12b"; +-} +-.fa-subscript:before { +- content: "\f12c"; +-} +-.fa-eraser:before { +- content: "\f12d"; +-} +-.fa-puzzle-piece:before { +- content: "\f12e"; +-} +-.fa-microphone:before { +- content: "\f130"; +-} +-.fa-microphone-slash:before { +- content: "\f131"; +-} +-.fa-shield:before { +- content: "\f132"; +-} +-.fa-calendar-o:before { +- content: "\f133"; +-} +-.fa-fire-extinguisher:before { +- content: "\f134"; +-} +-.fa-rocket:before { +- content: "\f135"; +-} +-.fa-maxcdn:before { +- content: "\f136"; +-} +-.fa-chevron-circle-left:before { +- content: "\f137"; +-} +-.fa-chevron-circle-right:before { +- content: "\f138"; +-} +-.fa-chevron-circle-up:before { +- content: "\f139"; +-} +-.fa-chevron-circle-down:before { +- content: "\f13a"; +-} +-.fa-html5:before { +- content: "\f13b"; +-} +-.fa-css3:before { +- content: "\f13c"; +-} +-.fa-anchor:before { +- content: "\f13d"; +-} +-.fa-unlock-alt:before { +- content: "\f13e"; +-} +-.fa-bullseye:before { +- content: "\f140"; +-} +-.fa-ellipsis-h:before { +- content: "\f141"; +-} +-.fa-ellipsis-v:before { +- content: "\f142"; +-} +-.fa-rss-square:before { +- content: "\f143"; +-} +-.fa-play-circle:before { +- content: "\f144"; +-} +-.fa-ticket:before { +- content: "\f145"; +-} +-.fa-minus-square:before { +- content: "\f146"; +-} +-.fa-minus-square-o:before { +- content: "\f147"; +-} +-.fa-level-up:before { +- content: "\f148"; +-} +-.fa-level-down:before { +- content: "\f149"; +-} +-.fa-check-square:before { +- content: "\f14a"; +-} +-.fa-pencil-square:before { +- content: "\f14b"; +-} +-.fa-external-link-square:before { +- content: "\f14c"; +-} +-.fa-share-square:before { +- content: "\f14d"; +-} +-.fa-compass:before { +- content: "\f14e"; +-} +-.fa-toggle-down:before, +-.fa-caret-square-o-down:before { +- content: "\f150"; +-} +-.fa-toggle-up:before, +-.fa-caret-square-o-up:before { +- content: "\f151"; +-} +-.fa-toggle-right:before, +-.fa-caret-square-o-right:before { +- content: "\f152"; +-} +-.fa-euro:before, +-.fa-eur:before { +- content: "\f153"; +-} +-.fa-gbp:before { +- content: "\f154"; +-} +-.fa-dollar:before, +-.fa-usd:before { +- content: "\f155"; +-} +-.fa-rupee:before, +-.fa-inr:before { +- content: "\f156"; +-} +-.fa-cny:before, +-.fa-rmb:before, +-.fa-yen:before, +-.fa-jpy:before { +- content: "\f157"; +-} +-.fa-ruble:before, +-.fa-rouble:before, +-.fa-rub:before { +- content: "\f158"; +-} +-.fa-won:before, +-.fa-krw:before { +- content: "\f159"; +-} +-.fa-bitcoin:before, +-.fa-btc:before { +- content: "\f15a"; +-} +-.fa-file:before { +- content: "\f15b"; +-} +-.fa-file-text:before { +- content: "\f15c"; +-} +-.fa-sort-alpha-asc:before { +- content: "\f15d"; +-} +-.fa-sort-alpha-desc:before { +- content: "\f15e"; +-} +-.fa-sort-amount-asc:before { +- content: "\f160"; +-} +-.fa-sort-amount-desc:before { +- content: "\f161"; +-} +-.fa-sort-numeric-asc:before { +- content: "\f162"; +-} +-.fa-sort-numeric-desc:before { +- content: "\f163"; +-} +-.fa-thumbs-up:before { +- content: "\f164"; +-} +-.fa-thumbs-down:before { +- content: "\f165"; +-} +-.fa-youtube-square:before { +- content: "\f166"; +-} +-.fa-youtube:before { +- content: "\f167"; +-} +-.fa-xing:before { +- content: "\f168"; +-} +-.fa-xing-square:before { +- content: "\f169"; +-} +-.fa-youtube-play:before { +- content: "\f16a"; +-} +-.fa-dropbox:before { +- content: "\f16b"; +-} +-.fa-stack-overflow:before { +- content: "\f16c"; +-} +-.fa-instagram:before { +- content: "\f16d"; +-} +-.fa-flickr:before { +- content: "\f16e"; +-} +-.fa-adn:before { +- content: "\f170"; +-} +-.fa-bitbucket:before { +- content: "\f171"; +-} +-.fa-bitbucket-square:before { +- content: "\f172"; +-} +-.fa-tumblr:before { +- content: "\f173"; +-} +-.fa-tumblr-square:before { +- content: "\f174"; +-} +-.fa-long-arrow-down:before { +- content: "\f175"; +-} +-.fa-long-arrow-up:before { +- content: "\f176"; +-} +-.fa-long-arrow-left:before { +- content: "\f177"; +-} +-.fa-long-arrow-right:before { +- content: "\f178"; +-} +-.fa-apple:before { +- content: "\f179"; +-} +-.fa-windows:before { +- content: "\f17a"; +-} +-.fa-android:before { +- content: "\f17b"; +-} +-.fa-linux:before { +- content: "\f17c"; +-} +-.fa-dribbble:before { +- content: "\f17d"; +-} +-.fa-skype:before { +- content: "\f17e"; +-} +-.fa-foursquare:before { +- content: "\f180"; +-} +-.fa-trello:before { +- content: "\f181"; +-} +-.fa-female:before { +- content: "\f182"; +-} +-.fa-male:before { +- content: "\f183"; +-} +-.fa-gittip:before, +-.fa-gratipay:before { +- content: "\f184"; +-} +-.fa-sun-o:before { +- content: "\f185"; +-} +-.fa-moon-o:before { +- content: "\f186"; +-} +-.fa-archive:before { +- content: "\f187"; +-} +-.fa-bug:before { +- content: "\f188"; +-} +-.fa-vk:before { +- content: "\f189"; +-} +-.fa-weibo:before { +- content: "\f18a"; +-} +-.fa-renren:before { +- content: "\f18b"; +-} +-.fa-pagelines:before { +- content: "\f18c"; +-} +-.fa-stack-exchange:before { +- content: "\f18d"; +-} +-.fa-arrow-circle-o-right:before { +- content: "\f18e"; +-} +-.fa-arrow-circle-o-left:before { +- content: "\f190"; +-} +-.fa-toggle-left:before, +-.fa-caret-square-o-left:before { +- content: "\f191"; +-} +-.fa-dot-circle-o:before { +- content: "\f192"; +-} +-.fa-wheelchair:before { +- content: "\f193"; +-} +-.fa-vimeo-square:before { +- content: "\f194"; +-} +-.fa-turkish-lira:before, +-.fa-try:before { +- content: "\f195"; +-} +-.fa-plus-square-o:before { +- content: "\f196"; +-} +-.fa-space-shuttle:before { +- content: "\f197"; +-} +-.fa-slack:before { +- content: "\f198"; +-} +-.fa-envelope-square:before { +- content: "\f199"; +-} +-.fa-wordpress:before { +- content: "\f19a"; +-} +-.fa-openid:before { +- content: "\f19b"; +-} +-.fa-institution:before, +-.fa-bank:before, +-.fa-university:before { +- content: "\f19c"; +-} +-.fa-mortar-board:before, +-.fa-graduation-cap:before { +- content: "\f19d"; +-} +-.fa-yahoo:before { +- content: "\f19e"; +-} +-.fa-google:before { +- content: "\f1a0"; +-} +-.fa-reddit:before { +- content: "\f1a1"; +-} +-.fa-reddit-square:before { +- content: "\f1a2"; +-} +-.fa-stumbleupon-circle:before { +- content: "\f1a3"; +-} +-.fa-stumbleupon:before { +- content: "\f1a4"; +-} +-.fa-delicious:before { +- content: "\f1a5"; +-} +-.fa-digg:before { +- content: "\f1a6"; +-} +-.fa-pied-piper:before { +- content: "\f1a7"; +-} +-.fa-pied-piper-alt:before { +- content: "\f1a8"; +-} +-.fa-drupal:before { +- content: "\f1a9"; +-} +-.fa-joomla:before { +- content: "\f1aa"; +-} +-.fa-language:before { +- content: "\f1ab"; +-} +-.fa-fax:before { +- content: "\f1ac"; +-} +-.fa-building:before { +- content: "\f1ad"; +-} +-.fa-child:before { +- content: "\f1ae"; +-} +-.fa-paw:before { +- content: "\f1b0"; +-} +-.fa-spoon:before { +- content: "\f1b1"; +-} +-.fa-cube:before { +- content: "\f1b2"; +-} +-.fa-cubes:before { +- content: "\f1b3"; +-} +-.fa-behance:before { +- content: "\f1b4"; +-} +-.fa-behance-square:before { +- content: "\f1b5"; +-} +-.fa-steam:before { +- content: "\f1b6"; +-} +-.fa-steam-square:before { +- content: "\f1b7"; +-} +-.fa-recycle:before { +- content: "\f1b8"; +-} +-.fa-automobile:before, +-.fa-car:before { +- content: "\f1b9"; +-} +-.fa-cab:before, +-.fa-taxi:before { +- content: "\f1ba"; +-} +-.fa-tree:before { +- content: "\f1bb"; +-} +-.fa-spotify:before { +- content: "\f1bc"; +-} +-.fa-deviantart:before { +- content: "\f1bd"; +-} +-.fa-soundcloud:before { +- content: "\f1be"; +-} +-.fa-database:before { +- content: "\f1c0"; +-} +-.fa-file-pdf-o:before { +- content: "\f1c1"; +-} +-.fa-file-word-o:before { +- content: "\f1c2"; +-} +-.fa-file-excel-o:before { +- content: "\f1c3"; +-} +-.fa-file-powerpoint-o:before { +- content: "\f1c4"; +-} +-.fa-file-photo-o:before, +-.fa-file-picture-o:before, +-.fa-file-image-o:before { +- content: "\f1c5"; +-} +-.fa-file-zip-o:before, +-.fa-file-archive-o:before { +- content: "\f1c6"; +-} +-.fa-file-sound-o:before, +-.fa-file-audio-o:before { +- content: "\f1c7"; +-} +-.fa-file-movie-o:before, +-.fa-file-video-o:before { +- content: "\f1c8"; +-} +-.fa-file-code-o:before { +- content: "\f1c9"; +-} +-.fa-vine:before { +- content: "\f1ca"; +-} +-.fa-codepen:before { +- content: "\f1cb"; +-} +-.fa-jsfiddle:before { +- content: "\f1cc"; +-} +-.fa-life-bouy:before, +-.fa-life-buoy:before, +-.fa-life-saver:before, +-.fa-support:before, +-.fa-life-ring:before { +- content: "\f1cd"; +-} +-.fa-circle-o-notch:before { +- content: "\f1ce"; +-} +-.fa-ra:before, +-.fa-rebel:before { +- content: "\f1d0"; +-} +-.fa-ge:before, +-.fa-empire:before { +- content: "\f1d1"; +-} +-.fa-git-square:before { +- content: "\f1d2"; +-} +-.fa-git:before { +- content: "\f1d3"; +-} +-.fa-hacker-news:before { +- content: "\f1d4"; +-} +-.fa-tencent-weibo:before { +- content: "\f1d5"; +-} +-.fa-qq:before { +- content: "\f1d6"; +-} +-.fa-wechat:before, +-.fa-weixin:before { +- content: "\f1d7"; +-} +-.fa-send:before, +-.fa-paper-plane:before { +- content: "\f1d8"; +-} +-.fa-send-o:before, +-.fa-paper-plane-o:before { +- content: "\f1d9"; +-} +-.fa-history:before { +- content: "\f1da"; +-} +-.fa-genderless:before, +-.fa-circle-thin:before { +- content: "\f1db"; +-} +-.fa-header:before { +- content: "\f1dc"; +-} +-.fa-paragraph:before { +- content: "\f1dd"; +-} +-.fa-sliders:before { +- content: "\f1de"; +-} +-.fa-share-alt:before { +- content: "\f1e0"; +-} +-.fa-share-alt-square:before { +- content: "\f1e1"; +-} +-.fa-bomb:before { +- content: "\f1e2"; +-} +-.fa-soccer-ball-o:before, +-.fa-futbol-o:before { +- content: "\f1e3"; +-} +-.fa-tty:before { +- content: "\f1e4"; +-} +-.fa-binoculars:before { +- content: "\f1e5"; +-} +-.fa-plug:before { +- content: "\f1e6"; +-} +-.fa-slideshare:before { +- content: "\f1e7"; +-} +-.fa-twitch:before { +- content: "\f1e8"; +-} +-.fa-yelp:before { +- content: "\f1e9"; +-} +-.fa-newspaper-o:before { +- content: "\f1ea"; +-} +-.fa-wifi:before { +- content: "\f1eb"; +-} +-.fa-calculator:before { +- content: "\f1ec"; +-} +-.fa-paypal:before { +- content: "\f1ed"; +-} +-.fa-google-wallet:before { +- content: "\f1ee"; +-} +-.fa-cc-visa:before { +- content: "\f1f0"; +-} +-.fa-cc-mastercard:before { +- content: "\f1f1"; +-} +-.fa-cc-discover:before { +- content: "\f1f2"; +-} +-.fa-cc-amex:before { +- content: "\f1f3"; +-} +-.fa-cc-paypal:before { +- content: "\f1f4"; +-} +-.fa-cc-stripe:before { +- content: "\f1f5"; +-} +-.fa-bell-slash:before { +- content: "\f1f6"; +-} +-.fa-bell-slash-o:before { +- content: "\f1f7"; +-} +-.fa-trash:before { +- content: "\f1f8"; +-} +-.fa-copyright:before { +- content: "\f1f9"; +-} +-.fa-at:before { +- content: "\f1fa"; +-} +-.fa-eyedropper:before { +- content: "\f1fb"; +-} +-.fa-paint-brush:before { +- content: "\f1fc"; +-} +-.fa-birthday-cake:before { +- content: "\f1fd"; +-} +-.fa-area-chart:before { +- content: "\f1fe"; +-} +-.fa-pie-chart:before { +- content: "\f200"; +-} +-.fa-line-chart:before { +- content: "\f201"; +-} +-.fa-lastfm:before { +- content: "\f202"; +-} +-.fa-lastfm-square:before { +- content: "\f203"; +-} +-.fa-toggle-off:before { +- content: "\f204"; +-} +-.fa-toggle-on:before { +- content: "\f205"; +-} +-.fa-bicycle:before { +- content: "\f206"; +-} +-.fa-bus:before { +- content: "\f207"; +-} +-.fa-ioxhost:before { +- content: "\f208"; +-} +-.fa-angellist:before { +- content: "\f209"; +-} +-.fa-cc:before { +- content: "\f20a"; +-} +-.fa-shekel:before, +-.fa-sheqel:before, +-.fa-ils:before { +- content: "\f20b"; +-} +-.fa-meanpath:before { +- content: "\f20c"; +-} +-.fa-buysellads:before { +- content: "\f20d"; +-} +-.fa-connectdevelop:before { +- content: "\f20e"; +-} +-.fa-dashcube:before { +- content: "\f210"; +-} +-.fa-forumbee:before { +- content: "\f211"; +-} +-.fa-leanpub:before { +- content: "\f212"; +-} +-.fa-sellsy:before { +- content: "\f213"; +-} +-.fa-shirtsinbulk:before { +- content: "\f214"; +-} +-.fa-simplybuilt:before { +- content: "\f215"; +-} +-.fa-skyatlas:before { +- content: "\f216"; +-} +-.fa-cart-plus:before { +- content: "\f217"; +-} +-.fa-cart-arrow-down:before { +- content: "\f218"; +-} +-.fa-diamond:before { +- content: "\f219"; +-} +-.fa-ship:before { +- content: "\f21a"; +-} +-.fa-user-secret:before { +- content: "\f21b"; +-} +-.fa-motorcycle:before { +- content: "\f21c"; +-} +-.fa-street-view:before { +- content: "\f21d"; +-} +-.fa-heartbeat:before { +- content: "\f21e"; +-} +-.fa-venus:before { +- content: "\f221"; +-} +-.fa-mars:before { +- content: "\f222"; +-} +-.fa-mercury:before { +- content: "\f223"; +-} +-.fa-transgender:before { +- content: "\f224"; +-} +-.fa-transgender-alt:before { +- content: "\f225"; +-} +-.fa-venus-double:before { +- content: "\f226"; +-} +-.fa-mars-double:before { +- content: "\f227"; +-} +-.fa-venus-mars:before { +- content: "\f228"; +-} +-.fa-mars-stroke:before { +- content: "\f229"; +-} +-.fa-mars-stroke-v:before { +- content: "\f22a"; +-} +-.fa-mars-stroke-h:before { +- content: "\f22b"; +-} +-.fa-neuter:before { +- content: "\f22c"; +-} +-.fa-facebook-official:before { +- content: "\f230"; +-} +-.fa-pinterest-p:before { +- content: "\f231"; +-} +-.fa-whatsapp:before { +- content: "\f232"; +-} +-.fa-server:before { +- content: "\f233"; +-} +-.fa-user-plus:before { +- content: "\f234"; +-} +-.fa-user-times:before { +- content: "\f235"; +-} +-.fa-hotel:before, +-.fa-bed:before { +- content: "\f236"; +-} +-.fa-viacoin:before { +- content: "\f237"; +-} +-.fa-train:before { +- content: "\f238"; +-} +-.fa-subway:before { +- content: "\f239"; +-} +-.fa-medium:before { +- content: "\f23a"; +-} +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/FontAwesome.otf b/phoenix-tracing-webapp/src/main/webapp/fonts/FontAwesome.otf +deleted file mode 100755 +index f7936cc1e789eea5438d576d6b12de20191da09d..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 93888 +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 +z	-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%0A;R +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 +E0UHWiZ2$lO + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.eot b/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.eot +deleted file mode 100755 +index 33b2bb80055cc480e797de704925acaba4ba7d7d..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 60767 +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�ly@k*2(3WLEleNarQ}K +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%0DKehr}RFC`2XTB_<sB5 +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 +J000000038FvZ??8 + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.svg b/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.svg +deleted file mode 100755 +index 1ee89d436..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.svg ++++ /dev/null +@@ -1,565 +0,0 @@ +-<?xml version="1.0" standalone="no"?> +-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +-<metadata></metadata> +-<defs> +-<font id="fontawesomeregular" horiz-adv-x="1536" > +-<font-face units-per-em="1792" ascent="1536" descent="-256" /> +-<missing-glyph horiz-adv-x="448" /> +-<glyph unicode=" " horiz-adv-x="448" /> +-<glyph unicode="	" horiz-adv-x="448" /> +-<glyph unicode=" " horiz-adv-x="448" /> +-<glyph unicode="¨" horiz-adv-x="1792" /> +-<glyph unicode="©" horiz-adv-x="1792" /> +-<glyph unicode="®" horiz-adv-x="1792" /> +-<glyph unicode="´" horiz-adv-x="1792" /> +-<glyph unicode="Æ" horiz-adv-x="1792" /> +-<glyph unicode="Ø" horiz-adv-x="1792" /> +-<glyph unicode=" " horiz-adv-x="768" /> +-<glyph unicode=" " horiz-adv-x="1537" /> +-<glyph unicode=" " horiz-adv-x="768" /> +-<glyph unicode=" " horiz-adv-x="1537" /> +-<glyph unicode=" " horiz-adv-x="512" /> +-<glyph unicode=" " horiz-adv-x="384" /> +-<glyph unicode=" " horiz-adv-x="256" /> +-<glyph unicode=" " horiz-adv-x="256" /> +-<glyph unicode=" " horiz-adv-x="192" /> +-<glyph unicode=" " horiz-adv-x="307" /> +-<glyph unicode=" " horiz-adv-x="85" /> +-<glyph unicode=" " horiz-adv-x="307" /> +-<glyph unicode=" " horiz-adv-x="384" /> +-<glyph unicode="™" horiz-adv-x="1792" /> +-<glyph unicode="∞" horiz-adv-x="1792" /> +-<glyph unicode="≠" horiz-adv-x="1792" /> +-<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" /> +-<glyph unicode="" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " /> +-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" /> +-<glyph unicode="" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " /> +-<glyph unicode="" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" /> +-<glyph unicode="" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" /> +-<glyph unicode="" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" /> +-<glyph unicode="" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" /> +-<glyph unicode="" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" /> +-<glyph unicode="" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" /> +-<glyph unicode="" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +-<glyph unicode="" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" /> +-<glyph unicode="" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" /> +-<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" /> +-<glyph unicode="" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" /> +-<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" /> +-<glyph unicode="" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" /> +-<glyph unicode="" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" /> +-<glyph unicode="" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" /> +-<glyph unicode="" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" /> +-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" /> +-<glyph unicode="" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " /> +-<glyph unicode="" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" /> +-<glyph unicode="" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " /> +-<glyph unicode="" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" /> +-<glyph unicode="" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" /> +-<glyph unicode="" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" /> +-<glyph unicode="" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" /> +-<glyph unicode="" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" /> +-<glyph unicode="" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" /> +-<glyph unicode="" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" /> +-<glyph unicode="" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" /> +-<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> +-<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" /> +-<glyph unicode="" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" /> +-<glyph unicode="" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> +-<glyph unicode="" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" /> +-<glyph unicode="" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" /> +-<glyph unicode="" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" /> +-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" /> +-<glyph unicode="" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " /> +-<glyph unicode="" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " /> +-<glyph unicode="" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" /> +-<glyph unicode="" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" /> +-<glyph unicode="" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" /> +-<glyph unicode="" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" /> +-<glyph unicode="" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" /> +-<glyph unicode="" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" /> +-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" /> +-<glyph unicode="" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" /> +-<glyph unicode="" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" /> +-<glyph unicode="" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> +-<glyph unicode="" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" /> +-<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" /> +-<glyph unicode="" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" /> +-<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" /> +-<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" /> +-<glyph unicode="" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" /> +-<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> +-<glyph unicode="" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> +-<glyph unicode="" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" /> +-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" /> +-<glyph unicode="" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" /> +-<glyph unicode="" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> +-<glyph unicode="" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" /> +-<glyph unicode="" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" /> +-<glyph unicode="" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" /> +-<glyph unicode="" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" /> +-<glyph unicode="" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" /> +-<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" /> +-<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" /> +-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" /> +-<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" /> +-<glyph unicode="" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" /> +-<glyph unicode="" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" /> +-<glyph unicode="" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" /> +-<glyph unicode="" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" /> +-<glyph unicode="" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" /> +-<glyph unicode="" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +-<glyph unicode="" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" /> +-<glyph unicode="" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> +-<glyph unicode="" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " /> +-<glyph unicode="" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" /> +-<glyph unicode="" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" /> +-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" /> +-<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M1509 107q0 -14 -12 -29q-52 -59 -147.5 -83t-196.5 -24q-252 0 -346 107q-12 15 -12 29q0 17 12 29.5t29 12.5q15 0 30 -12q58 -49 125.5 -66t159.5 -17t160 17t127 66q15 12 30 12q17 0 29 -12.5t12 -29.5zM978 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5 t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM1622 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM415 793q-39 27 -88 27q-66 0 -113 -47t-47 -113q0 -72 54 -121q53 141 194 254zM2020 382q0 222 -249 387 q-128 85 -291.5 126.5t-331.5 41.5t-331.5 -41.5t-292.5 -126.5q-249 -165 -249 -387t249 -387q129 -85 292.5 -126.5t331.5 -41.5t331.5 41.5t291.5 126.5q249 165 249 387zM2137 660q0 66 -47 113t-113 47q-50 0 -93 -30q140 -114 192 -256q61 48 61 126zM1993 1335 q0 49 -34.5 83.5t-82.5 34.5q-49 0 -83.5 -34.5t-34.5 -83.5q0 -48 34.5 -82.5t83.5 -34.5q48 0 82.5 34.5t34.5 82.5zM2220 660q0 -65 -33 -122t-89 -90q5 -35 5 -66q0 -139 -79 -255.5t-208 -201.5q-140 -92 -313.5 -136.5t-354.5 -44.5t-355 44.5t-314 136.5 q-129 85 -208 201.5t-79 255.5q0 36 6 71q-53 33 -83.5 88.5t-30.5 118.5q0 100 71 171.5t172 71.5q91 0 159 -60q265 170 638 177l144 456q10 29 40 29q24 0 384 -90q24 55 74 88t110 33q82 0 141 -59t59 -142t-59 -141.5t-141 -58.5q-83 0 -141.5 58.5t-59.5 140.5 l-339 80l-125 -395q349 -15 603 -179q71 63 163 63q101 0 172 -71.5t71 -171.5z" /> +-<glyph unicode="" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" /> +-<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" /> +-<glyph unicode="" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" /> +-<glyph unicode="" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" /> +-<glyph unicode="" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" /> +-<glyph unicode="" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" /> +-<glyph unicode="" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" /> +-<glyph unicode="" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" /> +-<glyph unicode="" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " /> +-<glyph unicode="" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" /> +-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" /> +-<glyph unicode="" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " /> +-<glyph unicode="" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" /> +-<glyph unicode="" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" /> +-<glyph unicode="" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" /> +-<glyph unicode="" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" /> +-<glyph unicode="" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" /> +-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" /> +-<glyph unicode="" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> +-<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" /> +-<glyph unicode="" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" /> +-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" /> +-<glyph unicode="" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" /> +-<glyph unicode="" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" /> +-<glyph unicode="" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" /> +-<glyph unicode="" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" /> +-<glyph unicode="" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" /> +-<glyph unicode="" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> +-<glyph unicode="" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" /> +-<glyph unicode="" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" /> +-<glyph unicode="" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" /> +-<glyph unicode="" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> +-<glyph unicode="" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" /> +-<glyph unicode="" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" /> +-<glyph unicode="" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" /> +-<glyph unicode="" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" /> +-<glyph unicode="" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" /> +-<glyph unicode="" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" /> +-<glyph unicode="" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" /> +-<glyph unicode="" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" /> +-<glyph unicode="" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h416q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-419 -420q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5 t431 200.5q144 12 276.5 -30.5t236.5 -129.5l419 419h-261q-14 0 -23 9t-9 23v64zM704 -128q117 0 223.5 45.5t184 123t123 184t45.5 223.5t-45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123 t223.5 -45.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" /> +-<glyph unicode="" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1728 1536q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-229 -230l156 -156q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-156 157l-99 -100q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5 t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5t431 200.5q144 12 276.5 -30.5t236.5 -129.5l99 99l-156 156q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l156 -156l229 229h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM1280 448q0 117 -45.5 223.5t-123 184t-184 123 t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M2029 685q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-131q-12 -119 -67 -226t-139 -183.5t-196.5 -121.5t-234.5 -45q-180 0 -330.5 91t-234.5 247 t-74 337q8 162 94 300t226.5 219.5t302.5 85.5q166 4 310.5 -71.5t235.5 -208.5t107 -296h131v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM640 128q104 0 198.5 40.5t163.5 109.5t109.5 163.5 t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" /> +-<glyph unicode="" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" /> +-<glyph unicode="" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" /> +-<glyph unicode="" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" /> +-<glyph unicode="" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" /> +-<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" /> +-<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" /> +-<glyph unicode="" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-<glyph unicode="" horiz-adv-x="1792" /> +-</font> +-</defs></svg> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.ttf b/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.ttf +deleted file mode 100755 +index ed9372f8ea0fbaa04f42630a48887e4b38945345..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 122092 +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 +|+&Vdls@0SAya!5R?! +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 +W2%>->3J9Wr?l-V&_Su?ry8j2p&Q&b{ + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.woff b/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.woff +deleted file mode 100755 +index 8b280b98fa2fa261aa4b0f8fd061f772073ef83e..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 71508 +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 +F003Px<E8)r + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.woff2 b/phoenix-tracing-webapp/src/main/webapp/fonts/fontawesome-webfont.woff2 +deleted file mode 100755 +index 3311d585145b1cc1b9581e914acbb32d8542b4f5..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 56780 +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 + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.eot b/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.eot +deleted file mode 100755 +index b93a4953fff68df523aa7656497ee339d6026d64..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 20127 +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 + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.svg b/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.svg +deleted file mode 100755 +index 94fb5490a..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.svg ++++ /dev/null +@@ -1,288 +0,0 @@ +-<?xml version="1.0" standalone="no"?> +-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +-<svg xmlns="http://www.w3.org/2000/svg"> +-<metadata></metadata> +-<defs> +-<font id="glyphicons_halflingsregular" horiz-adv-x="1200" > +-<font-face units-per-em="1200" ascent="960" descent="-240" /> +-<missing-glyph horiz-adv-x="500" /> +-<glyph horiz-adv-x="0" /> +-<glyph horiz-adv-x="400" /> +-<glyph unicode=" " /> +-<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" /> +-<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode=" " /> +-<glyph unicode="¥" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" /> +-<glyph unicode=" " horiz-adv-x="650" /> +-<glyph unicode=" " horiz-adv-x="1300" /> +-<glyph unicode=" " horiz-adv-x="650" /> +-<glyph unicode=" " horiz-adv-x="1300" /> +-<glyph unicode=" " horiz-adv-x="433" /> +-<glyph unicode=" " horiz-adv-x="325" /> +-<glyph unicode=" " horiz-adv-x="216" /> +-<glyph unicode=" " horiz-adv-x="216" /> +-<glyph unicode=" " horiz-adv-x="162" /> +-<glyph unicode=" " horiz-adv-x="260" /> +-<glyph unicode=" " horiz-adv-x="72" /> +-<glyph unicode=" " horiz-adv-x="260" /> +-<glyph unicode=" " horiz-adv-x="325" /> +-<glyph unicode="€" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" /> +-<glyph unicode="₽" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" /> +-<glyph unicode="−" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="⌛" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" /> +-<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> +-<glyph unicode="☁" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" /> +-<glyph unicode="⛺" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " /> +-<glyph unicode="✉" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" /> +-<glyph unicode="✏" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" /> +-<glyph unicode="" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" /> +-<glyph unicode="" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" /> +-<glyph unicode="" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" /> +-<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" /> +-<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" /> +-<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" /> +-<glyph unicode="" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" /> +-<glyph unicode="" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" /> +-<glyph unicode="" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" /> +-<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" /> +-<glyph unicode="" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" /> +-<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" /> +-<glyph unicode="" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" /> +-<glyph unicode="" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" /> +-<glyph unicode="" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" /> +-<glyph unicode="" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" /> +-<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" /> +-<glyph unicode="" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" /> +-<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" /> +-<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" /> +-<glyph unicode="" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" /> +-<glyph unicode="" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" /> +-<glyph unicode="" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" /> +-<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" /> +-<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" /> +-<glyph unicode="" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" /> +-<glyph unicode="" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" /> +-<glyph unicode="" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" /> +-<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" /> +-<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" /> +-<glyph unicode="" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" /> +-<glyph unicode="" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" /> +-<glyph unicode="" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" /> +-<glyph unicode="" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" /> +-<glyph unicode="" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" /> +-<glyph unicode="" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" /> +-<glyph unicode="" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" /> +-<glyph unicode="" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" /> +-<glyph unicode="" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" /> +-<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" /> +-<glyph unicode="" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" /> +-<glyph unicode="" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" /> +-<glyph unicode="" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" /> +-<glyph unicode="" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" /> +-<glyph unicode="" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" /> +-<glyph unicode="" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" /> +-<glyph unicode="" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" /> +-<glyph unicode="" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" /> +-<glyph unicode="" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" /> +-<glyph unicode="" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" /> +-<glyph unicode="" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" /> +-<glyph unicode="" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" /> +-<glyph unicode="" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" /> +-<glyph unicode="" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" /> +-<glyph unicode="" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" /> +-<glyph unicode="" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" /> +-<glyph unicode="" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" /> +-<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" /> +-<glyph unicode="" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" /> +-<glyph unicode="" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" /> +-<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" /> +-<glyph unicode="" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" /> +-<glyph unicode="" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" /> +-<glyph unicode="" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" /> +-<glyph unicode="" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" /> +-<glyph unicode="" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" /> +-<glyph unicode="" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" /> +-<glyph unicode="" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" /> +-<glyph unicode="" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" /> +-<glyph unicode="" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" /> +-<glyph unicode="" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" /> +-<glyph unicode="" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" /> +-<glyph unicode="" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" /> +-<glyph unicode="" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" /> +-<glyph unicode="" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +-<glyph unicode="" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" /> +-<glyph unicode="" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" /> +-<glyph unicode="" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" /> +-<glyph unicode="" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +-<glyph unicode="" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" /> +-<glyph unicode="" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" /> +-<glyph unicode="" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" /> +-<glyph unicode="" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" /> +-<glyph unicode="" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" /> +-<glyph unicode="" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" /> +-<glyph unicode="" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" /> +-<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" /> +-<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" /> +-<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" /> +-<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" /> +-<glyph unicode="" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" /> +-<glyph unicode="" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" /> +-<glyph unicode="" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " /> +-<glyph unicode="" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" /> +-<glyph unicode="" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" /> +-<glyph unicode="" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" /> +-<glyph unicode="" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" /> +-<glyph unicode="" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" /> +-<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" /> +-<glyph unicode="" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" /> +-<glyph unicode="" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" /> +-<glyph unicode="" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" /> +-<glyph unicode="" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" /> +-<glyph unicode="" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +-<glyph unicode="" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" /> +-<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" /> +-<glyph unicode="" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" /> +-<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" /> +-<glyph unicode="" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" /> +-<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" /> +-<glyph unicode="" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" /> +-<glyph unicode="" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" /> +-<glyph unicode="" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" /> +-<glyph unicode="" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" /> +-<glyph unicode="" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" /> +-<glyph unicode="" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" /> +-<glyph unicode="" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" /> +-<glyph unicode="" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" /> +-<glyph unicode="" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" /> +-<glyph unicode="" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" /> +-<glyph unicode="" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" /> +-<glyph unicode="" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" /> +-<glyph unicode="" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" /> +-<glyph unicode="" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" /> +-<glyph unicode="" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" /> +-<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" /> +-<glyph unicode="" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" /> +-<glyph unicode="" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" /> +-<glyph unicode="" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" /> +-<glyph unicode="" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" /> +-<glyph unicode="" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" /> +-<glyph unicode="" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" /> +-<glyph unicode="" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" /> +-<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" /> +-<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" /> +-<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" /> +-<glyph unicode="" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" /> +-<glyph unicode="" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" /> +-<glyph unicode="" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" /> +-<glyph unicode="" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" /> +-<glyph unicode="" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" /> +-<glyph unicode="" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" /> +-<glyph unicode="" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" /> +-<glyph unicode="" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" /> +-<glyph unicode="" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" /> +-<glyph unicode="" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" /> +-<glyph unicode="" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" /> +-<glyph unicode="" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" /> +-<glyph unicode="" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" /> +-<glyph unicode="" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" /> +-<glyph unicode="" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " /> +-<glyph unicode="" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" /> +-<glyph unicode="" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" /> +-<glyph unicode="" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" /> +-<glyph unicode="" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" /> +-<glyph unicode="" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" /> +-<glyph unicode="" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" /> +-<glyph unicode="" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" /> +-<glyph unicode="" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" /> +-<glyph unicode="" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" /> +-<glyph unicode="" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +-<glyph unicode="" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" /> +-<glyph unicode="" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" /> +-<glyph unicode="" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" /> +-<glyph unicode="" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" /> +-<glyph unicode="" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" /> +-<glyph unicode="" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" /> +-<glyph unicode="" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" /> +-<glyph unicode="" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" /> +-<glyph unicode="" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" /> +-<glyph unicode="" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" /> +-<glyph unicode="" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +-<glyph unicode="" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" /> +-<glyph unicode="" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" /> +-<glyph unicode="" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" /> +-<glyph unicode="" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" /> +-<glyph unicode="" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" /> +-<glyph unicode="" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" /> +-<glyph unicode="" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" /> +-<glyph unicode="" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" /> +-<glyph unicode="" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" /> +-<glyph unicode="" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" /> +-<glyph unicode="" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" /> +-<glyph unicode="" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" /> +-<glyph unicode="🔑" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" /> +-<glyph unicode="🚪" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" /> +-</font> +-</defs></svg> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.ttf b/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.ttf +deleted file mode 100755 +index 1413fc609ab6f21774de0cb7e01360095584f65b..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 45404 +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 + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.woff b/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.woff +deleted file mode 100755 +index 9e612858f802245ddcbf59788a0db942224bab35..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 23424 +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 +G`u_lkUM?>H + +diff --git a/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 b/phoenix-tracing-webapp/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 +deleted file mode 100755 +index 64539b54c3751a6d9adb44c8e3a45ba5a73b77f0..0000000000000000000000000000000000000000 +GIT binary patch +literal 0 +HcmV?d00001 + +literal 18028 +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 + +diff --git a/phoenix-tracing-webapp/src/main/webapp/index.html b/phoenix-tracing-webapp/src/main/webapp/index.html +deleted file mode 100755 +index 7ce6f2fa7..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/index.html ++++ /dev/null +@@ -1,110 +0,0 @@ +-<html ng-app="TracingAppCtrl"> +- +-<head> +- <meta charset="utf-8"> +- <meta http-equiv="X-UA-Compatible" content="IE=edge"> +- <meta name="viewport" content="width=device-width, initial-scale=1"> +- <meta name="description" content="Phoenix Tracing WebApp"> +- <meta name="author" content="nishani"> +- <link rel="icon" href="../../favicon.ico"> +- +- <title>Phoenix Tracing WebApp</title> +- +- <!-- Bootstrap core CSS --> +- <link href="css/bootstrap.css" rel="stylesheet"> +- <link href="/css/bootstrap-theme.css" rel="stylesheet"> +- <link href="css/font-awesome.css" rel="stylesheet"> +- <!-- Bootstrap theme --> +- <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> +- <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif] +- <script src="../../assets/js/ie-emulation-modes-warning.js"></script>--> +- +- <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> +- <!--[if lt IE 9]> +- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> +- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> +- <![endif]--> +- +- <script src="js/lib/jquery.min.js"></script> +- <script src="js/lib/bootstrap.js"></script> +- <!--angularjs --> +- <script src="js/lib/angular.js"></script> +- <script src="js/lib/angular-route.js"></script> +- <script src="js/app.js"></script> +- <!--Trace app controllers--> +- <script src="js/controllers/list-controllers.js"></script> +- <script src="js/controllers/trace-count-controllers.js"></script> +- <script src="js/controllers/trace-distribution-controllers.js"></script> +- <script src="js/controllers/accordion-controllers.js"></script> +- <script src="js/controllers/timeline-controllers.js"></script> +- <script src="js/controllers/search-controllers.js"></script> +- <script src="js/controllers/dependency-tree-controllers.js"></script> +- <!--End of the app controllers--> +- <script src="js/api/chart-model.js"></script> +- +- <!-- count trace chart--> +- <script src="js/lib/ng-google-chart.js"></script> +- <script src="js/lib/ui-bootstrap-tpls.js"></script> +- <!--factory --> +- <script src="js/factories/statement-factory-config.js"></script> +- <script src="js/factories/statement-factory.js"></script> +- <!--services--> +- <script src="js/services/generate-statement-service.js"></script> +- +- +- +-</head> +- +-<body role="document"> +- +- <!-- Fixed navbar --> +- <nav class="navbar navbar-inverse navbar-fixed-top"> +- <div class="container"> +- <div class="navbar-header"> +- <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> +- <span class="sr-only">Toggle navigation</span> +- <span class="icon-bar"></span> +- <span class="icon-bar"></span> +- <span class="icon-bar"></span> +- </button> +- <a class="navbar-brand" href="#dashboard">Phoenix Tracing</a> +- </div> +- <div id="navbar" class="navbar-collapse collapse"> +- <ul class="nav navbar-nav"> +- <li class="active"><a href="#home">Home</a></li> +- <li><a href="#list">List</a></li> +- <li><a href="#dependency-tree">Dependency Tree</a></li> +- <li class="dropdown"> +- <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Features<span class="caret"></span></a> +- <ul class="dropdown-menu" role="menu"> +- <!--li><a href="#search">Search</a></li--> +- <li><a href="#count-chart">Count Chart</a></li> +- <li><a href="#trace-distribution">Trace Distribution</a></li> +- <li><a href="#trace-timeline">Trace TimeLine</a></li> +- <li class="divider"></li> +- <li><a href="#help">Help</a></li> +- </ul> +- </li> +- <li><a href="#about">About</a></li> +- +- </ul> +- </div> +- <!--/.nav-collapse --> +- </div> +- </nav> +- +- <div class="container theme-showcase" role="main"> +- +- +- <div ng-view></div> +- +- </div> +- <script> +- $(".navbar a").on("click", function() { +- $(".navbar").find(".active").removeClass("active"); +- $(this).parent().addClass("active"); +- }); +- </script> +-</body> +- +-</html> +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/api/chart-model.js b/phoenix-tracing-webapp/src/main/webapp/js/api/chart-model.js +deleted file mode 100644 +index c7b1b50dc..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/api/chart-model.js ++++ /dev/null +@@ -1,195 +0,0 @@ +-/* +- * 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. +- */ +- +-var timeLine = {}; +-var dependencyChart = {}; +-var chartObject = { +- "type": "PieChart", +- "displayed": true, +- "data": { +- "cols": [ +- { +- "id": "node", +- "label": "Node", +- "type": "string", +- "p": {} +- }, +- { +- "id": "traceCount", +- "label": "trace Count", +- "type": "number", +- "p": {} +- } +- ], +- "rows": [ +- { +- "c": [ +- { +- "v": "Node1" +- }, +- { +- "v": 0, +- } +- ] +- } +- ] +- }, +- "options": { +- "height": 400, +- "width": 700, +- "fill": 20, +- "displayExactValues": true, +- "vAxis": { +- "title": "Trace count", +- "gridlines": { +- "count": 10 +- } +- }, +- "hAxis": { +- "title": "Node" +- } +- }, +- "formatters": {} +-} +-//getting time line model +-timeLine = { +- "type": "Timeline", +- "displayed": true, +- "data": { +- "cols": [ +- { +- "id": "TraceID", +- "label": "TraceID", +- "type": "string", +- "p": {} +- }, +- { +- "id": "Label", +- "label": "Label", +- "type": "string", +- "p": {} +- }, +- { +- "id": "Start", +- "label": "Start", +- "type": "date", +- "p": {} +- }, +- { +- "id": "End", +- "label": "End", +- "type": "date", +- "p": {} +- }, +- { +- "type": "string", +- "role": "tooltip", +- "p": { +- "html": true, +- "role": "tooltip" +- } +- } +- ], +- "rows": [ +- { +- "c": [ +- { +- "v": "Trace 01" +- }, +- { +- "v": "Writing mutation batch for table: MY_TABLE1" +- }, +- { +- "v": new Date(1434196101623) +- }, +- { +- "v": new Date(1434196101784) +- }, +- { +- "v": 'Mock tooltip' +- } +- ] +- } +- ] +- }, +- "options": {'tooltip': { +- 'isHtml': true +- }}, +- "formatters": {} +-}; +-// model of the dependency chart (org chart model) +-dependencyChart = +-{"type": "OrgChart", +- "displayed": true, +- "data": { +- "cols": [ +- { +- "id": "TraceID", +- "label": "TraceID", +- "type": "string" +- }, +- { +- "id": "Label", +- "label": "Label", +- "type": "string" +- }, +- { +- "id": "ToolTip", +- "label": "ToolTip", +- "type": "string" +- } +- ], +- "rows": [ +- { +- "c": [ +- { +- "v": "Trace01" +- }, +- { +- "v": "" +- }, +- { +- "v": "root" +- } +- ] +- } +- ] +- }, +- "options": { +- allowHtml:true, +- allowCollapse:true, +- tooltip: { isHtml: true } +- }, +- "formatters": {} +-}; +-//model for clearing tree +-var ClearRow = [ +- { +- "c": [ +- { +- "v": "" +- }, +- { +- "v": "" +- }, +- { +- "v": "" +- } +- ] +- } +- ]; +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/app.js b/phoenix-tracing-webapp/src/main/webapp/js/app.js +deleted file mode 100755 +index bc02411a4..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/app.js ++++ /dev/null +@@ -1,70 +0,0 @@ +-/* +- * 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. +- */ +- +-var TraceApp = angular.module('TracingAppCtrl', [ +- 'ngRoute', +- 'TracingCtrl', +- 'UICtrl', +- 'TimeLineCtrl', +- 'DepTreeCtrl', +- 'SearchCtrl' +-]); +- +-TraceApp.config(['$routeProvider', +- function($routeProvider) { +- $routeProvider. +- when('/about', { +- templateUrl: 'partials/about.html' +- }). +- when('/search', { +- templateUrl: 'partials/search.html', +- controller: 'SearchTraceCtrl' +- }). +- when('/count-chart', { +- templateUrl: 'partials/chart.html', +- controller: 'TraceCountChartCtrl' +- }). +- when('/trace-distribution', { +- templateUrl: 'partials/chart.html', +- controller: 'TraceDistChartCtrl' +- }). +- when('/trace-timeline', { +- templateUrl: 'partials/google-chart.html', +- controller: 'TraceTimeLineCtrl' +- }). +- when('/help', { +- templateUrl: 'partials/help.html' +- }). +- when('/list', { +- templateUrl: 'partials/list.html', +- controller: 'TraceListCtrl' +- }). +- when('/dependency-tree', { +- templateUrl: 'partials/dependency-tree.html', +- controller: 'TraceDepTreeCtrl' +- }). +- when('/home', { +- templateUrl: 'partials/home.html' +- }). +- when('/dashboard', { +- templateUrl: 'partials/phoenix-trace.html' +- }). +- otherwise({ +- redirectTo: '/home' +- }); +- }]); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/config/chart-config.js b/phoenix-tracing-webapp/src/main/webapp/js/config/chart-config.js +deleted file mode 100644 +index 7a44a6142..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/config/chart-config.js ++++ /dev/null +@@ -1,63 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-angular.module('TimeLineCtrl') +- .constant('chartModels', { +- 'timeLineModel': { +- "type": "Timeline", +- "displayed": true, +- "data": { +- "cols": [{ +- "id": "TraceID", +- "label": "TraceID", +- "type": "string", +- "p": {} +- }, { +- "id": "Label", +- "label": "Label", +- "type": "string", +- "p": {} +- }, { +- "id": "Start", +- "label": "Start", +- "type": "date", +- "p": {} +- }, { +- "id": "End", +- "label": "End", +- "type": "date", +- "p": {} +- }], +- "rows": [{ +- "c": [{ +- "v": "Trace 01" +- }, { +- "v": "Writing mutation batch for table: MY_TABLE1" +- }, { +- "v": new Date(1434196101623) +- }, { +- "v": new Date(1434196101784) +- }] +- }] +- }, +- "options": {}, +- "formatters": {} +- } +- }); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/accordion-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/accordion-controllers.js +deleted file mode 100755 +index 66fe3379c..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/accordion-controllers.js ++++ /dev/null +@@ -1,47 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var UICtrl = angular.module('UICtrl', ['ui.bootstrap']); +-UICtrl.controller('AccordionDemoCtrl', function($scope) { +- $scope.oneAtATime = true; +- +- $scope.groups = [ +- { +- title: 'Dynamic Group Header - 1', +- content: 'Dynamic Group Body - 1' +- }, +- { +- title: 'Dynamic Group Header - 2', +- content: 'Dynamic Group Body - 2' +- } +- ]; +- +- $scope.items = ['Item 1', 'Item 2', 'Item 3']; +- +- $scope.addItem = function() { +- var newItemNo = $scope.items.length + 1; +- $scope.items.push('Item ' + newItemNo); +- }; +- +- $scope.status = { +- isFirstOpen: true, +- isFirstDisabled: false +- }; +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/dependency-tree-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/dependency-tree-controllers.js +deleted file mode 100644 +index 58c4a8479..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/dependency-tree-controllers.js ++++ /dev/null +@@ -1,161 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var DepTreeCtrl = angular.module('DepTreeCtrl', ['ui.bootstrap']); +-DepTreeCtrl.controller('TraceDepTreeCtrl', function($scope, $http, $location) { +- var searchURL = "../trace/?action=searchTrace&traceid="; +- var sqlQuery = null; +- var rootId = null; +- $scope.page = { +- title: 'Dependency Tree for Trace' +- }; +- $scope.page = { +- alertType: 'alert-info' +- }; +- +- $scope.rootId = ""; +- $scope.loadDependencyTree = function(url) { +- $scope.clearTree(); +- $scope.page.alertType = 'alert-info'; +- $scope.reqStatus = "Loading Phoenix Tracing data"; +- var searchObject = $location.search(); +- $scope.traceId = searchObject.traceid +- if($scope.traceId != null){ +- getTreeData(url + $scope.traceId); +- $scope.chartObject = null; +- $scope.chartObject = dependencyChart; +- }else{ +- $scope.page.alertType = 'alert-warning'; +- $scope.reqStatus = "Please Enter the TraceID."; +- } +- }; +- +- $scope.drawTree = function() { +- $scope.clearTree(); +- if ($scope.traceId != null) { +- getTreeData(searchURL + $scope.traceId); +- $scope.chartObject = dependencyChart; +- } else { +- $scope.reqStatus = "Please Enter TraceID"; +- } +- }; +- +- $scope.clearTree = function() { +- if ($scope.chartObject != null) { +- for (var i = 0; i < $scope.chartObject.data.rows.length; i++) { +- $scope.chartObject.data.rows[i] = ClearRow[0]; +- } +- $scope.page.alertType = 'alert-info'; +- $scope.reqStatus = "Tree is Cleared"; +- } else { +- $scope.reqStatus = "There is no Tree to clear"; +- } +- }; +- +- //shortning description +- function getDescription(description) { +- var shortDescription = ''; +- var haveBracket = description.indexOf("("); +- if (haveBracket != -1) { +- shortDescription = description.substring(0, description.indexOf("(")) +- } else { +- shortDescription = description; +- } +- return shortDescription; +- } +- +- function getToolTip(data) { +- var toolTip = ''; +- var dst = getDescription(data.description); +- var start_time = new Date(parseFloat(data.start_time)); +- var end_time = new Date(parseFloat(data.end_time)); +- var duration = (data.end_time - data.start_time) + ' ns'; +- var hostname = data.hostname; +- toolTip = 'Hostname : ' + hostname + '\nDescription : ' + dst + +- '\nStart At : ' + start_time + '\nEnd At : ' + end_time + +- '\nTrace Id : ' + +- data.trace_id + '\nParent Id : ' + data.parent_id + '\nSpan Id : ' + +- data.span_id + '\nDuration : ' + duration; +- return toolTip; +- } +- +- function setSQLQuery(data) { +- for (var i = 0; i < data.length; i++) { +- var currentParentID = data[i].parent_id; +- //console.log('p '+currentParentID); +- for (var j = 0; j < data.length; j++) { +- var currentSpanID = data[j].span_id; +- //console.log('s '+currentSpanID); +- if (currentSpanID == currentParentID) { +- break; +- } else if (j == data.length - 1) { +- sqlQuery = data[i].description; +- rootId = currentParentID; +- } +- } +- } +- } +- +- //get Dependancy tree with data model +- function getTreeData(url) { +- $scope.reqStatus = "Retriving data from Phoenix."; +- $http.get(url). +- success(function(data, status, headers, config) { +- //getRootID(data); +- setSQLQuery(data); +- for (var i = 0; i < data.length; i++) { +- var currentData = data[i]; +- var currentDataParentId = currentData.parent_id; +- //check for root id +- if (currentDataParentId == rootId) { +- currentDataParentId = ''; +- } +- var toolTip = getToolTip(currentData); +- var datamodel = [{ +- "v": currentData.span_id, +- 'f': getDescription(currentData.description) +- }, { +- "v": currentDataParentId +- }, { +- "v": toolTip +- }] +- dependencyChart.data.rows[i] = { +- "c": datamodel +- } +- } +- $scope.page.alertType = 'alert-success'; +- $scope.reqStatus = "Data retrieved on SQL Query - " + +- sqlQuery; +- }). +- error(function(data, status, headers, config) { +- console.log('error of loading dependencyChart'); +- $scope.page.alertType = 'alert-warning'; +- if ($scope.traceId == null) { +- $scope.reqStatus = "Please Enter the TraceID."; +- } else { +- $scope.reqStatus = "Error in data retrieving."; +- } +- }); +- //$scope.reqStatus = "Data retrieved on "+sqlQuery; +- return dependencyChart; +- }; +- +- $scope.loadDependencyTree(searchURL); +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/list-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/list-controllers.js +deleted file mode 100755 +index de9ef66d4..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/list-controllers.js ++++ /dev/null +@@ -1,40 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var TraceCtrl = angular.module('TracingCtrl', ['googlechart', 'ui.bootstrap']); +- +-//listing trace from json +-TraceCtrl.controller('TraceListCtrl', function($scope, $http) { +- //$scope.traces = sampleTrace; +- $scope.traces = []; +- $scope.tracesLimit =100; +- $scope.letterLimit =100; +- $scope.loadTrace = function() { +- var httpRequest = $http({ +- method: 'GET', +- url: '../trace?action=getall&limit='+$scope.tracesLimit +- +- }).success(function(data, status) { +- $scope.traces = data; +- }); +- +- }; +- $scope.loadTrace(); +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/search-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/search-controllers.js +deleted file mode 100755 +index ac95c96f8..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/search-controllers.js ++++ /dev/null +@@ -1,89 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var SearchCtrl = angular.module('SearchCtrl', ['ui.bootstrap']); +-SearchCtrl.controller('SearchTraceCtrl', function($scope, GenerateStatementService) { +- +-$scope.sqlQuery="select * from MyTabel"; +-$scope.search = function(sqlQuery) { +- GenerateStatementService.setSQLQuery(sqlQuery); +- console.log(GenerateStatementService.getSQLQuery()); +- console.log(GenerateStatementService.getTracingStatement()); +- $scope.tracingStatement = ' ---> ' +GenerateStatementService.getTracingStatement(); +-}; +- //Date picker +- $scope.edt = new Date(); +- $scope.today = function() { +- $scope.dt = new Date(); +- }; +- $scope.today(); +- +- $scope.clear = function () { +- $scope.dt = null; +- }; +- +- +- $scope.open = function($event) { +- $event.preventDefault(); +- $event.stopPropagation(); +- +- $scope.opened = true; +- }; +- +- $scope.dateOptions = { +- formatYear: 'yy', +- startingDay: 1 +- }; +- +- $scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate']; +- $scope.format = $scope.formats[0]; +- +- var tomorrow = new Date(); +- tomorrow.setDate(tomorrow.getDate() + 1); +- var afterTomorrow = new Date(); +- afterTomorrow.setDate(tomorrow.getDate() + 2); +- $scope.events = +- [ +- { +- date: tomorrow, +- status: 'full' +- }, +- { +- date: afterTomorrow, +- status: 'partially' +- } +- ]; +- +- $scope.getDayClass = function(date, mode) { +- if (mode === 'day') { +- var dayToCheck = new Date(date).setHours(0,0,0,0); +- +- for (var i=0;i<$scope.events.length;i++){ +- var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0); +- +- if (dayToCheck === currentDay) { +- return $scope.events[i].status; +- } +- } +- } +- +- return ''; +- }; +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/timeline-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/timeline-controllers.js +deleted file mode 100755 +index 93d092981..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/timeline-controllers.js ++++ /dev/null +@@ -1,171 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var TimeLineCtrl = angular.module('TimeLineCtrl', ['ui.bootstrap']); +-TimeLineCtrl.controller('TraceTimeLineCtrl', function($scope, $http, $location) { +- $scope.page = { +- title: 'Timeline for Trace' +- }; +- +- $scope.clear = function() { +- var nextid = $scope.chartObject.data.rows.length; +- $scope.chartObject.data.rows.splice(1, nextid - 2); +- } +- +- $scope.myItemID = "Trace 01"; +- $scope.clearId = function() { +- var count = $scope.chartObject.data.rows.length; +- for (var i = 0; i < count; i++) { +- var obj = $scope.chartObject.data.rows[i]; +- if (obj === $scope.myItemID) { +- $scope.chartObject.data.rows.splice(i, 1); +- } +- } +- } +- +- $scope.trace = {}; +- +- //Appending items for time line +- $scope.addItemToTimeLine = function(clear) { +- if (clear == true) { +- $scope.chartObject.data.rows[0].c = []; +- $scope.loadTimeLine('../trace?action=searchTrace&traceid=' + $scope +- .traceID); +- } else { +- console.log($scope.traceID) +- if ($scope.traceID) { +- var url = '../trace?action=searchTrace&traceid=' + $scope.traceID +- $http.get(url). +- success(function(data, status, headers, config) { +- $scope.trace = data[0]; +- var nextid = $scope.chartObject.data.rows.length; +- console.log(data[0]); +- //adding to the time line +- for (var i = 0; i < data.length; i++) { +- var currentData = data[i]; +- var dest = getDescription(currentData.description); +- $scope.chartObject.data.rows[nextid + i] = { +- "c": [{ +- "v": "Trace " + (nextid + i) +- }, { +- "v": dest +- }, { +- "v": new Date(parseFloat(currentData.start_time)) +- }, { +- "v": new Date(parseFloat(currentData.end_time)) +- }, { +- "v": dest +- }] +- } +- } //end of for loop +- }). +- error(function(data, status, headers, config) { +- console.log('error in loading time line item'); +- }); +- } else { +- alert('Please, Add trace id'); +- } +- } +- }; +- +- //loading timeline items for exisiting timeline chart +- $scope.loadTimeLine = function(url) { +- var searchURL = "../trace/?action=searchTrace&traceid="; +- $scope.chartObject = timeLine; +- var searchObject = $location.search(); +- $scope.traceID = searchObject.traceid +- console.log($scope.traceID); +- var newsurl = searchURL + $scope.traceID; +- if ($scope.traceID == null) { +- getTimeLineChart(url); +- } else { +- //TODO draw chart in start of the page. +- getTimeLineChart(newsurl); +- //getTimeLineChart(url); +- } +- +- $scope.clearId(); +- }; +- +- //shortning description +- function getDescription(description) { +- var dst = ''; +- var haveBracket = description.indexOf("("); +- if (haveBracket != -1) { +- dst = description.substring(0, description.indexOf("(")) +- } else { +- dst = description; +- } +- console.log(dst); +- return dst; +- } +- +- //trace item to show current time +- var cdatamodel = [{ +- "v": "Trace 01" +- }, { +- "v": "Current Time" +- }, { +- "v": new Date() +- }, { +- "v": new Date() +- }, { +- "v": "Current time" +- }]; +- +- //getting TimeLine chart with data +- function getTimeLineChart(url) { +- $http.get(url). +- success(function(data, status, headers, config) { +- for (var i = 0; i < data.length; i++) { +- console.log(data[i]) +- var datax = data[i]; +- var dest = getDescription(datax.description); +- var datamodel = [{ +- "v": "Trace " + i +- }, { +- "v": dest +- }, { +- "v": new Date(parseFloat(datax.start_time)) +- }, { +- "v": new Date(parseFloat(datax.end_time)) +- }, { +- "v": dest +- }] +- console.log(i) +- timeLine.data.rows[i] = { +- "c": datamodel +- } +- } +- timeLine.data.rows[data.length] = { +- "c": cdatamodel +- } +- console.log(timeLine); +- $scope.chartObject = timeLine; +- }). +- error(function(data, status, headers, config) { +- console.log('error of loading timeline in start'); +- }); +- console.log(timeLine); +- return timeLine; +- } +- +- $scope.loadTimeLine('../trace?action=getall&limit=7'); +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-count-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-count-controllers.js +deleted file mode 100755 +index 36351be82..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-count-controllers.js ++++ /dev/null +@@ -1,58 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-TraceCtrl.controller('TraceCountChartCtrl', function($scope,$http) { +- $scope.page = { +- title: 'Trace Count Chart Graph' +- }; +- $scope.loadData = function() { +- console.log('data is loading for getCount'); +- $http.get('../trace/?action=getCount'). +- success(function(data, status, headers, config) { +- console.log('recived the data'); +- console.log(data); +- for(var i = 0; i < data.length; i++) { +- var datax = data[i]; +- var datamodel =[{ +- "v": datax.description +- }, { +- "v": parseFloat(datax.count) +- }] +- chartObject.data.rows[i] = {"c": datamodel} +- chartObject.options.width = '800'; +- chartObject.options.hAxis.title = 'Traces'; +- } +- }). +- error(function(data, status, headers, config) { +- console.log('error of loading timeline in start'); +- }); +- +- $scope.chartObject = chartObject; +- }; +- +- $scope.setChartType = function(type) { +- $scope.chartObject.type = type; +- }; +- +- $scope.chartObject = {}; +- $scope.loadData(); +- $scope.chartObject.type = "ColumnChart"; +- +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-distribution-controllers.js b/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-distribution-controllers.js +deleted file mode 100755 +index 3f3d10c90..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/controllers/trace-distribution-controllers.js ++++ /dev/null +@@ -1,57 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-TraceCtrl.controller('TraceDistChartCtrl', function($scope, $http) { +- +- $scope.page = { +- title: 'Trace Distribution' +- }; +- $scope.loadData = function() { +- console.log('data is loading for getDistribution'); +- $http.get('../trace/?action=getDistribution'). +- success(function(data, status, headers, config) { +- console.log('recived the data'); +- console.log(data); +- for(var i = 0; i < data.length; i++) { +- var datax = data[i]; +- var datamodel =[{ +- "v": datax.hostname +- }, { +- "v": parseFloat(datax.count) +- }] +- chartObject.data.rows[i] = {"c": datamodel +- } +- } +- }). +- error(function(data, status, headers, config) { +- console.log('error of loading timeline in start'); +- }); +- +- $scope.chartObject = chartObject; +- }; +- +- $scope.setChartType = function(type) { +- $scope.chartObject.type = type; +- }; +- +- $scope.chartObject = {}; +- $scope.loadData(); +- //$scope.chartObject = chartObject +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory-config.js b/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory-config.js +deleted file mode 100755 +index 37db23f5f..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory-config.js ++++ /dev/null +@@ -1,32 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +-/** +- * @ngdoc function +- * @name TracingAppCtrl.statment configure +- * @description +- * # configures will contains the configure for statement factory. +- * +- */ +-angular.module('TracingAppCtrl') +- .constant('stateConfig', { +- 'command': {'select': 'FULL SCAN OVER '}, +- 'start': 'Creating basic query for [', +- 'end': ']' +- }); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory.js b/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory.js +deleted file mode 100755 +index 76a5b6163..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/factories/statement-factory.js ++++ /dev/null +@@ -1,47 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-/** +- * SQL Convert Statement Factory +- * +- */ +- +-angular.module('TracingAppCtrl').factory('StatementFactory', function(stateConfig) { +- +- var StatementFactory = function(command,tableName) { +- this.start = stateConfig.start; +- this.command = stateConfig.command[command]; +- this.tableName = tableName; +- this.filters = {}; +- this.groupBy = {}; +- this.keys = {}; +- this.end = stateConfig.end; +- }; +- +- StatementFactory.setKeys = function(keys) { +- ChartFactory.keys = keys; +- }; +- +- StatementFactory.setCommands = function(command) { +- ChartFactory.command = command; +- }; +- +- return StatementFactory; +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-mocks.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-mocks.js +deleted file mode 100644 +index cbf36ffe2..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-mocks.js ++++ /dev/null +@@ -1,2468 +0,0 @@ +-/** +- * @license AngularJS v1.3.15 +- * (c) 2010-2014 Google, Inc. http://angularjs.org +- * License: MIT +- */ +-(function(window, angular, undefined) { +- +-'use strict'; +- +-/** +- * @ngdoc object +- * @name angular.mock +- * @description +- * +- * Namespace from 'angular-mocks.js' which contains testing related code. +- */ +-angular.mock = {}; +- +-/** +- * ! This is a private undocumented service ! +- * +- * @name $browser +- * +- * @description +- * This service is a mock implementation of {@link ng.$browser}. It provides fake +- * implementation for commonly used browser apis that are hard to test, e.g. setTimeout, xhr, +- * cookies, etc... +- * +- * The api of this service is the same as that of the real {@link ng.$browser $browser}, except +- * that there are several helper methods available which can be used in tests. +- */ +-angular.mock.$BrowserProvider = function() { +- this.$get = function() { +- return new angular.mock.$Browser(); +- }; +-}; +- +-angular.mock.$Browser = function() { +- var self = this; +- +- this.isMock = true; +- self.$$url = "http://server/"; +- self.$$lastUrl = self.$$url; // used by url polling fn +- self.pollFns = []; +- +- // TODO(vojta): remove this temporary api +- self.$$completeOutstandingRequest = angular.noop; +- self.$$incOutstandingRequestCount = angular.noop; +- +- +- // register url polling fn +- +- self.onUrlChange = function(listener) { +- self.pollFns.push( +- function() { +- if (self.$$lastUrl !== self.$$url || self.$$state !== self.$$lastState) { +- self.$$lastUrl = self.$$url; +- self.$$lastState = self.$$state; +- listener(self.$$url, self.$$state); +- } +- } +- ); +- +- return listener; +- }; +- +- self.$$checkUrlChange = angular.noop; +- +- self.cookieHash = {}; +- self.lastCookieHash = {}; +- self.deferredFns = []; +- self.deferredNextId = 0; +- +- self.defer = function(fn, delay) { +- delay = delay || 0; +- self.deferredFns.push({time:(self.defer.now + delay), fn:fn, id: self.deferredNextId}); +- self.deferredFns.sort(function(a, b) { return a.time - b.time;}); +- return self.deferredNextId++; +- }; +- +- +- /** +- * @name $browser#defer.now +- * +- * @description +- * Current milliseconds mock time. +- */ +- self.defer.now = 0; +- +- +- self.defer.cancel = function(deferId) { +- var fnIndex; +- +- angular.forEach(self.deferredFns, function(fn, index) { +- if (fn.id === deferId) fnIndex = index; +- }); +- +- if (fnIndex !== undefined) { +- self.deferredFns.splice(fnIndex, 1); +- return true; +- } +- +- return false; +- }; +- +- +- /** +- * @name $browser#defer.flush +- * +- * @description +- * Flushes all pending requests and executes the defer callbacks. +- * +- * @param {number=} number of milliseconds to flush. See {@link #defer.now} +- */ +- self.defer.flush = function(delay) { +- if (angular.isDefined(delay)) { +- self.defer.now += delay; +- } else { +- if (self.deferredFns.length) { +- self.defer.now = self.deferredFns[self.deferredFns.length - 1].time; +- } else { +- throw new Error('No deferred tasks to be flushed'); +- } +- } +- +- while (self.deferredFns.length && self.deferredFns[0].time <= self.defer.now) { +- self.deferredFns.shift().fn(); +- } +- }; +- +- self.$$baseHref = '/'; +- self.baseHref = function() { +- return this.$$baseHref; +- }; +-}; +-angular.mock.$Browser.prototype = { +- +-/** +- * @name $browser#poll +- * +- * @description +- * run all fns in pollFns +- */ +- poll: function poll() { +- angular.forEach(this.pollFns, function(pollFn) { +- pollFn(); +- }); +- }, +- +- addPollFn: function(pollFn) { +- this.pollFns.push(pollFn); +- return pollFn; +- }, +- +- url: function(url, replace, state) { +- if (angular.isUndefined(state)) { +- state = null; +- } +- if (url) { +- this.$$url = url; +- // Native pushState serializes & copies the object; simulate it. +- this.$$state = angular.copy(state); +- return this; +- } +- +- return this.$$url; +- }, +- +- state: function() { +- return this.$$state; +- }, +- +- cookies: function(name, value) { +- if (name) { +- if (angular.isUndefined(value)) { +- delete this.cookieHash[name]; +- } else { +- if (angular.isString(value) && //strings only +- value.length <= 4096) { //strict cookie storage limits +- this.cookieHash[name] = value; +- } +- } +- } else { +- if (!angular.equals(this.cookieHash, this.lastCookieHash)) { +- this.lastCookieHash = angular.copy(this.cookieHash); +- this.cookieHash = angular.copy(this.cookieHash); +- } +- return this.cookieHash; +- } +- }, +- +- notifyWhenNoOutstandingRequests: function(fn) { +- fn(); +- } +-}; +- +- +-/** +- * @ngdoc provider +- * @name $exceptionHandlerProvider +- * +- * @description +- * Configures the mock implementation of {@link ng.$exceptionHandler} to rethrow or to log errors +- * passed to the `$exceptionHandler`. +- */ +- +-/** +- * @ngdoc service +- * @name $exceptionHandler +- * +- * @description +- * Mock implementation of {@link ng.$exceptionHandler} that rethrows or logs errors passed +- * to it. See {@link ngMock.$exceptionHandlerProvider $exceptionHandlerProvider} for configuration +- * information. +- * +- * +- * ```js +- * describe('$exceptionHandlerProvider', function() { +- * +- * it('should capture log messages and exceptions', function() { +- * +- * module(function($exceptionHandlerProvider) { +- * $exceptionHandlerProvider.mode('log'); +- * }); +- * +- * inject(function($log, $exceptionHandler, $timeout) { +- * $timeout(function() { $log.log(1); }); +- * $timeout(function() { $log.log(2); throw 'banana peel'; }); +- * $timeout(function() { $log.log(3); }); +- * expect($exceptionHandler.errors).toEqual([]); +- * expect($log.assertEmpty()); +- * $timeout.flush(); +- * expect($exceptionHandler.errors).toEqual(['banana peel']); +- * expect($log.log.logs).toEqual([[1], [2], [3]]); +- * }); +- * }); +- * }); +- * ``` +- */ +- +-angular.mock.$ExceptionHandlerProvider = function() { +- var handler; +- +- /** +- * @ngdoc method +- * @name $exceptionHandlerProvider#mode +- * +- * @description +- * Sets the logging mode. +- * +- * @param {string} mode Mode of operation, defaults to `rethrow`. +- * +- * - `log`: Sometimes it is desirable to test that an error is thrown, for this case the `log` +- * mode stores an array of errors in `$exceptionHandler.errors`, to allow later +- * assertion of them. See {@link ngMock.$log#assertEmpty assertEmpty()} and +- * {@link ngMock.$log#reset reset()} +- * - `rethrow`: If any errors are passed to the handler in tests, it typically means that there +- * is a bug in the application or test, so this mock will make these tests fail. +- * For any implementations that expect exceptions to be thrown, the `rethrow` mode +- * will also maintain a log of thrown errors. +- */ +- this.mode = function(mode) { +- +- switch (mode) { +- case 'log': +- case 'rethrow': +- var errors = []; +- handler = function(e) { +- if (arguments.length == 1) { +- errors.push(e); +- } else { +- errors.push([].slice.call(arguments, 0)); +- } +- if (mode === "rethrow") { +- throw e; +- } +- }; +- handler.errors = errors; +- break; +- default: +- throw new Error("Unknown mode '" + mode + "', only 'log'/'rethrow' modes are allowed!"); +- } +- }; +- +- this.$get = function() { +- return handler; +- }; +- +- this.mode('rethrow'); +-}; +- +- +-/** +- * @ngdoc service +- * @name $log +- * +- * @description +- * Mock implementation of {@link ng.$log} that gathers all logged messages in arrays +- * (one array per logging level). These arrays are exposed as `logs` property of each of the +- * level-specific log function, e.g. for level `error` the array is exposed as `$log.error.logs`. +- * +- */ +-angular.mock.$LogProvider = function() { +- var debug = true; +- +- function concat(array1, array2, index) { +- return array1.concat(Array.prototype.slice.call(array2, index)); +- } +- +- this.debugEnabled = function(flag) { +- if (angular.isDefined(flag)) { +- debug = flag; +- return this; +- } else { +- return debug; +- } +- }; +- +- this.$get = function() { +- var $log = { +- log: function() { $log.log.logs.push(concat([], arguments, 0)); }, +- warn: function() { $log.warn.logs.push(concat([], arguments, 0)); }, +- info: function() { $log.info.logs.push(concat([], arguments, 0)); }, +- error: function() { $log.error.logs.push(concat([], arguments, 0)); }, +- debug: function() { +- if (debug) { +- $log.debug.logs.push(concat([], arguments, 0)); +- } +- } +- }; +- +- /** +- * @ngdoc method +- * @name $log#reset +- * +- * @description +- * Reset all of the logging arrays to empty. +- */ +- $log.reset = function() { +- /** +- * @ngdoc property +- * @name $log#log.logs +- * +- * @description +- * Array of messages logged using {@link ng.$log#log `log()`}. +- * +- * @example +- * ```js +- * $log.log('Some Log'); +- * var first = $log.log.logs.unshift(); +- * ``` +- */ +- $log.log.logs = []; +- /** +- * @ngdoc property +- * @name $log#info.logs +- * +- * @description +- * Array of messages logged using {@link ng.$log#info `info()`}. +- * +- * @example +- * ```js +- * $log.info('Some Info'); +- * var first = $log.info.logs.unshift(); +- * ``` +- */ +- $log.info.logs = []; +- /** +- * @ngdoc property +- * @name $log#warn.logs +- * +- * @description +- * Array of messages logged using {@link ng.$log#warn `warn()`}. +- * +- * @example +- * ```js +- * $log.warn('Some Warning'); +- * var first = $log.warn.logs.unshift(); +- * ``` +- */ +- $log.warn.logs = []; +- /** +- * @ngdoc property +- * @name $log#error.logs +- * +- * @description +- * Array of messages logged using {@link ng.$log#error `error()`}. +- * +- * @example +- * ```js +- * $log.error('Some Error'); +- * var first = $log.error.logs.unshift(); +- * ``` +- */ +- $log.error.logs = []; +- /** +- * @ngdoc property +- * @name $log#debug.logs +- * +- * @description +- * Array of messages logged using {@link ng.$log#debug `debug()`}. +- * +- * @example +- * ```js +- * $log.debug('Some Error'); +- * var first = $log.debug.logs.unshift(); +- * ``` +- */ +- $log.debug.logs = []; +- }; +- +- /** +- * @ngdoc method +- * @name $log#assertEmpty +- * +- * @description +- * Assert that all of the logging methods have no logged messages. If any messages are present, +- * an exception is thrown. +- */ +- $log.assertEmpty = function() { +- var errors = []; +- angular.forEach(['error', 'warn', 'info', 'log', 'debug'], function(logLevel) { +- angular.forEach($log[logLevel].logs, function(log) { +- angular.forEach(log, function(logItem) { +- errors.push('MOCK $log (' + logLevel + '): ' + String(logItem) + '\n' + +- (logItem.stack || '')); +- }); +- }); +- }); +- if (errors.length) { +- errors.unshift("Expected $log to be empty! Either a message was logged unexpectedly, or " + +- "an expected log message was not checked and removed:"); +- errors.push(''); +- throw new Error(errors.join('\n---------\n')); +- } +- }; +- +- $log.reset(); +- return $log; +- }; +-}; +- +- +-/** +- * @ngdoc service +- * @name $interval +- * +- * @description +- * Mock implementation of the $interval service. +- * +- * Use {@link ngMock.$interval#flush `$interval.flush(millis)`} to +- * move forward by `millis` milliseconds and trigger any functions scheduled to run in that +- * time. +- * +- * @param {function()} fn A function that should be called repeatedly. +- * @param {number} delay Number of milliseconds between each function call. +- * @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat +- * indefinitely. +- * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise +- * will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block. +- * @returns {promise} A promise which will be notified on each iteration. +- */ +-angular.mock.$IntervalProvider = function() { +- this.$get = ['$browser', '$rootScope', '$q', '$$q', +- function($browser, $rootScope, $q, $$q) { +- var repeatFns = [], +- nextRepeatId = 0, +- now = 0; +- +- var $interval = function(fn, delay, count, invokeApply) { +- var iteration = 0, +- skipApply = (angular.isDefined(invokeApply) && !invokeApply), +- deferred = (skipApply ? $$q : $q).defer(), +- promise = deferred.promise; +- +- count = (angular.isDefined(count)) ? count : 0; +- promise.then(null, null, fn); +- +- promise.$$intervalId = nextRepeatId; +- +- function tick() { +- deferred.notify(iteration++); +- +- if (count > 0 && iteration >= count) { +- var fnIndex; +- deferred.resolve(iteration); +- +- angular.forEach(repeatFns, function(fn, index) { +- if (fn.id === promise.$$intervalId) fnIndex = index; +- }); +- +- if (fnIndex !== undefined) { +- repeatFns.splice(fnIndex, 1); +- } +- } +- +- if (skipApply) { +- $browser.defer.flush(); +- } else { +- $rootScope.$apply(); +- } +- } +- +- repeatFns.push({ +- nextTime:(now + delay), +- delay: delay, +- fn: tick, +- id: nextRepeatId, +- deferred: deferred +- }); +- repeatFns.sort(function(a, b) { return a.nextTime - b.nextTime;}); +- +- nextRepeatId++; +- return promise; +- }; +- /** +- * @ngdoc method +- * @name $interval#cancel +- * +- * @description +- * Cancels a task associated with the `promise`. +- * +- * @param {promise} promise A promise from calling the `$interval` function. +- * @returns {boolean} Returns `true` if the task was successfully cancelled. +- */ +- $interval.cancel = function(promise) { +- if (!promise) return false; +- var fnIndex; +- +- angular.forEach(repeatFns, function(fn, index) { +- if (fn.id === promise.$$intervalId) fnIndex = index; +- }); +- +- if (fnIndex !== undefined) { +- repeatFns[fnIndex].deferred.reject('canceled'); +- repeatFns.splice(fnIndex, 1); +- return true; +- } +- +- return false; +- }; +- +- /** +- * @ngdoc method +- * @name $interval#flush +- * @description +- * +- * Runs interval tasks scheduled to be run in the next `millis` milliseconds. +- * +- * @param {number=} millis maximum timeout amount to flush up until. +- * +- * @return {number} The amount of time moved forward. +- */ +- $interval.flush = function(millis) { +- now += millis; +- while (repeatFns.length && repeatFns[0].nextTime <= now) { +- var task = repeatFns[0]; +- task.fn(); +- task.nextTime += task.delay; +- repeatFns.sort(function(a, b) { return a.nextTime - b.nextTime;}); +- } +- return millis; +- }; +- +- return $interval; +- }]; +-}; +- +- +-/* jshint -W101 */ +-/* The R_ISO8061_STR regex is never going to fit into the 100 char limit! +- * This directive should go inside the anonymous function but a bug in JSHint means that it would +- * not be enacted early enough to prevent the warning. +- */ +-var R_ISO8061_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?:\:?(\d\d)(?:\:?(\d\d)(?:\.(\d{3}))?)?)?(Z|([+-])(\d\d):?(\d\d)))?$/; +- +-function jsonStringToDate(string) { +- var match; +- if (match = string.match(R_ISO8061_STR)) { +- var date = new Date(0), +- tzHour = 0, +- tzMin = 0; +- if (match[9]) { +- tzHour = int(match[9] + match[10]); +- tzMin = int(match[9] + match[11]); +- } +- date.setUTCFullYear(int(match[1]), int(match[2]) - 1, int(match[3])); +- date.setUTCHours(int(match[4] || 0) - tzHour, +- int(match[5] || 0) - tzMin, +- int(match[6] || 0), +- int(match[7] || 0)); +- return date; +- } +- return string; +-} +- +-function int(str) { +- return parseInt(str, 10); +-} +- +-function padNumber(num, digits, trim) { +- var neg = ''; +- if (num < 0) { +- neg = '-'; +- num = -num; +- } +- num = '' + num; +- while (num.length < digits) num = '0' + num; +- if (trim) +- num = num.substr(num.length - digits); +- return neg + num; +-} +- +- +-/** +- * @ngdoc type +- * @name angular.mock.TzDate +- * @description +- * +- * *NOTE*: this is not an injectable instance, just a globally available mock class of `Date`. +- * +- * Mock of the Date type which has its timezone specified via constructor arg. +- * +- * The main purpose is to create Date-like instances with timezone fixed to the specified timezone +- * offset, so that we can test code that depends on local timezone settings without dependency on +- * the time zone settings of the machine where the code is running. +- * +- * @param {number} offset Offset of the *desired* timezone in hours (fractions will be honored) +- * @param {(number|string)} timestamp Timestamp representing the desired time in *UTC* +- * +- * @example +- * !!!! WARNING !!!!! +- * This is not a complete Date object so only methods that were implemented can be called safely. +- * To make matters worse, TzDate instances inherit stuff from Date via a prototype. +- * +- * We do our best to intercept calls to "unimplemented" methods, but since the list of methods is +- * incomplete we might be missing some non-standard methods. This can result in errors like: +- * "Date.prototype.foo called on incompatible Object". +- * +- * ```js +- * var newYearInBratislava = new TzDate(-1, '2009-12-31T23:00:00Z'); +- * newYearInBratislava.getTimezoneOffset() => -60; +- * newYearInBratislava.getFullYear() => 2010; +- * newYearInBratislava.getMonth() => 0; +- * newYearInBratislava.getDate() => 1; +- * newYearInBratislava.getHours() => 0; +- * newYearInBratislava.getMinutes() => 0; +- * newYearInBratislava.getSeconds() => 0; +- * ``` +- * +- */ +-angular.mock.TzDate = function(offset, timestamp) { +- var self = new Date(0); +- if (angular.isString(timestamp)) { +- var tsStr = timestamp; +- +- self.origDate = jsonStringToDate(timestamp); +- +- timestamp = self.origDate.getTime(); +- if (isNaN(timestamp)) +- throw { +- name: "Illegal Argument", +- message: "Arg '" + tsStr + "' passed into TzDate constructor is not a valid date string" +- }; +- } else { +- self.origDate = new Date(timestamp); +- } +- +- var localOffset = new Date(timestamp).getTimezoneOffset(); +- self.offsetDiff = localOffset * 60 * 1000 - offset * 1000 * 60 * 60; +- self.date = new Date(timestamp + self.offsetDiff); +- +- self.getTime = function() { +- return self.date.getTime() - self.offsetDiff; +- }; +- +- self.toLocaleDateString = function() { +- return self.date.toLocaleDateString(); +- }; +- +- self.getFullYear = function() { +- return self.date.getFullYear(); +- }; +- +- self.getMonth = function() { +- return self.date.getMonth(); +- }; +- +- self.getDate = function() { +- return self.date.getDate(); +- }; +- +- self.getHours = function() { +- return self.date.getHours(); +- }; +- +- self.getMinutes = function() { +- return self.date.getMinutes(); +- }; +- +- self.getSeconds = function() { +- return self.date.getSeconds(); +- }; +- +- self.getMilliseconds = function() { +- return self.date.getMilliseconds(); +- }; +- +- self.getTimezoneOffset = function() { +- return offset * 60; +- }; +- +- self.getUTCFullYear = function() { +- return self.origDate.getUTCFullYear(); +- }; +- +- self.getUTCMonth = function() { +- return self.origDate.getUTCMonth(); +- }; +- +- self.getUTCDate = function() { +- return self.origDate.getUTCDate(); +- }; +- +- self.getUTCHours = function() { +- return self.origDate.getUTCHours(); +- }; +- +- self.getUTCMinutes = function() { +- return self.origDate.getUTCMinutes(); +- }; +- +- self.getUTCSeconds = function() { +- return self.origDate.getUTCSeconds(); +- }; +- +- self.getUTCMilliseconds = function() { +- return self.origDate.getUTCMilliseconds(); +- }; +- +- self.getDay = function() { +- return self.date.getDay(); +- }; +- +- // provide this method only on browsers that already have it +- if (self.toISOString) { +- self.toISOString = function() { +- return padNumber(self.origDate.getUTCFullYear(), 4) + '-' + +- padNumber(self.origDate.getUTCMonth() + 1, 2) + '-' + +- padNumber(self.origDate.getUTCDate(), 2) + 'T' + +- padNumber(self.origDate.getUTCHours(), 2) + ':' + +- padNumber(self.origDate.getUTCMinutes(), 2) + ':' + +- padNumber(self.origDate.getUTCSeconds(), 2) + '.' + +- padNumber(self.origDate.getUTCMilliseconds(), 3) + 'Z'; +- }; +- } +- +- //hide all methods not implemented in this mock that the Date prototype exposes +- var unimplementedMethods = ['getUTCDay', +- 'getYear', 'setDate', 'setFullYear', 'setHours', 'setMilliseconds', +- 'setMinutes', 'setMonth', 'setSeconds', 'setTime', 'setUTCDate', 'setUTCFullYear', +- 'setUTCHours', 'setUTCMilliseconds', 'setUTCMinutes', 'setUTCMonth', 'setUTCSeconds', +- 'setYear', 'toDateString', 'toGMTString', 'toJSON', 'toLocaleFormat', 'toLocaleString', +- 'toLocaleTimeString', 'toSource', 'toString', 'toTimeString', 'toUTCString', 'valueOf']; +- +- angular.forEach(unimplementedMethods, function(methodName) { +- self[methodName] = function() { +- throw new Error("Method '" + methodName + "' is not implemented in the TzDate mock"); +- }; +- }); +- +- return self; +-}; +- +-//make "tzDateInstance instanceof Date" return true +-angular.mock.TzDate.prototype = Date.prototype; +-/* jshint +W101 */ +- +-angular.mock.animate = angular.module('ngAnimateMock', ['ng']) +- +- .config(['$provide', function($provide) { +- +- var reflowQueue = []; +- $provide.value('$$animateReflow', function(fn) { +- var index = reflowQueue.length; +- reflowQueue.push(fn); +- return function cancel() { +- reflowQueue.splice(index, 1); +- }; +- }); +- +- $provide.decorator('$animate', ['$delegate', '$$asyncCallback', '$timeout', '$browser', +- function($delegate, $$asyncCallback, $timeout, $browser) { +- var animate = { +- queue: [], +- cancel: $delegate.cancel, +- enabled: $delegate.enabled, +- triggerCallbackEvents: function() { +- $$asyncCallback.flush(); +- }, +- triggerCallbackPromise: function() { +- $timeout.flush(0); +- }, +- triggerCallbacks: function() { +- this.triggerCallbackEvents(); +- this.triggerCallbackPromise(); +- }, +- triggerReflow: function() { +- angular.forEach(reflowQueue, function(fn) { +- fn(); +- }); +- reflowQueue = []; +- } +- }; +- +- angular.forEach( +- ['animate','enter','leave','move','addClass','removeClass','setClass'], function(method) { +- animate[method] = function() { +- animate.queue.push({ +- event: method, +- element: arguments[0], +- options: arguments[arguments.length - 1], +- args: arguments +- }); +- return $delegate[method].apply($delegate, arguments); +- }; +- }); +- +- return animate; +- }]); +- +- }]); +- +- +-/** +- * @ngdoc function +- * @name angular.mock.dump +- * @description +- * +- * *NOTE*: this is not an injectable instance, just a globally available function. +- * +- * Method for serializing common angular objects (scope, elements, etc..) into strings, useful for +- * debugging. +- * +- * This method is also available on window, where it can be used to display objects on debug +- * console. +- * +- * @param {*} object - any object to turn into string. +- * @return {string} a serialized string of the argument +- */ +-angular.mock.dump = function(object) { +- return serialize(object); +- +- function serialize(object) { +- var out; +- +- if (angular.isElement(object)) { +- object = angular.element(object); +- out = angular.element('<div></div>'); +- angular.forEach(object, function(element) { +- out.append(angular.element(element).clone()); +- }); +- out = out.html(); +- } else if (angular.isArray(object)) { +- out = []; +- angular.forEach(object, function(o) { +- out.push(serialize(o)); +- }); +- out = '[ ' + out.join(', ') + ' ]'; +- } else if (angular.isObject(object)) { +- if (angular.isFunction(object.$eval) && angular.isFunction(object.$apply)) { +- out = serializeScope(object); +- } else if (object instanceof Error) { +- out = object.stack || ('' + object.name + ': ' + object.message); +- } else { +- // TODO(i): this prevents methods being logged, +- // we should have a better way to serialize objects +- out = angular.toJson(object, true); +- } +- } else { +- out = String(object); +- } +- +- return out; +- } +- +- function serializeScope(scope, offset) { +- offset = offset || ' '; +- var log = [offset + 'Scope(' + scope.$id + '): {']; +- for (var key in scope) { +- if (Object.prototype.hasOwnProperty.call(scope, key) && !key.match(/^(\$|this)/)) { +- log.push(' ' + key + ': ' + angular.toJson(scope[key])); +- } +- } +- var child = scope.$$childHead; +- while (child) { +- log.push(serializeScope(child, offset + ' ')); +- child = child.$$nextSibling; +- } +- log.push('}'); +- return log.join('\n' + offset); +- } +-}; +- +-/** +- * @ngdoc service +- * @name $httpBackend +- * @description +- * Fake HTTP backend implementation suitable for unit testing applications that use the +- * {@link ng.$http $http service}. +- * +- * *Note*: For fake HTTP backend implementation suitable for end-to-end testing or backend-less +- * development please see {@link ngMockE2E.$httpBackend e2e $httpBackend mock}. +- * +- * During unit testing, we want our unit tests to run quickly and have no external dependencies so +- * we don’t want to send [XHR](https://developer.mozilla.org/en/xmlhttprequest) or +- * [JSONP](http://en.wikipedia.org/wiki/JSONP) requests to a real server. All we really need is +- * to verify whether a certain request has been sent or not, or alternatively just let the +- * application make requests, respond with pre-trained responses and assert that the end result is +- * what we expect it to be. +- * +- * This mock implementation can be used to respond with static or dynamic responses via the +- * `expect` and `when` apis and their shortcuts (`expectGET`, `whenPOST`, etc). +- * +- * When an Angular application needs some data from a server, it calls the $http service, which +- * sends the request to a real server using $httpBackend service. With dependency injection, it is +- * easy to inject $httpBackend mock (which has the same API as $httpBackend) and use it to verify +- * the requests and respond with some testing data without sending a request to a real server. +- * +- * There are two ways to specify what test data should be returned as http responses by the mock +- * backend when the code under test makes http requests: +- * +- * - `$httpBackend.expect` - specifies a request expectation +- * - `$httpBackend.when` - specifies a backend definition +- * +- * +- * # Request Expectations vs Backend Definitions +- * +- * Request expectations provide a way to make assertions about requests made by the application and +- * to define responses for those requests. The test will fail if the expected requests are not made +- * or they are made in the wrong order. +- * +- * Backend definitions allow you to define a fake backend for your application which doesn't assert +- * if a particular request was made or not, it just returns a trained response if a request is made. +- * The test will pass whether or not the request gets made during testing. +- * +- * +- * <table class="table"> +- * <tr><th width="220px"></th><th>Request expectations</th><th>Backend definitions</th></tr> +- * <tr> +- * <th>Syntax</th> +- * <td>.expect(...).respond(...)</td> +- * <td>.when(...).respond(...)</td> +- * </tr> +- * <tr> +- * <th>Typical usage</th> +- * <td>strict unit tests</td> +- * <td>loose (black-box) unit testing</td> +- * </tr> +- * <tr> +- * <th>Fulfills multiple requests</th> +- * <td>NO</td> +- * <td>YES</td> +- * </tr> +- * <tr> +- * <th>Order of requests matters</th> +- * <td>YES</td> +- * <td>NO</td> +- * </tr> +- * <tr> +- * <th>Request required</th> +- * <td>YES</td> +- * <td>NO</td> +- * </tr> +- * <tr> +- * <th>Response required</th> +- * <td>optional (see below)</td> +- * <td>YES</td> +- * </tr> +- * </table> +- * +- * In cases where both backend definitions and request expectations are specified during unit +- * testing, the request expectations are evaluated first. +- * +- * If a request expectation has no response specified, the algorithm will search your backend +- * definitions for an appropriate response. +- * +- * If a request didn't match any expectation or if the expectation doesn't have the response +- * defined, the backend definitions are evaluated in sequential order to see if any of them match +- * the request. The response from the first matched definition is returned. +- * +- * +- * # Flushing HTTP requests +- * +- * The $httpBackend used in production always responds to requests asynchronously. If we preserved +- * this behavior in unit testing, we'd have to create async unit tests, which are hard to write, +- * to follow and to maintain. But neither can the testing mock respond synchronously; that would +- * change the execution of the code under test. For this reason, the mock $httpBackend has a +- * `flush()` method, which allows the test to explicitly flush pending requests. This preserves +- * the async api of the backend, while allowing the test to execute synchronously. +- * +- * +- * # Unit testing with mock $httpBackend +- * The following code shows how to setup and use the mock backend when unit testing a controller. +- * First we create the controller under test: +- * +- ```js +- // The module code +- angular +- .module('MyApp', []) +- .controller('MyController', MyController); +- +- // The controller code +- function MyController($scope, $http) { +- var authToken; +- +- $http.get('/auth.py').success(function(data, status, headers) { +- authToken = headers('A-Token'); +- $scope.user = data; +- }); +- +- $scope.saveMessage = function(message) { +- var headers = { 'Authorization': authToken }; +- $scope.status = 'Saving...'; +- +- $http.post('/add-msg.py', message, { headers: headers } ).success(function(response) { +- $scope.status = ''; +- }).error(function() { +- $scope.status = 'ERROR!'; +- }); +- }; +- } +- ``` +- * +- * Now we setup the mock backend and create the test specs: +- * +- ```js +- // testing controller +- describe('MyController', function() { +- var $httpBackend, $rootScope, createController, authRequestHandler; +- +- // Set up the module +- beforeEach(module('MyApp')); +- +- beforeEach(inject(function($injector) { +- // Set up the mock http service responses +- $httpBackend = $injector.get('$httpBackend'); +- // backend definition common for all tests +- authRequestHandler = $httpBackend.when('GET', '/auth.py') +- .respond({userId: 'userX'}, {'A-Token': 'xxx'}); +- +- // Get hold of a scope (i.e. the root scope) +- $rootScope = $injector.get('$rootScope'); +- // The $controller service is used to create instances of controllers +- var $controller = $injector.get('$controller'); +- +- createController = function() { +- return $controller('MyController', {'$scope' : $rootScope }); +- }; +- })); +- +- +- afterEach(function() { +- $httpBackend.verifyNoOutstandingExpectation(); +- $httpBackend.verifyNoOutstandingRequest(); +- }); +- +- +- it('should fetch authentication token', function() { +- $httpBackend.expectGET('/auth.py'); +- var controller = createController(); +- $httpBackend.flush(); +- }); +- +- +- it('should fail authentication', function() { +- +- // Notice how you can change the response even after it was set +- authRequestHandler.respond(401, ''); +- +- $httpBackend.expectGET('/auth.py'); +- var controller = createController(); +- $httpBackend.flush(); +- expect($rootScope.status).toBe('Failed...'); +- }); +- +- +- it('should send msg to server', function() { +- var controller = createController(); +- $httpBackend.flush(); +- +- // now you don’t care about the authentication, but +- // the controller will still send the request and +- // $httpBackend will respond without you having to +- // specify the expectation and response for this request +- +- $httpBackend.expectPOST('/add-msg.py', 'message content').respond(201, ''); +- $rootScope.saveMessage('message content'); +- expect($rootScope.status).toBe('Saving...'); +- $httpBackend.flush(); +- expect($rootScope.status).toBe(''); +- }); +- +- +- it('should send auth header', function() { +- var controller = createController(); +- $httpBackend.flush(); +- +- $httpBackend.expectPOST('/add-msg.py', undefined, function(headers) { +- // check if the header was send, if it wasn't the expectation won't +- // match the request and the test will fail +- return headers['Authorization'] == 'xxx'; +- }).respond(201, ''); +- +- $rootScope.saveMessage('whatever'); +- $httpBackend.flush(); +- }); +- }); +- ``` +- */ +-angular.mock.$HttpBackendProvider = function() { +- this.$get = ['$rootScope', '$timeout', createHttpBackendMock]; +-}; +- +-/** +- * General factory function for $httpBackend mock. +- * Returns instance for unit testing (when no arguments specified): +- * - passing through is disabled +- * - auto flushing is disabled +- * +- * Returns instance for e2e testing (when `$delegate` and `$browser` specified): +- * - passing through (delegating request to real backend) is enabled +- * - auto flushing is enabled +- * +- * @param {Object=} $delegate Real $httpBackend instance (allow passing through if specified) +- * @param {Object=} $browser Auto-flushing enabled if specified +- * @return {Object} Instance of $httpBackend mock +- */ +-function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) { +- var definitions = [], +- expectations = [], +- responses = [], +- responsesPush = angular.bind(responses, responses.push), +- copy = angular.copy; +- +- function createResponse(status, data, headers, statusText) { +- if (angular.isFunction(status)) return status; +- +- return function() { +- return angular.isNumber(status) +- ? [status, data, headers, statusText] +- : [200, status, data, headers]; +- }; +- } +- +- // TODO(vojta): change params to: method, url, data, headers, callback +- function $httpBackend(method, url, data, callback, headers, timeout, withCredentials) { +- var xhr = new MockXhr(), +- expectation = expectations[0], +- wasExpected = false; +- +- function prettyPrint(data) { +- return (angular.isString(data) || angular.isFunction(data) || data instanceof RegExp) +- ? data +- : angular.toJson(data); +- } +- +- function wrapResponse(wrapped) { +- if (!$browser && timeout) { +- timeout.then ? timeout.then(handleTimeout) : $timeout(handleTimeout, timeout); +- } +- +- return handleResponse; +- +- function handleResponse() { +- var response = wrapped.response(method, url, data, headers); +- xhr.$$respHeaders = response[2]; +- callback(copy(response[0]), copy(response[1]), xhr.getAllResponseHeaders(), +- copy(response[3] || '')); +- } +- +- function handleTimeout() { +- for (var i = 0, ii = responses.length; i < ii; i++) { +- if (responses[i] === handleResponse) { +- responses.splice(i, 1); +- callback(-1, undefined, ''); +- break; +- } +- } +- } +- } +- +- if (expectation && expectation.match(method, url)) { +- if (!expectation.matchData(data)) +- throw new Error('Expected ' + expectation + ' with different data\n' + +- 'EXPECTED: ' + prettyPrint(expectation.data) + '\nGOT: ' + data); +- +- if (!expectation.matchHeaders(headers)) +- throw new Error('Expected ' + expectation + ' with different headers\n' + +- 'EXPECTED: ' + prettyPrint(expectation.headers) + '\nGOT: ' + +- prettyPrint(headers)); +- +- expectations.shift(); +- +- if (expectation.response) { +- responses.push(wrapResponse(expectation)); +- return; +- } +- wasExpected = true; +- } +- +- var i = -1, definition; +- while ((definition = definitions[++i])) { +- if (definition.match(method, url, data, headers || {})) { +- if (definition.response) { +- // if $browser specified, we do auto flush all requests +- ($browser ? $browser.defer : responsesPush)(wrapResponse(definition)); +- } else if (definition.passThrough) { +- $delegate(method, url, data, callback, headers, timeout, withCredentials); +- } else throw new Error('No response defined !'); +- return; +- } +- } +- throw wasExpected ? +- new Error('No response defined !') : +- new Error('Unexpected request: ' + method + ' ' + url + '\n' + +- (expectation ? 'Expected ' + expectation : 'No more request expected')); +- } +- +- /** +- * @ngdoc method +- * @name $httpBackend#when +- * @description +- * Creates a new backend definition. +- * +- * @param {string} method HTTP method. +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string))=} data HTTP request body or function that receives +- * data string and returns true if the data is as expected. +- * @param {(Object|function(Object))=} headers HTTP headers or function that receives http header +- * object and returns true if the headers match the current definition. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- * +- * - respond – +- * `{function([status,] data[, headers, statusText]) +- * | function(function(method, url, data, headers)}` +- * – The respond method takes a set of static data to be returned or a function that can +- * return an array containing response status (number), response data (string), response +- * headers (Object), and the text for the status (string). The respond method returns the +- * `requestHandler` object for possible overrides. +- */ +- $httpBackend.when = function(method, url, data, headers) { +- var definition = new MockHttpExpectation(method, url, data, headers), +- chain = { +- respond: function(status, data, headers, statusText) { +- definition.passThrough = undefined; +- definition.response = createResponse(status, data, headers, statusText); +- return chain; +- } +- }; +- +- if ($browser) { +- chain.passThrough = function() { +- definition.response = undefined; +- definition.passThrough = true; +- return chain; +- }; +- } +- +- definitions.push(definition); +- return chain; +- }; +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenGET +- * @description +- * Creates a new backend definition for GET requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenHEAD +- * @description +- * Creates a new backend definition for HEAD requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenDELETE +- * @description +- * Creates a new backend definition for DELETE requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenPOST +- * @description +- * Creates a new backend definition for POST requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string))=} data HTTP request body or function that receives +- * data string and returns true if the data is as expected. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenPUT +- * @description +- * Creates a new backend definition for PUT requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string))=} data HTTP request body or function that receives +- * data string and returns true if the data is as expected. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#whenJSONP +- * @description +- * Creates a new backend definition for JSONP requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- createShortMethods('when'); +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#expect +- * @description +- * Creates a new request expectation. +- * +- * @param {string} method HTTP method. +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string)|Object)=} data HTTP request body or function that +- * receives data string and returns true if the data is as expected, or Object if request body +- * is in JSON format. +- * @param {(Object|function(Object))=} headers HTTP headers or function that receives http header +- * object and returns true if the headers match the current expectation. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- * +- * - respond – +- * `{function([status,] data[, headers, statusText]) +- * | function(function(method, url, data, headers)}` +- * – The respond method takes a set of static data to be returned or a function that can +- * return an array containing response status (number), response data (string), response +- * headers (Object), and the text for the status (string). The respond method returns the +- * `requestHandler` object for possible overrides. +- */ +- $httpBackend.expect = function(method, url, data, headers) { +- var expectation = new MockHttpExpectation(method, url, data, headers), +- chain = { +- respond: function(status, data, headers, statusText) { +- expectation.response = createResponse(status, data, headers, statusText); +- return chain; +- } +- }; +- +- expectations.push(expectation); +- return chain; +- }; +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectGET +- * @description +- * Creates a new request expectation for GET requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. See #expect for more info. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectHEAD +- * @description +- * Creates a new request expectation for HEAD requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectDELETE +- * @description +- * Creates a new request expectation for DELETE requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectPOST +- * @description +- * Creates a new request expectation for POST requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string)|Object)=} data HTTP request body or function that +- * receives data string and returns true if the data is as expected, or Object if request body +- * is in JSON format. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectPUT +- * @description +- * Creates a new request expectation for PUT requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string)|Object)=} data HTTP request body or function that +- * receives data string and returns true if the data is as expected, or Object if request body +- * is in JSON format. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectPATCH +- * @description +- * Creates a new request expectation for PATCH requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp|function(string)|Object)=} data HTTP request body or function that +- * receives data string and returns true if the data is as expected, or Object if request body +- * is in JSON format. +- * @param {Object=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- +- /** +- * @ngdoc method +- * @name $httpBackend#expectJSONP +- * @description +- * Creates a new request expectation for JSONP requests. For more info see `expect()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @returns {requestHandler} Returns an object with `respond` method that controls how a matched +- * request is handled. You can save this object for later use and invoke `respond` again in +- * order to change how a matched request is handled. +- */ +- createShortMethods('expect'); +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#flush +- * @description +- * Flushes all pending requests using the trained responses. +- * +- * @param {number=} count Number of responses to flush (in the order they arrived). If undefined, +- * all pending requests will be flushed. If there are no pending requests when the flush method +- * is called an exception is thrown (as this typically a sign of programming error). +- */ +- $httpBackend.flush = function(count, digest) { +- if (digest !== false) $rootScope.$digest(); +- if (!responses.length) throw new Error('No pending request to flush !'); +- +- if (angular.isDefined(count) && count !== null) { +- while (count--) { +- if (!responses.length) throw new Error('No more pending request to flush !'); +- responses.shift()(); +- } +- } else { +- while (responses.length) { +- responses.shift()(); +- } +- } +- $httpBackend.verifyNoOutstandingExpectation(digest); +- }; +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#verifyNoOutstandingExpectation +- * @description +- * Verifies that all of the requests defined via the `expect` api were made. If any of the +- * requests were not made, verifyNoOutstandingExpectation throws an exception. +- * +- * Typically, you would call this method following each test case that asserts requests using an +- * "afterEach" clause. +- * +- * ```js +- * afterEach($httpBackend.verifyNoOutstandingExpectation); +- * ``` +- */ +- $httpBackend.verifyNoOutstandingExpectation = function(digest) { +- if (digest !== false) $rootScope.$digest(); +- if (expectations.length) { +- throw new Error('Unsatisfied requests: ' + expectations.join(', ')); +- } +- }; +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#verifyNoOutstandingRequest +- * @description +- * Verifies that there are no outstanding requests that need to be flushed. +- * +- * Typically, you would call this method following each test case that asserts requests using an +- * "afterEach" clause. +- * +- * ```js +- * afterEach($httpBackend.verifyNoOutstandingRequest); +- * ``` +- */ +- $httpBackend.verifyNoOutstandingRequest = function() { +- if (responses.length) { +- throw new Error('Unflushed requests: ' + responses.length); +- } +- }; +- +- +- /** +- * @ngdoc method +- * @name $httpBackend#resetExpectations +- * @description +- * Resets all request expectations, but preserves all backend definitions. Typically, you would +- * call resetExpectations during a multiple-phase test when you want to reuse the same instance of +- * $httpBackend mock. +- */ +- $httpBackend.resetExpectations = function() { +- expectations.length = 0; +- responses.length = 0; +- }; +- +- return $httpBackend; +- +- +- function createShortMethods(prefix) { +- angular.forEach(['GET', 'DELETE', 'JSONP', 'HEAD'], function(method) { +- $httpBackend[prefix + method] = function(url, headers) { +- return $httpBackend[prefix](method, url, undefined, headers); +- }; +- }); +- +- angular.forEach(['PUT', 'POST', 'PATCH'], function(method) { +- $httpBackend[prefix + method] = function(url, data, headers) { +- return $httpBackend[prefix](method, url, data, headers); +- }; +- }); +- } +-} +- +-function MockHttpExpectation(method, url, data, headers) { +- +- this.data = data; +- this.headers = headers; +- +- this.match = function(m, u, d, h) { +- if (method != m) return false; +- if (!this.matchUrl(u)) return false; +- if (angular.isDefined(d) && !this.matchData(d)) return false; +- if (angular.isDefined(h) && !this.matchHeaders(h)) return false; +- return true; +- }; +- +- this.matchUrl = function(u) { +- if (!url) return true; +- if (angular.isFunction(url.test)) return url.test(u); +- if (angular.isFunction(url)) return url(u); +- return url == u; +- }; +- +- this.matchHeaders = function(h) { +- if (angular.isUndefined(headers)) return true; +- if (angular.isFunction(headers)) return headers(h); +- return angular.equals(headers, h); +- }; +- +- this.matchData = function(d) { +- if (angular.isUndefined(data)) return true; +- if (data && angular.isFunction(data.test)) return data.test(d); +- if (data && angular.isFunction(data)) return data(d); +- if (data && !angular.isString(data)) { +- return angular.equals(angular.fromJson(angular.toJson(data)), angular.fromJson(d)); +- } +- return data == d; +- }; +- +- this.toString = function() { +- return method + ' ' + url; +- }; +-} +- +-function createMockXhr() { +- return new MockXhr(); +-} +- +-function MockXhr() { +- +- // hack for testing $http, $httpBackend +- MockXhr.$$lastInstance = this; +- +- this.open = function(method, url, async) { +- this.$$method = method; +- this.$$url = url; +- this.$$async = async; +- this.$$reqHeaders = {}; +- this.$$respHeaders = {}; +- }; +- +- this.send = function(data) { +- this.$$data = data; +- }; +- +- this.setRequestHeader = function(key, value) { +- this.$$reqHeaders[key] = value; +- }; +- +- this.getResponseHeader = function(name) { +- // the lookup must be case insensitive, +- // that's why we try two quick lookups first and full scan last +- var header = this.$$respHeaders[name]; +- if (header) return header; +- +- name = angular.lowercase(name); +- header = this.$$respHeaders[name]; +- if (header) return header; +- +- header = undefined; +- angular.forEach(this.$$respHeaders, function(headerVal, headerName) { +- if (!header && angular.lowercase(headerName) == name) header = headerVal; +- }); +- return header; +- }; +- +- this.getAllResponseHeaders = function() { +- var lines = []; +- +- angular.forEach(this.$$respHeaders, function(value, key) { +- lines.push(key + ': ' + value); +- }); +- return lines.join('\n'); +- }; +- +- this.abort = angular.noop; +-} +- +- +-/** +- * @ngdoc service +- * @name $timeout +- * @description +- * +- * This service is just a simple decorator for {@link ng.$timeout $timeout} service +- * that adds a "flush" and "verifyNoPendingTasks" methods. +- */ +- +-angular.mock.$TimeoutDecorator = ['$delegate', '$browser', function($delegate, $browser) { +- +- /** +- * @ngdoc method +- * @name $timeout#flush +- * @description +- * +- * Flushes the queue of pending tasks. +- * +- * @param {number=} delay maximum timeout amount to flush up until +- */ +- $delegate.flush = function(delay) { +- $browser.defer.flush(delay); +- }; +- +- /** +- * @ngdoc method +- * @name $timeout#verifyNoPendingTasks +- * @description +- * +- * Verifies that there are no pending tasks that need to be flushed. +- */ +- $delegate.verifyNoPendingTasks = function() { +- if ($browser.deferredFns.length) { +- throw new Error('Deferred tasks to flush (' + $browser.deferredFns.length + '): ' + +- formatPendingTasksAsString($browser.deferredFns)); +- } +- }; +- +- function formatPendingTasksAsString(tasks) { +- var result = []; +- angular.forEach(tasks, function(task) { +- result.push('{id: ' + task.id + ', ' + 'time: ' + task.time + '}'); +- }); +- +- return result.join(', '); +- } +- +- return $delegate; +-}]; +- +-angular.mock.$RAFDecorator = ['$delegate', function($delegate) { +- var queue = []; +- var rafFn = function(fn) { +- var index = queue.length; +- queue.push(fn); +- return function() { +- queue.splice(index, 1); +- }; +- }; +- +- rafFn.supported = $delegate.supported; +- +- rafFn.flush = function() { +- if (queue.length === 0) { +- throw new Error('No rAF callbacks present'); +- } +- +- var length = queue.length; +- for (var i = 0; i < length; i++) { +- queue[i](); +- } +- +- queue = []; +- }; +- +- return rafFn; +-}]; +- +-angular.mock.$AsyncCallbackDecorator = ['$delegate', function($delegate) { +- var callbacks = []; +- var addFn = function(fn) { +- callbacks.push(fn); +- }; +- addFn.flush = function() { +- angular.forEach(callbacks, function(fn) { +- fn(); +- }); +- callbacks = []; +- }; +- return addFn; +-}]; +- +-/** +- * +- */ +-angular.mock.$RootElementProvider = function() { +- this.$get = function() { +- return angular.element('<div ng-app></div>'); +- }; +-}; +- +-/** +- * @ngdoc service +- * @name $controller +- * @description +- * A decorator for {@link ng.$controller} with additional `bindings` parameter, useful when testing +- * controllers of directives that use {@link $compile#-bindtocontroller- `bindToController`}. +- * +- * +- * ## Example +- * +- * ```js +- * +- * // Directive definition ... +- * +- * myMod.directive('myDirective', { +- * controller: 'MyDirectiveController', +- * bindToController: { +- * name: '@' +- * } +- * }); +- * +- * +- * // Controller definition ... +- * +- * myMod.controller('MyDirectiveController', ['log', function($log) { +- * $log.info(this.name); +- * })]; +- * +- * +- * // In a test ... +- * +- * describe('myDirectiveController', function() { +- * it('should write the bound name to the log', inject(function($controller, $log) { +- * var ctrl = $controller('MyDirective', { /* no locals */ }, { name: 'Clark Kent' }); +- * expect(ctrl.name).toEqual('Clark Kent'); +- * expect($log.info.logs).toEqual(['Clark Kent']); +- * }); +- * }); +- * +- * ``` +- * +- * @param {Function|string} constructor If called with a function then it's considered to be the +- * controller constructor function. Otherwise it's considered to be a string which is used +- * to retrieve the controller constructor using the following steps: +- * +- * * check if a controller with given name is registered via `$controllerProvider` +- * * check if evaluating the string on the current scope returns a constructor +- * * if $controllerProvider#allowGlobals, check `window[constructor]` on the global +- * `window` object (not recommended) +- * +- * The string can use the `controller as property` syntax, where the controller instance is published +- * as the specified property on the `scope`; the `scope` must be injected into `locals` param for this +- * to work correctly. +- * +- * @param {Object} locals Injection locals for Controller. +- * @param {Object=} bindings Properties to add to the controller before invoking the constructor. This is used +- * to simulate the `bindToController` feature and simplify certain kinds of tests. +- * @return {Object} Instance of given controller. +- */ +-angular.mock.$ControllerDecorator = ['$delegate', function($delegate) { +- return function(expression, locals, later, ident) { +- if (later && typeof later === 'object') { +- var create = $delegate(expression, locals, true, ident); +- angular.extend(create.instance, later); +- return create(); +- } +- return $delegate(expression, locals, later, ident); +- }; +-}]; +- +- +-/** +- * @ngdoc module +- * @name ngMock +- * @packageName angular-mocks +- * @description +- * +- * # ngMock +- * +- * The `ngMock` module provides support to inject and mock Angular services into unit tests. +- * In addition, ngMock also extends various core ng services such that they can be +- * inspected and controlled in a synchronous manner within test code. +- * +- * +- * <div doc-module-components="ngMock"></div> +- * +- */ +-angular.module('ngMock', ['ng']).provider({ +- $browser: angular.mock.$BrowserProvider, +- $exceptionHandler: angular.mock.$ExceptionHandlerProvider, +- $log: angular.mock.$LogProvider, +- $interval: angular.mock.$IntervalProvider, +- $httpBackend: angular.mock.$HttpBackendProvider, +- $rootElement: angular.mock.$RootElementProvider +-}).config(['$provide', function($provide) { +- $provide.decorator('$timeout', angular.mock.$TimeoutDecorator); +- $provide.decorator('$$rAF', angular.mock.$RAFDecorator); +- $provide.decorator('$$asyncCallback', angular.mock.$AsyncCallbackDecorator); +- $provide.decorator('$rootScope', angular.mock.$RootScopeDecorator); +- $provide.decorator('$controller', angular.mock.$ControllerDecorator); +-}]); +- +-/** +- * @ngdoc module +- * @name ngMockE2E +- * @module ngMockE2E +- * @packageName angular-mocks +- * @description +- * +- * The `ngMockE2E` is an angular module which contains mocks suitable for end-to-end testing. +- * Currently there is only one mock present in this module - +- * the {@link ngMockE2E.$httpBackend e2e $httpBackend} mock. +- */ +-angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) { +- $provide.decorator('$httpBackend', angular.mock.e2e.$httpBackendDecorator); +-}]); +- +-/** +- * @ngdoc service +- * @name $httpBackend +- * @module ngMockE2E +- * @description +- * Fake HTTP backend implementation suitable for end-to-end testing or backend-less development of +- * applications that use the {@link ng.$http $http service}. +- * +- * *Note*: For fake http backend implementation suitable for unit testing please see +- * {@link ngMock.$httpBackend unit-testing $httpBackend mock}. +- * +- * This implementation can be used to respond with static or dynamic responses via the `when` api +- * and its shortcuts (`whenGET`, `whenPOST`, etc) and optionally pass through requests to the +- * real $httpBackend for specific requests (e.g. to interact with certain remote apis or to fetch +- * templates from a webserver). +- * +- * As opposed to unit-testing, in an end-to-end testing scenario or in scenario when an application +- * is being developed with the real backend api replaced with a mock, it is often desirable for +- * certain category of requests to bypass the mock and issue a real http request (e.g. to fetch +- * templates or static files from the webserver). To configure the backend with this behavior +- * use the `passThrough` request handler of `when` instead of `respond`. +- * +- * Additionally, we don't want to manually have to flush mocked out requests like we do during unit +- * testing. For this reason the e2e $httpBackend flushes mocked out requests +- * automatically, closely simulating the behavior of the XMLHttpRequest object. +- * +- * To setup the application to run with this http backend, you have to create a module that depends +- * on the `ngMockE2E` and your application modules and defines the fake backend: +- * +- * ```js +- * myAppDev = angular.module('myAppDev', ['myApp', 'ngMockE2E']); +- * myAppDev.run(function($httpBackend) { +- * phones = [{name: 'phone1'}, {name: 'phone2'}]; +- * +- * // returns the current list of phones +- * $httpBackend.whenGET('/phones').respond(phones); +- * +- * // adds a new phone to the phones array +- * $httpBackend.whenPOST('/phones').respond(function(method, url, data) { +- * var phone = angular.fromJson(data); +- * phones.push(phone); +- * return [200, phone, {}]; +- * }); +- * $httpBackend.whenGET(/^\/templates\//).passThrough(); +- * //... +- * }); +- * ``` +- * +- * Afterwards, bootstrap your app with this new module. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#when +- * @module ngMockE2E +- * @description +- * Creates a new backend definition. +- * +- * @param {string} method HTTP method. +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp)=} data HTTP request body. +- * @param {(Object|function(Object))=} headers HTTP headers or function that receives http header +- * object and returns true if the headers match the current definition. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- * +- * - respond – +- * `{function([status,] data[, headers, statusText]) +- * | function(function(method, url, data, headers)}` +- * – The respond method takes a set of static data to be returned or a function that can return +- * an array containing response status (number), response data (string), response headers +- * (Object), and the text for the status (string). +- * - passThrough – `{function()}` – Any request matching a backend definition with +- * `passThrough` handler will be passed through to the real backend (an XHR request will be made +- * to the server.) +- * - Both methods return the `requestHandler` object for possible overrides. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenGET +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for GET requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenHEAD +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for HEAD requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenDELETE +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for DELETE requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenPOST +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for POST requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp)=} data HTTP request body. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenPUT +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for PUT requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp)=} data HTTP request body. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenPATCH +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for PATCH requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @param {(string|RegExp)=} data HTTP request body. +- * @param {(Object|function(Object))=} headers HTTP headers. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +- +-/** +- * @ngdoc method +- * @name $httpBackend#whenJSONP +- * @module ngMockE2E +- * @description +- * Creates a new backend definition for JSONP requests. For more info see `when()`. +- * +- * @param {string|RegExp|function(string)} url HTTP url or function that receives the url +- * and returns true if the url match the current definition. +- * @returns {requestHandler} Returns an object with `respond` and `passThrough` methods that +- * control how a matched request is handled. You can save this object for later use and invoke +- * `respond` or `passThrough` again in order to change how a matched request is handled. +- */ +-angular.mock.e2e = {}; +-angular.mock.e2e.$httpBackendDecorator = +- ['$rootScope', '$timeout', '$delegate', '$browser', createHttpBackendMock]; +- +- +-/** +- * @ngdoc type +- * @name $rootScope.Scope +- * @module ngMock +- * @description +- * {@link ng.$rootScope.Scope Scope} type decorated with helper methods useful for testing. These +- * methods are automatically available on any {@link ng.$rootScope.Scope Scope} instance when +- * `ngMock` module is loaded. +- * +- * In addition to all the regular `Scope` methods, the following helper methods are available: +- */ +-angular.mock.$RootScopeDecorator = ['$delegate', function($delegate) { +- +- var $rootScopePrototype = Object.getPrototypeOf($delegate); +- +- $rootScopePrototype.$countChildScopes = countChildScopes; +- $rootScopePrototype.$countWatchers = countWatchers; +- +- return $delegate; +- +- // ------------------------------------------------------------------------------------------ // +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$countChildScopes +- * @module ngMock +- * @description +- * Counts all the direct and indirect child scopes of the current scope. +- * +- * The current scope is excluded from the count. The count includes all isolate child scopes. +- * +- * @returns {number} Total number of child scopes. +- */ +- function countChildScopes() { +- // jshint validthis: true +- var count = 0; // exclude the current scope +- var pendingChildHeads = [this.$$childHead]; +- var currentScope; +- +- while (pendingChildHeads.length) { +- currentScope = pendingChildHeads.shift(); +- +- while (currentScope) { +- count += 1; +- pendingChildHeads.push(currentScope.$$childHead); +- currentScope = currentScope.$$nextSibling; +- } +- } +- +- return count; +- } +- +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$countWatchers +- * @module ngMock +- * @description +- * Counts all the watchers of direct and indirect child scopes of the current scope. +- * +- * The watchers of the current scope are included in the count and so are all the watchers of +- * isolate child scopes. +- * +- * @returns {number} Total number of watchers. +- */ +- function countWatchers() { +- // jshint validthis: true +- var count = this.$$watchers ? this.$$watchers.length : 0; // include the current scope +- var pendingChildHeads = [this.$$childHead]; +- var currentScope; +- +- while (pendingChildHeads.length) { +- currentScope = pendingChildHeads.shift(); +- +- while (currentScope) { +- count += currentScope.$$watchers ? currentScope.$$watchers.length : 0; +- pendingChildHeads.push(currentScope.$$childHead); +- currentScope = currentScope.$$nextSibling; +- } +- } +- +- return count; +- } +-}]; +- +- +-if (window.jasmine || window.mocha) { +- +- var currentSpec = null, +- annotatedFunctions = [], +- isSpecRunning = function() { +- return !!currentSpec; +- }; +- +- angular.mock.$$annotate = angular.injector.$$annotate; +- angular.injector.$$annotate = function(fn) { +- if (typeof fn === 'function' && !fn.$inject) { +- annotatedFunctions.push(fn); +- } +- return angular.mock.$$annotate.apply(this, arguments); +- }; +- +- +- (window.beforeEach || window.setup)(function() { +- annotatedFunctions = []; +- currentSpec = this; +- }); +- +- (window.afterEach || window.teardown)(function() { +- var injector = currentSpec.$injector; +- +- annotatedFunctions.forEach(function(fn) { +- delete fn.$inject; +- }); +- +- angular.forEach(currentSpec.$modules, function(module) { +- if (module && module.$$hashKey) { +- module.$$hashKey = undefined; +- } +- }); +- +- currentSpec.$injector = null; +- currentSpec.$modules = null; +- currentSpec = null; +- +- if (injector) { +- injector.get('$rootElement').off(); +- injector.get('$browser').pollFns.length = 0; +- } +- +- // clean up jquery's fragment cache +- angular.forEach(angular.element.fragments, function(val, key) { +- delete angular.element.fragments[key]; +- }); +- +- MockXhr.$$lastInstance = null; +- +- angular.forEach(angular.callbacks, function(val, key) { +- delete angular.callbacks[key]; +- }); +- angular.callbacks.counter = 0; +- }); +- +- /** +- * @ngdoc function +- * @name angular.mock.module +- * @description +- * +- * *NOTE*: This function is also published on window for easy access.<br> +- * *NOTE*: This function is declared ONLY WHEN running tests with jasmine or mocha +- * +- * This function registers a module configuration code. It collects the configuration information +- * which will be used when the injector is created by {@link angular.mock.inject inject}. +- * +- * See {@link angular.mock.inject inject} for usage example +- * +- * @param {...(string|Function|Object)} fns any number of modules which are represented as string +- * aliases or as anonymous module initialization functions. The modules are used to +- * configure the injector. The 'ng' and 'ngMock' modules are automatically loaded. If an +- * object literal is passed they will be registered as values in the module, the key being +- * the module name and the value being what is returned. +- */ +- window.module = angular.mock.module = function() { +- var moduleFns = Array.prototype.slice.call(arguments, 0); +- return isSpecRunning() ? workFn() : workFn; +- ///////////////////// +- function workFn() { +- if (currentSpec.$injector) { +- throw new Error('Injector already created, can not register a module!'); +- } else { +- var modules = currentSpec.$modules || (currentSpec.$modules = []); +- angular.forEach(moduleFns, function(module) { +- if (angular.isObject(module) && !angular.isArray(module)) { +- modules.push(function($provide) { +- angular.forEach(module, function(value, key) { +- $provide.value(key, value); +- }); +- }); +- } else { +- modules.push(module); +- } +- }); +- } +- } +- }; +- +- /** +- * @ngdoc function +- * @name angular.mock.inject +- * @description +- * +- * *NOTE*: This function is also published on window for easy access.<br> +- * *NOTE*: This function is declared ONLY WHEN running tests with jasmine or mocha +- * +- * The inject function wraps a function into an injectable function. The inject() creates new +- * instance of {@link auto.$injector $injector} per test, which is then used for +- * resolving references. +- * +- * +- * ## Resolving References (Underscore Wrapping) +- * Often, we would like to inject a reference once, in a `beforeEach()` block and reuse this +- * in multiple `it()` clauses. To be able to do this we must assign the reference to a variable +- * that is declared in the scope of the `describe()` block. Since we would, most likely, want +- * the variable to have the same name of the reference we have a problem, since the parameter +- * to the `inject()` function would hide the outer variable. +- * +- * To help with this, the injected parameters can, optionally, be enclosed with underscores. +- * These are ignored by the injector when the reference name is resolved. +- * +- * For example, the parameter `_myService_` would be resolved as the reference `myService`. +- * Since it is available in the function body as _myService_, we can then assign it to a variable +- * defined in an outer scope. +- * +- * ``` +- * // Defined out reference variable outside +- * var myService; +- * +- * // Wrap the parameter in underscores +- * beforeEach( inject( function(_myService_){ +- * myService = _myService_; +- * })); +- * +- * // Use myService in a series of tests. +- * it('makes use of myService', function() { +- * myService.doStuff(); +- * }); +- * +- * ``` +- * +- * See also {@link angular.mock.module angular.mock.module} +- * +- * ## Example +- * Example of what a typical jasmine tests looks like with the inject method. +- * ```js +- * +- * angular.module('myApplicationModule', []) +- * .value('mode', 'app') +- * .value('version', 'v1.0.1'); +- * +- * +- * describe('MyApp', function() { +- * +- * // You need to load modules that you want to test, +- * // it loads only the "ng" module by default. +- * beforeEach(module('myApplicationModule')); +- * +- * +- * // inject() is used to inject arguments of all given functions +- * it('should provide a version', inject(function(mode, version) { +- * expect(version).toEqual('v1.0.1'); +- * expect(mode).toEqual('app'); +- * })); +- * +- * +- * // The inject and module method can also be used inside of the it or beforeEach +- * it('should override a version and test the new version is injected', function() { +- * // module() takes functions or strings (module aliases) +- * module(function($provide) { +- * $provide.value('version', 'overridden'); // override version here +- * }); +- * +- * inject(function(version) { +- * expect(version).toEqual('overridden'); +- * }); +- * }); +- * }); +- * +- * ``` +- * +- * @param {...Function} fns any number of functions which will be injected using the injector. +- */ +- +- +- +- var ErrorAddingDeclarationLocationStack = function(e, errorForStack) { +- this.message = e.message; +- this.name = e.name; +- if (e.line) this.line = e.line; +- if (e.sourceId) this.sourceId = e.sourceId; +- if (e.stack && errorForStack) +- this.stack = e.stack + '\n' + errorForStack.stack; +- if (e.stackArray) this.stackArray = e.stackArray; +- }; +- ErrorAddingDeclarationLocationStack.prototype.toString = Error.prototype.toString; +- +- window.inject = angular.mock.inject = function() { +- var blockFns = Array.prototype.slice.call(arguments, 0); +- var errorForStack = new Error('Declaration Location'); +- return isSpecRunning() ? workFn.call(currentSpec) : workFn; +- ///////////////////// +- function workFn() { +- var modules = currentSpec.$modules || []; +- var strictDi = !!currentSpec.$injectorStrict; +- modules.unshift('ngMock'); +- modules.unshift('ng'); +- var injector = currentSpec.$injector; +- if (!injector) { +- if (strictDi) { +- // If strictDi is enabled, annotate the providerInjector blocks +- angular.forEach(modules, function(moduleFn) { +- if (typeof moduleFn === "function") { +- angular.injector.$$annotate(moduleFn); +- } +- }); +- } +- injector = currentSpec.$injector = angular.injector(modules, strictDi); +- currentSpec.$injectorStrict = strictDi; +- } +- for (var i = 0, ii = blockFns.length; i < ii; i++) { +- if (currentSpec.$injectorStrict) { +- // If the injector is strict / strictDi, and the spec wants to inject using automatic +- // annotation, then annotate the function here. +- injector.annotate(blockFns[i]); +- } +- try { +- /* jshint -W040 *//* Jasmine explicitly provides a `this` object when calling functions */ +- injector.invoke(blockFns[i] || angular.noop, this); +- /* jshint +W040 */ +- } catch (e) { +- if (e.stack && errorForStack) { +- throw new ErrorAddingDeclarationLocationStack(e, errorForStack); +- } +- throw e; +- } finally { +- errorForStack = null; +- } +- } +- } +- }; +- +- +- angular.mock.inject.strictDi = function(value) { +- value = arguments.length ? !!value : true; +- return isSpecRunning() ? workFn() : workFn; +- +- function workFn() { +- if (value !== currentSpec.$injectorStrict) { +- if (currentSpec.$injector) { +- throw new Error('Injector already created, can not modify strict annotations'); +- } else { +- currentSpec.$injectorStrict = value; +- } +- } +- } +- }; +-} +- +- +-})(window, window.angular); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-route.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-route.js +deleted file mode 100755 +index 098f23f59..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular-route.js ++++ /dev/null +@@ -1,995 +0,0 @@ +-/** +- * @license AngularJS v1.3.8 +- * (c) 2010-2014 Google, Inc. http://angularjs.org +- * License: MIT +- */ +-(function(window, angular, undefined) {'use strict'; +- +-/** +- * @ngdoc module +- * @name ngRoute +- * @description +- * +- * # ngRoute +- * +- * The `ngRoute` module provides routing and deeplinking services and directives for angular apps. +- * +- * ## Example +- * See {@link ngRoute.$route#example $route} for an example of configuring and using `ngRoute`. +- * +- * +- * <div doc-module-components="ngRoute"></div> +- */ +- /* global -ngRouteModule */ +-var ngRouteModule = angular.module('ngRoute', ['ng']). +- provider('$route', $RouteProvider), +- $routeMinErr = angular.$$minErr('ngRoute'); +- +-/** +- * @ngdoc provider +- * @name $routeProvider +- * +- * @description +- * +- * Used for configuring routes. +- * +- * ## Example +- * See {@link ngRoute.$route#example $route} for an example of configuring and using `ngRoute`. +- * +- * ## Dependencies +- * Requires the {@link ngRoute `ngRoute`} module to be installed. +- */ +-function $RouteProvider() { +- function inherit(parent, extra) { +- return angular.extend(Object.create(parent), extra); +- } +- +- var routes = {}; +- +- /** +- * @ngdoc method +- * @name $routeProvider#when +- * +- * @param {string} path Route path (matched against `$location.path`). If `$location.path` +- * contains redundant trailing slash or is missing one, the route will still match and the +- * `$location.path` will be updated to add or drop the trailing slash to exactly match the +- * route definition. +- * +- * * `path` can contain named groups starting with a colon: e.g. `:name`. All characters up +- * to the next slash are matched and stored in `$routeParams` under the given `name` +- * when the route matches. +- * * `path` can contain named groups starting with a colon and ending with a star: +- * e.g.`:name*`. All characters are eagerly stored in `$routeParams` under the given `name` +- * when the route matches. +- * * `path` can contain optional named groups with a question mark: e.g.`:name?`. +- * +- * For example, routes like `/color/:color/largecode/:largecode*\/edit` will match +- * `/color/brown/largecode/code/with/slashes/edit` and extract: +- * +- * * `color: brown` +- * * `largecode: code/with/slashes`. +- * +- * +- * @param {Object} route Mapping information to be assigned to `$route.current` on route +- * match. +- * +- * Object properties: +- * +- * - `controller` – `{(string|function()=}` – Controller fn that should be associated with +- * newly created scope or the name of a {@link angular.Module#controller registered +- * controller} if passed as a string. +- * - `controllerAs` – `{string=}` – A controller alias name. If present the controller will be +- * published to scope under the `controllerAs` name. +- * - `template` – `{string=|function()=}` – html template as a string or a function that +- * returns an html template as a string which should be used by {@link +- * ngRoute.directive:ngView ngView} or {@link ng.directive:ngInclude ngInclude} directives. +- * This property takes precedence over `templateUrl`. +- * +- * If `template` is a function, it will be called with the following parameters: +- * +- * - `{Array.<Object>}` - route parameters extracted from the current +- * `$location.path()` by applying the current route +- * +- * - `templateUrl` – `{string=|function()=}` – path or function that returns a path to an html +- * template that should be used by {@link ngRoute.directive:ngView ngView}. +- * +- * If `templateUrl` is a function, it will be called with the following parameters: +- * +- * - `{Array.<Object>}` - route parameters extracted from the current +- * `$location.path()` by applying the current route +- * +- * - `resolve` - `{Object.<string, function>=}` - An optional map of dependencies which should +- * be injected into the controller. If any of these dependencies are promises, the router +- * will wait for them all to be resolved or one to be rejected before the controller is +- * instantiated. +- * If all the promises are resolved successfully, the values of the resolved promises are +- * injected and {@link ngRoute.$route#$routeChangeSuccess $routeChangeSuccess} event is +- * fired. If any of the promises are rejected the +- * {@link ngRoute.$route#$routeChangeError $routeChangeError} event is fired. The map object +- * is: +- * +- * - `key` – `{string}`: a name of a dependency to be injected into the controller. +- * - `factory` - `{string|function}`: If `string` then it is an alias for a service. +- * Otherwise if function, then it is {@link auto.$injector#invoke injected} +- * and the return value is treated as the dependency. If the result is a promise, it is +- * resolved before its value is injected into the controller. Be aware that +- * `ngRoute.$routeParams` will still refer to the previous route within these resolve +- * functions. Use `$route.current.params` to access the new route parameters, instead. +- * +- * - `redirectTo` – {(string|function())=} – value to update +- * {@link ng.$location $location} path with and trigger route redirection. +- * +- * If `redirectTo` is a function, it will be called with the following parameters: +- * +- * - `{Object.<string>}` - route parameters extracted from the current +- * `$location.path()` by applying the current route templateUrl. +- * - `{string}` - current `$location.path()` +- * - `{Object}` - current `$location.search()` +- * +- * The custom `redirectTo` function is expected to return a string which will be used +- * to update `$location.path()` and `$location.search()`. +- * +- * - `[reloadOnSearch=true]` - {boolean=} - reload route when only `$location.search()` +- * or `$location.hash()` changes. +- * +- * If the option is set to `false` and url in the browser changes, then +- * `$routeUpdate` event is broadcasted on the root scope. +- * +- * - `[caseInsensitiveMatch=false]` - {boolean=} - match routes without being case sensitive +- * +- * If the option is set to `true`, then the particular route can be matched without being +- * case sensitive +- * +- * @returns {Object} self +- * +- * @description +- * Adds a new route definition to the `$route` service. +- */ +- this.when = function(path, route) { +- //copy original route object to preserve params inherited from proto chain +- var routeCopy = angular.copy(route); +- if (angular.isUndefined(routeCopy.reloadOnSearch)) { +- routeCopy.reloadOnSearch = true; +- } +- if (angular.isUndefined(routeCopy.caseInsensitiveMatch)) { +- routeCopy.caseInsensitiveMatch = this.caseInsensitiveMatch; +- } +- routes[path] = angular.extend( +- routeCopy, +- path && pathRegExp(path, routeCopy) +- ); +- +- // create redirection for trailing slashes +- if (path) { +- var redirectPath = (path[path.length - 1] == '/') +- ? path.substr(0, path.length - 1) +- : path + '/'; +- +- routes[redirectPath] = angular.extend( +- {redirectTo: path}, +- pathRegExp(redirectPath, routeCopy) +- ); +- } +- +- return this; +- }; +- +- /** +- * @ngdoc property +- * @name $routeProvider#caseInsensitiveMatch +- * @description +- * +- * A boolean property indicating if routes defined +- * using this provider should be matched using a case insensitive +- * algorithm. Defaults to `false`. +- */ +- this.caseInsensitiveMatch = false; +- +- /** +- * @param path {string} path +- * @param opts {Object} options +- * @return {?Object} +- * +- * @description +- * Normalizes the given path, returning a regular expression +- * and the original path. +- * +- * Inspired by pathRexp in visionmedia/express/lib/utils.js. +- */ +- function pathRegExp(path, opts) { +- var insensitive = opts.caseInsensitiveMatch, +- ret = { +- originalPath: path, +- regexp: path +- }, +- keys = ret.keys = []; +- +- path = path +- .replace(/([().])/g, '\\$1') +- .replace(/(\/)?:(\w+)([\?\*])?/g, function(_, slash, key, option) { +- var optional = option === '?' ? option : null; +- var star = option === '*' ? option : null; +- keys.push({ name: key, optional: !!optional }); +- slash = slash || ''; +- return '' +- + (optional ? '' : slash) +- + '(?:' +- + (optional ? slash : '') +- + (star && '(.+?)' || '([^/]+)') +- + (optional || '') +- + ')' +- + (optional || ''); +- }) +- .replace(/([\/$\*])/g, '\\$1'); +- +- ret.regexp = new RegExp('^' + path + '$', insensitive ? 'i' : ''); +- return ret; +- } +- +- /** +- * @ngdoc method +- * @name $routeProvider#otherwise +- * +- * @description +- * Sets route definition that will be used on route change when no other route definition +- * is matched. +- * +- * @param {Object|string} params Mapping information to be assigned to `$route.current`. +- * If called with a string, the value maps to `redirectTo`. +- * @returns {Object} self +- */ +- this.otherwise = function(params) { +- if (typeof params === 'string') { +- params = {redirectTo: params}; +- } +- this.when(null, params); +- return this; +- }; +- +- +- this.$get = ['$rootScope', +- '$location', +- '$routeParams', +- '$q', +- '$injector', +- '$templateRequest', +- '$sce', +- function($rootScope, $location, $routeParams, $q, $injector, $templateRequest, $sce) { +- +- /** +- * @ngdoc service +- * @name $route +- * @requires $location +- * @requires $routeParams +- * +- * @property {Object} current Reference to the current route definition. +- * The route definition contains: +- * +- * - `controller`: The controller constructor as define in route definition. +- * - `locals`: A map of locals which is used by {@link ng.$controller $controller} service for +- * controller instantiation. The `locals` contain +- * the resolved values of the `resolve` map. Additionally the `locals` also contain: +- * +- * - `$scope` - The current route scope. +- * - `$template` - The current route template HTML. +- * +- * @property {Object} routes Object with all route configuration Objects as its properties. +- * +- * @description +- * `$route` is used for deep-linking URLs to controllers and views (HTML partials). +- * It watches `$location.url()` and tries to map the path to an existing route definition. +- * +- * Requires the {@link ngRoute `ngRoute`} module to be installed. +- * +- * You can define routes through {@link ngRoute.$routeProvider $routeProvider}'s API. +- * +- * The `$route` service is typically used in conjunction with the +- * {@link ngRoute.directive:ngView `ngView`} directive and the +- * {@link ngRoute.$routeParams `$routeParams`} service. +- * +- * @example +- * This example shows how changing the URL hash causes the `$route` to match a route against the +- * URL, and the `ngView` pulls in the partial. +- * +- * <example name="$route-service" module="ngRouteExample" +- * deps="angular-route.js" fixBase="true"> +- * <file name="index.html"> +- * <div ng-controller="MainController"> +- * Choose: +- * <a href="Book/Moby">Moby</a> | +- * <a href="Book/Moby/ch/1">Moby: Ch1</a> | +- * <a href="Book/Gatsby">Gatsby</a> | +- * <a href="Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | +- * <a href="Book/Scarlet">Scarlet Letter</a><br/> +- * +- * <div ng-view></div> +- * +- * <hr /> +- * +- * <pre>$location.path() = {{$location.path()}}</pre> +- * <pre>$route.current.templateUrl = {{$route.current.templateUrl}}</pre> +- * <pre>$route.current.params = {{$route.current.params}}</pre> +- * <pre>$route.current.scope.name = {{$route.current.scope.name}}</pre> +- * <pre>$routeParams = {{$routeParams}}</pre> +- * </div> +- * </file> +- * +- * <file name="book.html"> +- * controller: {{name}}<br /> +- * Book Id: {{params.bookId}}<br /> +- * </file> +- * +- * <file name="chapter.html"> +- * controller: {{name}}<br /> +- * Book Id: {{params.bookId}}<br /> +- * Chapter Id: {{params.chapterId}} +- * </file> +- * +- * <file name="script.js"> +- * angular.module('ngRouteExample', ['ngRoute']) +- * +- * .controller('MainController', function($scope, $route, $routeParams, $location) { +- * $scope.$route = $route; +- * $scope.$location = $location; +- * $scope.$routeParams = $routeParams; +- * }) +- * +- * .controller('BookController', function($scope, $routeParams) { +- * $scope.name = "BookController"; +- * $scope.params = $routeParams; +- * }) +- * +- * .controller('ChapterController', function($scope, $routeParams) { +- * $scope.name = "ChapterController"; +- * $scope.params = $routeParams; +- * }) +- * +- * .config(function($routeProvider, $locationProvider) { +- * $routeProvider +- * .when('/Book/:bookId', { +- * templateUrl: 'book.html', +- * controller: 'BookController', +- * resolve: { +- * // I will cause a 1 second delay +- * delay: function($q, $timeout) { +- * var delay = $q.defer(); +- * $timeout(delay.resolve, 1000); +- * return delay.promise; +- * } +- * } +- * }) +- * .when('/Book/:bookId/ch/:chapterId', { +- * templateUrl: 'chapter.html', +- * controller: 'ChapterController' +- * }); +- * +- * // configure html5 to get links working on jsfiddle +- * $locationProvider.html5Mode(true); +- * }); +- * +- * </file> +- * +- * <file name="protractor.js" type="protractor"> +- * it('should load and compile correct template', function() { +- * element(by.linkText('Moby: Ch1')).click(); +- * var content = element(by.css('[ng-view]')).getText(); +- * expect(content).toMatch(/controller\: ChapterController/); +- * expect(content).toMatch(/Book Id\: Moby/); +- * expect(content).toMatch(/Chapter Id\: 1/); +- * +- * element(by.partialLinkText('Scarlet')).click(); +- * +- * content = element(by.css('[ng-view]')).getText(); +- * expect(content).toMatch(/controller\: BookController/); +- * expect(content).toMatch(/Book Id\: Scarlet/); +- * }); +- * </file> +- * </example> +- */ +- +- /** +- * @ngdoc event +- * @name $route#$routeChangeStart +- * @eventType broadcast on root scope +- * @description +- * Broadcasted before a route change. At this point the route services starts +- * resolving all of the dependencies needed for the route change to occur. +- * Typically this involves fetching the view template as well as any dependencies +- * defined in `resolve` route property. Once all of the dependencies are resolved +- * `$routeChangeSuccess` is fired. +- * +- * The route change (and the `$location` change that triggered it) can be prevented +- * by calling `preventDefault` method of the event. See {@link ng.$rootScope.Scope#$on} +- * for more details about event object. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {Route} next Future route information. +- * @param {Route} current Current route information. +- */ +- +- /** +- * @ngdoc event +- * @name $route#$routeChangeSuccess +- * @eventType broadcast on root scope +- * @description +- * Broadcasted after a route dependencies are resolved. +- * {@link ngRoute.directive:ngView ngView} listens for the directive +- * to instantiate the controller and render the view. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {Route} current Current route information. +- * @param {Route|Undefined} previous Previous route information, or undefined if current is +- * first route entered. +- */ +- +- /** +- * @ngdoc event +- * @name $route#$routeChangeError +- * @eventType broadcast on root scope +- * @description +- * Broadcasted if any of the resolve promises are rejected. +- * +- * @param {Object} angularEvent Synthetic event object +- * @param {Route} current Current route information. +- * @param {Route} previous Previous route information. +- * @param {Route} rejection Rejection of the promise. Usually the error of the failed promise. +- */ +- +- /** +- * @ngdoc event +- * @name $route#$routeUpdate +- * @eventType broadcast on root scope +- * @description +- * +- * The `reloadOnSearch` property has been set to false, and we are reusing the same +- * instance of the Controller. +- */ +- +- var forceReload = false, +- preparedRoute, +- preparedRouteIsUpdateOnly, +- $route = { +- routes: routes, +- +- /** +- * @ngdoc method +- * @name $route#reload +- * +- * @description +- * Causes `$route` service to reload the current route even if +- * {@link ng.$location $location} hasn't changed. +- * +- * As a result of that, {@link ngRoute.directive:ngView ngView} +- * creates new scope and reinstantiates the controller. +- */ +- reload: function() { +- forceReload = true; +- $rootScope.$evalAsync(function() { +- // Don't support cancellation of a reload for now... +- prepareRoute(); +- commitRoute(); +- }); +- }, +- +- /** +- * @ngdoc method +- * @name $route#updateParams +- * +- * @description +- * Causes `$route` service to update the current URL, replacing +- * current route parameters with those specified in `newParams`. +- * Provided property names that match the route's path segment +- * definitions will be interpolated into the location's path, while +- * remaining properties will be treated as query params. +- * +- * @param {Object} newParams mapping of URL parameter names to values +- */ +- updateParams: function(newParams) { +- if (this.current && this.current.$$route) { +- var searchParams = {}, self=this; +- +- angular.forEach(Object.keys(newParams), function(key) { +- if (!self.current.pathParams[key]) searchParams[key] = newParams[key]; +- }); +- +- newParams = angular.extend({}, this.current.params, newParams); +- $location.path(interpolate(this.current.$$route.originalPath, newParams)); +- $location.search(angular.extend({}, $location.search(), searchParams)); +- } +- else { +- throw $routeMinErr('norout', 'Tried updating route when with no current route'); +- } +- } +- }; +- +- $rootScope.$on('$locationChangeStart', prepareRoute); +- $rootScope.$on('$locationChangeSuccess', commitRoute); +- +- return $route; +- +- ///////////////////////////////////////////////////// +- +- /** +- * @param on {string} current url +- * @param route {Object} route regexp to match the url against +- * @return {?Object} +- * +- * @description +- * Check if the route matches the current url. +- * +- * Inspired by match in +- * visionmedia/express/lib/router/router.js. +- */ +- function switchRouteMatcher(on, route) { +- var keys = route.keys, +- params = {}; +- +- if (!route.regexp) return null; +- +- var m = route.regexp.exec(on); +- if (!m) return null; +- +- for (var i = 1, len = m.length; i < len; ++i) { +- var key = keys[i - 1]; +- +- var val = m[i]; +- +- if (key && val) { +- params[key.name] = val; +- } +- } +- return params; +- } +- +- function prepareRoute($locationEvent) { +- var lastRoute = $route.current; +- +- preparedRoute = parseRoute(); +- preparedRouteIsUpdateOnly = preparedRoute && lastRoute && preparedRoute.$$route === lastRoute.$$route +- && angular.equals(preparedRoute.pathParams, lastRoute.pathParams) +- && !preparedRoute.reloadOnSearch && !forceReload; +- +- if (!preparedRouteIsUpdateOnly && (lastRoute || preparedRoute)) { +- if ($rootScope.$broadcast('$routeChangeStart', preparedRoute, lastRoute).defaultPrevented) { +- if ($locationEvent) { +- $locationEvent.preventDefault(); +- } +- } +- } +- } +- +- function commitRoute() { +- var lastRoute = $route.current; +- var nextRoute = preparedRoute; +- +- if (preparedRouteIsUpdateOnly) { +- lastRoute.params = nextRoute.params; +- angular.copy(lastRoute.params, $routeParams); +- $rootScope.$broadcast('$routeUpdate', lastRoute); +- } else if (nextRoute || lastRoute) { +- forceReload = false; +- $route.current = nextRoute; +- if (nextRoute) { +- if (nextRoute.redirectTo) { +- if (angular.isString(nextRoute.redirectTo)) { +- $location.path(interpolate(nextRoute.redirectTo, nextRoute.params)).search(nextRoute.params) +- .replace(); +- } else { +- $location.url(nextRoute.redirectTo(nextRoute.pathParams, $location.path(), $location.search())) +- .replace(); +- } +- } +- } +- +- $q.when(nextRoute). +- then(function() { +- if (nextRoute) { +- var locals = angular.extend({}, nextRoute.resolve), +- template, templateUrl; +- +- angular.forEach(locals, function(value, key) { +- locals[key] = angular.isString(value) ? +- $injector.get(value) : $injector.invoke(value, null, null, key); +- }); +- +- if (angular.isDefined(template = nextRoute.template)) { +- if (angular.isFunction(template)) { +- template = template(nextRoute.params); +- } +- } else if (angular.isDefined(templateUrl = nextRoute.templateUrl)) { +- if (angular.isFunction(templateUrl)) { +- templateUrl = templateUrl(nextRoute.params); +- } +- templateUrl = $sce.getTrustedResourceUrl(templateUrl); +- if (angular.isDefined(templateUrl)) { +- nextRoute.loadedTemplateUrl = templateUrl; +- template = $templateRequest(templateUrl); +- } +- } +- if (angular.isDefined(template)) { +- locals['$template'] = template; +- } +- return $q.all(locals); +- } +- }). +- // after route change +- then(function(locals) { +- if (nextRoute == $route.current) { +- if (nextRoute) { +- nextRoute.locals = locals; +- angular.copy(nextRoute.params, $routeParams); +- } +- $rootScope.$broadcast('$routeChangeSuccess', nextRoute, lastRoute); +- } +- }, function(error) { +- if (nextRoute == $route.current) { +- $rootScope.$broadcast('$routeChangeError', nextRoute, lastRoute, error); +- } +- }); +- } +- } +- +- +- /** +- * @returns {Object} the current active route, by matching it against the URL +- */ +- function parseRoute() { +- // Match a route +- var params, match; +- angular.forEach(routes, function(route, path) { +- if (!match && (params = switchRouteMatcher($location.path(), route))) { +- match = inherit(route, { +- params: angular.extend({}, $location.search(), params), +- pathParams: params}); +- match.$$route = route; +- } +- }); +- // No route matched; fallback to "otherwise" route +- return match || routes[null] && inherit(routes[null], {params: {}, pathParams:{}}); +- } +- +- /** +- * @returns {string} interpolation of the redirect path with the parameters +- */ +- function interpolate(string, params) { +- var result = []; +- angular.forEach((string || '').split(':'), function(segment, i) { +- if (i === 0) { +- result.push(segment); +- } else { +- var segmentMatch = segment.match(/(\w+)(?:[?*])?(.*)/); +- var key = segmentMatch[1]; +- result.push(params[key]); +- result.push(segmentMatch[2] || ''); +- delete params[key]; +- } +- }); +- return result.join(''); +- } +- }]; +-} +- +-ngRouteModule.provider('$routeParams', $RouteParamsProvider); +- +- +-/** +- * @ngdoc service +- * @name $routeParams +- * @requires $route +- * +- * @description +- * The `$routeParams` service allows you to retrieve the current set of route parameters. +- * +- * Requires the {@link ngRoute `ngRoute`} module to be installed. +- * +- * The route parameters are a combination of {@link ng.$location `$location`}'s +- * {@link ng.$location#search `search()`} and {@link ng.$location#path `path()`}. +- * The `path` parameters are extracted when the {@link ngRoute.$route `$route`} path is matched. +- * +- * In case of parameter name collision, `path` params take precedence over `search` params. +- * +- * The service guarantees that the identity of the `$routeParams` object will remain unchanged +- * (but its properties will likely change) even when a route change occurs. +- * +- * Note that the `$routeParams` are only updated *after* a route change completes successfully. +- * This means that you cannot rely on `$routeParams` being correct in route resolve functions. +- * Instead you can use `$route.current.params` to access the new route's parameters. +- * +- * @example +- * ```js +- * // Given: +- * // URL: http://server.com/index.html#/Chapter/1/Section/2?search=moby +- * // Route: /Chapter/:chapterId/Section/:sectionId +- * // +- * // Then +- * $routeParams ==> {chapterId:'1', sectionId:'2', search:'moby'} +- * ``` +- */ +-function $RouteParamsProvider() { +- this.$get = function() { return {}; }; +-} +- +-ngRouteModule.directive('ngView', ngViewFactory); +-ngRouteModule.directive('ngView', ngViewFillContentFactory); +- +- +-/** +- * @ngdoc directive +- * @name ngView +- * @restrict ECA +- * +- * @description +- * # Overview +- * `ngView` is a directive that complements the {@link ngRoute.$route $route} service by +- * including the rendered template of the current route into the main layout (`index.html`) file. +- * Every time the current route changes, the included view changes with it according to the +- * configuration of the `$route` service. +- * +- * Requires the {@link ngRoute `ngRoute`} module to be installed. +- * +- * @animations +- * enter - animation is used to bring new content into the browser. +- * leave - animation is used to animate existing content away. +- * +- * The enter and leave animation occur concurrently. +- * +- * @scope +- * @priority 400 +- * @param {string=} onload Expression to evaluate whenever the view updates. +- * +- * @param {string=} autoscroll Whether `ngView` should call {@link ng.$anchorScroll +- * $anchorScroll} to scroll the viewport after the view is updated. +- * +- * - If the attribute is not set, disable scrolling. +- * - If the attribute is set without value, enable scrolling. +- * - Otherwise enable scrolling only if the `autoscroll` attribute value evaluated +- * as an expression yields a truthy value. +- * @example +- <example name="ngView-directive" module="ngViewExample" +- deps="angular-route.js;angular-animate.js" +- animations="true" fixBase="true"> +- <file name="index.html"> +- <div ng-controller="MainCtrl as main"> +- Choose: +- <a href="Book/Moby">Moby</a> | +- <a href="Book/Moby/ch/1">Moby: Ch1</a> | +- <a href="Book/Gatsby">Gatsby</a> | +- <a href="Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | +- <a href="Book/Scarlet">Scarlet Letter</a><br/> +- +- <div class="view-animate-container"> +- <div ng-view class="view-animate"></div> +- </div> +- <hr /> +- +- <pre>$location.path() = {{main.$location.path()}}</pre> +- <pre>$route.current.templateUrl = {{main.$route.current.templateUrl}}</pre> +- <pre>$route.current.params = {{main.$route.current.params}}</pre> +- <pre>$routeParams = {{main.$routeParams}}</pre> +- </div> +- </file> +- +- <file name="book.html"> +- <div> +- controller: {{book.name}}<br /> +- Book Id: {{book.params.bookId}}<br /> +- </div> +- </file> +- +- <file name="chapter.html"> +- <div> +- controller: {{chapter.name}}<br /> +- Book Id: {{chapter.params.bookId}}<br /> +- Chapter Id: {{chapter.params.chapterId}} +- </div> +- </file> +- +- <file name="animations.css"> +- .view-animate-container { +- position:relative; +- height:100px!important; +- background:white; +- border:1px solid black; +- height:40px; +- overflow:hidden; +- } +- +- .view-animate { +- padding:10px; +- } +- +- .view-animate.ng-enter, .view-animate.ng-leave { +- -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s; +- transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s; +- +- display:block; +- width:100%; +- border-left:1px solid black; +- +- position:absolute; +- top:0; +- left:0; +- right:0; +- bottom:0; +- padding:10px; +- } +- +- .view-animate.ng-enter { +- left:100%; +- } +- .view-animate.ng-enter.ng-enter-active { +- left:0; +- } +- .view-animate.ng-leave.ng-leave-active { +- left:-100%; +- } +- </file> +- +- <file name="script.js"> +- angular.module('ngViewExample', ['ngRoute', 'ngAnimate']) +- .config(['$routeProvider', '$locationProvider', +- function($routeProvider, $locationProvider) { +- $routeProvider +- .when('/Book/:bookId', { +- templateUrl: 'book.html', +- controller: 'BookCtrl', +- controllerAs: 'book' +- }) +- .when('/Book/:bookId/ch/:chapterId', { +- templateUrl: 'chapter.html', +- controller: 'ChapterCtrl', +- controllerAs: 'chapter' +- }); +- +- $locationProvider.html5Mode(true); +- }]) +- .controller('MainCtrl', ['$route', '$routeParams', '$location', +- function($route, $routeParams, $location) { +- this.$route = $route; +- this.$location = $location; +- this.$routeParams = $routeParams; +- }]) +- .controller('BookCtrl', ['$routeParams', function($routeParams) { +- this.name = "BookCtrl"; +- this.params = $routeParams; +- }]) +- .controller('ChapterCtrl', ['$routeParams', function($routeParams) { +- this.name = "ChapterCtrl"; +- this.params = $routeParams; +- }]); +- +- </file> +- +- <file name="protractor.js" type="protractor"> +- it('should load and compile correct template', function() { +- element(by.linkText('Moby: Ch1')).click(); +- var content = element(by.css('[ng-view]')).getText(); +- expect(content).toMatch(/controller\: ChapterCtrl/); +- expect(content).toMatch(/Book Id\: Moby/); +- expect(content).toMatch(/Chapter Id\: 1/); +- +- element(by.partialLinkText('Scarlet')).click(); +- +- content = element(by.css('[ng-view]')).getText(); +- expect(content).toMatch(/controller\: BookCtrl/); +- expect(content).toMatch(/Book Id\: Scarlet/); +- }); +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc event +- * @name ngView#$viewContentLoaded +- * @eventType emit on the current ngView scope +- * @description +- * Emitted every time the ngView content is reloaded. +- */ +-ngViewFactory.$inject = ['$route', '$anchorScroll', '$animate']; +-function ngViewFactory($route, $anchorScroll, $animate) { +- return { +- restrict: 'ECA', +- terminal: true, +- priority: 400, +- transclude: 'element', +- link: function(scope, $element, attr, ctrl, $transclude) { +- var currentScope, +- currentElement, +- previousLeaveAnimation, +- autoScrollExp = attr.autoscroll, +- onloadExp = attr.onload || ''; +- +- scope.$on('$routeChangeSuccess', update); +- update(); +- +- function cleanupLastView() { +- if (previousLeaveAnimation) { +- $animate.cancel(previousLeaveAnimation); +- previousLeaveAnimation = null; +- } +- +- if (currentScope) { +- currentScope.$destroy(); +- currentScope = null; +- } +- if (currentElement) { +- previousLeaveAnimation = $animate.leave(currentElement); +- previousLeaveAnimation.then(function() { +- previousLeaveAnimation = null; +- }); +- currentElement = null; +- } +- } +- +- function update() { +- var locals = $route.current && $route.current.locals, +- template = locals && locals.$template; +- +- if (angular.isDefined(template)) { +- var newScope = scope.$new(); +- var current = $route.current; +- +- // Note: This will also link all children of ng-view that were contained in the original +- // html. If that content contains controllers, ... they could pollute/change the scope. +- // However, using ng-view on an element with additional content does not make sense... +- // Note: We can't remove them in the cloneAttchFn of $transclude as that +- // function is called before linking the content, which would apply child +- // directives to non existing elements. +- var clone = $transclude(newScope, function(clone) { +- $animate.enter(clone, null, currentElement || $element).then(function onNgViewEnter() { +- if (angular.isDefined(autoScrollExp) +- && (!autoScrollExp || scope.$eval(autoScrollExp))) { +- $anchorScroll(); +- } +- }); +- cleanupLastView(); +- }); +- +- currentElement = clone; +- currentScope = current.scope = newScope; +- currentScope.$emit('$viewContentLoaded'); +- currentScope.$eval(onloadExp); +- } else { +- cleanupLastView(); +- } +- } +- } +- }; +-} +- +-// This directive is called during the $transclude call of the first `ngView` directive. +-// It will replace and compile the content of the element with the loaded template. +-// We need this directive so that the element content is already filled when +-// the link function of another directive on the same element as ngView +-// is called. +-ngViewFillContentFactory.$inject = ['$compile', '$controller', '$route']; +-function ngViewFillContentFactory($compile, $controller, $route) { +- return { +- restrict: 'ECA', +- priority: -400, +- link: function(scope, $element) { +- var current = $route.current, +- locals = current.locals; +- +- $element.html(locals.$template); +- +- var link = $compile($element.contents()); +- +- if (current.controller) { +- locals.$scope = scope; +- var controller = $controller(current.controller, locals); +- if (current.controllerAs) { +- scope[current.controllerAs] = controller; +- } +- $element.data('$ngControllerController', controller); +- $element.children().data('$ngControllerController', controller); +- } +- +- link(scope); +- } +- }; +-} +- +- +-})(window, window.angular); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js +deleted file mode 100755 +index 6f50b26fb..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js ++++ /dev/null +@@ -1,26309 +0,0 @@ +-/** +- * @license AngularJS v1.3.15 +- * (c) 2010-2014 Google, Inc. http://angularjs.org +- * License: MIT +- */ +-(function(window, document, undefined) {'use strict'; +- +-/** +- * @description +- * +- * This object provides a utility for producing rich Error messages within +- * Angular. It can be called as follows: +- * +- * var exampleMinErr = minErr('example'); +- * throw exampleMinErr('one', 'This {0} is {1}', foo, bar); +- * +- * The above creates an instance of minErr in the example namespace. The +- * resulting error will have a namespaced error code of example.one. The +- * resulting error will replace {0} with the value of foo, and {1} with the +- * value of bar. The object is not restricted in the number of arguments it can +- * take. +- * +- * If fewer arguments are specified than necessary for interpolation, the extra +- * interpolation markers will be preserved in the final string. +- * +- * Since data will be parsed statically during a build step, some restrictions +- * are applied with respect to how minErr instances are created and called. +- * Instances should have names of the form namespaceMinErr for a minErr created +- * using minErr('namespace') . Error codes, namespaces and template strings +- * should all be static strings, not variables or general expressions. +- * +- * @param {string} module The namespace to use for the new minErr instance. +- * @param {function} ErrorConstructor Custom error constructor to be instantiated when returning +- * error from returned function, for cases when a particular type of error is useful. +- * @returns {function(code:string, template:string, ...templateArgs): Error} minErr instance +- */ +- +-function minErr(module, ErrorConstructor) { +- ErrorConstructor = ErrorConstructor || Error; +- return function() { +- var code = arguments[0], +- prefix = '[' + (module ? module + ':' : '') + code + '] ', +- template = arguments[1], +- templateArgs = arguments, +- +- message, i; +- +- message = prefix + template.replace(/\{\d+\}/g, function(match) { +- var index = +match.slice(1, -1), arg; +- +- if (index + 2 < templateArgs.length) { +- return toDebugString(templateArgs[index + 2]); +- } +- return match; +- }); +- +- message = message + '\nhttp://errors.angularjs.org/1.3.15/' + +- (module ? module + '/' : '') + code; +- for (i = 2; i < arguments.length; i++) { +- message = message + (i == 2 ? '?' : '&') + 'p' + (i - 2) + '=' + +- encodeURIComponent(toDebugString(arguments[i])); +- } +- return new ErrorConstructor(message); +- }; +-} +- +-/* We need to tell jshint what variables are being exported */ +-/* global angular: true, +- msie: true, +- jqLite: true, +- jQuery: true, +- slice: true, +- splice: true, +- push: true, +- toString: true, +- ngMinErr: true, +- angularModule: true, +- uid: true, +- REGEX_STRING_REGEXP: true, +- VALIDITY_STATE_PROPERTY: true, +- +- lowercase: true, +- uppercase: true, +- manualLowercase: true, +- manualUppercase: true, +- nodeName_: true, +- isArrayLike: true, +- forEach: true, +- sortedKeys: true, +- forEachSorted: true, +- reverseParams: true, +- nextUid: true, +- setHashKey: true, +- extend: true, +- int: true, +- inherit: true, +- noop: true, +- identity: true, +- valueFn: true, +- isUndefined: true, +- isDefined: true, +- isObject: true, +- isString: true, +- isNumber: true, +- isDate: true, +- isArray: true, +- isFunction: true, +- isRegExp: true, +- isWindow: true, +- isScope: true, +- isFile: true, +- isFormData: true, +- isBlob: true, +- isBoolean: true, +- isPromiseLike: true, +- trim: true, +- escapeForRegexp: true, +- isElement: true, +- makeMap: true, +- includes: true, +- arrayRemove: true, +- copy: true, +- shallowCopy: true, +- equals: true, +- csp: true, +- concat: true, +- sliceArgs: true, +- bind: true, +- toJsonReplacer: true, +- toJson: true, +- fromJson: true, +- startingTag: true, +- tryDecodeURIComponent: true, +- parseKeyValue: true, +- toKeyValue: true, +- encodeUriSegment: true, +- encodeUriQuery: true, +- angularInit: true, +- bootstrap: true, +- getTestability: true, +- snake_case: true, +- bindJQuery: true, +- assertArg: true, +- assertArgFn: true, +- assertNotHasOwnProperty: true, +- getter: true, +- getBlockNodes: true, +- hasOwnProperty: true, +- createMap: true, +- +- NODE_TYPE_ELEMENT: true, +- NODE_TYPE_TEXT: true, +- NODE_TYPE_COMMENT: true, +- NODE_TYPE_DOCUMENT: true, +- NODE_TYPE_DOCUMENT_FRAGMENT: true, +-*/ +- +-//////////////////////////////////// +- +-/** +- * @ngdoc module +- * @name ng +- * @module ng +- * @description +- * +- * # ng (core module) +- * The ng module is loaded by default when an AngularJS application is started. The module itself +- * contains the essential components for an AngularJS application to function. The table below +- * lists a high level breakdown of each of the services/factories, filters, directives and testing +- * components available within this core module. +- * +- * <div doc-module-components="ng"></div> +- */ +- +-var REGEX_STRING_REGEXP = /^\/(.+)\/([a-z]*)$/; +- +-// The name of a form control's ValidityState property. +-// This is used so that it's possible for internal tests to create mock ValidityStates. +-var VALIDITY_STATE_PROPERTY = 'validity'; +- +-/** +- * @ngdoc function +- * @name angular.lowercase +- * @module ng +- * @kind function +- * +- * @description Converts the specified string to lowercase. +- * @param {string} string String to be converted to lowercase. +- * @returns {string} Lowercased string. +- */ +-var lowercase = function(string) {return isString(string) ? string.toLowerCase() : string;}; +-var hasOwnProperty = Object.prototype.hasOwnProperty; +- +-/** +- * @ngdoc function +- * @name angular.uppercase +- * @module ng +- * @kind function +- * +- * @description Converts the specified string to uppercase. +- * @param {string} string String to be converted to uppercase. +- * @returns {string} Uppercased string. +- */ +-var uppercase = function(string) {return isString(string) ? string.toUpperCase() : string;}; +- +- +-var manualLowercase = function(s) { +- /* jshint bitwise: false */ +- return isString(s) +- ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) +- : s; +-}; +-var manualUppercase = function(s) { +- /* jshint bitwise: false */ +- return isString(s) +- ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);}) +- : s; +-}; +- +- +-// String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish +-// locale, for this reason we need to detect this case and redefine lowercase/uppercase methods +-// with correct but slower alternatives. +-if ('i' !== 'I'.toLowerCase()) { +- lowercase = manualLowercase; +- uppercase = manualUppercase; +-} +- +- +-var +- msie, // holds major version number for IE, or NaN if UA is not IE. +- jqLite, // delay binding since jQuery could be loaded after us. +- jQuery, // delay binding +- slice = [].slice, +- splice = [].splice, +- push = [].push, +- toString = Object.prototype.toString, +- ngMinErr = minErr('ng'), +- +- /** @name angular */ +- angular = window.angular || (window.angular = {}), +- angularModule, +- uid = 0; +- +-/** +- * documentMode is an IE-only property +- * http://msdn.microsoft.com/en-us/library/ie/cc196988(v=vs.85).aspx +- */ +-msie = document.documentMode; +- +- +-/** +- * @private +- * @param {*} obj +- * @return {boolean} Returns true if `obj` is an array or array-like object (NodeList, Arguments, +- * String ...) +- */ +-function isArrayLike(obj) { +- if (obj == null || isWindow(obj)) { +- return false; +- } +- +- var length = obj.length; +- +- if (obj.nodeType === NODE_TYPE_ELEMENT && length) { +- return true; +- } +- +- return isString(obj) || isArray(obj) || length === 0 || +- typeof length === 'number' && length > 0 && (length - 1) in obj; +-} +- +-/** +- * @ngdoc function +- * @name angular.forEach +- * @module ng +- * @kind function +- * +- * @description +- * Invokes the `iterator` function once for each item in `obj` collection, which can be either an +- * object or an array. The `iterator` function is invoked with `iterator(value, key, obj)`, where `value` +- * is the value of an object property or an array element, `key` is the object property key or +- * array element index and obj is the `obj` itself. Specifying a `context` for the function is optional. +- * +- * It is worth noting that `.forEach` does not iterate over inherited properties because it filters +- * using the `hasOwnProperty` method. +- * +- * Unlike ES262's +- * [Array.prototype.forEach](http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18), +- * Providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just +- * return the value provided. +- * +- ```js +- var values = {name: 'misko', gender: 'male'}; +- var log = []; +- angular.forEach(values, function(value, key) { +- this.push(key + ': ' + value); +- }, log); +- expect(log).toEqual(['name: misko', 'gender: male']); +- ``` +- * +- * @param {Object|Array} obj Object to iterate over. +- * @param {Function} iterator Iterator function. +- * @param {Object=} context Object to become context (`this`) for the iterator function. +- * @returns {Object|Array} Reference to `obj`. +- */ +- +-function forEach(obj, iterator, context) { +- var key, length; +- if (obj) { +- if (isFunction(obj)) { +- for (key in obj) { +- // Need to check if hasOwnProperty exists, +- // as on IE8 the result of querySelectorAll is an object without a hasOwnProperty function +- if (key != 'prototype' && key != 'length' && key != 'name' && (!obj.hasOwnProperty || obj.hasOwnProperty(key))) { +- iterator.call(context, obj[key], key, obj); +- } +- } +- } else if (isArray(obj) || isArrayLike(obj)) { +- var isPrimitive = typeof obj !== 'object'; +- for (key = 0, length = obj.length; key < length; key++) { +- if (isPrimitive || key in obj) { +- iterator.call(context, obj[key], key, obj); +- } +- } +- } else if (obj.forEach && obj.forEach !== forEach) { +- obj.forEach(iterator, context, obj); +- } else { +- for (key in obj) { +- if (obj.hasOwnProperty(key)) { +- iterator.call(context, obj[key], key, obj); +- } +- } +- } +- } +- return obj; +-} +- +-function sortedKeys(obj) { +- return Object.keys(obj).sort(); +-} +- +-function forEachSorted(obj, iterator, context) { +- var keys = sortedKeys(obj); +- for (var i = 0; i < keys.length; i++) { +- iterator.call(context, obj[keys[i]], keys[i]); +- } +- return keys; +-} +- +- +-/** +- * when using forEach the params are value, key, but it is often useful to have key, value. +- * @param {function(string, *)} iteratorFn +- * @returns {function(*, string)} +- */ +-function reverseParams(iteratorFn) { +- return function(value, key) { iteratorFn(key, value); }; +-} +- +-/** +- * A consistent way of creating unique IDs in angular. +- * +- * Using simple numbers allows us to generate 28.6 million unique ids per second for 10 years before +- * we hit number precision issues in JavaScript. +- * +- * Math.pow(2,53) / 60 / 60 / 24 / 365 / 10 = 28.6M +- * +- * @returns {number} an unique alpha-numeric string +- */ +-function nextUid() { +- return ++uid; +-} +- +- +-/** +- * Set or clear the hashkey for an object. +- * @param obj object +- * @param h the hashkey (!truthy to delete the hashkey) +- */ +-function setHashKey(obj, h) { +- if (h) { +- obj.$$hashKey = h; +- } else { +- delete obj.$$hashKey; +- } +-} +- +-/** +- * @ngdoc function +- * @name angular.extend +- * @module ng +- * @kind function +- * +- * @description +- * Extends the destination object `dst` by copying own enumerable properties from the `src` object(s) +- * to `dst`. You can specify multiple `src` objects. If you want to preserve original objects, you can do so +- * by passing an empty object as the target: `var object = angular.extend({}, object1, object2)`. +- * Note: Keep in mind that `angular.extend` does not support recursive merge (deep copy). +- * +- * @param {Object} dst Destination object. +- * @param {...Object} src Source object(s). +- * @returns {Object} Reference to `dst`. +- */ +-function extend(dst) { +- var h = dst.$$hashKey; +- +- for (var i = 1, ii = arguments.length; i < ii; i++) { +- var obj = arguments[i]; +- if (obj) { +- var keys = Object.keys(obj); +- for (var j = 0, jj = keys.length; j < jj; j++) { +- var key = keys[j]; +- dst[key] = obj[key]; +- } +- } +- } +- +- setHashKey(dst, h); +- return dst; +-} +- +-function int(str) { +- return parseInt(str, 10); +-} +- +- +-function inherit(parent, extra) { +- return extend(Object.create(parent), extra); +-} +- +-/** +- * @ngdoc function +- * @name angular.noop +- * @module ng +- * @kind function +- * +- * @description +- * A function that performs no operations. This function can be useful when writing code in the +- * functional style. +- ```js +- function foo(callback) { +- var result = calculateResult(); +- (callback || angular.noop)(result); +- } +- ``` +- */ +-function noop() {} +-noop.$inject = []; +- +- +-/** +- * @ngdoc function +- * @name angular.identity +- * @module ng +- * @kind function +- * +- * @description +- * A function that returns its first argument. This function is useful when writing code in the +- * functional style. +- * +- ```js +- function transformer(transformationFn, value) { +- return (transformationFn || angular.identity)(value); +- }; +- ``` +- * @param {*} value to be returned. +- * @returns {*} the value passed in. +- */ +-function identity($) {return $;} +-identity.$inject = []; +- +- +-function valueFn(value) {return function() {return value;};} +- +-/** +- * @ngdoc function +- * @name angular.isUndefined +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is undefined. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is undefined. +- */ +-function isUndefined(value) {return typeof value === 'undefined';} +- +- +-/** +- * @ngdoc function +- * @name angular.isDefined +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is defined. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is defined. +- */ +-function isDefined(value) {return typeof value !== 'undefined';} +- +- +-/** +- * @ngdoc function +- * @name angular.isObject +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not +- * considered to be objects. Note that JavaScript arrays are objects. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is an `Object` but not `null`. +- */ +-function isObject(value) { +- // http://jsperf.com/isobject4 +- return value !== null && typeof value === 'object'; +-} +- +- +-/** +- * @ngdoc function +- * @name angular.isString +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is a `String`. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a `String`. +- */ +-function isString(value) {return typeof value === 'string';} +- +- +-/** +- * @ngdoc function +- * @name angular.isNumber +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is a `Number`. +- * +- * This includes the "special" numbers `NaN`, `+Infinity` and `-Infinity`. +- * +- * If you wish to exclude these then you can use the native +- * [`isFinite'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isFinite) +- * method. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a `Number`. +- */ +-function isNumber(value) {return typeof value === 'number';} +- +- +-/** +- * @ngdoc function +- * @name angular.isDate +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a value is a date. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a `Date`. +- */ +-function isDate(value) { +- return toString.call(value) === '[object Date]'; +-} +- +- +-/** +- * @ngdoc function +- * @name angular.isArray +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is an `Array`. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is an `Array`. +- */ +-var isArray = Array.isArray; +- +-/** +- * @ngdoc function +- * @name angular.isFunction +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is a `Function`. +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a `Function`. +- */ +-function isFunction(value) {return typeof value === 'function';} +- +- +-/** +- * Determines if a value is a regular expression object. +- * +- * @private +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a `RegExp`. +- */ +-function isRegExp(value) { +- return toString.call(value) === '[object RegExp]'; +-} +- +- +-/** +- * Checks if `obj` is a window object. +- * +- * @private +- * @param {*} obj Object to check +- * @returns {boolean} True if `obj` is a window obj. +- */ +-function isWindow(obj) { +- return obj && obj.window === obj; +-} +- +- +-function isScope(obj) { +- return obj && obj.$evalAsync && obj.$watch; +-} +- +- +-function isFile(obj) { +- return toString.call(obj) === '[object File]'; +-} +- +- +-function isFormData(obj) { +- return toString.call(obj) === '[object FormData]'; +-} +- +- +-function isBlob(obj) { +- return toString.call(obj) === '[object Blob]'; +-} +- +- +-function isBoolean(value) { +- return typeof value === 'boolean'; +-} +- +- +-function isPromiseLike(obj) { +- return obj && isFunction(obj.then); +-} +- +- +-var trim = function(value) { +- return isString(value) ? value.trim() : value; +-}; +- +-// Copied from: +-// http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021 +-// Prereq: s is a string. +-var escapeForRegexp = function(s) { +- return s.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, '\\$1'). +- replace(/\x08/g, '\\x08'); +-}; +- +- +-/** +- * @ngdoc function +- * @name angular.isElement +- * @module ng +- * @kind function +- * +- * @description +- * Determines if a reference is a DOM element (or wrapped jQuery element). +- * +- * @param {*} value Reference to check. +- * @returns {boolean} True if `value` is a DOM element (or wrapped jQuery element). +- */ +-function isElement(node) { +- return !!(node && +- (node.nodeName // we are a direct element +- || (node.prop && node.attr && node.find))); // we have an on and find method part of jQuery API +-} +- +-/** +- * @param str 'key1,key2,...' +- * @returns {object} in the form of {key1:true, key2:true, ...} +- */ +-function makeMap(str) { +- var obj = {}, items = str.split(","), i; +- for (i = 0; i < items.length; i++) +- obj[items[i]] = true; +- return obj; +-} +- +- +-function nodeName_(element) { +- return lowercase(element.nodeName || (element[0] && element[0].nodeName)); +-} +- +-function includes(array, obj) { +- return Array.prototype.indexOf.call(array, obj) != -1; +-} +- +-function arrayRemove(array, value) { +- var index = array.indexOf(value); +- if (index >= 0) +- array.splice(index, 1); +- return value; +-} +- +-/** +- * @ngdoc function +- * @name angular.copy +- * @module ng +- * @kind function +- * +- * @description +- * Creates a deep copy of `source`, which should be an object or an array. +- * +- * * If no destination is supplied, a copy of the object or array is created. +- * * If a destination is provided, all of its elements (for arrays) or properties (for objects) +- * are deleted and then all elements/properties from the source are copied to it. +- * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. +- * * If `source` is identical to 'destination' an exception will be thrown. +- * +- * @param {*} source The source that will be used to make a copy. +- * Can be any type, including primitives, `null`, and `undefined`. +- * @param {(Object|Array)=} destination Destination into which the source is copied. If +- * provided, must be of the same type as `source`. +- * @returns {*} The copy or updated `destination`, if `destination` was specified. +- * +- * @example +- <example module="copyExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <form novalidate class="simple-form"> +- Name: <input type="text" ng-model="user.name" /><br /> +- E-mail: <input type="email" ng-model="user.email" /><br /> +- Gender: <input type="radio" ng-model="user.gender" value="male" />male +- <input type="radio" ng-model="user.gender" value="female" />female<br /> +- <button ng-click="reset()">RESET</button> +- <button ng-click="update(user)">SAVE</button> +- </form> +- <pre>form = {{user | json}}</pre> +- <pre>master = {{master | json}}</pre> +- </div> +- +- <script> +- angular.module('copyExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.master= {}; +- +- $scope.update = function(user) { +- // Example with 1 argument +- $scope.master= angular.copy(user); +- }; +- +- $scope.reset = function() { +- // Example with 2 arguments +- angular.copy($scope.master, $scope.user); +- }; +- +- $scope.reset(); +- }]); +- </script> +- </file> +- </example> +- */ +-function copy(source, destination, stackSource, stackDest) { +- if (isWindow(source) || isScope(source)) { +- throw ngMinErr('cpws', +- "Can't copy! Making copies of Window or Scope instances is not supported."); +- } +- +- if (!destination) { +- destination = source; +- if (source) { +- if (isArray(source)) { +- destination = copy(source, [], stackSource, stackDest); +- } else if (isDate(source)) { +- destination = new Date(source.getTime()); +- } else if (isRegExp(source)) { +- destination = new RegExp(source.source, source.toString().match(/[^\/]*$/)[0]); +- destination.lastIndex = source.lastIndex; +- } else if (isObject(source)) { +- var emptyObject = Object.create(Object.getPrototypeOf(source)); +- destination = copy(source, emptyObject, stackSource, stackDest); +- } +- } +- } else { +- if (source === destination) throw ngMinErr('cpi', +- "Can't copy! Source and destination are identical."); +- +- stackSource = stackSource || []; +- stackDest = stackDest || []; +- +- if (isObject(source)) { +- var index = stackSource.indexOf(source); +- if (index !== -1) return stackDest[index]; +- +- stackSource.push(source); +- stackDest.push(destination); +- } +- +- var result; +- if (isArray(source)) { +- destination.length = 0; +- for (var i = 0; i < source.length; i++) { +- result = copy(source[i], null, stackSource, stackDest); +- if (isObject(source[i])) { +- stackSource.push(source[i]); +- stackDest.push(result); +- } +- destination.push(result); +- } +- } else { +- var h = destination.$$hashKey; +- if (isArray(destination)) { +- destination.length = 0; +- } else { +- forEach(destination, function(value, key) { +- delete destination[key]; +- }); +- } +- for (var key in source) { +- if (source.hasOwnProperty(key)) { +- result = copy(source[key], null, stackSource, stackDest); +- if (isObject(source[key])) { +- stackSource.push(source[key]); +- stackDest.push(result); +- } +- destination[key] = result; +- } +- } +- setHashKey(destination,h); +- } +- +- } +- return destination; +-} +- +-/** +- * Creates a shallow copy of an object, an array or a primitive. +- * +- * Assumes that there are no proto properties for objects. +- */ +-function shallowCopy(src, dst) { +- if (isArray(src)) { +- dst = dst || []; +- +- for (var i = 0, ii = src.length; i < ii; i++) { +- dst[i] = src[i]; +- } +- } else if (isObject(src)) { +- dst = dst || {}; +- +- for (var key in src) { +- if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) { +- dst[key] = src[key]; +- } +- } +- } +- +- return dst || src; +-} +- +- +-/** +- * @ngdoc function +- * @name angular.equals +- * @module ng +- * @kind function +- * +- * @description +- * Determines if two objects or two values are equivalent. Supports value types, regular +- * expressions, arrays and objects. +- * +- * Two objects or values are considered equivalent if at least one of the following is true: +- * +- * * Both objects or values pass `===` comparison. +- * * Both objects or values are of the same type and all of their properties are equal by +- * comparing them with `angular.equals`. +- * * Both values are NaN. (In JavaScript, NaN == NaN => false. But we consider two NaN as equal) +- * * Both values represent the same regular expression (In JavaScript, +- * /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual +- * representation matches). +- * +- * During a property comparison, properties of `function` type and properties with names +- * that begin with `$` are ignored. +- * +- * Scope and DOMWindow objects are being compared only by identify (`===`). +- * +- * @param {*} o1 Object or value to compare. +- * @param {*} o2 Object or value to compare. +- * @returns {boolean} True if arguments are equal. +- */ +-function equals(o1, o2) { +- if (o1 === o2) return true; +- if (o1 === null || o2 === null) return false; +- if (o1 !== o1 && o2 !== o2) return true; // NaN === NaN +- var t1 = typeof o1, t2 = typeof o2, length, key, keySet; +- if (t1 == t2) { +- if (t1 == 'object') { +- if (isArray(o1)) { +- if (!isArray(o2)) return false; +- if ((length = o1.length) == o2.length) { +- for (key = 0; key < length; key++) { +- if (!equals(o1[key], o2[key])) return false; +- } +- return true; +- } +- } else if (isDate(o1)) { +- if (!isDate(o2)) return false; +- return equals(o1.getTime(), o2.getTime()); +- } else if (isRegExp(o1)) { +- return isRegExp(o2) ? o1.toString() == o2.toString() : false; +- } else { +- if (isScope(o1) || isScope(o2) || isWindow(o1) || isWindow(o2) || +- isArray(o2) || isDate(o2) || isRegExp(o2)) return false; +- keySet = {}; +- for (key in o1) { +- if (key.charAt(0) === '$' || isFunction(o1[key])) continue; +- if (!equals(o1[key], o2[key])) return false; +- keySet[key] = true; +- } +- for (key in o2) { +- if (!keySet.hasOwnProperty(key) && +- key.charAt(0) !== '$' && +- o2[key] !== undefined && +- !isFunction(o2[key])) return false; +- } +- return true; +- } +- } +- } +- return false; +-} +- +-var csp = function() { +- if (isDefined(csp.isActive_)) return csp.isActive_; +- +- var active = !!(document.querySelector('[ng-csp]') || +- document.querySelector('[data-ng-csp]')); +- +- if (!active) { +- try { +- /* jshint -W031, -W054 */ +- new Function(''); +- /* jshint +W031, +W054 */ +- } catch (e) { +- active = true; +- } +- } +- +- return (csp.isActive_ = active); +-}; +- +- +- +-function concat(array1, array2, index) { +- return array1.concat(slice.call(array2, index)); +-} +- +-function sliceArgs(args, startIndex) { +- return slice.call(args, startIndex || 0); +-} +- +- +-/* jshint -W101 */ +-/** +- * @ngdoc function +- * @name angular.bind +- * @module ng +- * @kind function +- * +- * @description +- * Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for +- * `fn`). You can supply optional `args` that are prebound to the function. This feature is also +- * known as [partial application](http://en.wikipedia.org/wiki/Partial_application), as +- * distinguished from [function currying](http://en.wikipedia.org/wiki/Currying#Contrast_with_partial_function_application). +- * +- * @param {Object} self Context which `fn` should be evaluated in. +- * @param {function()} fn Function to be bound. +- * @param {...*} args Optional arguments to be prebound to the `fn` function call. +- * @returns {function()} Function that wraps the `fn` with all the specified bindings. +- */ +-/* jshint +W101 */ +-function bind(self, fn) { +- var curryArgs = arguments.length > 2 ? sliceArgs(arguments, 2) : []; +- if (isFunction(fn) && !(fn instanceof RegExp)) { +- return curryArgs.length +- ? function() { +- return arguments.length +- ? fn.apply(self, concat(curryArgs, arguments, 0)) +- : fn.apply(self, curryArgs); +- } +- : function() { +- return arguments.length +- ? fn.apply(self, arguments) +- : fn.call(self); +- }; +- } else { +- // in IE, native methods are not functions so they cannot be bound (note: they don't need to be) +- return fn; +- } +-} +- +- +-function toJsonReplacer(key, value) { +- var val = value; +- +- if (typeof key === 'string' && key.charAt(0) === '$' && key.charAt(1) === '$') { +- val = undefined; +- } else if (isWindow(value)) { +- val = '$WINDOW'; +- } else if (value && document === value) { +- val = '$DOCUMENT'; +- } else if (isScope(value)) { +- val = '$SCOPE'; +- } +- +- return val; +-} +- +- +-/** +- * @ngdoc function +- * @name angular.toJson +- * @module ng +- * @kind function +- * +- * @description +- * Serializes input into a JSON-formatted string. Properties with leading $$ characters will be +- * stripped since angular uses this notation internally. +- * +- * @param {Object|Array|Date|string|number} obj Input to be serialized into JSON. +- * @param {boolean|number=} pretty If set to true, the JSON output will contain newlines and whitespace. +- * If set to an integer, the JSON output will contain that many spaces per indentation (the default is 2). +- * @returns {string|undefined} JSON-ified string representing `obj`. +- */ +-function toJson(obj, pretty) { +- if (typeof obj === 'undefined') return undefined; +- if (!isNumber(pretty)) { +- pretty = pretty ? 2 : null; +- } +- return JSON.stringify(obj, toJsonReplacer, pretty); +-} +- +- +-/** +- * @ngdoc function +- * @name angular.fromJson +- * @module ng +- * @kind function +- * +- * @description +- * Deserializes a JSON string. +- * +- * @param {string} json JSON string to deserialize. +- * @returns {Object|Array|string|number} Deserialized JSON string. +- */ +-function fromJson(json) { +- return isString(json) +- ? JSON.parse(json) +- : json; +-} +- +- +-/** +- * @returns {string} Returns the string representation of the element. +- */ +-function startingTag(element) { +- element = jqLite(element).clone(); +- try { +- // turns out IE does not let you set .html() on elements which +- // are not allowed to have children. So we just ignore it. +- element.empty(); +- } catch (e) {} +- var elemHtml = jqLite('<div>').append(element).html(); +- try { +- return element[0].nodeType === NODE_TYPE_TEXT ? lowercase(elemHtml) : +- elemHtml. +- match(/^(<[^>]+>)/)[1]. +- replace(/^<([\w\-]+)/, function(match, nodeName) { return '<' + lowercase(nodeName); }); +- } catch (e) { +- return lowercase(elemHtml); +- } +- +-} +- +- +-///////////////////////////////////////////////// +- +-/** +- * Tries to decode the URI component without throwing an exception. +- * +- * @private +- * @param str value potential URI component to check. +- * @returns {boolean} True if `value` can be decoded +- * with the decodeURIComponent function. +- */ +-function tryDecodeURIComponent(value) { +- try { +- return decodeURIComponent(value); +- } catch (e) { +- // Ignore any invalid uri component +- } +-} +- +- +-/** +- * Parses an escaped url query string into key-value pairs. +- * @returns {Object.<string,boolean|Array>} +- */ +-function parseKeyValue(/**string*/keyValue) { +- var obj = {}, key_value, key; +- forEach((keyValue || "").split('&'), function(keyValue) { +- if (keyValue) { +- key_value = keyValue.replace(/\+/g,'%20').split('='); +- key = tryDecodeURIComponent(key_value[0]); +- if (isDefined(key)) { +- var val = isDefined(key_value[1]) ? tryDecodeURIComponent(key_value[1]) : true; +- if (!hasOwnProperty.call(obj, key)) { +- obj[key] = val; +- } else if (isArray(obj[key])) { +- obj[key].push(val); +- } else { +- obj[key] = [obj[key],val]; +- } +- } +- } +- }); +- return obj; +-} +- +-function toKeyValue(obj) { +- var parts = []; +- forEach(obj, function(value, key) { +- if (isArray(value)) { +- forEach(value, function(arrayValue) { +- parts.push(encodeUriQuery(key, true) + +- (arrayValue === true ? '' : '=' + encodeUriQuery(arrayValue, true))); +- }); +- } else { +- parts.push(encodeUriQuery(key, true) + +- (value === true ? '' : '=' + encodeUriQuery(value, true))); +- } +- }); +- return parts.length ? parts.join('&') : ''; +-} +- +- +-/** +- * We need our custom method because encodeURIComponent is too aggressive and doesn't follow +- * http://www.ietf.org/rfc/rfc3986.txt with regards to the character set (pchar) allowed in path +- * segments: +- * segment = *pchar +- * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" +- * pct-encoded = "%" HEXDIG HEXDIG +- * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" +- * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" +- * / "*" / "+" / "," / ";" / "=" +- */ +-function encodeUriSegment(val) { +- return encodeUriQuery(val, true). +- replace(/%26/gi, '&'). +- replace(/%3D/gi, '='). +- replace(/%2B/gi, '+'); +-} +- +- +-/** +- * This method is intended for encoding *key* or *value* parts of query component. We need a custom +- * method because encodeURIComponent is too aggressive and encodes stuff that doesn't have to be +- * encoded per http://tools.ietf.org/html/rfc3986: +- * query = *( pchar / "/" / "?" ) +- * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" +- * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" +- * pct-encoded = "%" HEXDIG HEXDIG +- * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" +- * / "*" / "+" / "," / ";" / "=" +- */ +-function encodeUriQuery(val, pctEncodeSpaces) { +- return encodeURIComponent(val). +- replace(/%40/gi, '@'). +- replace(/%3A/gi, ':'). +- replace(/%24/g, '$'). +- replace(/%2C/gi, ','). +- replace(/%3B/gi, ';'). +- replace(/%20/g, (pctEncodeSpaces ? '%20' : '+')); +-} +- +-var ngAttrPrefixes = ['ng-', 'data-ng-', 'ng:', 'x-ng-']; +- +-function getNgAttribute(element, ngAttr) { +- var attr, i, ii = ngAttrPrefixes.length; +- element = jqLite(element); +- for (i = 0; i < ii; ++i) { +- attr = ngAttrPrefixes[i] + ngAttr; +- if (isString(attr = element.attr(attr))) { +- return attr; +- } +- } +- return null; +-} +- +-/** +- * @ngdoc directive +- * @name ngApp +- * @module ng +- * +- * @element ANY +- * @param {angular.Module} ngApp an optional application +- * {@link angular.module module} name to load. +- * @param {boolean=} ngStrictDi if this attribute is present on the app element, the injector will be +- * created in "strict-di" mode. This means that the application will fail to invoke functions which +- * do not use explicit function annotation (and are thus unsuitable for minification), as described +- * in {@link guide/di the Dependency Injection guide}, and useful debugging info will assist in +- * tracking down the root of these bugs. +- * +- * @description +- * +- * Use this directive to **auto-bootstrap** an AngularJS application. The `ngApp` directive +- * designates the **root element** of the application and is typically placed near the root element +- * of the page - e.g. on the `<body>` or `<html>` tags. +- * +- * Only one AngularJS application can be auto-bootstrapped per HTML document. The first `ngApp` +- * found in the document will be used to define the root element to auto-bootstrap as an +- * application. To run multiple applications in an HTML document you must manually bootstrap them using +- * {@link angular.bootstrap} instead. AngularJS applications cannot be nested within each other. +- * +- * You can specify an **AngularJS module** to be used as the root module for the application. This +- * module will be loaded into the {@link auto.$injector} when the application is bootstrapped. It +- * should contain the application code needed or have dependencies on other modules that will +- * contain the code. See {@link angular.module} for more information. +- * +- * In the example below if the `ngApp` directive were not placed on the `html` element then the +- * document would not be compiled, the `AppController` would not be instantiated and the `{{ a+b }}` +- * would not be resolved to `3`. +- * +- * `ngApp` is the easiest, and most common way to bootstrap an application. +- * +- <example module="ngAppDemo"> +- <file name="index.html"> +- <div ng-controller="ngAppDemoController"> +- I can add: {{a}} + {{b}} = {{ a+b }} +- </div> +- </file> +- <file name="script.js"> +- angular.module('ngAppDemo', []).controller('ngAppDemoController', function($scope) { +- $scope.a = 1; +- $scope.b = 2; +- }); +- </file> +- </example> +- * +- * Using `ngStrictDi`, you would see something like this: +- * +- <example ng-app-included="true"> +- <file name="index.html"> +- <div ng-app="ngAppStrictDemo" ng-strict-di> +- <div ng-controller="GoodController1"> +- I can add: {{a}} + {{b}} = {{ a+b }} +- +- <p>This renders because the controller does not fail to +- instantiate, by using explicit annotation style (see +- script.js for details) +- </p> +- </div> +- +- <div ng-controller="GoodController2"> +- Name: <input ng-model="name"><br /> +- Hello, {{name}}! +- +- <p>This renders because the controller does not fail to +- instantiate, by using explicit annotation style +- (see script.js for details) +- </p> +- </div> +- +- <div ng-controller="BadController"> +- I can add: {{a}} + {{b}} = {{ a+b }} +- +- <p>The controller could not be instantiated, due to relying +- on automatic function annotations (which are disabled in +- strict mode). As such, the content of this section is not +- interpolated, and there should be an error in your web console. +- </p> +- </div> +- </div> +- </file> +- <file name="script.js"> +- angular.module('ngAppStrictDemo', []) +- // BadController will fail to instantiate, due to relying on automatic function annotation, +- // rather than an explicit annotation +- .controller('BadController', function($scope) { +- $scope.a = 1; +- $scope.b = 2; +- }) +- // Unlike BadController, GoodController1 and GoodController2 will not fail to be instantiated, +- // due to using explicit annotations using the array style and $inject property, respectively. +- .controller('GoodController1', ['$scope', function($scope) { +- $scope.a = 1; +- $scope.b = 2; +- }]) +- .controller('GoodController2', GoodController2); +- function GoodController2($scope) { +- $scope.name = "World"; +- } +- GoodController2.$inject = ['$scope']; +- </file> +- <file name="style.css"> +- div[ng-controller] { +- margin-bottom: 1em; +- -webkit-border-radius: 4px; +- border-radius: 4px; +- border: 1px solid; +- padding: .5em; +- } +- div[ng-controller^=Good] { +- border-color: #d6e9c6; +- background-color: #dff0d8; +- color: #3c763d; +- } +- div[ng-controller^=Bad] { +- border-color: #ebccd1; +- background-color: #f2dede; +- color: #a94442; +- margin-bottom: 0; +- } +- </file> +- </example> +- */ +-function angularInit(element, bootstrap) { +- var appElement, +- module, +- config = {}; +- +- // The element `element` has priority over any other element +- forEach(ngAttrPrefixes, function(prefix) { +- var name = prefix + 'app'; +- +- if (!appElement && element.hasAttribute && element.hasAttribute(name)) { +- appElement = element; +- module = element.getAttribute(name); +- } +- }); +- forEach(ngAttrPrefixes, function(prefix) { +- var name = prefix + 'app'; +- var candidate; +- +- if (!appElement && (candidate = element.querySelector('[' + name.replace(':', '\\:') + ']'))) { +- appElement = candidate; +- module = candidate.getAttribute(name); +- } +- }); +- if (appElement) { +- config.strictDi = getNgAttribute(appElement, "strict-di") !== null; +- bootstrap(appElement, module ? [module] : [], config); +- } +-} +- +-/** +- * @ngdoc function +- * @name angular.bootstrap +- * @module ng +- * @description +- * Use this function to manually start up angular application. +- * +- * See: {@link guide/bootstrap Bootstrap} +- * +- * Note that Protractor based end-to-end tests cannot use this function to bootstrap manually. +- * They must use {@link ng.directive:ngApp ngApp}. +- * +- * Angular will detect if it has been loaded into the browser more than once and only allow the +- * first loaded script to be bootstrapped and will report a warning to the browser console for +- * each of the subsequent scripts. This prevents strange results in applications, where otherwise +- * multiple instances of Angular try to work on the DOM. +- * +- * ```html +- * <!doctype html> +- * <html> +- * <body> +- * <div ng-controller="WelcomeController"> +- * {{greeting}} +- * </div> +- * +- * <script src="angular.js"></script> +- * <script> +- * var app = angular.module('demo', []) +- * .controller('WelcomeController', function($scope) { +- * $scope.greeting = 'Welcome!'; +- * }); +- * angular.bootstrap(document, ['demo']); +- * </script> +- * </body> +- * </html> +- * ``` +- * +- * @param {DOMElement} element DOM element which is the root of angular application. +- * @param {Array<String|Function|Array>=} modules an array of modules to load into the application. +- * Each item in the array should be the name of a predefined module or a (DI annotated) +- * function that will be invoked by the injector as a `config` block. +- * See: {@link angular.module modules} +- * @param {Object=} config an object for defining configuration options for the application. The +- * following keys are supported: +- * +- * * `strictDi` - disable automatic function annotation for the application. This is meant to +- * assist in finding bugs which break minified code. Defaults to `false`. +- * +- * @returns {auto.$injector} Returns the newly created injector for this app. +- */ +-function bootstrap(element, modules, config) { +- if (!isObject(config)) config = {}; +- var defaultConfig = { +- strictDi: false +- }; +- config = extend(defaultConfig, config); +- var doBootstrap = function() { +- element = jqLite(element); +- +- if (element.injector()) { +- var tag = (element[0] === document) ? 'document' : startingTag(element); +- //Encode angle brackets to prevent input from being sanitized to empty string #8683 +- throw ngMinErr( +- 'btstrpd', +- "App Already Bootstrapped with this Element '{0}'", +- tag.replace(/</,'<').replace(/>/,'>')); +- } +- +- modules = modules || []; +- modules.unshift(['$provide', function($provide) { +- $provide.value('$rootElement', element); +- }]); +- +- if (config.debugInfoEnabled) { +- // Pushing so that this overrides `debugInfoEnabled` setting defined in user's `modules`. +- modules.push(['$compileProvider', function($compileProvider) { +- $compileProvider.debugInfoEnabled(true); +- }]); +- } +- +- modules.unshift('ng'); +- var injector = createInjector(modules, config.strictDi); +- injector.invoke(['$rootScope', '$rootElement', '$compile', '$injector', +- function bootstrapApply(scope, element, compile, injector) { +- scope.$apply(function() { +- element.data('$injector', injector); +- compile(element)(scope); +- }); +- }] +- ); +- return injector; +- }; +- +- var NG_ENABLE_DEBUG_INFO = /^NG_ENABLE_DEBUG_INFO!/; +- var NG_DEFER_BOOTSTRAP = /^NG_DEFER_BOOTSTRAP!/; +- +- if (window && NG_ENABLE_DEBUG_INFO.test(window.name)) { +- config.debugInfoEnabled = true; +- window.name = window.name.replace(NG_ENABLE_DEBUG_INFO, ''); +- } +- +- if (window && !NG_DEFER_BOOTSTRAP.test(window.name)) { +- return doBootstrap(); +- } +- +- window.name = window.name.replace(NG_DEFER_BOOTSTRAP, ''); +- angular.resumeBootstrap = function(extraModules) { +- forEach(extraModules, function(module) { +- modules.push(module); +- }); +- return doBootstrap(); +- }; +- +- if (isFunction(angular.resumeDeferredBootstrap)) { +- angular.resumeDeferredBootstrap(); +- } +-} +- +-/** +- * @ngdoc function +- * @name angular.reloadWithDebugInfo +- * @module ng +- * @description +- * Use this function to reload the current application with debug information turned on. +- * This takes precedence over a call to `$compileProvider.debugInfoEnabled(false)`. +- * +- * See {@link ng.$compileProvider#debugInfoEnabled} for more. +- */ +-function reloadWithDebugInfo() { +- window.name = 'NG_ENABLE_DEBUG_INFO!' + window.name; +- window.location.reload(); +-} +- +-/** +- * @name angular.getTestability +- * @module ng +- * @description +- * Get the testability service for the instance of Angular on the given +- * element. +- * @param {DOMElement} element DOM element which is the root of angular application. +- */ +-function getTestability(rootElement) { +- var injector = angular.element(rootElement).injector(); +- if (!injector) { +- throw ngMinErr('test', +- 'no injector found for element argument to getTestability'); +- } +- return injector.get('$$testability'); +-} +- +-var SNAKE_CASE_REGEXP = /[A-Z]/g; +-function snake_case(name, separator) { +- separator = separator || '_'; +- return name.replace(SNAKE_CASE_REGEXP, function(letter, pos) { +- return (pos ? separator : '') + letter.toLowerCase(); +- }); +-} +- +-var bindJQueryFired = false; +-var skipDestroyOnNextJQueryCleanData; +-function bindJQuery() { +- var originalCleanData; +- +- if (bindJQueryFired) { +- return; +- } +- +- // bind to jQuery if present; +- jQuery = window.jQuery; +- // Use jQuery if it exists with proper functionality, otherwise default to us. +- // Angular 1.2+ requires jQuery 1.7+ for on()/off() support. +- // Angular 1.3+ technically requires at least jQuery 2.1+ but it may work with older +- // versions. It will not work for sure with jQuery <1.7, though. +- if (jQuery && jQuery.fn.on) { +- jqLite = jQuery; +- extend(jQuery.fn, { +- scope: JQLitePrototype.scope, +- isolateScope: JQLitePrototype.isolateScope, +- controller: JQLitePrototype.controller, +- injector: JQLitePrototype.injector, +- inheritedData: JQLitePrototype.inheritedData +- }); +- +- // All nodes removed from the DOM via various jQuery APIs like .remove() +- // are passed through jQuery.cleanData. Monkey-patch this method to fire +- // the $destroy event on all removed nodes. +- originalCleanData = jQuery.cleanData; +- jQuery.cleanData = function(elems) { +- var events; +- if (!skipDestroyOnNextJQueryCleanData) { +- for (var i = 0, elem; (elem = elems[i]) != null; i++) { +- events = jQuery._data(elem, "events"); +- if (events && events.$destroy) { +- jQuery(elem).triggerHandler('$destroy'); +- } +- } +- } else { +- skipDestroyOnNextJQueryCleanData = false; +- } +- originalCleanData(elems); +- }; +- } else { +- jqLite = JQLite; +- } +- +- angular.element = jqLite; +- +- // Prevent double-proxying. +- bindJQueryFired = true; +-} +- +-/** +- * throw error if the argument is falsy. +- */ +-function assertArg(arg, name, reason) { +- if (!arg) { +- throw ngMinErr('areq', "Argument '{0}' is {1}", (name || '?'), (reason || "required")); +- } +- return arg; +-} +- +-function assertArgFn(arg, name, acceptArrayAnnotation) { +- if (acceptArrayAnnotation && isArray(arg)) { +- arg = arg[arg.length - 1]; +- } +- +- assertArg(isFunction(arg), name, 'not a function, got ' + +- (arg && typeof arg === 'object' ? arg.constructor.name || 'Object' : typeof arg)); +- return arg; +-} +- +-/** +- * throw error if the name given is hasOwnProperty +- * @param {String} name the name to test +- * @param {String} context the context in which the name is used, such as module or directive +- */ +-function assertNotHasOwnProperty(name, context) { +- if (name === 'hasOwnProperty') { +- throw ngMinErr('badname', "hasOwnProperty is not a valid {0} name", context); +- } +-} +- +-/** +- * Return the value accessible from the object by path. Any undefined traversals are ignored +- * @param {Object} obj starting object +- * @param {String} path path to traverse +- * @param {boolean} [bindFnToScope=true] +- * @returns {Object} value as accessible by path +- */ +-//TODO(misko): this function needs to be removed +-function getter(obj, path, bindFnToScope) { +- if (!path) return obj; +- var keys = path.split('.'); +- var key; +- var lastInstance = obj; +- var len = keys.length; +- +- for (var i = 0; i < len; i++) { +- key = keys[i]; +- if (obj) { +- obj = (lastInstance = obj)[key]; +- } +- } +- if (!bindFnToScope && isFunction(obj)) { +- return bind(lastInstance, obj); +- } +- return obj; +-} +- +-/** +- * Return the DOM siblings between the first and last node in the given array. +- * @param {Array} array like object +- * @returns {jqLite} jqLite collection containing the nodes +- */ +-function getBlockNodes(nodes) { +- // TODO(perf): just check if all items in `nodes` are siblings and if they are return the original +- // collection, otherwise update the original collection. +- var node = nodes[0]; +- var endNode = nodes[nodes.length - 1]; +- var blockNodes = [node]; +- +- do { +- node = node.nextSibling; +- if (!node) break; +- blockNodes.push(node); +- } while (node !== endNode); +- +- return jqLite(blockNodes); +-} +- +- +-/** +- * Creates a new object without a prototype. This object is useful for lookup without having to +- * guard against prototypically inherited properties via hasOwnProperty. +- * +- * Related micro-benchmarks: +- * - http://jsperf.com/object-create2 +- * - http://jsperf.com/proto-map-lookup/2 +- * - http://jsperf.com/for-in-vs-object-keys2 +- * +- * @returns {Object} +- */ +-function createMap() { +- return Object.create(null); +-} +- +-var NODE_TYPE_ELEMENT = 1; +-var NODE_TYPE_TEXT = 3; +-var NODE_TYPE_COMMENT = 8; +-var NODE_TYPE_DOCUMENT = 9; +-var NODE_TYPE_DOCUMENT_FRAGMENT = 11; +- +-/** +- * @ngdoc type +- * @name angular.Module +- * @module ng +- * @description +- * +- * Interface for configuring angular {@link angular.module modules}. +- */ +- +-function setupModuleLoader(window) { +- +- var $injectorMinErr = minErr('$injector'); +- var ngMinErr = minErr('ng'); +- +- function ensure(obj, name, factory) { +- return obj[name] || (obj[name] = factory()); +- } +- +- var angular = ensure(window, 'angular', Object); +- +- // We need to expose `angular.$$minErr` to modules such as `ngResource` that reference it during bootstrap +- angular.$$minErr = angular.$$minErr || minErr; +- +- return ensure(angular, 'module', function() { +- /** @type {Object.<string, angular.Module>} */ +- var modules = {}; +- +- /** +- * @ngdoc function +- * @name angular.module +- * @module ng +- * @description +- * +- * The `angular.module` is a global place for creating, registering and retrieving Angular +- * modules. +- * All modules (angular core or 3rd party) that should be available to an application must be +- * registered using this mechanism. +- * +- * When passed two or more arguments, a new module is created. If passed only one argument, an +- * existing module (the name passed as the first argument to `module`) is retrieved. +- * +- * +- * # Module +- * +- * A module is a collection of services, directives, controllers, filters, and configuration information. +- * `angular.module` is used to configure the {@link auto.$injector $injector}. +- * +- * ```js +- * // Create a new module +- * var myModule = angular.module('myModule', []); +- * +- * // register a new service +- * myModule.value('appName', 'MyCoolApp'); +- * +- * // configure existing services inside initialization blocks. +- * myModule.config(['$locationProvider', function($locationProvider) { +- * // Configure existing providers +- * $locationProvider.hashPrefix('!'); +- * }]); +- * ``` +- * +- * Then you can create an injector and load your modules like this: +- * +- * ```js +- * var injector = angular.injector(['ng', 'myModule']) +- * ``` +- * +- * However it's more likely that you'll just use +- * {@link ng.directive:ngApp ngApp} or +- * {@link angular.bootstrap} to simplify this process for you. +- * +- * @param {!string} name The name of the module to create or retrieve. +- * @param {!Array.<string>=} requires If specified then new module is being created. If +- * unspecified then the module is being retrieved for further configuration. +- * @param {Function=} configFn Optional configuration function for the module. Same as +- * {@link angular.Module#config Module#config()}. +- * @returns {module} new module with the {@link angular.Module} api. +- */ +- return function module(name, requires, configFn) { +- var assertNotHasOwnProperty = function(name, context) { +- if (name === 'hasOwnProperty') { +- throw ngMinErr('badname', 'hasOwnProperty is not a valid {0} name', context); +- } +- }; +- +- assertNotHasOwnProperty(name, 'module'); +- if (requires && modules.hasOwnProperty(name)) { +- modules[name] = null; +- } +- return ensure(modules, name, function() { +- if (!requires) { +- throw $injectorMinErr('nomod', "Module '{0}' is not available! You either misspelled " + +- "the module name or forgot to load it. If registering a module ensure that you " + +- "specify the dependencies as the second argument.", name); +- } +- +- /** @type {!Array.<Array.<*>>} */ +- var invokeQueue = []; +- +- /** @type {!Array.<Function>} */ +- var configBlocks = []; +- +- /** @type {!Array.<Function>} */ +- var runBlocks = []; +- +- var config = invokeLater('$injector', 'invoke', 'push', configBlocks); +- +- /** @type {angular.Module} */ +- var moduleInstance = { +- // Private state +- _invokeQueue: invokeQueue, +- _configBlocks: configBlocks, +- _runBlocks: runBlocks, +- +- /** +- * @ngdoc property +- * @name angular.Module#requires +- * @module ng +- * +- * @description +- * Holds the list of modules which the injector will load before the current module is +- * loaded. +- */ +- requires: requires, +- +- /** +- * @ngdoc property +- * @name angular.Module#name +- * @module ng +- * +- * @description +- * Name of the module. +- */ +- name: name, +- +- +- /** +- * @ngdoc method +- * @name angular.Module#provider +- * @module ng +- * @param {string} name service name +- * @param {Function} providerType Construction function for creating new instance of the +- * service. +- * @description +- * See {@link auto.$provide#provider $provide.provider()}. +- */ +- provider: invokeLater('$provide', 'provider'), +- +- /** +- * @ngdoc method +- * @name angular.Module#factory +- * @module ng +- * @param {string} name service name +- * @param {Function} providerFunction Function for creating new instance of the service. +- * @description +- * See {@link auto.$provide#factory $provide.factory()}. +- */ +- factory: invokeLater('$provide', 'factory'), +- +- /** +- * @ngdoc method +- * @name angular.Module#service +- * @module ng +- * @param {string} name service name +- * @param {Function} constructor A constructor function that will be instantiated. +- * @description +- * See {@link auto.$provide#service $provide.service()}. +- */ +- service: invokeLater('$provide', 'service'), +- +- /** +- * @ngdoc method +- * @name angular.Module#value +- * @module ng +- * @param {string} name service name +- * @param {*} object Service instance object. +- * @description +- * See {@link auto.$provide#value $provide.value()}. +- */ +- value: invokeLater('$provide', 'value'), +- +- /** +- * @ngdoc method +- * @name angular.Module#constant +- * @module ng +- * @param {string} name constant name +- * @param {*} object Constant value. +- * @description +- * Because the constant are fixed, they get applied before other provide methods. +- * See {@link auto.$provide#constant $provide.constant()}. +- */ +- constant: invokeLater('$provide', 'constant', 'unshift'), +- +- /** +- * @ngdoc method +- * @name angular.Module#animation +- * @module ng +- * @param {string} name animation name +- * @param {Function} animationFactory Factory function for creating new instance of an +- * animation. +- * @description +- * +- * **NOTE**: animations take effect only if the **ngAnimate** module is loaded. +- * +- * +- * Defines an animation hook that can be later used with +- * {@link ngAnimate.$animate $animate} service and directives that use this service. +- * +- * ```js +- * module.animation('.animation-name', function($inject1, $inject2) { +- * return { +- * eventName : function(element, done) { +- * //code to run the animation +- * //once complete, then run done() +- * return function cancellationFunction(element) { +- * //code to cancel the animation +- * } +- * } +- * } +- * }) +- * ``` +- * +- * See {@link ng.$animateProvider#register $animateProvider.register()} and +- * {@link ngAnimate ngAnimate module} for more information. +- */ +- animation: invokeLater('$animateProvider', 'register'), +- +- /** +- * @ngdoc method +- * @name angular.Module#filter +- * @module ng +- * @param {string} name Filter name. +- * @param {Function} filterFactory Factory function for creating new instance of filter. +- * @description +- * See {@link ng.$filterProvider#register $filterProvider.register()}. +- */ +- filter: invokeLater('$filterProvider', 'register'), +- +- /** +- * @ngdoc method +- * @name angular.Module#controller +- * @module ng +- * @param {string|Object} name Controller name, or an object map of controllers where the +- * keys are the names and the values are the constructors. +- * @param {Function} constructor Controller constructor function. +- * @description +- * See {@link ng.$controllerProvider#register $controllerProvider.register()}. +- */ +- controller: invokeLater('$controllerProvider', 'register'), +- +- /** +- * @ngdoc method +- * @name angular.Module#directive +- * @module ng +- * @param {string|Object} name Directive name, or an object map of directives where the +- * keys are the names and the values are the factories. +- * @param {Function} directiveFactory Factory function for creating new instance of +- * directives. +- * @description +- * See {@link ng.$compileProvider#directive $compileProvider.directive()}. +- */ +- directive: invokeLater('$compileProvider', 'directive'), +- +- /** +- * @ngdoc method +- * @name angular.Module#config +- * @module ng +- * @param {Function} configFn Execute this function on module load. Useful for service +- * configuration. +- * @description +- * Use this method to register work which needs to be performed on module loading. +- * For more about how to configure services, see +- * {@link providers#provider-recipe Provider Recipe}. +- */ +- config: config, +- +- /** +- * @ngdoc method +- * @name angular.Module#run +- * @module ng +- * @param {Function} initializationFn Execute this function after injector creation. +- * Useful for application initialization. +- * @description +- * Use this method to register work which should be performed when the injector is done +- * loading all modules. +- */ +- run: function(block) { +- runBlocks.push(block); +- return this; +- } +- }; +- +- if (configFn) { +- config(configFn); +- } +- +- return moduleInstance; +- +- /** +- * @param {string} provider +- * @param {string} method +- * @param {String=} insertMethod +- * @returns {angular.Module} +- */ +- function invokeLater(provider, method, insertMethod, queue) { +- if (!queue) queue = invokeQueue; +- return function() { +- queue[insertMethod || 'push']([provider, method, arguments]); +- return moduleInstance; +- }; +- } +- }); +- }; +- }); +- +-} +- +-/* global: toDebugString: true */ +- +-function serializeObject(obj) { +- var seen = []; +- +- return JSON.stringify(obj, function(key, val) { +- val = toJsonReplacer(key, val); +- if (isObject(val)) { +- +- if (seen.indexOf(val) >= 0) return '<<already seen>>'; +- +- seen.push(val); +- } +- return val; +- }); +-} +- +-function toDebugString(obj) { +- if (typeof obj === 'function') { +- return obj.toString().replace(/ \{[\s\S]*$/, ''); +- } else if (typeof obj === 'undefined') { +- return 'undefined'; +- } else if (typeof obj !== 'string') { +- return serializeObject(obj); +- } +- return obj; +-} +- +-/* global angularModule: true, +- version: true, +- +- $LocaleProvider, +- $CompileProvider, +- +- htmlAnchorDirective, +- inputDirective, +- inputDirective, +- formDirective, +- scriptDirective, +- selectDirective, +- styleDirective, +- optionDirective, +- ngBindDirective, +- ngBindHtmlDirective, +- ngBindTemplateDirective, +- ngClassDirective, +- ngClassEvenDirective, +- ngClassOddDirective, +- ngCspDirective, +- ngCloakDirective, +- ngControllerDirective, +- ngFormDirective, +- ngHideDirective, +- ngIfDirective, +- ngIncludeDirective, +- ngIncludeFillContentDirective, +- ngInitDirective, +- ngNonBindableDirective, +- ngPluralizeDirective, +- ngRepeatDirective, +- ngShowDirective, +- ngStyleDirective, +- ngSwitchDirective, +- ngSwitchWhenDirective, +- ngSwitchDefaultDirective, +- ngOptionsDirective, +- ngTranscludeDirective, +- ngModelDirective, +- ngListDirective, +- ngChangeDirective, +- patternDirective, +- patternDirective, +- requiredDirective, +- requiredDirective, +- minlengthDirective, +- minlengthDirective, +- maxlengthDirective, +- maxlengthDirective, +- ngValueDirective, +- ngModelOptionsDirective, +- ngAttributeAliasDirectives, +- ngEventDirectives, +- +- $AnchorScrollProvider, +- $AnimateProvider, +- $BrowserProvider, +- $CacheFactoryProvider, +- $ControllerProvider, +- $DocumentProvider, +- $ExceptionHandlerProvider, +- $FilterProvider, +- $InterpolateProvider, +- $IntervalProvider, +- $HttpProvider, +- $HttpBackendProvider, +- $LocationProvider, +- $LogProvider, +- $ParseProvider, +- $RootScopeProvider, +- $QProvider, +- $$QProvider, +- $$SanitizeUriProvider, +- $SceProvider, +- $SceDelegateProvider, +- $SnifferProvider, +- $TemplateCacheProvider, +- $TemplateRequestProvider, +- $$TestabilityProvider, +- $TimeoutProvider, +- $$RAFProvider, +- $$AsyncCallbackProvider, +- $WindowProvider, +- $$jqLiteProvider +-*/ +- +- +-/** +- * @ngdoc object +- * @name angular.version +- * @module ng +- * @description +- * An object that contains information about the current AngularJS version. This object has the +- * following properties: +- * +- * - `full` – `{string}` – Full version string, such as "0.9.18". +- * - `major` – `{number}` – Major version number, such as "0". +- * - `minor` – `{number}` – Minor version number, such as "9". +- * - `dot` – `{number}` – Dot version number, such as "18". +- * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". +- */ +-var version = { +- full: '1.3.15', // all of these placeholder strings will be replaced by grunt's +- major: 1, // package task +- minor: 3, +- dot: 15, +- codeName: 'locality-filtration' +-}; +- +- +-function publishExternalAPI(angular) { +- extend(angular, { +- 'bootstrap': bootstrap, +- 'copy': copy, +- 'extend': extend, +- 'equals': equals, +- 'element': jqLite, +- 'forEach': forEach, +- 'injector': createInjector, +- 'noop': noop, +- 'bind': bind, +- 'toJson': toJson, +- 'fromJson': fromJson, +- 'identity': identity, +- 'isUndefined': isUndefined, +- 'isDefined': isDefined, +- 'isString': isString, +- 'isFunction': isFunction, +- 'isObject': isObject, +- 'isNumber': isNumber, +- 'isElement': isElement, +- 'isArray': isArray, +- 'version': version, +- 'isDate': isDate, +- 'lowercase': lowercase, +- 'uppercase': uppercase, +- 'callbacks': {counter: 0}, +- 'getTestability': getTestability, +- '$$minErr': minErr, +- '$$csp': csp, +- 'reloadWithDebugInfo': reloadWithDebugInfo +- }); +- +- angularModule = setupModuleLoader(window); +- try { +- angularModule('ngLocale'); +- } catch (e) { +- angularModule('ngLocale', []).provider('$locale', $LocaleProvider); +- } +- +- angularModule('ng', ['ngLocale'], ['$provide', +- function ngModule($provide) { +- // $$sanitizeUriProvider needs to be before $compileProvider as it is used by it. +- $provide.provider({ +- $$sanitizeUri: $$SanitizeUriProvider +- }); +- $provide.provider('$compile', $CompileProvider). +- directive({ +- a: htmlAnchorDirective, +- input: inputDirective, +- textarea: inputDirective, +- form: formDirective, +- script: scriptDirective, +- select: selectDirective, +- style: styleDirective, +- option: optionDirective, +- ngBind: ngBindDirective, +- ngBindHtml: ngBindHtmlDirective, +- ngBindTemplate: ngBindTemplateDirective, +- ngClass: ngClassDirective, +- ngClassEven: ngClassEvenDirective, +- ngClassOdd: ngClassOddDirective, +- ngCloak: ngCloakDirective, +- ngController: ngControllerDirective, +- ngForm: ngFormDirective, +- ngHide: ngHideDirective, +- ngIf: ngIfDirective, +- ngInclude: ngIncludeDirective, +- ngInit: ngInitDirective, +- ngNonBindable: ngNonBindableDirective, +- ngPluralize: ngPluralizeDirective, +- ngRepeat: ngRepeatDirective, +- ngShow: ngShowDirective, +- ngStyle: ngStyleDirective, +- ngSwitch: ngSwitchDirective, +- ngSwitchWhen: ngSwitchWhenDirective, +- ngSwitchDefault: ngSwitchDefaultDirective, +- ngOptions: ngOptionsDirective, +- ngTransclude: ngTranscludeDirective, +- ngModel: ngModelDirective, +- ngList: ngListDirective, +- ngChange: ngChangeDirective, +- pattern: patternDirective, +- ngPattern: patternDirective, +- required: requiredDirective, +- ngRequired: requiredDirective, +- minlength: minlengthDirective, +- ngMinlength: minlengthDirective, +- maxlength: maxlengthDirective, +- ngMaxlength: maxlengthDirective, +- ngValue: ngValueDirective, +- ngModelOptions: ngModelOptionsDirective +- }). +- directive({ +- ngInclude: ngIncludeFillContentDirective +- }). +- directive(ngAttributeAliasDirectives). +- directive(ngEventDirectives); +- $provide.provider({ +- $anchorScroll: $AnchorScrollProvider, +- $animate: $AnimateProvider, +- $browser: $BrowserProvider, +- $cacheFactory: $CacheFactoryProvider, +- $controller: $ControllerProvider, +- $document: $DocumentProvider, +- $exceptionHandler: $ExceptionHandlerProvider, +- $filter: $FilterProvider, +- $interpolate: $InterpolateProvider, +- $interval: $IntervalProvider, +- $http: $HttpProvider, +- $httpBackend: $HttpBackendProvider, +- $location: $LocationProvider, +- $log: $LogProvider, +- $parse: $ParseProvider, +- $rootScope: $RootScopeProvider, +- $q: $QProvider, +- $$q: $$QProvider, +- $sce: $SceProvider, +- $sceDelegate: $SceDelegateProvider, +- $sniffer: $SnifferProvider, +- $templateCache: $TemplateCacheProvider, +- $templateRequest: $TemplateRequestProvider, +- $$testability: $$TestabilityProvider, +- $timeout: $TimeoutProvider, +- $window: $WindowProvider, +- $$rAF: $$RAFProvider, +- $$asyncCallback: $$AsyncCallbackProvider, +- $$jqLite: $$jqLiteProvider +- }); +- } +- ]); +-} +- +-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +- * Any commits to this file should be reviewed with security in mind. * +- * Changes to this file can potentially create security vulnerabilities. * +- * An approval from 2 Core members with history of modifying * +- * this file is required. * +- * * +- * Does the change somehow allow for arbitrary javascript to be executed? * +- * Or allows for someone to change the prototype of built-in objects? * +- * Or gives undesired access to variables likes document or window? * +- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +- +-/* global JQLitePrototype: true, +- addEventListenerFn: true, +- removeEventListenerFn: true, +- BOOLEAN_ATTR: true, +- ALIASED_ATTR: true, +-*/ +- +-////////////////////////////////// +-//JQLite +-////////////////////////////////// +- +-/** +- * @ngdoc function +- * @name angular.element +- * @module ng +- * @kind function +- * +- * @description +- * Wraps a raw DOM element or HTML string as a [jQuery](http://jquery.com) element. +- * +- * If jQuery is available, `angular.element` is an alias for the +- * [jQuery](http://api.jquery.com/jQuery/) function. If jQuery is not available, `angular.element` +- * delegates to Angular's built-in subset of jQuery, called "jQuery lite" or "jqLite." +- * +- * <div class="alert alert-success">jqLite is a tiny, API-compatible subset of jQuery that allows +- * Angular to manipulate the DOM in a cross-browser compatible way. **jqLite** implements only the most +- * commonly needed functionality with the goal of having a very small footprint.</div> +- * +- * To use jQuery, simply load it before `DOMContentLoaded` event fired. +- * +- * <div class="alert">**Note:** all element references in Angular are always wrapped with jQuery or +- * jqLite; they are never raw DOM references.</div> +- * +- * ## Angular's jqLite +- * jqLite provides only the following jQuery methods: +- * +- * - [`addClass()`](http://api.jquery.com/addClass/) +- * - [`after()`](http://api.jquery.com/after/) +- * - [`append()`](http://api.jquery.com/append/) +- * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters +- * - [`bind()`](http://api.jquery.com/bind/) - Does not support namespaces, selectors or eventData +- * - [`children()`](http://api.jquery.com/children/) - Does not support selectors +- * - [`clone()`](http://api.jquery.com/clone/) +- * - [`contents()`](http://api.jquery.com/contents/) +- * - [`css()`](http://api.jquery.com/css/) - Only retrieves inline-styles, does not call `getComputedStyle()` +- * - [`data()`](http://api.jquery.com/data/) +- * - [`detach()`](http://api.jquery.com/detach/) +- * - [`empty()`](http://api.jquery.com/empty/) +- * - [`eq()`](http://api.jquery.com/eq/) +- * - [`find()`](http://api.jquery.com/find/) - Limited to lookups by tag name +- * - [`hasClass()`](http://api.jquery.com/hasClass/) +- * - [`html()`](http://api.jquery.com/html/) +- * - [`next()`](http://api.jquery.com/next/) - Does not support selectors +- * - [`on()`](http://api.jquery.com/on/) - Does not support namespaces, selectors or eventData +- * - [`off()`](http://api.jquery.com/off/) - Does not support namespaces or selectors +- * - [`one()`](http://api.jquery.com/one/) - Does not support namespaces or selectors +- * - [`parent()`](http://api.jquery.com/parent/) - Does not support selectors +- * - [`prepend()`](http://api.jquery.com/prepend/) +- * - [`prop()`](http://api.jquery.com/prop/) +- * - [`ready()`](http://api.jquery.com/ready/) +- * - [`remove()`](http://api.jquery.com/remove/) +- * - [`removeAttr()`](http://api.jquery.com/removeAttr/) +- * - [`removeClass()`](http://api.jquery.com/removeClass/) +- * - [`removeData()`](http://api.jquery.com/removeData/) +- * - [`replaceWith()`](http://api.jquery.com/replaceWith/) +- * - [`text()`](http://api.jquery.com/text/) +- * - [`toggleClass()`](http://api.jquery.com/toggleClass/) +- * - [`triggerHandler()`](http://api.jquery.com/triggerHandler/) - Passes a dummy event object to handlers. +- * - [`unbind()`](http://api.jquery.com/unbind/) - Does not support namespaces +- * - [`val()`](http://api.jquery.com/val/) +- * - [`wrap()`](http://api.jquery.com/wrap/) +- * +- * ## jQuery/jqLite Extras +- * Angular also provides the following additional methods and events to both jQuery and jqLite: +- * +- * ### Events +- * - `$destroy` - AngularJS intercepts all jqLite/jQuery's DOM destruction apis and fires this event +- * on all DOM nodes being removed. This can be used to clean up any 3rd party bindings to the DOM +- * element before it is removed. +- * +- * ### Methods +- * - `controller(name)` - retrieves the controller of the current element or its parent. By default +- * retrieves controller associated with the `ngController` directive. If `name` is provided as +- * camelCase directive name, then the controller for this directive will be retrieved (e.g. +- * `'ngModel'`). +- * - `injector()` - retrieves the injector of the current element or its parent. +- * - `scope()` - retrieves the {@link ng.$rootScope.Scope scope} of the current +- * element or its parent. Requires {@link guide/production#disabling-debug-data Debug Data} to +- * be enabled. +- * - `isolateScope()` - retrieves an isolate {@link ng.$rootScope.Scope scope} if one is attached directly to the +- * current element. This getter should be used only on elements that contain a directive which starts a new isolate +- * scope. Calling `scope()` on this element always returns the original non-isolate scope. +- * Requires {@link guide/production#disabling-debug-data Debug Data} to be enabled. +- * - `inheritedData()` - same as `data()`, but walks up the DOM until a value is found or the top +- * parent element is reached. +- * +- * @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery. +- * @returns {Object} jQuery object. +- */ +- +-JQLite.expando = 'ng339'; +- +-var jqCache = JQLite.cache = {}, +- jqId = 1, +- addEventListenerFn = function(element, type, fn) { +- element.addEventListener(type, fn, false); +- }, +- removeEventListenerFn = function(element, type, fn) { +- element.removeEventListener(type, fn, false); +- }; +- +-/* +- * !!! This is an undocumented "private" function !!! +- */ +-JQLite._data = function(node) { +- //jQuery always returns an object on cache miss +- return this.cache[node[this.expando]] || {}; +-}; +- +-function jqNextId() { return ++jqId; } +- +- +-var SPECIAL_CHARS_REGEXP = /([\:\-\_]+(.))/g; +-var MOZ_HACK_REGEXP = /^moz([A-Z])/; +-var MOUSE_EVENT_MAP= { mouseleave: "mouseout", mouseenter: "mouseover"}; +-var jqLiteMinErr = minErr('jqLite'); +- +-/** +- * Converts snake_case to camelCase. +- * Also there is special case for Moz prefix starting with upper case letter. +- * @param name Name to normalize +- */ +-function camelCase(name) { +- return name. +- replace(SPECIAL_CHARS_REGEXP, function(_, separator, letter, offset) { +- return offset ? letter.toUpperCase() : letter; +- }). +- replace(MOZ_HACK_REGEXP, 'Moz$1'); +-} +- +-var SINGLE_TAG_REGEXP = /^<(\w+)\s*\/?>(?:<\/\1>|)$/; +-var HTML_REGEXP = /<|&#?\w+;/; +-var TAG_NAME_REGEXP = /<([\w:]+)/; +-var XHTML_TAG_REGEXP = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi; +- +-var wrapMap = { +- 'option': [1, '<select multiple="multiple">', '</select>'], +- +- 'thead': [1, '<table>', '</table>'], +- 'col': [2, '<table><colgroup>', '</colgroup></table>'], +- 'tr': [2, '<table><tbody>', '</tbody></table>'], +- 'td': [3, '<table><tbody><tr>', '</tr></tbody></table>'], +- '_default': [0, "", ""] +-}; +- +-wrapMap.optgroup = wrapMap.option; +-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +-wrapMap.th = wrapMap.td; +- +- +-function jqLiteIsTextNode(html) { +- return !HTML_REGEXP.test(html); +-} +- +-function jqLiteAcceptsData(node) { +- // The window object can accept data but has no nodeType +- // Otherwise we are only interested in elements (1) and documents (9) +- var nodeType = node.nodeType; +- return nodeType === NODE_TYPE_ELEMENT || !nodeType || nodeType === NODE_TYPE_DOCUMENT; +-} +- +-function jqLiteBuildFragment(html, context) { +- var tmp, tag, wrap, +- fragment = context.createDocumentFragment(), +- nodes = [], i; +- +- if (jqLiteIsTextNode(html)) { +- // Convert non-html into a text node +- nodes.push(context.createTextNode(html)); +- } else { +- // Convert html into DOM nodes +- tmp = tmp || fragment.appendChild(context.createElement("div")); +- tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase(); +- wrap = wrapMap[tag] || wrapMap._default; +- tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1></$2>") + wrap[2]; +- +- // Descend through wrappers to the right content +- i = wrap[0]; +- while (i--) { +- tmp = tmp.lastChild; +- } +- +- nodes = concat(nodes, tmp.childNodes); +- +- tmp = fragment.firstChild; +- tmp.textContent = ""; +- } +- +- // Remove wrapper from fragment +- fragment.textContent = ""; +- fragment.innerHTML = ""; // Clear inner HTML +- forEach(nodes, function(node) { +- fragment.appendChild(node); +- }); +- +- return fragment; +-} +- +-function jqLiteParseHTML(html, context) { +- context = context || document; +- var parsed; +- +- if ((parsed = SINGLE_TAG_REGEXP.exec(html))) { +- return [context.createElement(parsed[1])]; +- } +- +- if ((parsed = jqLiteBuildFragment(html, context))) { +- return parsed.childNodes; +- } +- +- return []; +-} +- +-///////////////////////////////////////////// +-function JQLite(element) { +- if (element instanceof JQLite) { +- return element; +- } +- +- var argIsString; +- +- if (isString(element)) { +- element = trim(element); +- argIsString = true; +- } +- if (!(this instanceof JQLite)) { +- if (argIsString && element.charAt(0) != '<') { +- throw jqLiteMinErr('nosel', 'Looking up elements via selectors is not supported by jqLite! See: http://docs.angularjs.org/api/angular.element'); +- } +- return new JQLite(element); +- } +- +- if (argIsString) { +- jqLiteAddNodes(this, jqLiteParseHTML(element)); +- } else { +- jqLiteAddNodes(this, element); +- } +-} +- +-function jqLiteClone(element) { +- return element.cloneNode(true); +-} +- +-function jqLiteDealoc(element, onlyDescendants) { +- if (!onlyDescendants) jqLiteRemoveData(element); +- +- if (element.querySelectorAll) { +- var descendants = element.querySelectorAll('*'); +- for (var i = 0, l = descendants.length; i < l; i++) { +- jqLiteRemoveData(descendants[i]); +- } +- } +-} +- +-function jqLiteOff(element, type, fn, unsupported) { +- if (isDefined(unsupported)) throw jqLiteMinErr('offargs', 'jqLite#off() does not support the `selector` argument'); +- +- var expandoStore = jqLiteExpandoStore(element); +- var events = expandoStore && expandoStore.events; +- var handle = expandoStore && expandoStore.handle; +- +- if (!handle) return; //no listeners registered +- +- if (!type) { +- for (type in events) { +- if (type !== '$destroy') { +- removeEventListenerFn(element, type, handle); +- } +- delete events[type]; +- } +- } else { +- forEach(type.split(' '), function(type) { +- if (isDefined(fn)) { +- var listenerFns = events[type]; +- arrayRemove(listenerFns || [], fn); +- if (listenerFns && listenerFns.length > 0) { +- return; +- } +- } +- +- removeEventListenerFn(element, type, handle); +- delete events[type]; +- }); +- } +-} +- +-function jqLiteRemoveData(element, name) { +- var expandoId = element.ng339; +- var expandoStore = expandoId && jqCache[expandoId]; +- +- if (expandoStore) { +- if (name) { +- delete expandoStore.data[name]; +- return; +- } +- +- if (expandoStore.handle) { +- if (expandoStore.events.$destroy) { +- expandoStore.handle({}, '$destroy'); +- } +- jqLiteOff(element); +- } +- delete jqCache[expandoId]; +- element.ng339 = undefined; // don't delete DOM expandos. IE and Chrome don't like it +- } +-} +- +- +-function jqLiteExpandoStore(element, createIfNecessary) { +- var expandoId = element.ng339, +- expandoStore = expandoId && jqCache[expandoId]; +- +- if (createIfNecessary && !expandoStore) { +- element.ng339 = expandoId = jqNextId(); +- expandoStore = jqCache[expandoId] = {events: {}, data: {}, handle: undefined}; +- } +- +- return expandoStore; +-} +- +- +-function jqLiteData(element, key, value) { +- if (jqLiteAcceptsData(element)) { +- +- var isSimpleSetter = isDefined(value); +- var isSimpleGetter = !isSimpleSetter && key && !isObject(key); +- var massGetter = !key; +- var expandoStore = jqLiteExpandoStore(element, !isSimpleGetter); +- var data = expandoStore && expandoStore.data; +- +- if (isSimpleSetter) { // data('key', value) +- data[key] = value; +- } else { +- if (massGetter) { // data() +- return data; +- } else { +- if (isSimpleGetter) { // data('key') +- // don't force creation of expandoStore if it doesn't exist yet +- return data && data[key]; +- } else { // mass-setter: data({key1: val1, key2: val2}) +- extend(data, key); +- } +- } +- } +- } +-} +- +-function jqLiteHasClass(element, selector) { +- if (!element.getAttribute) return false; +- return ((" " + (element.getAttribute('class') || '') + " ").replace(/[\n\t]/g, " "). +- indexOf(" " + selector + " ") > -1); +-} +- +-function jqLiteRemoveClass(element, cssClasses) { +- if (cssClasses && element.setAttribute) { +- forEach(cssClasses.split(' '), function(cssClass) { +- element.setAttribute('class', trim( +- (" " + (element.getAttribute('class') || '') + " ") +- .replace(/[\n\t]/g, " ") +- .replace(" " + trim(cssClass) + " ", " ")) +- ); +- }); +- } +-} +- +-function jqLiteAddClass(element, cssClasses) { +- if (cssClasses && element.setAttribute) { +- var existingClasses = (' ' + (element.getAttribute('class') || '') + ' ') +- .replace(/[\n\t]/g, " "); +- +- forEach(cssClasses.split(' '), function(cssClass) { +- cssClass = trim(cssClass); +- if (existingClasses.indexOf(' ' + cssClass + ' ') === -1) { +- existingClasses += cssClass + ' '; +- } +- }); +- +- element.setAttribute('class', trim(existingClasses)); +- } +-} +- +- +-function jqLiteAddNodes(root, elements) { +- // THIS CODE IS VERY HOT. Don't make changes without benchmarking. +- +- if (elements) { +- +- // if a Node (the most common case) +- if (elements.nodeType) { +- root[root.length++] = elements; +- } else { +- var length = elements.length; +- +- // if an Array or NodeList and not a Window +- if (typeof length === 'number' && elements.window !== elements) { +- if (length) { +- for (var i = 0; i < length; i++) { +- root[root.length++] = elements[i]; +- } +- } +- } else { +- root[root.length++] = elements; +- } +- } +- } +-} +- +- +-function jqLiteController(element, name) { +- return jqLiteInheritedData(element, '$' + (name || 'ngController') + 'Controller'); +-} +- +-function jqLiteInheritedData(element, name, value) { +- // if element is the document object work with the html element instead +- // this makes $(document).scope() possible +- if (element.nodeType == NODE_TYPE_DOCUMENT) { +- element = element.documentElement; +- } +- var names = isArray(name) ? name : [name]; +- +- while (element) { +- for (var i = 0, ii = names.length; i < ii; i++) { +- if ((value = jqLite.data(element, names[i])) !== undefined) return value; +- } +- +- // If dealing with a document fragment node with a host element, and no parent, use the host +- // element as the parent. This enables directives within a Shadow DOM or polyfilled Shadow DOM +- // to lookup parent controllers. +- element = element.parentNode || (element.nodeType === NODE_TYPE_DOCUMENT_FRAGMENT && element.host); +- } +-} +- +-function jqLiteEmpty(element) { +- jqLiteDealoc(element, true); +- while (element.firstChild) { +- element.removeChild(element.firstChild); +- } +-} +- +-function jqLiteRemove(element, keepData) { +- if (!keepData) jqLiteDealoc(element); +- var parent = element.parentNode; +- if (parent) parent.removeChild(element); +-} +- +- +-function jqLiteDocumentLoaded(action, win) { +- win = win || window; +- if (win.document.readyState === 'complete') { +- // Force the action to be run async for consistent behaviour +- // from the action's point of view +- // i.e. it will definitely not be in a $apply +- win.setTimeout(action); +- } else { +- // No need to unbind this handler as load is only ever called once +- jqLite(win).on('load', action); +- } +-} +- +-////////////////////////////////////////// +-// Functions which are declared directly. +-////////////////////////////////////////// +-var JQLitePrototype = JQLite.prototype = { +- ready: function(fn) { +- var fired = false; +- +- function trigger() { +- if (fired) return; +- fired = true; +- fn(); +- } +- +- // check if document is already loaded +- if (document.readyState === 'complete') { +- setTimeout(trigger); +- } else { +- this.on('DOMContentLoaded', trigger); // works for modern browsers and IE9 +- // we can not use jqLite since we are not done loading and jQuery could be loaded later. +- // jshint -W064 +- JQLite(window).on('load', trigger); // fallback to window.onload for others +- // jshint +W064 +- } +- }, +- toString: function() { +- var value = []; +- forEach(this, function(e) { value.push('' + e);}); +- return '[' + value.join(', ') + ']'; +- }, +- +- eq: function(index) { +- return (index >= 0) ? jqLite(this[index]) : jqLite(this[this.length + index]); +- }, +- +- length: 0, +- push: push, +- sort: [].sort, +- splice: [].splice +-}; +- +-////////////////////////////////////////// +-// Functions iterating getter/setters. +-// these functions return self on setter and +-// value on get. +-////////////////////////////////////////// +-var BOOLEAN_ATTR = {}; +-forEach('multiple,selected,checked,disabled,readOnly,required,open'.split(','), function(value) { +- BOOLEAN_ATTR[lowercase(value)] = value; +-}); +-var BOOLEAN_ELEMENTS = {}; +-forEach('input,select,option,textarea,button,form,details'.split(','), function(value) { +- BOOLEAN_ELEMENTS[value] = true; +-}); +-var ALIASED_ATTR = { +- 'ngMinlength': 'minlength', +- 'ngMaxlength': 'maxlength', +- 'ngMin': 'min', +- 'ngMax': 'max', +- 'ngPattern': 'pattern' +-}; +- +-function getBooleanAttrName(element, name) { +- // check dom last since we will most likely fail on name +- var booleanAttr = BOOLEAN_ATTR[name.toLowerCase()]; +- +- // booleanAttr is here twice to minimize DOM access +- return booleanAttr && BOOLEAN_ELEMENTS[nodeName_(element)] && booleanAttr; +-} +- +-function getAliasedAttrName(element, name) { +- var nodeName = element.nodeName; +- return (nodeName === 'INPUT' || nodeName === 'TEXTAREA') && ALIASED_ATTR[name]; +-} +- +-forEach({ +- data: jqLiteData, +- removeData: jqLiteRemoveData +-}, function(fn, name) { +- JQLite[name] = fn; +-}); +- +-forEach({ +- data: jqLiteData, +- inheritedData: jqLiteInheritedData, +- +- scope: function(element) { +- // Can't use jqLiteData here directly so we stay compatible with jQuery! +- return jqLite.data(element, '$scope') || jqLiteInheritedData(element.parentNode || element, ['$isolateScope', '$scope']); +- }, +- +- isolateScope: function(element) { +- // Can't use jqLiteData here directly so we stay compatible with jQuery! +- return jqLite.data(element, '$isolateScope') || jqLite.data(element, '$isolateScopeNoTemplate'); +- }, +- +- controller: jqLiteController, +- +- injector: function(element) { +- return jqLiteInheritedData(element, '$injector'); +- }, +- +- removeAttr: function(element, name) { +- element.removeAttribute(name); +- }, +- +- hasClass: jqLiteHasClass, +- +- css: function(element, name, value) { +- name = camelCase(name); +- +- if (isDefined(value)) { +- element.style[name] = value; +- } else { +- return element.style[name]; +- } +- }, +- +- attr: function(element, name, value) { +- var lowercasedName = lowercase(name); +- if (BOOLEAN_ATTR[lowercasedName]) { +- if (isDefined(value)) { +- if (!!value) { +- element[name] = true; +- element.setAttribute(name, lowercasedName); +- } else { +- element[name] = false; +- element.removeAttribute(lowercasedName); +- } +- } else { +- return (element[name] || +- (element.attributes.getNamedItem(name) || noop).specified) +- ? lowercasedName +- : undefined; +- } +- } else if (isDefined(value)) { +- element.setAttribute(name, value); +- } else if (element.getAttribute) { +- // the extra argument "2" is to get the right thing for a.href in IE, see jQuery code +- // some elements (e.g. Document) don't have get attribute, so return undefined +- var ret = element.getAttribute(name, 2); +- // normalize non-existing attributes to undefined (as jQuery) +- return ret === null ? undefined : ret; +- } +- }, +- +- prop: function(element, name, value) { +- if (isDefined(value)) { +- element[name] = value; +- } else { +- return element[name]; +- } +- }, +- +- text: (function() { +- getText.$dv = ''; +- return getText; +- +- function getText(element, value) { +- if (isUndefined(value)) { +- var nodeType = element.nodeType; +- return (nodeType === NODE_TYPE_ELEMENT || nodeType === NODE_TYPE_TEXT) ? element.textContent : ''; +- } +- element.textContent = value; +- } +- })(), +- +- val: function(element, value) { +- if (isUndefined(value)) { +- if (element.multiple && nodeName_(element) === 'select') { +- var result = []; +- forEach(element.options, function(option) { +- if (option.selected) { +- result.push(option.value || option.text); +- } +- }); +- return result.length === 0 ? null : result; +- } +- return element.value; +- } +- element.value = value; +- }, +- +- html: function(element, value) { +- if (isUndefined(value)) { +- return element.innerHTML; +- } +- jqLiteDealoc(element, true); +- element.innerHTML = value; +- }, +- +- empty: jqLiteEmpty +-}, function(fn, name) { +- /** +- * Properties: writes return selection, reads return first value +- */ +- JQLite.prototype[name] = function(arg1, arg2) { +- var i, key; +- var nodeCount = this.length; +- +- // jqLiteHasClass has only two arguments, but is a getter-only fn, so we need to special-case it +- // in a way that survives minification. +- // jqLiteEmpty takes no arguments but is a setter. +- if (fn !== jqLiteEmpty && +- (((fn.length == 2 && (fn !== jqLiteHasClass && fn !== jqLiteController)) ? arg1 : arg2) === undefined)) { +- if (isObject(arg1)) { +- +- // we are a write, but the object properties are the key/values +- for (i = 0; i < nodeCount; i++) { +- if (fn === jqLiteData) { +- // data() takes the whole object in jQuery +- fn(this[i], arg1); +- } else { +- for (key in arg1) { +- fn(this[i], key, arg1[key]); +- } +- } +- } +- // return self for chaining +- return this; +- } else { +- // we are a read, so read the first child. +- // TODO: do we still need this? +- var value = fn.$dv; +- // Only if we have $dv do we iterate over all, otherwise it is just the first element. +- var jj = (value === undefined) ? Math.min(nodeCount, 1) : nodeCount; +- for (var j = 0; j < jj; j++) { +- var nodeValue = fn(this[j], arg1, arg2); +- value = value ? value + nodeValue : nodeValue; +- } +- return value; +- } +- } else { +- // we are a write, so apply to all children +- for (i = 0; i < nodeCount; i++) { +- fn(this[i], arg1, arg2); +- } +- // return self for chaining +- return this; +- } +- }; +-}); +- +-function createEventHandler(element, events) { +- var eventHandler = function(event, type) { +- // jQuery specific api +- event.isDefaultPrevented = function() { +- return event.defaultPrevented; +- }; +- +- var eventFns = events[type || event.type]; +- var eventFnsLength = eventFns ? eventFns.length : 0; +- +- if (!eventFnsLength) return; +- +- if (isUndefined(event.immediatePropagationStopped)) { +- var originalStopImmediatePropagation = event.stopImmediatePropagation; +- event.stopImmediatePropagation = function() { +- event.immediatePropagationStopped = true; +- +- if (event.stopPropagation) { +- event.stopPropagation(); +- } +- +- if (originalStopImmediatePropagation) { +- originalStopImmediatePropagation.call(event); +- } +- }; +- } +- +- event.isImmediatePropagationStopped = function() { +- return event.immediatePropagationStopped === true; +- }; +- +- // Copy event handlers in case event handlers array is modified during execution. +- if ((eventFnsLength > 1)) { +- eventFns = shallowCopy(eventFns); +- } +- +- for (var i = 0; i < eventFnsLength; i++) { +- if (!event.isImmediatePropagationStopped()) { +- eventFns[i].call(element, event); +- } +- } +- }; +- +- // TODO: this is a hack for angularMocks/clearDataCache that makes it possible to deregister all +- // events on `element` +- eventHandler.elem = element; +- return eventHandler; +-} +- +-////////////////////////////////////////// +-// Functions iterating traversal. +-// These functions chain results into a single +-// selector. +-////////////////////////////////////////// +-forEach({ +- removeData: jqLiteRemoveData, +- +- on: function jqLiteOn(element, type, fn, unsupported) { +- if (isDefined(unsupported)) throw jqLiteMinErr('onargs', 'jqLite#on() does not support the `selector` or `eventData` parameters'); +- +- // Do not add event handlers to non-elements because they will not be cleaned up. +- if (!jqLiteAcceptsData(element)) { +- return; +- } +- +- var expandoStore = jqLiteExpandoStore(element, true); +- var events = expandoStore.events; +- var handle = expandoStore.handle; +- +- if (!handle) { +- handle = expandoStore.handle = createEventHandler(element, events); +- } +- +- // http://jsperf.com/string-indexof-vs-split +- var types = type.indexOf(' ') >= 0 ? type.split(' ') : [type]; +- var i = types.length; +- +- while (i--) { +- type = types[i]; +- var eventFns = events[type]; +- +- if (!eventFns) { +- events[type] = []; +- +- if (type === 'mouseenter' || type === 'mouseleave') { +- // Refer to jQuery's implementation of mouseenter & mouseleave +- // Read about mouseenter and mouseleave: +- // http://www.quirksmode.org/js/events_mouse.html#link8 +- +- jqLiteOn(element, MOUSE_EVENT_MAP[type], function(event) { +- var target = this, related = event.relatedTarget; +- // For mousenter/leave call the handler if related is outside the target. +- // NB: No relatedTarget if the mouse left/entered the browser window +- if (!related || (related !== target && !target.contains(related))) { +- handle(event, type); +- } +- }); +- +- } else { +- if (type !== '$destroy') { +- addEventListenerFn(element, type, handle); +- } +- } +- eventFns = events[type]; +- } +- eventFns.push(fn); +- } +- }, +- +- off: jqLiteOff, +- +- one: function(element, type, fn) { +- element = jqLite(element); +- +- //add the listener twice so that when it is called +- //you can remove the original function and still be +- //able to call element.off(ev, fn) normally +- element.on(type, function onFn() { +- element.off(type, fn); +- element.off(type, onFn); +- }); +- element.on(type, fn); +- }, +- +- replaceWith: function(element, replaceNode) { +- var index, parent = element.parentNode; +- jqLiteDealoc(element); +- forEach(new JQLite(replaceNode), function(node) { +- if (index) { +- parent.insertBefore(node, index.nextSibling); +- } else { +- parent.replaceChild(node, element); +- } +- index = node; +- }); +- }, +- +- children: function(element) { +- var children = []; +- forEach(element.childNodes, function(element) { +- if (element.nodeType === NODE_TYPE_ELEMENT) +- children.push(element); +- }); +- return children; +- }, +- +- contents: function(element) { +- return element.contentDocument || element.childNodes || []; +- }, +- +- append: function(element, node) { +- var nodeType = element.nodeType; +- if (nodeType !== NODE_TYPE_ELEMENT && nodeType !== NODE_TYPE_DOCUMENT_FRAGMENT) return; +- +- node = new JQLite(node); +- +- for (var i = 0, ii = node.length; i < ii; i++) { +- var child = node[i]; +- element.appendChild(child); +- } +- }, +- +- prepend: function(element, node) { +- if (element.nodeType === NODE_TYPE_ELEMENT) { +- var index = element.firstChild; +- forEach(new JQLite(node), function(child) { +- element.insertBefore(child, index); +- }); +- } +- }, +- +- wrap: function(element, wrapNode) { +- wrapNode = jqLite(wrapNode).eq(0).clone()[0]; +- var parent = element.parentNode; +- if (parent) { +- parent.replaceChild(wrapNode, element); +- } +- wrapNode.appendChild(element); +- }, +- +- remove: jqLiteRemove, +- +- detach: function(element) { +- jqLiteRemove(element, true); +- }, +- +- after: function(element, newElement) { +- var index = element, parent = element.parentNode; +- newElement = new JQLite(newElement); +- +- for (var i = 0, ii = newElement.length; i < ii; i++) { +- var node = newElement[i]; +- parent.insertBefore(node, index.nextSibling); +- index = node; +- } +- }, +- +- addClass: jqLiteAddClass, +- removeClass: jqLiteRemoveClass, +- +- toggleClass: function(element, selector, condition) { +- if (selector) { +- forEach(selector.split(' '), function(className) { +- var classCondition = condition; +- if (isUndefined(classCondition)) { +- classCondition = !jqLiteHasClass(element, className); +- } +- (classCondition ? jqLiteAddClass : jqLiteRemoveClass)(element, className); +- }); +- } +- }, +- +- parent: function(element) { +- var parent = element.parentNode; +- return parent && parent.nodeType !== NODE_TYPE_DOCUMENT_FRAGMENT ? parent : null; +- }, +- +- next: function(element) { +- return element.nextElementSibling; +- }, +- +- find: function(element, selector) { +- if (element.getElementsByTagName) { +- return element.getElementsByTagName(selector); +- } else { +- return []; +- } +- }, +- +- clone: jqLiteClone, +- +- triggerHandler: function(element, event, extraParameters) { +- +- var dummyEvent, eventFnsCopy, handlerArgs; +- var eventName = event.type || event; +- var expandoStore = jqLiteExpandoStore(element); +- var events = expandoStore && expandoStore.events; +- var eventFns = events && events[eventName]; +- +- if (eventFns) { +- // Create a dummy event to pass to the handlers +- dummyEvent = { +- preventDefault: function() { this.defaultPrevented = true; }, +- isDefaultPrevented: function() { return this.defaultPrevented === true; }, +- stopImmediatePropagation: function() { this.immediatePropagationStopped = true; }, +- isImmediatePropagationStopped: function() { return this.immediatePropagationStopped === true; }, +- stopPropagation: noop, +- type: eventName, +- target: element +- }; +- +- // If a custom event was provided then extend our dummy event with it +- if (event.type) { +- dummyEvent = extend(dummyEvent, event); +- } +- +- // Copy event handlers in case event handlers array is modified during execution. +- eventFnsCopy = shallowCopy(eventFns); +- handlerArgs = extraParameters ? [dummyEvent].concat(extraParameters) : [dummyEvent]; +- +- forEach(eventFnsCopy, function(fn) { +- if (!dummyEvent.isImmediatePropagationStopped()) { +- fn.apply(element, handlerArgs); +- } +- }); +- } +- } +-}, function(fn, name) { +- /** +- * chaining functions +- */ +- JQLite.prototype[name] = function(arg1, arg2, arg3) { +- var value; +- +- for (var i = 0, ii = this.length; i < ii; i++) { +- if (isUndefined(value)) { +- value = fn(this[i], arg1, arg2, arg3); +- if (isDefined(value)) { +- // any function which returns a value needs to be wrapped +- value = jqLite(value); +- } +- } else { +- jqLiteAddNodes(value, fn(this[i], arg1, arg2, arg3)); +- } +- } +- return isDefined(value) ? value : this; +- }; +- +- // bind legacy bind/unbind to on/off +- JQLite.prototype.bind = JQLite.prototype.on; +- JQLite.prototype.unbind = JQLite.prototype.off; +-}); +- +- +-// Provider for private $$jqLite service +-function $$jqLiteProvider() { +- this.$get = function $$jqLite() { +- return extend(JQLite, { +- hasClass: function(node, classes) { +- if (node.attr) node = node[0]; +- return jqLiteHasClass(node, classes); +- }, +- addClass: function(node, classes) { +- if (node.attr) node = node[0]; +- return jqLiteAddClass(node, classes); +- }, +- removeClass: function(node, classes) { +- if (node.attr) node = node[0]; +- return jqLiteRemoveClass(node, classes); +- } +- }); +- }; +-} +- +-/** +- * Computes a hash of an 'obj'. +- * Hash of a: +- * string is string +- * number is number as string +- * object is either result of calling $$hashKey function on the object or uniquely generated id, +- * that is also assigned to the $$hashKey property of the object. +- * +- * @param obj +- * @returns {string} hash string such that the same input will have the same hash string. +- * The resulting string key is in 'type:hashKey' format. +- */ +-function hashKey(obj, nextUidFn) { +- var key = obj && obj.$$hashKey; +- +- if (key) { +- if (typeof key === 'function') { +- key = obj.$$hashKey(); +- } +- return key; +- } +- +- var objType = typeof obj; +- if (objType == 'function' || (objType == 'object' && obj !== null)) { +- key = obj.$$hashKey = objType + ':' + (nextUidFn || nextUid)(); +- } else { +- key = objType + ':' + obj; +- } +- +- return key; +-} +- +-/** +- * HashMap which can use objects as keys +- */ +-function HashMap(array, isolatedUid) { +- if (isolatedUid) { +- var uid = 0; +- this.nextUid = function() { +- return ++uid; +- }; +- } +- forEach(array, this.put, this); +-} +-HashMap.prototype = { +- /** +- * Store key value pair +- * @param key key to store can be any type +- * @param value value to store can be any type +- */ +- put: function(key, value) { +- this[hashKey(key, this.nextUid)] = value; +- }, +- +- /** +- * @param key +- * @returns {Object} the value for the key +- */ +- get: function(key) { +- return this[hashKey(key, this.nextUid)]; +- }, +- +- /** +- * Remove the key/value pair +- * @param key +- */ +- remove: function(key) { +- var value = this[key = hashKey(key, this.nextUid)]; +- delete this[key]; +- return value; +- } +-}; +- +-/** +- * @ngdoc function +- * @module ng +- * @name angular.injector +- * @kind function +- * +- * @description +- * Creates an injector object that can be used for retrieving services as well as for +- * dependency injection (see {@link guide/di dependency injection}). +- * +- * @param {Array.<string|Function>} modules A list of module functions or their aliases. See +- * {@link angular.module}. The `ng` module must be explicitly added. +- * @param {boolean=} [strictDi=false] Whether the injector should be in strict mode, which +- * disallows argument name annotation inference. +- * @returns {injector} Injector object. See {@link auto.$injector $injector}. +- * +- * @example +- * Typical usage +- * ```js +- * // create an injector +- * var $injector = angular.injector(['ng']); +- * +- * // use the injector to kick off your application +- * // use the type inference to auto inject arguments, or use implicit injection +- * $injector.invoke(function($rootScope, $compile, $document) { +- * $compile($document)($rootScope); +- * $rootScope.$digest(); +- * }); +- * ``` +- * +- * Sometimes you want to get access to the injector of a currently running Angular app +- * from outside Angular. Perhaps, you want to inject and compile some markup after the +- * application has been bootstrapped. You can do this using the extra `injector()` added +- * to JQuery/jqLite elements. See {@link angular.element}. +- * +- * *This is fairly rare but could be the case if a third party library is injecting the +- * markup.* +- * +- * In the following example a new block of HTML containing a `ng-controller` +- * directive is added to the end of the document body by JQuery. We then compile and link +- * it into the current AngularJS scope. +- * +- * ```js +- * var $div = $('<div ng-controller="MyCtrl">{{content.label}}</div>'); +- * $(document.body).append($div); +- * +- * angular.element(document).injector().invoke(function($compile) { +- * var scope = angular.element($div).scope(); +- * $compile($div)(scope); +- * }); +- * ``` +- */ +- +- +-/** +- * @ngdoc module +- * @name auto +- * @description +- * +- * Implicit module which gets automatically added to each {@link auto.$injector $injector}. +- */ +- +-var FN_ARGS = /^function\s*[^\(]*\(\s*([^\)]*)\)/m; +-var FN_ARG_SPLIT = /,/; +-var FN_ARG = /^\s*(_?)(\S+?)\1\s*$/; +-var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg; +-var $injectorMinErr = minErr('$injector'); +- +-function anonFn(fn) { +- // For anonymous functions, showing at the very least the function signature can help in +- // debugging. +- var fnText = fn.toString().replace(STRIP_COMMENTS, ''), +- args = fnText.match(FN_ARGS); +- if (args) { +- return 'function(' + (args[1] || '').replace(/[\s\r\n]+/, ' ') + ')'; +- } +- return 'fn'; +-} +- +-function annotate(fn, strictDi, name) { +- var $inject, +- fnText, +- argDecl, +- last; +- +- if (typeof fn === 'function') { +- if (!($inject = fn.$inject)) { +- $inject = []; +- if (fn.length) { +- if (strictDi) { +- if (!isString(name) || !name) { +- name = fn.name || anonFn(fn); +- } +- throw $injectorMinErr('strictdi', +- '{0} is not using explicit annotation and cannot be invoked in strict mode', name); +- } +- fnText = fn.toString().replace(STRIP_COMMENTS, ''); +- argDecl = fnText.match(FN_ARGS); +- forEach(argDecl[1].split(FN_ARG_SPLIT), function(arg) { +- arg.replace(FN_ARG, function(all, underscore, name) { +- $inject.push(name); +- }); +- }); +- } +- fn.$inject = $inject; +- } +- } else if (isArray(fn)) { +- last = fn.length - 1; +- assertArgFn(fn[last], 'fn'); +- $inject = fn.slice(0, last); +- } else { +- assertArgFn(fn, 'fn', true); +- } +- return $inject; +-} +- +-/////////////////////////////////////// +- +-/** +- * @ngdoc service +- * @name $injector +- * +- * @description +- * +- * `$injector` is used to retrieve object instances as defined by +- * {@link auto.$provide provider}, instantiate types, invoke methods, +- * and load modules. +- * +- * The following always holds true: +- * +- * ```js +- * var $injector = angular.injector(); +- * expect($injector.get('$injector')).toBe($injector); +- * expect($injector.invoke(function($injector) { +- * return $injector; +- * })).toBe($injector); +- * ``` +- * +- * # Injection Function Annotation +- * +- * JavaScript does not have annotations, and annotations are needed for dependency injection. The +- * following are all valid ways of annotating function with injection arguments and are equivalent. +- * +- * ```js +- * // inferred (only works if code not minified/obfuscated) +- * $injector.invoke(function(serviceA){}); +- * +- * // annotated +- * function explicit(serviceA) {}; +- * explicit.$inject = ['serviceA']; +- * $injector.invoke(explicit); +- * +- * // inline +- * $injector.invoke(['serviceA', function(serviceA){}]); +- * ``` +- * +- * ## Inference +- * +- * In JavaScript calling `toString()` on a function returns the function definition. The definition +- * can then be parsed and the function arguments can be extracted. This method of discovering +- * annotations is disallowed when the injector is in strict mode. +- * *NOTE:* This does not work with minification, and obfuscation tools since these tools change the +- * argument names. +- * +- * ## `$inject` Annotation +- * By adding an `$inject` property onto a function the injection parameters can be specified. +- * +- * ## Inline +- * As an array of injection names, where the last item in the array is the function to call. +- */ +- +-/** +- * @ngdoc method +- * @name $injector#get +- * +- * @description +- * Return an instance of the service. +- * +- * @param {string} name The name of the instance to retrieve. +- * @param {string} caller An optional string to provide the origin of the function call for error messages. +- * @return {*} The instance. +- */ +- +-/** +- * @ngdoc method +- * @name $injector#invoke +- * +- * @description +- * Invoke the method and supply the method arguments from the `$injector`. +- * +- * @param {!Function} fn The function to invoke. Function parameters are injected according to the +- * {@link guide/di $inject Annotation} rules. +- * @param {Object=} self The `this` for the invoked method. +- * @param {Object=} locals Optional object. If preset then any argument names are read from this +- * object first, before the `$injector` is consulted. +- * @returns {*} the value returned by the invoked `fn` function. +- */ +- +-/** +- * @ngdoc method +- * @name $injector#has +- * +- * @description +- * Allows the user to query if the particular service exists. +- * +- * @param {string} name Name of the service to query. +- * @returns {boolean} `true` if injector has given service. +- */ +- +-/** +- * @ngdoc method +- * @name $injector#instantiate +- * @description +- * Create a new instance of JS type. The method takes a constructor function, invokes the new +- * operator, and supplies all of the arguments to the constructor function as specified by the +- * constructor annotation. +- * +- * @param {Function} Type Annotated constructor function. +- * @param {Object=} locals Optional object. If preset then any argument names are read from this +- * object first, before the `$injector` is consulted. +- * @returns {Object} new instance of `Type`. +- */ +- +-/** +- * @ngdoc method +- * @name $injector#annotate +- * +- * @description +- * Returns an array of service names which the function is requesting for injection. This API is +- * used by the injector to determine which services need to be injected into the function when the +- * function is invoked. There are three ways in which the function can be annotated with the needed +- * dependencies. +- * +- * # Argument names +- * +- * The simplest form is to extract the dependencies from the arguments of the function. This is done +- * by converting the function into a string using `toString()` method and extracting the argument +- * names. +- * ```js +- * // Given +- * function MyController($scope, $route) { +- * // ... +- * } +- * +- * // Then +- * expect(injector.annotate(MyController)).toEqual(['$scope', '$route']); +- * ``` +- * +- * You can disallow this method by using strict injection mode. +- * +- * This method does not work with code minification / obfuscation. For this reason the following +- * annotation strategies are supported. +- * +- * # The `$inject` property +- * +- * If a function has an `$inject` property and its value is an array of strings, then the strings +- * represent names of services to be injected into the function. +- * ```js +- * // Given +- * var MyController = function(obfuscatedScope, obfuscatedRoute) { +- * // ... +- * } +- * // Define function dependencies +- * MyController['$inject'] = ['$scope', '$route']; +- * +- * // Then +- * expect(injector.annotate(MyController)).toEqual(['$scope', '$route']); +- * ``` +- * +- * # The array notation +- * +- * It is often desirable to inline Injected functions and that's when setting the `$inject` property +- * is very inconvenient. In these situations using the array notation to specify the dependencies in +- * a way that survives minification is a better choice: +- * +- * ```js +- * // We wish to write this (not minification / obfuscation safe) +- * injector.invoke(function($compile, $rootScope) { +- * // ... +- * }); +- * +- * // We are forced to write break inlining +- * var tmpFn = function(obfuscatedCompile, obfuscatedRootScope) { +- * // ... +- * }; +- * tmpFn.$inject = ['$compile', '$rootScope']; +- * injector.invoke(tmpFn); +- * +- * // To better support inline function the inline annotation is supported +- * injector.invoke(['$compile', '$rootScope', function(obfCompile, obfRootScope) { +- * // ... +- * }]); +- * +- * // Therefore +- * expect(injector.annotate( +- * ['$compile', '$rootScope', function(obfus_$compile, obfus_$rootScope) {}]) +- * ).toEqual(['$compile', '$rootScope']); +- * ``` +- * +- * @param {Function|Array.<string|Function>} fn Function for which dependent service names need to +- * be retrieved as described above. +- * +- * @param {boolean=} [strictDi=false] Disallow argument name annotation inference. +- * +- * @returns {Array.<string>} The names of the services which the function requires. +- */ +- +- +- +- +-/** +- * @ngdoc service +- * @name $provide +- * +- * @description +- * +- * The {@link auto.$provide $provide} service has a number of methods for registering components +- * with the {@link auto.$injector $injector}. Many of these functions are also exposed on +- * {@link angular.Module}. +- * +- * An Angular **service** is a singleton object created by a **service factory**. These **service +- * factories** are functions which, in turn, are created by a **service provider**. +- * The **service providers** are constructor functions. When instantiated they must contain a +- * property called `$get`, which holds the **service factory** function. +- * +- * When you request a service, the {@link auto.$injector $injector} is responsible for finding the +- * correct **service provider**, instantiating it and then calling its `$get` **service factory** +- * function to get the instance of the **service**. +- * +- * Often services have no configuration options and there is no need to add methods to the service +- * provider. The provider will be no more than a constructor function with a `$get` property. For +- * these cases the {@link auto.$provide $provide} service has additional helper methods to register +- * services without specifying a provider. +- * +- * * {@link auto.$provide#provider provider(provider)} - registers a **service provider** with the +- * {@link auto.$injector $injector} +- * * {@link auto.$provide#constant constant(obj)} - registers a value/object that can be accessed by +- * providers and services. +- * * {@link auto.$provide#value value(obj)} - registers a value/object that can only be accessed by +- * services, not providers. +- * * {@link auto.$provide#factory factory(fn)} - registers a service **factory function**, `fn`, +- * that will be wrapped in a **service provider** object, whose `$get` property will contain the +- * given factory function. +- * * {@link auto.$provide#service service(class)} - registers a **constructor function**, `class` +- * that will be wrapped in a **service provider** object, whose `$get` property will instantiate +- * a new object using the given constructor function. +- * +- * See the individual methods for more information and examples. +- */ +- +-/** +- * @ngdoc method +- * @name $provide#provider +- * @description +- * +- * Register a **provider function** with the {@link auto.$injector $injector}. Provider functions +- * are constructor functions, whose instances are responsible for "providing" a factory for a +- * service. +- * +- * Service provider names start with the name of the service they provide followed by `Provider`. +- * For example, the {@link ng.$log $log} service has a provider called +- * {@link ng.$logProvider $logProvider}. +- * +- * Service provider objects can have additional methods which allow configuration of the provider +- * and its service. Importantly, you can configure what kind of service is created by the `$get` +- * method, or how that service will act. For example, the {@link ng.$logProvider $logProvider} has a +- * method {@link ng.$logProvider#debugEnabled debugEnabled} +- * which lets you specify whether the {@link ng.$log $log} service will log debug messages to the +- * console or not. +- * +- * @param {string} name The name of the instance. NOTE: the provider will be available under `name + +- 'Provider'` key. +- * @param {(Object|function())} provider If the provider is: +- * +- * - `Object`: then it should have a `$get` method. The `$get` method will be invoked using +- * {@link auto.$injector#invoke $injector.invoke()} when an instance needs to be created. +- * - `Constructor`: a new instance of the provider will be created using +- * {@link auto.$injector#instantiate $injector.instantiate()}, then treated as `object`. +- * +- * @returns {Object} registered provider instance +- +- * @example +- * +- * The following example shows how to create a simple event tracking service and register it using +- * {@link auto.$provide#provider $provide.provider()}. +- * +- * ```js +- * // Define the eventTracker provider +- * function EventTrackerProvider() { +- * var trackingUrl = '/track'; +- * +- * // A provider method for configuring where the tracked events should been saved +- * this.setTrackingUrl = function(url) { +- * trackingUrl = url; +- * }; +- * +- * // The service factory function +- * this.$get = ['$http', function($http) { +- * var trackedEvents = {}; +- * return { +- * // Call this to track an event +- * event: function(event) { +- * var count = trackedEvents[event] || 0; +- * count += 1; +- * trackedEvents[event] = count; +- * return count; +- * }, +- * // Call this to save the tracked events to the trackingUrl +- * save: function() { +- * $http.post(trackingUrl, trackedEvents); +- * } +- * }; +- * }]; +- * } +- * +- * describe('eventTracker', function() { +- * var postSpy; +- * +- * beforeEach(module(function($provide) { +- * // Register the eventTracker provider +- * $provide.provider('eventTracker', EventTrackerProvider); +- * })); +- * +- * beforeEach(module(function(eventTrackerProvider) { +- * // Configure eventTracker provider +- * eventTrackerProvider.setTrackingUrl('/custom-track'); +- * })); +- * +- * it('tracks events', inject(function(eventTracker) { +- * expect(eventTracker.event('login')).toEqual(1); +- * expect(eventTracker.event('login')).toEqual(2); +- * })); +- * +- * it('saves to the tracking url', inject(function(eventTracker, $http) { +- * postSpy = spyOn($http, 'post'); +- * eventTracker.event('login'); +- * eventTracker.save(); +- * expect(postSpy).toHaveBeenCalled(); +- * expect(postSpy.mostRecentCall.args[0]).not.toEqual('/track'); +- * expect(postSpy.mostRecentCall.args[0]).toEqual('/custom-track'); +- * expect(postSpy.mostRecentCall.args[1]).toEqual({ 'login': 1 }); +- * })); +- * }); +- * ``` +- */ +- +-/** +- * @ngdoc method +- * @name $provide#factory +- * @description +- * +- * Register a **service factory**, which will be called to return the service instance. +- * This is short for registering a service where its provider consists of only a `$get` property, +- * which is the given service factory function. +- * You should use {@link auto.$provide#factory $provide.factory(getFn)} if you do not need to +- * configure your service in a provider. +- * +- * @param {string} name The name of the instance. +- * @param {function()} $getFn The $getFn for the instance creation. Internally this is a short hand +- * for `$provide.provider(name, {$get: $getFn})`. +- * @returns {Object} registered provider instance +- * +- * @example +- * Here is an example of registering a service +- * ```js +- * $provide.factory('ping', ['$http', function($http) { +- * return function ping() { +- * return $http.send('/ping'); +- * }; +- * }]); +- * ``` +- * You would then inject and use this service like this: +- * ```js +- * someModule.controller('Ctrl', ['ping', function(ping) { +- * ping(); +- * }]); +- * ``` +- */ +- +- +-/** +- * @ngdoc method +- * @name $provide#service +- * @description +- * +- * Register a **service constructor**, which will be invoked with `new` to create the service +- * instance. +- * This is short for registering a service where its provider's `$get` property is the service +- * constructor function that will be used to instantiate the service instance. +- * +- * You should use {@link auto.$provide#service $provide.service(class)} if you define your service +- * as a type/class. +- * +- * @param {string} name The name of the instance. +- * @param {Function} constructor A class (constructor function) that will be instantiated. +- * @returns {Object} registered provider instance +- * +- * @example +- * Here is an example of registering a service using +- * {@link auto.$provide#service $provide.service(class)}. +- * ```js +- * var Ping = function($http) { +- * this.$http = $http; +- * }; +- * +- * Ping.$inject = ['$http']; +- * +- * Ping.prototype.send = function() { +- * return this.$http.get('/ping'); +- * }; +- * $provide.service('ping', Ping); +- * ``` +- * You would then inject and use this service like this: +- * ```js +- * someModule.controller('Ctrl', ['ping', function(ping) { +- * ping.send(); +- * }]); +- * ``` +- */ +- +- +-/** +- * @ngdoc method +- * @name $provide#value +- * @description +- * +- * Register a **value service** with the {@link auto.$injector $injector}, such as a string, a +- * number, an array, an object or a function. This is short for registering a service where its +- * provider's `$get` property is a factory function that takes no arguments and returns the **value +- * service**. +- * +- * Value services are similar to constant services, except that they cannot be injected into a +- * module configuration function (see {@link angular.Module#config}) but they can be overridden by +- * an Angular +- * {@link auto.$provide#decorator decorator}. +- * +- * @param {string} name The name of the instance. +- * @param {*} value The value. +- * @returns {Object} registered provider instance +- * +- * @example +- * Here are some examples of creating value services. +- * ```js +- * $provide.value('ADMIN_USER', 'admin'); +- * +- * $provide.value('RoleLookup', { admin: 0, writer: 1, reader: 2 }); +- * +- * $provide.value('halfOf', function(value) { +- * return value / 2; +- * }); +- * ``` +- */ +- +- +-/** +- * @ngdoc method +- * @name $provide#constant +- * @description +- * +- * Register a **constant service**, such as a string, a number, an array, an object or a function, +- * with the {@link auto.$injector $injector}. Unlike {@link auto.$provide#value value} it can be +- * injected into a module configuration function (see {@link angular.Module#config}) and it cannot +- * be overridden by an Angular {@link auto.$provide#decorator decorator}. +- * +- * @param {string} name The name of the constant. +- * @param {*} value The constant value. +- * @returns {Object} registered instance +- * +- * @example +- * Here a some examples of creating constants: +- * ```js +- * $provide.constant('SHARD_HEIGHT', 306); +- * +- * $provide.constant('MY_COLOURS', ['red', 'blue', 'grey']); +- * +- * $provide.constant('double', function(value) { +- * return value * 2; +- * }); +- * ``` +- */ +- +- +-/** +- * @ngdoc method +- * @name $provide#decorator +- * @description +- * +- * Register a **service decorator** with the {@link auto.$injector $injector}. A service decorator +- * intercepts the creation of a service, allowing it to override or modify the behaviour of the +- * service. The object returned by the decorator may be the original service, or a new service +- * object which replaces or wraps and delegates to the original service. +- * +- * @param {string} name The name of the service to decorate. +- * @param {function()} decorator This function will be invoked when the service needs to be +- * instantiated and should return the decorated service instance. The function is called using +- * the {@link auto.$injector#invoke injector.invoke} method and is therefore fully injectable. +- * Local injection arguments: +- * +- * * `$delegate` - The original service instance, which can be monkey patched, configured, +- * decorated or delegated to. +- * +- * @example +- * Here we decorate the {@link ng.$log $log} service to convert warnings to errors by intercepting +- * calls to {@link ng.$log#error $log.warn()}. +- * ```js +- * $provide.decorator('$log', ['$delegate', function($delegate) { +- * $delegate.warn = $delegate.error; +- * return $delegate; +- * }]); +- * ``` +- */ +- +- +-function createInjector(modulesToLoad, strictDi) { +- strictDi = (strictDi === true); +- var INSTANTIATING = {}, +- providerSuffix = 'Provider', +- path = [], +- loadedModules = new HashMap([], true), +- providerCache = { +- $provide: { +- provider: supportObject(provider), +- factory: supportObject(factory), +- service: supportObject(service), +- value: supportObject(value), +- constant: supportObject(constant), +- decorator: decorator +- } +- }, +- providerInjector = (providerCache.$injector = +- createInternalInjector(providerCache, function(serviceName, caller) { +- if (angular.isString(caller)) { +- path.push(caller); +- } +- throw $injectorMinErr('unpr', "Unknown provider: {0}", path.join(' <- ')); +- })), +- instanceCache = {}, +- instanceInjector = (instanceCache.$injector = +- createInternalInjector(instanceCache, function(serviceName, caller) { +- var provider = providerInjector.get(serviceName + providerSuffix, caller); +- return instanceInjector.invoke(provider.$get, provider, undefined, serviceName); +- })); +- +- +- forEach(loadModules(modulesToLoad), function(fn) { instanceInjector.invoke(fn || noop); }); +- +- return instanceInjector; +- +- //////////////////////////////////// +- // $provider +- //////////////////////////////////// +- +- function supportObject(delegate) { +- return function(key, value) { +- if (isObject(key)) { +- forEach(key, reverseParams(delegate)); +- } else { +- return delegate(key, value); +- } +- }; +- } +- +- function provider(name, provider_) { +- assertNotHasOwnProperty(name, 'service'); +- if (isFunction(provider_) || isArray(provider_)) { +- provider_ = providerInjector.instantiate(provider_); +- } +- if (!provider_.$get) { +- throw $injectorMinErr('pget', "Provider '{0}' must define $get factory method.", name); +- } +- return providerCache[name + providerSuffix] = provider_; +- } +- +- function enforceReturnValue(name, factory) { +- return function enforcedReturnValue() { +- var result = instanceInjector.invoke(factory, this); +- if (isUndefined(result)) { +- throw $injectorMinErr('undef', "Provider '{0}' must return a value from $get factory method.", name); +- } +- return result; +- }; +- } +- +- function factory(name, factoryFn, enforce) { +- return provider(name, { +- $get: enforce !== false ? enforceReturnValue(name, factoryFn) : factoryFn +- }); +- } +- +- function service(name, constructor) { +- return factory(name, ['$injector', function($injector) { +- return $injector.instantiate(constructor); +- }]); +- } +- +- function value(name, val) { return factory(name, valueFn(val), false); } +- +- function constant(name, value) { +- assertNotHasOwnProperty(name, 'constant'); +- providerCache[name] = value; +- instanceCache[name] = value; +- } +- +- function decorator(serviceName, decorFn) { +- var origProvider = providerInjector.get(serviceName + providerSuffix), +- orig$get = origProvider.$get; +- +- origProvider.$get = function() { +- var origInstance = instanceInjector.invoke(orig$get, origProvider); +- return instanceInjector.invoke(decorFn, null, {$delegate: origInstance}); +- }; +- } +- +- //////////////////////////////////// +- // Module Loading +- //////////////////////////////////// +- function loadModules(modulesToLoad) { +- var runBlocks = [], moduleFn; +- forEach(modulesToLoad, function(module) { +- if (loadedModules.get(module)) return; +- loadedModules.put(module, true); +- +- function runInvokeQueue(queue) { +- var i, ii; +- for (i = 0, ii = queue.length; i < ii; i++) { +- var invokeArgs = queue[i], +- provider = providerInjector.get(invokeArgs[0]); +- +- provider[invokeArgs[1]].apply(provider, invokeArgs[2]); +- } +- } +- +- try { +- if (isString(module)) { +- moduleFn = angularModule(module); +- runBlocks = runBlocks.concat(loadModules(moduleFn.requires)).concat(moduleFn._runBlocks); +- runInvokeQueue(moduleFn._invokeQueue); +- runInvokeQueue(moduleFn._configBlocks); +- } else if (isFunction(module)) { +- runBlocks.push(providerInjector.invoke(module)); +- } else if (isArray(module)) { +- runBlocks.push(providerInjector.invoke(module)); +- } else { +- assertArgFn(module, 'module'); +- } +- } catch (e) { +- if (isArray(module)) { +- module = module[module.length - 1]; +- } +- if (e.message && e.stack && e.stack.indexOf(e.message) == -1) { +- // Safari & FF's stack traces don't contain error.message content +- // unlike those of Chrome and IE +- // So if stack doesn't contain message, we create a new string that contains both. +- // Since error.stack is read-only in Safari, I'm overriding e and not e.stack here. +- /* jshint -W022 */ +- e = e.message + '\n' + e.stack; +- } +- throw $injectorMinErr('modulerr', "Failed to instantiate module {0} due to:\n{1}", +- module, e.stack || e.message || e); +- } +- }); +- return runBlocks; +- } +- +- //////////////////////////////////// +- // internal Injector +- //////////////////////////////////// +- +- function createInternalInjector(cache, factory) { +- +- function getService(serviceName, caller) { +- if (cache.hasOwnProperty(serviceName)) { +- if (cache[serviceName] === INSTANTIATING) { +- throw $injectorMinErr('cdep', 'Circular dependency found: {0}', +- serviceName + ' <- ' + path.join(' <- ')); +- } +- return cache[serviceName]; +- } else { +- try { +- path.unshift(serviceName); +- cache[serviceName] = INSTANTIATING; +- return cache[serviceName] = factory(serviceName, caller); +- } catch (err) { +- if (cache[serviceName] === INSTANTIATING) { +- delete cache[serviceName]; +- } +- throw err; +- } finally { +- path.shift(); +- } +- } +- } +- +- function invoke(fn, self, locals, serviceName) { +- if (typeof locals === 'string') { +- serviceName = locals; +- locals = null; +- } +- +- var args = [], +- $inject = createInjector.$$annotate(fn, strictDi, serviceName), +- length, i, +- key; +- +- for (i = 0, length = $inject.length; i < length; i++) { +- key = $inject[i]; +- if (typeof key !== 'string') { +- throw $injectorMinErr('itkn', +- 'Incorrect injection token! Expected service name as string, got {0}', key); +- } +- args.push( +- locals && locals.hasOwnProperty(key) +- ? locals[key] +- : getService(key, serviceName) +- ); +- } +- if (isArray(fn)) { +- fn = fn[length]; +- } +- +- // http://jsperf.com/angularjs-invoke-apply-vs-switch +- // #5388 +- return fn.apply(self, args); +- } +- +- function instantiate(Type, locals, serviceName) { +- // Check if Type is annotated and use just the given function at n-1 as parameter +- // e.g. someModule.factory('greeter', ['$window', function(renamed$window) {}]); +- // Object creation: http://jsperf.com/create-constructor/2 +- var instance = Object.create((isArray(Type) ? Type[Type.length - 1] : Type).prototype || null); +- var returnedValue = invoke(Type, instance, locals, serviceName); +- +- return isObject(returnedValue) || isFunction(returnedValue) ? returnedValue : instance; +- } +- +- return { +- invoke: invoke, +- instantiate: instantiate, +- get: getService, +- annotate: createInjector.$$annotate, +- has: function(name) { +- return providerCache.hasOwnProperty(name + providerSuffix) || cache.hasOwnProperty(name); +- } +- }; +- } +-} +- +-createInjector.$$annotate = annotate; +- +-/** +- * @ngdoc provider +- * @name $anchorScrollProvider +- * +- * @description +- * Use `$anchorScrollProvider` to disable automatic scrolling whenever +- * {@link ng.$location#hash $location.hash()} changes. +- */ +-function $AnchorScrollProvider() { +- +- var autoScrollingEnabled = true; +- +- /** +- * @ngdoc method +- * @name $anchorScrollProvider#disableAutoScrolling +- * +- * @description +- * By default, {@link ng.$anchorScroll $anchorScroll()} will automatically detect changes to +- * {@link ng.$location#hash $location.hash()} and scroll to the element matching the new hash.<br /> +- * Use this method to disable automatic scrolling. +- * +- * If automatic scrolling is disabled, one must explicitly call +- * {@link ng.$anchorScroll $anchorScroll()} in order to scroll to the element related to the +- * current hash. +- */ +- this.disableAutoScrolling = function() { +- autoScrollingEnabled = false; +- }; +- +- /** +- * @ngdoc service +- * @name $anchorScroll +- * @kind function +- * @requires $window +- * @requires $location +- * @requires $rootScope +- * +- * @description +- * When called, it checks the current value of {@link ng.$location#hash $location.hash()} and +- * scrolls to the related element, according to the rules specified in the +- * [Html5 spec](http://dev.w3.org/html5/spec/Overview.html#the-indicated-part-of-the-document). +- * +- * It also watches the {@link ng.$location#hash $location.hash()} and automatically scrolls to +- * match any anchor whenever it changes. This can be disabled by calling +- * {@link ng.$anchorScrollProvider#disableAutoScrolling $anchorScrollProvider.disableAutoScrolling()}. +- * +- * Additionally, you can use its {@link ng.$anchorScroll#yOffset yOffset} property to specify a +- * vertical scroll-offset (either fixed or dynamic). +- * +- * @property {(number|function|jqLite)} yOffset +- * If set, specifies a vertical scroll-offset. This is often useful when there are fixed +- * positioned elements at the top of the page, such as navbars, headers etc. +- * +- * `yOffset` can be specified in various ways: +- * - **number**: A fixed number of pixels to be used as offset.<br /><br /> +- * - **function**: A getter function called everytime `$anchorScroll()` is executed. Must return +- * a number representing the offset (in pixels).<br /><br /> +- * - **jqLite**: A jqLite/jQuery element to be used for specifying the offset. The distance from +- * the top of the page to the element's bottom will be used as offset.<br /> +- * **Note**: The element will be taken into account only as long as its `position` is set to +- * `fixed`. This option is useful, when dealing with responsive navbars/headers that adjust +- * their height and/or positioning according to the viewport's size. +- * +- * <br /> +- * <div class="alert alert-warning"> +- * In order for `yOffset` to work properly, scrolling should take place on the document's root and +- * not some child element. +- * </div> +- * +- * @example +- <example module="anchorScrollExample"> +- <file name="index.html"> +- <div id="scrollArea" ng-controller="ScrollController"> +- <a ng-click="gotoBottom()">Go to bottom</a> +- <a id="bottom"></a> You're at the bottom! +- </div> +- </file> +- <file name="script.js"> +- angular.module('anchorScrollExample', []) +- .controller('ScrollController', ['$scope', '$location', '$anchorScroll', +- function ($scope, $location, $anchorScroll) { +- $scope.gotoBottom = function() { +- // set the location.hash to the id of +- // the element you wish to scroll to. +- $location.hash('bottom'); +- +- // call $anchorScroll() +- $anchorScroll(); +- }; +- }]); +- </file> +- <file name="style.css"> +- #scrollArea { +- height: 280px; +- overflow: auto; +- } +- +- #bottom { +- display: block; +- margin-top: 2000px; +- } +- </file> +- </example> +- * +- * <hr /> +- * The example below illustrates the use of a vertical scroll-offset (specified as a fixed value). +- * See {@link ng.$anchorScroll#yOffset $anchorScroll.yOffset} for more details. +- * +- * @example +- <example module="anchorScrollOffsetExample"> +- <file name="index.html"> +- <div class="fixed-header" ng-controller="headerCtrl"> +- <a href="" ng-click="gotoAnchor(x)" ng-repeat="x in [1,2,3,4,5]"> +- Go to anchor {{x}} +- </a> +- </div> +- <div id="anchor{{x}}" class="anchor" ng-repeat="x in [1,2,3,4,5]"> +- Anchor {{x}} of 5 +- </div> +- </file> +- <file name="script.js"> +- angular.module('anchorScrollOffsetExample', []) +- .run(['$anchorScroll', function($anchorScroll) { +- $anchorScroll.yOffset = 50; // always scroll by 50 extra pixels +- }]) +- .controller('headerCtrl', ['$anchorScroll', '$location', '$scope', +- function ($anchorScroll, $location, $scope) { +- $scope.gotoAnchor = function(x) { +- var newHash = 'anchor' + x; +- if ($location.hash() !== newHash) { +- // set the $location.hash to `newHash` and +- // $anchorScroll will automatically scroll to it +- $location.hash('anchor' + x); +- } else { +- // call $anchorScroll() explicitly, +- // since $location.hash hasn't changed +- $anchorScroll(); +- } +- }; +- } +- ]); +- </file> +- <file name="style.css"> +- body { +- padding-top: 50px; +- } +- +- .anchor { +- border: 2px dashed DarkOrchid; +- padding: 10px 10px 200px 10px; +- } +- +- .fixed-header { +- background-color: rgba(0, 0, 0, 0.2); +- height: 50px; +- position: fixed; +- top: 0; left: 0; right: 0; +- } +- +- .fixed-header > a { +- display: inline-block; +- margin: 5px 15px; +- } +- </file> +- </example> +- */ +- this.$get = ['$window', '$location', '$rootScope', function($window, $location, $rootScope) { +- var document = $window.document; +- +- // Helper function to get first anchor from a NodeList +- // (using `Array#some()` instead of `angular#forEach()` since it's more performant +- // and working in all supported browsers.) +- function getFirstAnchor(list) { +- var result = null; +- Array.prototype.some.call(list, function(element) { +- if (nodeName_(element) === 'a') { +- result = element; +- return true; +- } +- }); +- return result; +- } +- +- function getYOffset() { +- +- var offset = scroll.yOffset; +- +- if (isFunction(offset)) { +- offset = offset(); +- } else if (isElement(offset)) { +- var elem = offset[0]; +- var style = $window.getComputedStyle(elem); +- if (style.position !== 'fixed') { +- offset = 0; +- } else { +- offset = elem.getBoundingClientRect().bottom; +- } +- } else if (!isNumber(offset)) { +- offset = 0; +- } +- +- return offset; +- } +- +- function scrollTo(elem) { +- if (elem) { +- elem.scrollIntoView(); +- +- var offset = getYOffset(); +- +- if (offset) { +- // `offset` is the number of pixels we should scroll UP in order to align `elem` properly. +- // This is true ONLY if the call to `elem.scrollIntoView()` initially aligns `elem` at the +- // top of the viewport. +- // +- // IF the number of pixels from the top of `elem` to the end of the page's content is less +- // than the height of the viewport, then `elem.scrollIntoView()` will align the `elem` some +- // way down the page. +- // +- // This is often the case for elements near the bottom of the page. +- // +- // In such cases we do not need to scroll the whole `offset` up, just the difference between +- // the top of the element and the offset, which is enough to align the top of `elem` at the +- // desired position. +- var elemTop = elem.getBoundingClientRect().top; +- $window.scrollBy(0, elemTop - offset); +- } +- } else { +- $window.scrollTo(0, 0); +- } +- } +- +- function scroll() { +- var hash = $location.hash(), elm; +- +- // empty hash, scroll to the top of the page +- if (!hash) scrollTo(null); +- +- // element with given id +- else if ((elm = document.getElementById(hash))) scrollTo(elm); +- +- // first anchor with given name :-D +- else if ((elm = getFirstAnchor(document.getElementsByName(hash)))) scrollTo(elm); +- +- // no element and hash == 'top', scroll to the top of the page +- else if (hash === 'top') scrollTo(null); +- } +- +- // does not scroll when user clicks on anchor link that is currently on +- // (no url change, no $location.hash() change), browser native does scroll +- if (autoScrollingEnabled) { +- $rootScope.$watch(function autoScrollWatch() {return $location.hash();}, +- function autoScrollWatchAction(newVal, oldVal) { +- // skip the initial scroll if $location.hash is empty +- if (newVal === oldVal && newVal === '') return; +- +- jqLiteDocumentLoaded(function() { +- $rootScope.$evalAsync(scroll); +- }); +- }); +- } +- +- return scroll; +- }]; +-} +- +-var $animateMinErr = minErr('$animate'); +- +-/** +- * @ngdoc provider +- * @name $animateProvider +- * +- * @description +- * Default implementation of $animate that doesn't perform any animations, instead just +- * synchronously performs DOM +- * updates and calls done() callbacks. +- * +- * In order to enable animations the ngAnimate module has to be loaded. +- * +- * To see the functional implementation check out src/ngAnimate/animate.js +- */ +-var $AnimateProvider = ['$provide', function($provide) { +- +- +- this.$$selectors = {}; +- +- +- /** +- * @ngdoc method +- * @name $animateProvider#register +- * +- * @description +- * Registers a new injectable animation factory function. The factory function produces the +- * animation object which contains callback functions for each event that is expected to be +- * animated. +- * +- * * `eventFn`: `function(Element, doneFunction)` The element to animate, the `doneFunction` +- * must be called once the element animation is complete. If a function is returned then the +- * animation service will use this function to cancel the animation whenever a cancel event is +- * triggered. +- * +- * +- * ```js +- * return { +- * eventFn : function(element, done) { +- * //code to run the animation +- * //once complete, then run done() +- * return function cancellationFunction() { +- * //code to cancel the animation +- * } +- * } +- * } +- * ``` +- * +- * @param {string} name The name of the animation. +- * @param {Function} factory The factory function that will be executed to return the animation +- * object. +- */ +- this.register = function(name, factory) { +- var key = name + '-animation'; +- if (name && name.charAt(0) != '.') throw $animateMinErr('notcsel', +- "Expecting class selector starting with '.' got '{0}'.", name); +- this.$$selectors[name.substr(1)] = key; +- $provide.factory(key, factory); +- }; +- +- /** +- * @ngdoc method +- * @name $animateProvider#classNameFilter +- * +- * @description +- * Sets and/or returns the CSS class regular expression that is checked when performing +- * an animation. Upon bootstrap the classNameFilter value is not set at all and will +- * therefore enable $animate to attempt to perform an animation on any element. +- * When setting the classNameFilter value, animations will only be performed on elements +- * that successfully match the filter expression. This in turn can boost performance +- * for low-powered devices as well as applications containing a lot of structural operations. +- * @param {RegExp=} expression The className expression which will be checked against all animations +- * @return {RegExp} The current CSS className expression value. If null then there is no expression value +- */ +- this.classNameFilter = function(expression) { +- if (arguments.length === 1) { +- this.$$classNameFilter = (expression instanceof RegExp) ? expression : null; +- } +- return this.$$classNameFilter; +- }; +- +- this.$get = ['$$q', '$$asyncCallback', '$rootScope', function($$q, $$asyncCallback, $rootScope) { +- +- var currentDefer; +- +- function runAnimationPostDigest(fn) { +- var cancelFn, defer = $$q.defer(); +- defer.promise.$$cancelFn = function ngAnimateMaybeCancel() { +- cancelFn && cancelFn(); +- }; +- +- $rootScope.$$postDigest(function ngAnimatePostDigest() { +- cancelFn = fn(function ngAnimateNotifyComplete() { +- defer.resolve(); +- }); +- }); +- +- return defer.promise; +- } +- +- function resolveElementClasses(element, classes) { +- var toAdd = [], toRemove = []; +- +- var hasClasses = createMap(); +- forEach((element.attr('class') || '').split(/\s+/), function(className) { +- hasClasses[className] = true; +- }); +- +- forEach(classes, function(status, className) { +- var hasClass = hasClasses[className]; +- +- // If the most recent class manipulation (via $animate) was to remove the class, and the +- // element currently has the class, the class is scheduled for removal. Otherwise, if +- // the most recent class manipulation (via $animate) was to add the class, and the +- // element does not currently have the class, the class is scheduled to be added. +- if (status === false && hasClass) { +- toRemove.push(className); +- } else if (status === true && !hasClass) { +- toAdd.push(className); +- } +- }); +- +- return (toAdd.length + toRemove.length) > 0 && +- [toAdd.length ? toAdd : null, toRemove.length ? toRemove : null]; +- } +- +- function cachedClassManipulation(cache, classes, op) { +- for (var i=0, ii = classes.length; i < ii; ++i) { +- var className = classes[i]; +- cache[className] = op; +- } +- } +- +- function asyncPromise() { +- // only serve one instance of a promise in order to save CPU cycles +- if (!currentDefer) { +- currentDefer = $$q.defer(); +- $$asyncCallback(function() { +- currentDefer.resolve(); +- currentDefer = null; +- }); +- } +- return currentDefer.promise; +- } +- +- function applyStyles(element, options) { +- if (angular.isObject(options)) { +- var styles = extend(options.from || {}, options.to || {}); +- element.css(styles); +- } +- } +- +- /** +- * +- * @ngdoc service +- * @name $animate +- * @description The $animate service provides rudimentary DOM manipulation functions to +- * insert, remove and move elements within the DOM, as well as adding and removing classes. +- * This service is the core service used by the ngAnimate $animator service which provides +- * high-level animation hooks for CSS and JavaScript. +- * +- * $animate is available in the AngularJS core, however, the ngAnimate module must be included +- * to enable full out animation support. Otherwise, $animate will only perform simple DOM +- * manipulation operations. +- * +- * To learn more about enabling animation support, click here to visit the {@link ngAnimate +- * ngAnimate module page} as well as the {@link ngAnimate.$animate ngAnimate $animate service +- * page}. +- */ +- return { +- animate: function(element, from, to) { +- applyStyles(element, { from: from, to: to }); +- return asyncPromise(); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#enter +- * @kind function +- * @description Inserts the element into the DOM either after the `after` element or +- * as the first child within the `parent` element. When the function is called a promise +- * is returned that will be resolved at a later time. +- * @param {DOMElement} element the element which will be inserted into the DOM +- * @param {DOMElement} parent the parent element which will append the element as +- * a child (if the after element is not present) +- * @param {DOMElement} after the sibling element which will append the element +- * after itself +- * @param {object=} options an optional collection of styles that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- enter: function(element, parent, after, options) { +- applyStyles(element, options); +- after ? after.after(element) +- : parent.prepend(element); +- return asyncPromise(); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#leave +- * @kind function +- * @description Removes the element from the DOM. When the function is called a promise +- * is returned that will be resolved at a later time. +- * @param {DOMElement} element the element which will be removed from the DOM +- * @param {object=} options an optional collection of options that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- leave: function(element, options) { +- applyStyles(element, options); +- element.remove(); +- return asyncPromise(); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#move +- * @kind function +- * @description Moves the position of the provided element within the DOM to be placed +- * either after the `after` element or inside of the `parent` element. When the function +- * is called a promise is returned that will be resolved at a later time. +- * +- * @param {DOMElement} element the element which will be moved around within the +- * DOM +- * @param {DOMElement} parent the parent element where the element will be +- * inserted into (if the after element is not present) +- * @param {DOMElement} after the sibling element where the element will be +- * positioned next to +- * @param {object=} options an optional collection of options that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- move: function(element, parent, after, options) { +- // Do not remove element before insert. Removing will cause data associated with the +- // element to be dropped. Insert will implicitly do the remove. +- return this.enter(element, parent, after, options); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#addClass +- * @kind function +- * @description Adds the provided className CSS class value to the provided element. +- * When the function is called a promise is returned that will be resolved at a later time. +- * @param {DOMElement} element the element which will have the className value +- * added to it +- * @param {string} className the CSS class which will be added to the element +- * @param {object=} options an optional collection of options that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- addClass: function(element, className, options) { +- return this.setClass(element, className, [], options); +- }, +- +- $$addClassImmediately: function(element, className, options) { +- element = jqLite(element); +- className = !isString(className) +- ? (isArray(className) ? className.join(' ') : '') +- : className; +- forEach(element, function(element) { +- jqLiteAddClass(element, className); +- }); +- applyStyles(element, options); +- return asyncPromise(); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#removeClass +- * @kind function +- * @description Removes the provided className CSS class value from the provided element. +- * When the function is called a promise is returned that will be resolved at a later time. +- * @param {DOMElement} element the element which will have the className value +- * removed from it +- * @param {string} className the CSS class which will be removed from the element +- * @param {object=} options an optional collection of options that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- removeClass: function(element, className, options) { +- return this.setClass(element, [], className, options); +- }, +- +- $$removeClassImmediately: function(element, className, options) { +- element = jqLite(element); +- className = !isString(className) +- ? (isArray(className) ? className.join(' ') : '') +- : className; +- forEach(element, function(element) { +- jqLiteRemoveClass(element, className); +- }); +- applyStyles(element, options); +- return asyncPromise(); +- }, +- +- /** +- * +- * @ngdoc method +- * @name $animate#setClass +- * @kind function +- * @description Adds and/or removes the given CSS classes to and from the element. +- * When the function is called a promise is returned that will be resolved at a later time. +- * @param {DOMElement} element the element which will have its CSS classes changed +- * removed from it +- * @param {string} add the CSS classes which will be added to the element +- * @param {string} remove the CSS class which will be removed from the element +- * @param {object=} options an optional collection of options that will be applied to the element. +- * @return {Promise} the animation callback promise +- */ +- setClass: function(element, add, remove, options) { +- var self = this; +- var STORAGE_KEY = '$$animateClasses'; +- var createdCache = false; +- element = jqLite(element); +- +- var cache = element.data(STORAGE_KEY); +- if (!cache) { +- cache = { +- classes: {}, +- options: options +- }; +- createdCache = true; +- } else if (options && cache.options) { +- cache.options = angular.extend(cache.options || {}, options); +- } +- +- var classes = cache.classes; +- +- add = isArray(add) ? add : add.split(' '); +- remove = isArray(remove) ? remove : remove.split(' '); +- cachedClassManipulation(classes, add, true); +- cachedClassManipulation(classes, remove, false); +- +- if (createdCache) { +- cache.promise = runAnimationPostDigest(function(done) { +- var cache = element.data(STORAGE_KEY); +- element.removeData(STORAGE_KEY); +- +- // in the event that the element is removed before postDigest +- // is run then the cache will be undefined and there will be +- // no need anymore to add or remove and of the element classes +- if (cache) { +- var classes = resolveElementClasses(element, cache.classes); +- if (classes) { +- self.$$setClassImmediately(element, classes[0], classes[1], cache.options); +- } +- } +- +- done(); +- }); +- element.data(STORAGE_KEY, cache); +- } +- +- return cache.promise; +- }, +- +- $$setClassImmediately: function(element, add, remove, options) { +- add && this.$$addClassImmediately(element, add); +- remove && this.$$removeClassImmediately(element, remove); +- applyStyles(element, options); +- return asyncPromise(); +- }, +- +- enabled: noop, +- cancel: noop +- }; +- }]; +-}]; +- +-function $$AsyncCallbackProvider() { +- this.$get = ['$$rAF', '$timeout', function($$rAF, $timeout) { +- return $$rAF.supported +- ? function(fn) { return $$rAF(fn); } +- : function(fn) { +- return $timeout(fn, 0, false); +- }; +- }]; +-} +- +-/* global stripHash: true */ +- +-/** +- * ! This is a private undocumented service ! +- * +- * @name $browser +- * @requires $log +- * @description +- * This object has two goals: +- * +- * - hide all the global state in the browser caused by the window object +- * - abstract away all the browser specific features and inconsistencies +- * +- * For tests we provide {@link ngMock.$browser mock implementation} of the `$browser` +- * service, which can be used for convenient testing of the application without the interaction with +- * the real browser apis. +- */ +-/** +- * @param {object} window The global window object. +- * @param {object} document jQuery wrapped document. +- * @param {object} $log window.console or an object with the same interface. +- * @param {object} $sniffer $sniffer service +- */ +-function Browser(window, document, $log, $sniffer) { +- var self = this, +- rawDocument = document[0], +- location = window.location, +- history = window.history, +- setTimeout = window.setTimeout, +- clearTimeout = window.clearTimeout, +- pendingDeferIds = {}; +- +- self.isMock = false; +- +- var outstandingRequestCount = 0; +- var outstandingRequestCallbacks = []; +- +- // TODO(vojta): remove this temporary api +- self.$$completeOutstandingRequest = completeOutstandingRequest; +- self.$$incOutstandingRequestCount = function() { outstandingRequestCount++; }; +- +- /** +- * Executes the `fn` function(supports currying) and decrements the `outstandingRequestCallbacks` +- * counter. If the counter reaches 0, all the `outstandingRequestCallbacks` are executed. +- */ +- function completeOutstandingRequest(fn) { +- try { +- fn.apply(null, sliceArgs(arguments, 1)); +- } finally { +- outstandingRequestCount--; +- if (outstandingRequestCount === 0) { +- while (outstandingRequestCallbacks.length) { +- try { +- outstandingRequestCallbacks.pop()(); +- } catch (e) { +- $log.error(e); +- } +- } +- } +- } +- } +- +- function getHash(url) { +- var index = url.indexOf('#'); +- return index === -1 ? '' : url.substr(index + 1); +- } +- +- /** +- * @private +- * Note: this method is used only by scenario runner +- * TODO(vojta): prefix this method with $$ ? +- * @param {function()} callback Function that will be called when no outstanding request +- */ +- self.notifyWhenNoOutstandingRequests = function(callback) { +- // force browser to execute all pollFns - this is needed so that cookies and other pollers fire +- // at some deterministic time in respect to the test runner's actions. Leaving things up to the +- // regular poller would result in flaky tests. +- forEach(pollFns, function(pollFn) { pollFn(); }); +- +- if (outstandingRequestCount === 0) { +- callback(); +- } else { +- outstandingRequestCallbacks.push(callback); +- } +- }; +- +- ////////////////////////////////////////////////////////////// +- // Poll Watcher API +- ////////////////////////////////////////////////////////////// +- var pollFns = [], +- pollTimeout; +- +- /** +- * @name $browser#addPollFn +- * +- * @param {function()} fn Poll function to add +- * +- * @description +- * Adds a function to the list of functions that poller periodically executes, +- * and starts polling if not started yet. +- * +- * @returns {function()} the added function +- */ +- self.addPollFn = function(fn) { +- if (isUndefined(pollTimeout)) startPoller(100, setTimeout); +- pollFns.push(fn); +- return fn; +- }; +- +- /** +- * @param {number} interval How often should browser call poll functions (ms) +- * @param {function()} setTimeout Reference to a real or fake `setTimeout` function. +- * +- * @description +- * Configures the poller to run in the specified intervals, using the specified +- * setTimeout fn and kicks it off. +- */ +- function startPoller(interval, setTimeout) { +- (function check() { +- forEach(pollFns, function(pollFn) { pollFn(); }); +- pollTimeout = setTimeout(check, interval); +- })(); +- } +- +- ////////////////////////////////////////////////////////////// +- // URL API +- ////////////////////////////////////////////////////////////// +- +- var cachedState, lastHistoryState, +- lastBrowserUrl = location.href, +- baseElement = document.find('base'), +- reloadLocation = null; +- +- cacheState(); +- lastHistoryState = cachedState; +- +- /** +- * @name $browser#url +- * +- * @description +- * GETTER: +- * Without any argument, this method just returns current value of location.href. +- * +- * SETTER: +- * With at least one argument, this method sets url to new value. +- * If html5 history api supported, pushState/replaceState is used, otherwise +- * location.href/location.replace is used. +- * Returns its own instance to allow chaining +- * +- * NOTE: this api is intended for use only by the $location service. Please use the +- * {@link ng.$location $location service} to change url. +- * +- * @param {string} url New url (when used as setter) +- * @param {boolean=} replace Should new url replace current history record? +- * @param {object=} state object to use with pushState/replaceState +- */ +- self.url = function(url, replace, state) { +- // In modern browsers `history.state` is `null` by default; treating it separately +- // from `undefined` would cause `$browser.url('/foo')` to change `history.state` +- // to undefined via `pushState`. Instead, let's change `undefined` to `null` here. +- if (isUndefined(state)) { +- state = null; +- } +- +- // Android Browser BFCache causes location, history reference to become stale. +- if (location !== window.location) location = window.location; +- if (history !== window.history) history = window.history; +- +- // setter +- if (url) { +- var sameState = lastHistoryState === state; +- +- // Don't change anything if previous and current URLs and states match. This also prevents +- // IE<10 from getting into redirect loop when in LocationHashbangInHtml5Url mode. +- // See https://github.com/angular/angular.js/commit/ffb2701 +- if (lastBrowserUrl === url && (!$sniffer.history || sameState)) { +- return self; +- } +- var sameBase = lastBrowserUrl && stripHash(lastBrowserUrl) === stripHash(url); +- lastBrowserUrl = url; +- lastHistoryState = state; +- // Don't use history API if only the hash changed +- // due to a bug in IE10/IE11 which leads +- // to not firing a `hashchange` nor `popstate` event +- // in some cases (see #9143). +- if ($sniffer.history && (!sameBase || !sameState)) { +- history[replace ? 'replaceState' : 'pushState'](state, '', url); +- cacheState(); +- // Do the assignment again so that those two variables are referentially identical. +- lastHistoryState = cachedState; +- } else { +- if (!sameBase) { +- reloadLocation = url; +- } +- if (replace) { +- location.replace(url); +- } else if (!sameBase) { +- location.href = url; +- } else { +- location.hash = getHash(url); +- } +- } +- return self; +- // getter +- } else { +- // - reloadLocation is needed as browsers don't allow to read out +- // the new location.href if a reload happened. +- // - the replacement is a workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=407172 +- return reloadLocation || location.href.replace(/%27/g,"'"); +- } +- }; +- +- /** +- * @name $browser#state +- * +- * @description +- * This method is a getter. +- * +- * Return history.state or null if history.state is undefined. +- * +- * @returns {object} state +- */ +- self.state = function() { +- return cachedState; +- }; +- +- var urlChangeListeners = [], +- urlChangeInit = false; +- +- function cacheStateAndFireUrlChange() { +- cacheState(); +- fireUrlChange(); +- } +- +- function getCurrentState() { +- try { +- return history.state; +- } catch (e) { +- // MSIE can reportedly throw when there is no state (UNCONFIRMED). +- } +- } +- +- // This variable should be used *only* inside the cacheState function. +- var lastCachedState = null; +- function cacheState() { +- // This should be the only place in $browser where `history.state` is read. +- cachedState = getCurrentState(); +- cachedState = isUndefined(cachedState) ? null : cachedState; +- +- // Prevent callbacks fo fire twice if both hashchange & popstate were fired. +- if (equals(cachedState, lastCachedState)) { +- cachedState = lastCachedState; +- } +- lastCachedState = cachedState; +- } +- +- function fireUrlChange() { +- if (lastBrowserUrl === self.url() && lastHistoryState === cachedState) { +- return; +- } +- +- lastBrowserUrl = self.url(); +- lastHistoryState = cachedState; +- forEach(urlChangeListeners, function(listener) { +- listener(self.url(), cachedState); +- }); +- } +- +- /** +- * @name $browser#onUrlChange +- * +- * @description +- * Register callback function that will be called, when url changes. +- * +- * It's only called when the url is changed from outside of angular: +- * - user types different url into address bar +- * - user clicks on history (forward/back) button +- * - user clicks on a link +- * +- * It's not called when url is changed by $browser.url() method +- * +- * The listener gets called with new url as parameter. +- * +- * NOTE: this api is intended for use only by the $location service. Please use the +- * {@link ng.$location $location service} to monitor url changes in angular apps. +- * +- * @param {function(string)} listener Listener function to be called when url changes. +- * @return {function(string)} Returns the registered listener fn - handy if the fn is anonymous. +- */ +- self.onUrlChange = function(callback) { +- // TODO(vojta): refactor to use node's syntax for events +- if (!urlChangeInit) { +- // We listen on both (hashchange/popstate) when available, as some browsers (e.g. Opera) +- // don't fire popstate when user change the address bar and don't fire hashchange when url +- // changed by push/replaceState +- +- // html5 history api - popstate event +- if ($sniffer.history) jqLite(window).on('popstate', cacheStateAndFireUrlChange); +- // hashchange event +- jqLite(window).on('hashchange', cacheStateAndFireUrlChange); +- +- urlChangeInit = true; +- } +- +- urlChangeListeners.push(callback); +- return callback; +- }; +- +- /** +- * Checks whether the url has changed outside of Angular. +- * Needs to be exported to be able to check for changes that have been done in sync, +- * as hashchange/popstate events fire in async. +- */ +- self.$$checkUrlChange = fireUrlChange; +- +- ////////////////////////////////////////////////////////////// +- // Misc API +- ////////////////////////////////////////////////////////////// +- +- /** +- * @name $browser#baseHref +- * +- * @description +- * Returns current <base href> +- * (always relative - without domain) +- * +- * @returns {string} The current base href +- */ +- self.baseHref = function() { +- var href = baseElement.attr('href'); +- return href ? href.replace(/^(https?\:)?\/\/[^\/]*/, '') : ''; +- }; +- +- ////////////////////////////////////////////////////////////// +- // Cookies API +- ////////////////////////////////////////////////////////////// +- var lastCookies = {}; +- var lastCookieString = ''; +- var cookiePath = self.baseHref(); +- +- function safeDecodeURIComponent(str) { +- try { +- return decodeURIComponent(str); +- } catch (e) { +- return str; +- } +- } +- +- /** +- * @name $browser#cookies +- * +- * @param {string=} name Cookie name +- * @param {string=} value Cookie value +- * +- * @description +- * The cookies method provides a 'private' low level access to browser cookies. +- * It is not meant to be used directly, use the $cookie service instead. +- * +- * The return values vary depending on the arguments that the method was called with as follows: +- * +- * - cookies() -> hash of all cookies, this is NOT a copy of the internal state, so do not modify +- * it +- * - cookies(name, value) -> set name to value, if value is undefined delete the cookie +- * - cookies(name) -> the same as (name, undefined) == DELETES (no one calls it right now that +- * way) +- * +- * @returns {Object} Hash of all cookies (if called without any parameter) +- */ +- self.cookies = function(name, value) { +- var cookieLength, cookieArray, cookie, i, index; +- +- if (name) { +- if (value === undefined) { +- rawDocument.cookie = encodeURIComponent(name) + "=;path=" + cookiePath + +- ";expires=Thu, 01 Jan 1970 00:00:00 GMT"; +- } else { +- if (isString(value)) { +- cookieLength = (rawDocument.cookie = encodeURIComponent(name) + '=' + encodeURIComponent(value) + +- ';path=' + cookiePath).length + 1; +- +- // per http://www.ietf.org/rfc/rfc2109.txt browser must allow at minimum: +- // - 300 cookies +- // - 20 cookies per unique domain +- // - 4096 bytes per cookie +- if (cookieLength > 4096) { +- $log.warn("Cookie '" + name + +- "' possibly not set or overflowed because it was too large (" + +- cookieLength + " > 4096 bytes)!"); +- } +- } +- } +- } else { +- if (rawDocument.cookie !== lastCookieString) { +- lastCookieString = rawDocument.cookie; +- cookieArray = lastCookieString.split("; "); +- lastCookies = {}; +- +- for (i = 0; i < cookieArray.length; i++) { +- cookie = cookieArray[i]; +- index = cookie.indexOf('='); +- if (index > 0) { //ignore nameless cookies +- name = safeDecodeURIComponent(cookie.substring(0, index)); +- // the first value that is seen for a cookie is the most +- // specific one. values for the same cookie name that +- // follow are for less specific paths. +- if (lastCookies[name] === undefined) { +- lastCookies[name] = safeDecodeURIComponent(cookie.substring(index + 1)); +- } +- } +- } +- } +- return lastCookies; +- } +- }; +- +- +- /** +- * @name $browser#defer +- * @param {function()} fn A function, who's execution should be deferred. +- * @param {number=} [delay=0] of milliseconds to defer the function execution. +- * @returns {*} DeferId that can be used to cancel the task via `$browser.defer.cancel()`. +- * +- * @description +- * Executes a fn asynchronously via `setTimeout(fn, delay)`. +- * +- * Unlike when calling `setTimeout` directly, in test this function is mocked and instead of using +- * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed +- * via `$browser.defer.flush()`. +- * +- */ +- self.defer = function(fn, delay) { +- var timeoutId; +- outstandingRequestCount++; +- timeoutId = setTimeout(function() { +- delete pendingDeferIds[timeoutId]; +- completeOutstandingRequest(fn); +- }, delay || 0); +- pendingDeferIds[timeoutId] = true; +- return timeoutId; +- }; +- +- +- /** +- * @name $browser#defer.cancel +- * +- * @description +- * Cancels a deferred task identified with `deferId`. +- * +- * @param {*} deferId Token returned by the `$browser.defer` function. +- * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully +- * canceled. +- */ +- self.defer.cancel = function(deferId) { +- if (pendingDeferIds[deferId]) { +- delete pendingDeferIds[deferId]; +- clearTimeout(deferId); +- completeOutstandingRequest(noop); +- return true; +- } +- return false; +- }; +- +-} +- +-function $BrowserProvider() { +- this.$get = ['$window', '$log', '$sniffer', '$document', +- function($window, $log, $sniffer, $document) { +- return new Browser($window, $document, $log, $sniffer); +- }]; +-} +- +-/** +- * @ngdoc service +- * @name $cacheFactory +- * +- * @description +- * Factory that constructs {@link $cacheFactory.Cache Cache} objects and gives access to +- * them. +- * +- * ```js +- * +- * var cache = $cacheFactory('cacheId'); +- * expect($cacheFactory.get('cacheId')).toBe(cache); +- * expect($cacheFactory.get('noSuchCacheId')).not.toBeDefined(); +- * +- * cache.put("key", "value"); +- * cache.put("another key", "another value"); +- * +- * // We've specified no options on creation +- * expect(cache.info()).toEqual({id: 'cacheId', size: 2}); +- * +- * ``` +- * +- * +- * @param {string} cacheId Name or id of the newly created cache. +- * @param {object=} options Options object that specifies the cache behavior. Properties: +- * +- * - `{number=}` `capacity` — turns the cache into LRU cache. +- * +- * @returns {object} Newly created cache object with the following set of methods: +- * +- * - `{object}` `info()` — Returns id, size, and options of cache. +- * - `{{*}}` `put({string} key, {*} value)` — Puts a new key-value pair into the cache and returns +- * it. +- * - `{{*}}` `get({string} key)` — Returns cached value for `key` or undefined for cache miss. +- * - `{void}` `remove({string} key)` — Removes a key-value pair from the cache. +- * - `{void}` `removeAll()` — Removes all cached values. +- * - `{void}` `destroy()` — Removes references to this cache from $cacheFactory. +- * +- * @example +- <example module="cacheExampleApp"> +- <file name="index.html"> +- <div ng-controller="CacheController"> +- <input ng-model="newCacheKey" placeholder="Key"> +- <input ng-model="newCacheValue" placeholder="Value"> +- <button ng-click="put(newCacheKey, newCacheValue)">Cache</button> +- +- <p ng-if="keys.length">Cached Values</p> +- <div ng-repeat="key in keys"> +- <span ng-bind="key"></span> +- <span>: </span> +- <b ng-bind="cache.get(key)"></b> +- </div> +- +- <p>Cache Info</p> +- <div ng-repeat="(key, value) in cache.info()"> +- <span ng-bind="key"></span> +- <span>: </span> +- <b ng-bind="value"></b> +- </div> +- </div> +- </file> +- <file name="script.js"> +- angular.module('cacheExampleApp', []). +- controller('CacheController', ['$scope', '$cacheFactory', function($scope, $cacheFactory) { +- $scope.keys = []; +- $scope.cache = $cacheFactory('cacheId'); +- $scope.put = function(key, value) { +- if ($scope.cache.get(key) === undefined) { +- $scope.keys.push(key); +- } +- $scope.cache.put(key, value === undefined ? null : value); +- }; +- }]); +- </file> +- <file name="style.css"> +- p { +- margin: 10px 0 3px; +- } +- </file> +- </example> +- */ +-function $CacheFactoryProvider() { +- +- this.$get = function() { +- var caches = {}; +- +- function cacheFactory(cacheId, options) { +- if (cacheId in caches) { +- throw minErr('$cacheFactory')('iid', "CacheId '{0}' is already taken!", cacheId); +- } +- +- var size = 0, +- stats = extend({}, options, {id: cacheId}), +- data = {}, +- capacity = (options && options.capacity) || Number.MAX_VALUE, +- lruHash = {}, +- freshEnd = null, +- staleEnd = null; +- +- /** +- * @ngdoc type +- * @name $cacheFactory.Cache +- * +- * @description +- * A cache object used to store and retrieve data, primarily used by +- * {@link $http $http} and the {@link ng.directive:script script} directive to cache +- * templates and other data. +- * +- * ```js +- * angular.module('superCache') +- * .factory('superCache', ['$cacheFactory', function($cacheFactory) { +- * return $cacheFactory('super-cache'); +- * }]); +- * ``` +- * +- * Example test: +- * +- * ```js +- * it('should behave like a cache', inject(function(superCache) { +- * superCache.put('key', 'value'); +- * superCache.put('another key', 'another value'); +- * +- * expect(superCache.info()).toEqual({ +- * id: 'super-cache', +- * size: 2 +- * }); +- * +- * superCache.remove('another key'); +- * expect(superCache.get('another key')).toBeUndefined(); +- * +- * superCache.removeAll(); +- * expect(superCache.info()).toEqual({ +- * id: 'super-cache', +- * size: 0 +- * }); +- * })); +- * ``` +- */ +- return caches[cacheId] = { +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#put +- * @kind function +- * +- * @description +- * Inserts a named entry into the {@link $cacheFactory.Cache Cache} object to be +- * retrieved later, and incrementing the size of the cache if the key was not already +- * present in the cache. If behaving like an LRU cache, it will also remove stale +- * entries from the set. +- * +- * It will not insert undefined values into the cache. +- * +- * @param {string} key the key under which the cached data is stored. +- * @param {*} value the value to store alongside the key. If it is undefined, the key +- * will not be stored. +- * @returns {*} the value stored. +- */ +- put: function(key, value) { +- if (capacity < Number.MAX_VALUE) { +- var lruEntry = lruHash[key] || (lruHash[key] = {key: key}); +- +- refresh(lruEntry); +- } +- +- if (isUndefined(value)) return; +- if (!(key in data)) size++; +- data[key] = value; +- +- if (size > capacity) { +- this.remove(staleEnd.key); +- } +- +- return value; +- }, +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#get +- * @kind function +- * +- * @description +- * Retrieves named data stored in the {@link $cacheFactory.Cache Cache} object. +- * +- * @param {string} key the key of the data to be retrieved +- * @returns {*} the value stored. +- */ +- get: function(key) { +- if (capacity < Number.MAX_VALUE) { +- var lruEntry = lruHash[key]; +- +- if (!lruEntry) return; +- +- refresh(lruEntry); +- } +- +- return data[key]; +- }, +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#remove +- * @kind function +- * +- * @description +- * Removes an entry from the {@link $cacheFactory.Cache Cache} object. +- * +- * @param {string} key the key of the entry to be removed +- */ +- remove: function(key) { +- if (capacity < Number.MAX_VALUE) { +- var lruEntry = lruHash[key]; +- +- if (!lruEntry) return; +- +- if (lruEntry == freshEnd) freshEnd = lruEntry.p; +- if (lruEntry == staleEnd) staleEnd = lruEntry.n; +- link(lruEntry.n,lruEntry.p); +- +- delete lruHash[key]; +- } +- +- delete data[key]; +- size--; +- }, +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#removeAll +- * @kind function +- * +- * @description +- * Clears the cache object of any entries. +- */ +- removeAll: function() { +- data = {}; +- size = 0; +- lruHash = {}; +- freshEnd = staleEnd = null; +- }, +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#destroy +- * @kind function +- * +- * @description +- * Destroys the {@link $cacheFactory.Cache Cache} object entirely, +- * removing it from the {@link $cacheFactory $cacheFactory} set. +- */ +- destroy: function() { +- data = null; +- stats = null; +- lruHash = null; +- delete caches[cacheId]; +- }, +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory.Cache#info +- * @kind function +- * +- * @description +- * Retrieve information regarding a particular {@link $cacheFactory.Cache Cache}. +- * +- * @returns {object} an object with the following properties: +- * <ul> +- * <li>**id**: the id of the cache instance</li> +- * <li>**size**: the number of entries kept in the cache instance</li> +- * <li>**...**: any additional properties from the options object when creating the +- * cache.</li> +- * </ul> +- */ +- info: function() { +- return extend({}, stats, {size: size}); +- } +- }; +- +- +- /** +- * makes the `entry` the freshEnd of the LRU linked list +- */ +- function refresh(entry) { +- if (entry != freshEnd) { +- if (!staleEnd) { +- staleEnd = entry; +- } else if (staleEnd == entry) { +- staleEnd = entry.n; +- } +- +- link(entry.n, entry.p); +- link(entry, freshEnd); +- freshEnd = entry; +- freshEnd.n = null; +- } +- } +- +- +- /** +- * bidirectionally links two entries of the LRU linked list +- */ +- function link(nextEntry, prevEntry) { +- if (nextEntry != prevEntry) { +- if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify +- if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify +- } +- } +- } +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory#info +- * +- * @description +- * Get information about all the caches that have been created +- * +- * @returns {Object} - key-value map of `cacheId` to the result of calling `cache#info` +- */ +- cacheFactory.info = function() { +- var info = {}; +- forEach(caches, function(cache, cacheId) { +- info[cacheId] = cache.info(); +- }); +- return info; +- }; +- +- +- /** +- * @ngdoc method +- * @name $cacheFactory#get +- * +- * @description +- * Get access to a cache object by the `cacheId` used when it was created. +- * +- * @param {string} cacheId Name or id of a cache to access. +- * @returns {object} Cache object identified by the cacheId or undefined if no such cache. +- */ +- cacheFactory.get = function(cacheId) { +- return caches[cacheId]; +- }; +- +- +- return cacheFactory; +- }; +-} +- +-/** +- * @ngdoc service +- * @name $templateCache +- * +- * @description +- * The first time a template is used, it is loaded in the template cache for quick retrieval. You +- * can load templates directly into the cache in a `script` tag, or by consuming the +- * `$templateCache` service directly. +- * +- * Adding via the `script` tag: +- * +- * ```html +- * <script type="text/ng-template" id="templateId.html"> +- * <p>This is the content of the template</p> +- * </script> +- * ``` +- * +- * **Note:** the `script` tag containing the template does not need to be included in the `head` of +- * the document, but it must be a descendent of the {@link ng.$rootElement $rootElement} (IE, +- * element with ng-app attribute), otherwise the template will be ignored. +- * +- * Adding via the `$templateCache` service: +- * +- * ```js +- * var myApp = angular.module('myApp', []); +- * myApp.run(function($templateCache) { +- * $templateCache.put('templateId.html', 'This is the content of the template'); +- * }); +- * ``` +- * +- * To retrieve the template later, simply use it in your HTML: +- * ```html +- * <div ng-include=" 'templateId.html' "></div> +- * ``` +- * +- * or get it via Javascript: +- * ```js +- * $templateCache.get('templateId.html') +- * ``` +- * +- * See {@link ng.$cacheFactory $cacheFactory}. +- * +- */ +-function $TemplateCacheProvider() { +- this.$get = ['$cacheFactory', function($cacheFactory) { +- return $cacheFactory('templates'); +- }]; +-} +- +-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +- * Any commits to this file should be reviewed with security in mind. * +- * Changes to this file can potentially create security vulnerabilities. * +- * An approval from 2 Core members with history of modifying * +- * this file is required. * +- * * +- * Does the change somehow allow for arbitrary javascript to be executed? * +- * Or allows for someone to change the prototype of built-in objects? * +- * Or gives undesired access to variables likes document or window? * +- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +- +-/* ! VARIABLE/FUNCTION NAMING CONVENTIONS THAT APPLY TO THIS FILE! +- * +- * DOM-related variables: +- * +- * - "node" - DOM Node +- * - "element" - DOM Element or Node +- * - "$node" or "$element" - jqLite-wrapped node or element +- * +- * +- * Compiler related stuff: +- * +- * - "linkFn" - linking fn of a single directive +- * - "nodeLinkFn" - function that aggregates all linking fns for a particular node +- * - "childLinkFn" - function that aggregates all linking fns for child nodes of a particular node +- * - "compositeLinkFn" - function that aggregates all linking fns for a compilation root (nodeList) +- */ +- +- +-/** +- * @ngdoc service +- * @name $compile +- * @kind function +- * +- * @description +- * Compiles an HTML string or DOM into a template and produces a template function, which +- * can then be used to link {@link ng.$rootScope.Scope `scope`} and the template together. +- * +- * The compilation is a process of walking the DOM tree and matching DOM elements to +- * {@link ng.$compileProvider#directive directives}. +- * +- * <div class="alert alert-warning"> +- * **Note:** This document is an in-depth reference of all directive options. +- * For a gentle introduction to directives with examples of common use cases, +- * see the {@link guide/directive directive guide}. +- * </div> +- * +- * ## Comprehensive Directive API +- * +- * There are many different options for a directive. +- * +- * The difference resides in the return value of the factory function. +- * You can either return a "Directive Definition Object" (see below) that defines the directive properties, +- * or just the `postLink` function (all other properties will have the default values). +- * +- * <div class="alert alert-success"> +- * **Best Practice:** It's recommended to use the "directive definition object" form. +- * </div> +- * +- * Here's an example directive declared with a Directive Definition Object: +- * +- * ```js +- * var myModule = angular.module(...); +- * +- * myModule.directive('directiveName', function factory(injectables) { +- * var directiveDefinitionObject = { +- * priority: 0, +- * template: '<div></div>', // or // function(tElement, tAttrs) { ... }, +- * // or +- * // templateUrl: 'directive.html', // or // function(tElement, tAttrs) { ... }, +- * transclude: false, +- * restrict: 'A', +- * templateNamespace: 'html', +- * scope: false, +- * controller: function($scope, $element, $attrs, $transclude, otherInjectables) { ... }, +- * controllerAs: 'stringAlias', +- * require: 'siblingDirectiveName', // or // ['^parentDirectiveName', '?optionalDirectiveName', '?^optionalParent'], +- * compile: function compile(tElement, tAttrs, transclude) { +- * return { +- * pre: function preLink(scope, iElement, iAttrs, controller) { ... }, +- * post: function postLink(scope, iElement, iAttrs, controller) { ... } +- * } +- * // or +- * // return function postLink( ... ) { ... } +- * }, +- * // or +- * // link: { +- * // pre: function preLink(scope, iElement, iAttrs, controller) { ... }, +- * // post: function postLink(scope, iElement, iAttrs, controller) { ... } +- * // } +- * // or +- * // link: function postLink( ... ) { ... } +- * }; +- * return directiveDefinitionObject; +- * }); +- * ``` +- * +- * <div class="alert alert-warning"> +- * **Note:** Any unspecified options will use the default value. You can see the default values below. +- * </div> +- * +- * Therefore the above can be simplified as: +- * +- * ```js +- * var myModule = angular.module(...); +- * +- * myModule.directive('directiveName', function factory(injectables) { +- * var directiveDefinitionObject = { +- * link: function postLink(scope, iElement, iAttrs) { ... } +- * }; +- * return directiveDefinitionObject; +- * // or +- * // return function postLink(scope, iElement, iAttrs) { ... } +- * }); +- * ``` +- * +- * +- * +- * ### Directive Definition Object +- * +- * The directive definition object provides instructions to the {@link ng.$compile +- * compiler}. The attributes are: +- * +- * #### `multiElement` +- * When this property is set to true, the HTML compiler will collect DOM nodes between +- * nodes with the attributes `directive-name-start` and `directive-name-end`, and group them +- * together as the directive elements. It is recommended that this feature be used on directives +- * which are not strictly behavioural (such as {@link ngClick}), and which +- * do not manipulate or replace child nodes (such as {@link ngInclude}). +- * +- * #### `priority` +- * When there are multiple directives defined on a single DOM element, sometimes it +- * is necessary to specify the order in which the directives are applied. The `priority` is used +- * to sort the directives before their `compile` functions get called. Priority is defined as a +- * number. Directives with greater numerical `priority` are compiled first. Pre-link functions +- * are also run in priority order, but post-link functions are run in reverse order. The order +- * of directives with the same priority is undefined. The default priority is `0`. +- * +- * #### `terminal` +- * If set to true then the current `priority` will be the last set of directives +- * which will execute (any directives at the current priority will still execute +- * as the order of execution on same `priority` is undefined). Note that expressions +- * and other directives used in the directive's template will also be excluded from execution. +- * +- * #### `scope` +- * **If set to `true`,** then a new scope will be created for this directive. If multiple directives on the +- * same element request a new scope, only one new scope is created. The new scope rule does not +- * apply for the root of the template since the root of the template always gets a new scope. +- * +- * **If set to `{}` (object hash),** then a new "isolate" scope is created. The 'isolate' scope differs from +- * normal scope in that it does not prototypically inherit from the parent scope. This is useful +- * when creating reusable components, which should not accidentally read or modify data in the +- * parent scope. +- * +- * The 'isolate' scope takes an object hash which defines a set of local scope properties +- * derived from the parent scope. These local properties are useful for aliasing values for +- * templates. Locals definition is a hash of local scope property to its source: +- * +- * * `@` or `@attr` - bind a local scope property to the value of DOM attribute. The result is +- * always a string since DOM attributes are strings. If no `attr` name is specified then the +- * attribute name is assumed to be the same as the local name. +- * Given `<widget my-attr="hello {{name}}">` and widget definition +- * of `scope: { localName:'@myAttr' }`, then widget scope property `localName` will reflect +- * the interpolated value of `hello {{name}}`. As the `name` attribute changes so will the +- * `localName` property on the widget scope. The `name` is read from the parent scope (not +- * component scope). +- * +- * * `=` or `=attr` - set up bi-directional binding between a local scope property and the +- * parent scope property of name defined via the value of the `attr` attribute. If no `attr` +- * name is specified then the attribute name is assumed to be the same as the local name. +- * Given `<widget my-attr="parentModel">` and widget definition of +- * `scope: { localModel:'=myAttr' }`, then widget scope property `localModel` will reflect the +- * value of `parentModel` on the parent scope. Any changes to `parentModel` will be reflected +- * in `localModel` and any changes in `localModel` will reflect in `parentModel`. If the parent +- * scope property doesn't exist, it will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception. You +- * can avoid this behavior using `=?` or `=?attr` in order to flag the property as optional. If +- * you want to shallow watch for changes (i.e. $watchCollection instead of $watch) you can use +- * `=*` or `=*attr` (`=*?` or `=*?attr` if the property is optional). +- * +- * * `&` or `&attr` - provides a way to execute an expression in the context of the parent scope. +- * If no `attr` name is specified then the attribute name is assumed to be the same as the +- * local name. Given `<widget my-attr="count = count + value">` and widget definition of +- * `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to +- * a function wrapper for the `count = count + value` expression. Often it's desirable to +- * pass data from the isolated scope via an expression to the parent scope, this can be +- * done by passing a map of local variable names and values into the expression wrapper fn. +- * For example, if the expression is `increment(amount)` then we can specify the amount value +- * by calling the `localFn` as `localFn({amount: 22})`. +- * +- * +- * #### `bindToController` +- * When an isolate scope is used for a component (see above), and `controllerAs` is used, `bindToController: true` will +- * allow a component to have its properties bound to the controller, rather than to scope. When the controller +- * is instantiated, the initial values of the isolate scope bindings are already available. +- * +- * #### `controller` +- * Controller constructor function. The controller is instantiated before the +- * pre-linking phase and it is shared with other directives (see +- * `require` attribute). This allows the directives to communicate with each other and augment +- * each other's behavior. The controller is injectable (and supports bracket notation) with the following locals: +- * +- * * `$scope` - Current scope associated with the element +- * * `$element` - Current element +- * * `$attrs` - Current attributes object for the element +- * * `$transclude` - A transclude linking function pre-bound to the correct transclusion scope: +- * `function([scope], cloneLinkingFn, futureParentElement)`. +- * * `scope`: optional argument to override the scope. +- * * `cloneLinkingFn`: optional argument to create clones of the original transcluded content. +- * * `futureParentElement`: +- * * defines the parent to which the `cloneLinkingFn` will add the cloned elements. +- * * default: `$element.parent()` resp. `$element` for `transclude:'element'` resp. `transclude:true`. +- * * only needed for transcludes that are allowed to contain non html elements (e.g. SVG elements) +- * and when the `cloneLinkinFn` is passed, +- * as those elements need to created and cloned in a special way when they are defined outside their +- * usual containers (e.g. like `<svg>`). +- * * See also the `directive.templateNamespace` property. +- * +- * +- * #### `require` +- * Require another directive and inject its controller as the fourth argument to the linking function. The +- * `require` takes a string name (or array of strings) of the directive(s) to pass in. If an array is used, the +- * injected argument will be an array in corresponding order. If no such directive can be +- * found, or if the directive does not have a controller, then an error is raised (unless no link function +- * is specified, in which case error checking is skipped). The name can be prefixed with: +- * +- * * (no prefix) - Locate the required controller on the current element. Throw an error if not found. +- * * `?` - Attempt to locate the required controller or pass `null` to the `link` fn if not found. +- * * `^` - Locate the required controller by searching the element and its parents. Throw an error if not found. +- * * `^^` - Locate the required controller by searching the element's parents. Throw an error if not found. +- * * `?^` - Attempt to locate the required controller by searching the element and its parents or pass +- * `null` to the `link` fn if not found. +- * * `?^^` - Attempt to locate the required controller by searching the element's parents, or pass +- * `null` to the `link` fn if not found. +- * +- * +- * #### `controllerAs` +- * Controller alias at the directive scope. An alias for the controller so it +- * can be referenced at the directive template. The directive needs to define a scope for this +- * configuration to be used. Useful in the case when directive is used as component. +- * +- * +- * #### `restrict` +- * String of subset of `EACM` which restricts the directive to a specific directive +- * declaration style. If omitted, the defaults (elements and attributes) are used. +- * +- * * `E` - Element name (default): `<my-directive></my-directive>` +- * * `A` - Attribute (default): `<div my-directive="exp"></div>` +- * * `C` - Class: `<div class="my-directive: exp;"></div>` +- * * `M` - Comment: `<!-- directive: my-directive exp -->` +- * +- * +- * #### `templateNamespace` +- * String representing the document type used by the markup in the template. +- * AngularJS needs this information as those elements need to be created and cloned +- * in a special way when they are defined outside their usual containers like `<svg>` and `<math>`. +- * +- * * `html` - All root nodes in the template are HTML. Root nodes may also be +- * top-level elements such as `<svg>` or `<math>`. +- * * `svg` - The root nodes in the template are SVG elements (excluding `<math>`). +- * * `math` - The root nodes in the template are MathML elements (excluding `<svg>`). +- * +- * If no `templateNamespace` is specified, then the namespace is considered to be `html`. +- * +- * #### `template` +- * HTML markup that may: +- * * Replace the contents of the directive's element (default). +- * * Replace the directive's element itself (if `replace` is true - DEPRECATED). +- * * Wrap the contents of the directive's element (if `transclude` is true). +- * +- * Value may be: +- * +- * * A string. For example `<div red-on-hover>{{delete_str}}</div>`. +- * * A function which takes two arguments `tElement` and `tAttrs` (described in the `compile` +- * function api below) and returns a string value. +- * +- * +- * #### `templateUrl` +- * This is similar to `template` but the template is loaded from the specified URL, asynchronously. +- * +- * Because template loading is asynchronous the compiler will suspend compilation of directives on that element +- * for later when the template has been resolved. In the meantime it will continue to compile and link +- * sibling and parent elements as though this element had not contained any directives. +- * +- * The compiler does not suspend the entire compilation to wait for templates to be loaded because this +- * would result in the whole app "stalling" until all templates are loaded asynchronously - even in the +- * case when only one deeply nested directive has `templateUrl`. +- * +- * Template loading is asynchronous even if the template has been preloaded into the {@link $templateCache} +- * +- * You can specify `templateUrl` as a string representing the URL or as a function which takes two +- * arguments `tElement` and `tAttrs` (described in the `compile` function api below) and returns +- * a string value representing the url. In either case, the template URL is passed through {@link +- * $sce#getTrustedResourceUrl $sce.getTrustedResourceUrl}. +- * +- * +- * #### `replace` ([*DEPRECATED*!], will be removed in next major release - i.e. v2.0) +- * specify what the template should replace. Defaults to `false`. +- * +- * * `true` - the template will replace the directive's element. +- * * `false` - the template will replace the contents of the directive's element. +- * +- * The replacement process migrates all of the attributes / classes from the old element to the new +- * one. See the {@link guide/directive#template-expanding-directive +- * Directives Guide} for an example. +- * +- * There are very few scenarios where element replacement is required for the application function, +- * the main one being reusable custom components that are used within SVG contexts +- * (because SVG doesn't work with custom elements in the DOM tree). +- * +- * #### `transclude` +- * Extract the contents of the element where the directive appears and make it available to the directive. +- * The contents are compiled and provided to the directive as a **transclusion function**. See the +- * {@link $compile#transclusion Transclusion} section below. +- * +- * There are two kinds of transclusion depending upon whether you want to transclude just the contents of the +- * directive's element or the entire element: +- * +- * * `true` - transclude the content (i.e. the child nodes) of the directive's element. +- * * `'element'` - transclude the whole of the directive's element including any directives on this +- * element that defined at a lower priority than this directive. When used, the `template` +- * property is ignored. +- * +- * +- * #### `compile` +- * +- * ```js +- * function compile(tElement, tAttrs, transclude) { ... } +- * ``` +- * +- * The compile function deals with transforming the template DOM. Since most directives do not do +- * template transformation, it is not used often. The compile function takes the following arguments: +- * +- * * `tElement` - template element - The element where the directive has been declared. It is +- * safe to do template transformation on the element and child elements only. +- * +- * * `tAttrs` - template attributes - Normalized list of attributes declared on this element shared +- * between all directive compile functions. +- * +- * * `transclude` - [*DEPRECATED*!] A transclude linking function: `function(scope, cloneLinkingFn)` +- * +- * <div class="alert alert-warning"> +- * **Note:** The template instance and the link instance may be different objects if the template has +- * been cloned. For this reason it is **not** safe to do anything other than DOM transformations that +- * apply to all cloned DOM nodes within the compile function. Specifically, DOM listener registration +- * should be done in a linking function rather than in a compile function. +- * </div> +- +- * <div class="alert alert-warning"> +- * **Note:** The compile function cannot handle directives that recursively use themselves in their +- * own templates or compile functions. Compiling these directives results in an infinite loop and a +- * stack overflow errors. +- * +- * This can be avoided by manually using $compile in the postLink function to imperatively compile +- * a directive's template instead of relying on automatic template compilation via `template` or +- * `templateUrl` declaration or manual compilation inside the compile function. +- * </div> +- * +- * <div class="alert alert-error"> +- * **Note:** The `transclude` function that is passed to the compile function is deprecated, as it +- * e.g. does not know about the right outer scope. Please use the transclude function that is passed +- * to the link function instead. +- * </div> +- +- * A compile function can have a return value which can be either a function or an object. +- * +- * * returning a (post-link) function - is equivalent to registering the linking function via the +- * `link` property of the config object when the compile function is empty. +- * +- * * returning an object with function(s) registered via `pre` and `post` properties - allows you to +- * control when a linking function should be called during the linking phase. See info about +- * pre-linking and post-linking functions below. +- * +- * +- * #### `link` +- * This property is used only if the `compile` property is not defined. +- * +- * ```js +- * function link(scope, iElement, iAttrs, controller, transcludeFn) { ... } +- * ``` +- * +- * The link function is responsible for registering DOM listeners as well as updating the DOM. It is +- * executed after the template has been cloned. This is where most of the directive logic will be +- * put. +- * +- * * `scope` - {@link ng.$rootScope.Scope Scope} - The scope to be used by the +- * directive for registering {@link ng.$rootScope.Scope#$watch watches}. +- * +- * * `iElement` - instance element - The element where the directive is to be used. It is safe to +- * manipulate the children of the element only in `postLink` function since the children have +- * already been linked. +- * +- * * `iAttrs` - instance attributes - Normalized list of attributes declared on this element shared +- * between all directive linking functions. +- * +- * * `controller` - a controller instance - A controller instance if at least one directive on the +- * element defines a controller. The controller is shared among all the directives, which allows +- * the directives to use the controllers as a communication channel. +- * +- * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. +- * This is the same as the `$transclude` +- * parameter of directive controllers, see there for details. +- * `function([scope], cloneLinkingFn, futureParentElement)`. +- * +- * #### Pre-linking function +- * +- * Executed before the child elements are linked. Not safe to do DOM transformation since the +- * compiler linking function will fail to locate the correct elements for linking. +- * +- * #### Post-linking function +- * +- * Executed after the child elements are linked. +- * +- * Note that child elements that contain `templateUrl` directives will not have been compiled +- * and linked since they are waiting for their template to load asynchronously and their own +- * compilation and linking has been suspended until that occurs. +- * +- * It is safe to do DOM transformation in the post-linking function on elements that are not waiting +- * for their async templates to be resolved. +- * +- * +- * ### Transclusion +- * +- * Transclusion is the process of extracting a collection of DOM element from one part of the DOM and +- * copying them to another part of the DOM, while maintaining their connection to the original AngularJS +- * scope from where they were taken. +- * +- * Transclusion is used (often with {@link ngTransclude}) to insert the +- * original contents of a directive's element into a specified place in the template of the directive. +- * The benefit of transclusion, over simply moving the DOM elements manually, is that the transcluded +- * content has access to the properties on the scope from which it was taken, even if the directive +- * has isolated scope. +- * See the {@link guide/directive#creating-a-directive-that-wraps-other-elements Directives Guide}. +- * +- * This makes it possible for the widget to have private state for its template, while the transcluded +- * content has access to its originating scope. +- * +- * <div class="alert alert-warning"> +- * **Note:** When testing an element transclude directive you must not place the directive at the root of the +- * DOM fragment that is being compiled. See {@link guide/unit-testing#testing-transclusion-directives +- * Testing Transclusion Directives}. +- * </div> +- * +- * #### Transclusion Functions +- * +- * When a directive requests transclusion, the compiler extracts its contents and provides a **transclusion +- * function** to the directive's `link` function and `controller`. This transclusion function is a special +- * **linking function** that will return the compiled contents linked to a new transclusion scope. +- * +- * <div class="alert alert-info"> +- * If you are just using {@link ngTransclude} then you don't need to worry about this function, since +- * ngTransclude will deal with it for us. +- * </div> +- * +- * If you want to manually control the insertion and removal of the transcluded content in your directive +- * then you must use this transclude function. When you call a transclude function it returns a a jqLite/JQuery +- * object that contains the compiled DOM, which is linked to the correct transclusion scope. +- * +- * When you call a transclusion function you can pass in a **clone attach function**. This function accepts +- * two parameters, `function(clone, scope) { ... }`, where the `clone` is a fresh compiled copy of your transcluded +- * content and the `scope` is the newly created transclusion scope, to which the clone is bound. +- * +- * <div class="alert alert-info"> +- * **Best Practice**: Always provide a `cloneFn` (clone attach function) when you call a translude function +- * since you then get a fresh clone of the original DOM and also have access to the new transclusion scope. +- * </div> +- * +- * It is normal practice to attach your transcluded content (`clone`) to the DOM inside your **clone +- * attach function**: +- * +- * ```js +- * var transcludedContent, transclusionScope; +- * +- * $transclude(function(clone, scope) { +- * element.append(clone); +- * transcludedContent = clone; +- * transclusionScope = scope; +- * }); +- * ``` +- * +- * Later, if you want to remove the transcluded content from your DOM then you should also destroy the +- * associated transclusion scope: +- * +- * ```js +- * transcludedContent.remove(); +- * transclusionScope.$destroy(); +- * ``` +- * +- * <div class="alert alert-info"> +- * **Best Practice**: if you intend to add and remove transcluded content manually in your directive +- * (by calling the transclude function to get the DOM and and calling `element.remove()` to remove it), +- * then you are also responsible for calling `$destroy` on the transclusion scope. +- * </div> +- * +- * The built-in DOM manipulation directives, such as {@link ngIf}, {@link ngSwitch} and {@link ngRepeat} +- * automatically destroy their transluded clones as necessary so you do not need to worry about this if +- * you are simply using {@link ngTransclude} to inject the transclusion into your directive. +- * +- * +- * #### Transclusion Scopes +- * +- * When you call a transclude function it returns a DOM fragment that is pre-bound to a **transclusion +- * scope**. This scope is special, in that it is a child of the directive's scope (and so gets destroyed +- * when the directive's scope gets destroyed) but it inherits the properties of the scope from which it +- * was taken. +- * +- * For example consider a directive that uses transclusion and isolated scope. The DOM hierarchy might look +- * like this: +- * +- * ```html +- * <div ng-app> +- * <div isolate> +- * <div transclusion> +- * </div> +- * </div> +- * </div> +- * ``` +- * +- * The `$parent` scope hierarchy will look like this: +- * +- * ``` +- * - $rootScope +- * - isolate +- * - transclusion +- * ``` +- * +- * but the scopes will inherit prototypically from different scopes to their `$parent`. +- * +- * ``` +- * - $rootScope +- * - transclusion +- * - isolate +- * ``` +- * +- * +- * ### Attributes +- * +- * The {@link ng.$compile.directive.Attributes Attributes} object - passed as a parameter in the +- * `link()` or `compile()` functions. It has a variety of uses. +- * +- * accessing *Normalized attribute names:* +- * Directives like 'ngBind' can be expressed in many ways: 'ng:bind', `data-ng-bind`, or 'x-ng-bind'. +- * the attributes object allows for normalized access to +- * the attributes. +- * +- * * *Directive inter-communication:* All directives share the same instance of the attributes +- * object which allows the directives to use the attributes object as inter directive +- * communication. +- * +- * * *Supports interpolation:* Interpolation attributes are assigned to the attribute object +- * allowing other directives to read the interpolated value. +- * +- * * *Observing interpolated attributes:* Use `$observe` to observe the value changes of attributes +- * that contain interpolation (e.g. `src="{{bar}}"`). Not only is this very efficient but it's also +- * the only way to easily get the actual value because during the linking phase the interpolation +- * hasn't been evaluated yet and so the value is at this time set to `undefined`. +- * +- * ```js +- * function linkingFn(scope, elm, attrs, ctrl) { +- * // get the attribute value +- * console.log(attrs.ngModel); +- * +- * // change the attribute +- * attrs.$set('ngModel', 'new value'); +- * +- * // observe changes to interpolated attribute +- * attrs.$observe('ngModel', function(value) { +- * console.log('ngModel has changed value to ' + value); +- * }); +- * } +- * ``` +- * +- * ## Example +- * +- * <div class="alert alert-warning"> +- * **Note**: Typically directives are registered with `module.directive`. The example below is +- * to illustrate how `$compile` works. +- * </div> +- * +- <example module="compileExample"> +- <file name="index.html"> +- <script> +- angular.module('compileExample', [], function($compileProvider) { +- // configure new 'compile' directive by passing a directive +- // factory function. The factory function injects the '$compile' +- $compileProvider.directive('compile', function($compile) { +- // directive factory creates a link function +- return function(scope, element, attrs) { +- scope.$watch( +- function(scope) { +- // watch the 'compile' expression for changes +- return scope.$eval(attrs.compile); +- }, +- function(value) { +- // when the 'compile' expression changes +- // assign it into the current DOM +- element.html(value); +- +- // compile the new DOM and link it to the current +- // scope. +- // NOTE: we only compile .childNodes so that +- // we don't get into infinite loop compiling ourselves +- $compile(element.contents())(scope); +- } +- ); +- }; +- }); +- }) +- .controller('GreeterController', ['$scope', function($scope) { +- $scope.name = 'Angular'; +- $scope.html = 'Hello {{name}}'; +- }]); +- </script> +- <div ng-controller="GreeterController"> +- <input ng-model="name"> <br> +- <textarea ng-model="html"></textarea> <br> +- <div compile="html"></div> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should auto compile', function() { +- var textarea = $('textarea'); +- var output = $('div[compile]'); +- // The initial state reads 'Hello Angular'. +- expect(output.getText()).toBe('Hello Angular'); +- textarea.clear(); +- textarea.sendKeys('{{name}}!'); +- expect(output.getText()).toBe('Angular!'); +- }); +- </file> +- </example> +- +- * +- * +- * @param {string|DOMElement} element Element or HTML string to compile into a template function. +- * @param {function(angular.Scope, cloneAttachFn=)} transclude function available to directives - DEPRECATED. +- * +- * <div class="alert alert-error"> +- * **Note:** Passing a `transclude` function to the $compile function is deprecated, as it +- * e.g. will not use the right outer scope. Please pass the transclude function as a +- * `parentBoundTranscludeFn` to the link function instead. +- * </div> +- * +- * @param {number} maxPriority only apply directives lower than given priority (Only effects the +- * root element(s), not their children) +- * @returns {function(scope, cloneAttachFn=, options=)} a link function which is used to bind template +- * (a DOM element/tree) to a scope. Where: +- * +- * * `scope` - A {@link ng.$rootScope.Scope Scope} to bind to. +- * * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the +- * `template` and call the `cloneAttachFn` function allowing the caller to attach the +- * cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is +- * called as: <br> `cloneAttachFn(clonedElement, scope)` where: +- * +- * * `clonedElement` - is a clone of the original `element` passed into the compiler. +- * * `scope` - is the current scope with which the linking function is working with. +- * +- * * `options` - An optional object hash with linking options. If `options` is provided, then the following +- * keys may be used to control linking behavior: +- * +- * * `parentBoundTranscludeFn` - the transclude function made available to +- * directives; if given, it will be passed through to the link functions of +- * directives found in `element` during compilation. +- * * `transcludeControllers` - an object hash with keys that map controller names +- * to controller instances; if given, it will make the controllers +- * available to directives. +- * * `futureParentElement` - defines the parent to which the `cloneAttachFn` will add +- * the cloned elements; only needed for transcludes that are allowed to contain non html +- * elements (e.g. SVG elements). See also the directive.controller property. +- * +- * Calling the linking function returns the element of the template. It is either the original +- * element passed in, or the clone of the element if the `cloneAttachFn` is provided. +- * +- * After linking the view is not updated until after a call to $digest which typically is done by +- * Angular automatically. +- * +- * If you need access to the bound view, there are two ways to do it: +- * +- * - If you are not asking the linking function to clone the template, create the DOM element(s) +- * before you send them to the compiler and keep this reference around. +- * ```js +- * var element = $compile('<p>{{total}}</p>')(scope); +- * ``` +- * +- * - if on the other hand, you need the element to be cloned, the view reference from the original +- * example would not point to the clone, but rather to the original template that was cloned. In +- * this case, you can access the clone via the cloneAttachFn: +- * ```js +- * var templateElement = angular.element('<p>{{total}}</p>'), +- * scope = ....; +- * +- * var clonedElement = $compile(templateElement)(scope, function(clonedElement, scope) { +- * //attach the clone to DOM document at the right place +- * }); +- * +- * //now we have reference to the cloned DOM via `clonedElement` +- * ``` +- * +- * +- * For information on how the compiler works, see the +- * {@link guide/compiler Angular HTML Compiler} section of the Developer Guide. +- */ +- +-var $compileMinErr = minErr('$compile'); +- +-/** +- * @ngdoc provider +- * @name $compileProvider +- * +- * @description +- */ +-$CompileProvider.$inject = ['$provide', '$$sanitizeUriProvider']; +-function $CompileProvider($provide, $$sanitizeUriProvider) { +- var hasDirectives = {}, +- Suffix = 'Directive', +- COMMENT_DIRECTIVE_REGEXP = /^\s*directive\:\s*([\w\-]+)\s+(.*)$/, +- CLASS_DIRECTIVE_REGEXP = /(([\w\-]+)(?:\:([^;]+))?;?)/, +- ALL_OR_NOTHING_ATTRS = makeMap('ngSrc,ngSrcset,src,srcset'), +- REQUIRE_PREFIX_REGEXP = /^(?:(\^\^?)?(\?)?(\^\^?)?)?/; +- +- // Ref: http://developers.whatwg.org/webappapis.html#event-handler-idl-attributes +- // The assumption is that future DOM event attribute names will begin with +- // 'on' and be composed of only English letters. +- var EVENT_HANDLER_ATTR_REGEXP = /^(on[a-z]+|formaction)$/; +- +- function parseIsolateBindings(scope, directiveName) { +- var LOCAL_REGEXP = /^\s*([@&]|=(\*?))(\??)\s*(\w*)\s*$/; +- +- var bindings = {}; +- +- forEach(scope, function(definition, scopeName) { +- var match = definition.match(LOCAL_REGEXP); +- +- if (!match) { +- throw $compileMinErr('iscp', +- "Invalid isolate scope definition for directive '{0}'." + +- " Definition: {... {1}: '{2}' ...}", +- directiveName, scopeName, definition); +- } +- +- bindings[scopeName] = { +- mode: match[1][0], +- collection: match[2] === '*', +- optional: match[3] === '?', +- attrName: match[4] || scopeName +- }; +- }); +- +- return bindings; +- } +- +- /** +- * @ngdoc method +- * @name $compileProvider#directive +- * @kind function +- * +- * @description +- * Register a new directive with the compiler. +- * +- * @param {string|Object} name Name of the directive in camel-case (i.e. <code>ngBind</code> which +- * will match as <code>ng-bind</code>), or an object map of directives where the keys are the +- * names and the values are the factories. +- * @param {Function|Array} directiveFactory An injectable directive factory function. See +- * {@link guide/directive} for more info. +- * @returns {ng.$compileProvider} Self for chaining. +- */ +- this.directive = function registerDirective(name, directiveFactory) { +- assertNotHasOwnProperty(name, 'directive'); +- if (isString(name)) { +- assertArg(directiveFactory, 'directiveFactory'); +- if (!hasDirectives.hasOwnProperty(name)) { +- hasDirectives[name] = []; +- $provide.factory(name + Suffix, ['$injector', '$exceptionHandler', +- function($injector, $exceptionHandler) { +- var directives = []; +- forEach(hasDirectives[name], function(directiveFactory, index) { +- try { +- var directive = $injector.invoke(directiveFactory); +- if (isFunction(directive)) { +- directive = { compile: valueFn(directive) }; +- } else if (!directive.compile && directive.link) { +- directive.compile = valueFn(directive.link); +- } +- directive.priority = directive.priority || 0; +- directive.index = index; +- directive.name = directive.name || name; +- directive.require = directive.require || (directive.controller && directive.name); +- directive.restrict = directive.restrict || 'EA'; +- if (isObject(directive.scope)) { +- directive.$$isolateBindings = parseIsolateBindings(directive.scope, directive.name); +- } +- directives.push(directive); +- } catch (e) { +- $exceptionHandler(e); +- } +- }); +- return directives; +- }]); +- } +- hasDirectives[name].push(directiveFactory); +- } else { +- forEach(name, reverseParams(registerDirective)); +- } +- return this; +- }; +- +- +- /** +- * @ngdoc method +- * @name $compileProvider#aHrefSanitizationWhitelist +- * @kind function +- * +- * @description +- * Retrieves or overrides the default regular expression that is used for whitelisting of safe +- * urls during a[href] sanitization. +- * +- * The sanitization is a security measure aimed at preventing XSS attacks via html links. +- * +- * Any url about to be assigned to a[href] via data-binding is first normalized and turned into +- * an absolute url. Afterwards, the url is matched against the `aHrefSanitizationWhitelist` +- * regular expression. If a match is found, the original url is written into the dom. Otherwise, +- * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. +- * +- * @param {RegExp=} regexp New regexp to whitelist urls with. +- * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for +- * chaining otherwise. +- */ +- this.aHrefSanitizationWhitelist = function(regexp) { +- if (isDefined(regexp)) { +- $$sanitizeUriProvider.aHrefSanitizationWhitelist(regexp); +- return this; +- } else { +- return $$sanitizeUriProvider.aHrefSanitizationWhitelist(); +- } +- }; +- +- +- /** +- * @ngdoc method +- * @name $compileProvider#imgSrcSanitizationWhitelist +- * @kind function +- * +- * @description +- * Retrieves or overrides the default regular expression that is used for whitelisting of safe +- * urls during img[src] sanitization. +- * +- * The sanitization is a security measure aimed at prevent XSS attacks via html links. +- * +- * Any url about to be assigned to img[src] via data-binding is first normalized and turned into +- * an absolute url. Afterwards, the url is matched against the `imgSrcSanitizationWhitelist` +- * regular expression. If a match is found, the original url is written into the dom. Otherwise, +- * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. +- * +- * @param {RegExp=} regexp New regexp to whitelist urls with. +- * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for +- * chaining otherwise. +- */ +- this.imgSrcSanitizationWhitelist = function(regexp) { +- if (isDefined(regexp)) { +- $$sanitizeUriProvider.imgSrcSanitizationWhitelist(regexp); +- return this; +- } else { +- return $$sanitizeUriProvider.imgSrcSanitizationWhitelist(); +- } +- }; +- +- /** +- * @ngdoc method +- * @name $compileProvider#debugInfoEnabled +- * +- * @param {boolean=} enabled update the debugInfoEnabled state if provided, otherwise just return the +- * current debugInfoEnabled state +- * @returns {*} current value if used as getter or itself (chaining) if used as setter +- * +- * @kind function +- * +- * @description +- * Call this method to enable/disable various debug runtime information in the compiler such as adding +- * binding information and a reference to the current scope on to DOM elements. +- * If enabled, the compiler will add the following to DOM elements that have been bound to the scope +- * * `ng-binding` CSS class +- * * `$binding` data property containing an array of the binding expressions +- * +- * You may want to disable this in production for a significant performance boost. See +- * {@link guide/production#disabling-debug-data Disabling Debug Data} for more. +- * +- * The default value is true. +- */ +- var debugInfoEnabled = true; +- this.debugInfoEnabled = function(enabled) { +- if (isDefined(enabled)) { +- debugInfoEnabled = enabled; +- return this; +- } +- return debugInfoEnabled; +- }; +- +- this.$get = [ +- '$injector', '$interpolate', '$exceptionHandler', '$templateRequest', '$parse', +- '$controller', '$rootScope', '$document', '$sce', '$animate', '$$sanitizeUri', +- function($injector, $interpolate, $exceptionHandler, $templateRequest, $parse, +- $controller, $rootScope, $document, $sce, $animate, $$sanitizeUri) { +- +- var Attributes = function(element, attributesToCopy) { +- if (attributesToCopy) { +- var keys = Object.keys(attributesToCopy); +- var i, l, key; +- +- for (i = 0, l = keys.length; i < l; i++) { +- key = keys[i]; +- this[key] = attributesToCopy[key]; +- } +- } else { +- this.$attr = {}; +- } +- +- this.$$element = element; +- }; +- +- Attributes.prototype = { +- /** +- * @ngdoc method +- * @name $compile.directive.Attributes#$normalize +- * @kind function +- * +- * @description +- * Converts an attribute name (e.g. dash/colon/underscore-delimited string, optionally prefixed with `x-` or +- * `data-`) to its normalized, camelCase form. +- * +- * Also there is special case for Moz prefix starting with upper case letter. +- * +- * For further information check out the guide on {@link guide/directive#matching-directives Matching Directives} +- * +- * @param {string} name Name to normalize +- */ +- $normalize: directiveNormalize, +- +- +- /** +- * @ngdoc method +- * @name $compile.directive.Attributes#$addClass +- * @kind function +- * +- * @description +- * Adds the CSS class value specified by the classVal parameter to the element. If animations +- * are enabled then an animation will be triggered for the class addition. +- * +- * @param {string} classVal The className value that will be added to the element +- */ +- $addClass: function(classVal) { +- if (classVal && classVal.length > 0) { +- $animate.addClass(this.$$element, classVal); +- } +- }, +- +- /** +- * @ngdoc method +- * @name $compile.directive.Attributes#$removeClass +- * @kind function +- * +- * @description +- * Removes the CSS class value specified by the classVal parameter from the element. If +- * animations are enabled then an animation will be triggered for the class removal. +- * +- * @param {string} classVal The className value that will be removed from the element +- */ +- $removeClass: function(classVal) { +- if (classVal && classVal.length > 0) { +- $animate.removeClass(this.$$element, classVal); +- } +- }, +- +- /** +- * @ngdoc method +- * @name $compile.directive.Attributes#$updateClass +- * @kind function +- * +- * @description +- * Adds and removes the appropriate CSS class values to the element based on the difference +- * between the new and old CSS class values (specified as newClasses and oldClasses). +- * +- * @param {string} newClasses The current CSS className value +- * @param {string} oldClasses The former CSS className value +- */ +- $updateClass: function(newClasses, oldClasses) { +- var toAdd = tokenDifference(newClasses, oldClasses); +- if (toAdd && toAdd.length) { +- $animate.addClass(this.$$element, toAdd); +- } +- +- var toRemove = tokenDifference(oldClasses, newClasses); +- if (toRemove && toRemove.length) { +- $animate.removeClass(this.$$element, toRemove); +- } +- }, +- +- /** +- * Set a normalized attribute on the element in a way such that all directives +- * can share the attribute. This function properly handles boolean attributes. +- * @param {string} key Normalized key. (ie ngAttribute) +- * @param {string|boolean} value The value to set. If `null` attribute will be deleted. +- * @param {boolean=} writeAttr If false, does not write the value to DOM element attribute. +- * Defaults to true. +- * @param {string=} attrName Optional none normalized name. Defaults to key. +- */ +- $set: function(key, value, writeAttr, attrName) { +- // TODO: decide whether or not to throw an error if "class" +- //is set through this function since it may cause $updateClass to +- //become unstable. +- +- var node = this.$$element[0], +- booleanKey = getBooleanAttrName(node, key), +- aliasedKey = getAliasedAttrName(node, key), +- observer = key, +- nodeName; +- +- if (booleanKey) { +- this.$$element.prop(key, value); +- attrName = booleanKey; +- } else if (aliasedKey) { +- this[aliasedKey] = value; +- observer = aliasedKey; +- } +- +- this[key] = value; +- +- // translate normalized key to actual key +- if (attrName) { +- this.$attr[key] = attrName; +- } else { +- attrName = this.$attr[key]; +- if (!attrName) { +- this.$attr[key] = attrName = snake_case(key, '-'); +- } +- } +- +- nodeName = nodeName_(this.$$element); +- +- if ((nodeName === 'a' && key === 'href') || +- (nodeName === 'img' && key === 'src')) { +- // sanitize a[href] and img[src] values +- this[key] = value = $$sanitizeUri(value, key === 'src'); +- } else if (nodeName === 'img' && key === 'srcset') { +- // sanitize img[srcset] values +- var result = ""; +- +- // first check if there are spaces because it's not the same pattern +- var trimmedSrcset = trim(value); +- // ( 999x ,| 999w ,| ,|, ) +- var srcPattern = /(\s+\d+x\s*,|\s+\d+w\s*,|\s+,|,\s+)/; +- var pattern = /\s/.test(trimmedSrcset) ? srcPattern : /(,)/; +- +- // split srcset into tuple of uri and descriptor except for the last item +- var rawUris = trimmedSrcset.split(pattern); +- +- // for each tuples +- var nbrUrisWith2parts = Math.floor(rawUris.length / 2); +- for (var i = 0; i < nbrUrisWith2parts; i++) { +- var innerIdx = i * 2; +- // sanitize the uri +- result += $$sanitizeUri(trim(rawUris[innerIdx]), true); +- // add the descriptor +- result += (" " + trim(rawUris[innerIdx + 1])); +- } +- +- // split the last item into uri and descriptor +- var lastTuple = trim(rawUris[i * 2]).split(/\s/); +- +- // sanitize the last uri +- result += $$sanitizeUri(trim(lastTuple[0]), true); +- +- // and add the last descriptor if any +- if (lastTuple.length === 2) { +- result += (" " + trim(lastTuple[1])); +- } +- this[key] = value = result; +- } +- +- if (writeAttr !== false) { +- if (value === null || value === undefined) { +- this.$$element.removeAttr(attrName); +- } else { +- this.$$element.attr(attrName, value); +- } +- } +- +- // fire observers +- var $$observers = this.$$observers; +- $$observers && forEach($$observers[observer], function(fn) { +- try { +- fn(value); +- } catch (e) { +- $exceptionHandler(e); +- } +- }); +- }, +- +- +- /** +- * @ngdoc method +- * @name $compile.directive.Attributes#$observe +- * @kind function +- * +- * @description +- * Observes an interpolated attribute. +- * +- * The observer function will be invoked once during the next `$digest` following +- * compilation. The observer is then invoked whenever the interpolated value +- * changes. +- * +- * @param {string} key Normalized key. (ie ngAttribute) . +- * @param {function(interpolatedValue)} fn Function that will be called whenever +- the interpolated value of the attribute changes. +- * See the {@link guide/directive#text-and-attribute-bindings Directives} guide for more info. +- * @returns {function()} Returns a deregistration function for this observer. +- */ +- $observe: function(key, fn) { +- var attrs = this, +- $$observers = (attrs.$$observers || (attrs.$$observers = createMap())), +- listeners = ($$observers[key] || ($$observers[key] = [])); +- +- listeners.push(fn); +- $rootScope.$evalAsync(function() { +- if (!listeners.$$inter && attrs.hasOwnProperty(key)) { +- // no one registered attribute interpolation function, so lets call it manually +- fn(attrs[key]); +- } +- }); +- +- return function() { +- arrayRemove(listeners, fn); +- }; +- } +- }; +- +- +- function safeAddClass($element, className) { +- try { +- $element.addClass(className); +- } catch (e) { +- // ignore, since it means that we are trying to set class on +- // SVG element, where class name is read-only. +- } +- } +- +- +- var startSymbol = $interpolate.startSymbol(), +- endSymbol = $interpolate.endSymbol(), +- denormalizeTemplate = (startSymbol == '{{' || endSymbol == '}}') +- ? identity +- : function denormalizeTemplate(template) { +- return template.replace(/\{\{/g, startSymbol).replace(/}}/g, endSymbol); +- }, +- NG_ATTR_BINDING = /^ngAttr[A-Z]/; +- +- compile.$$addBindingInfo = debugInfoEnabled ? function $$addBindingInfo($element, binding) { +- var bindings = $element.data('$binding') || []; +- +- if (isArray(binding)) { +- bindings = bindings.concat(binding); +- } else { +- bindings.push(binding); +- } +- +- $element.data('$binding', bindings); +- } : noop; +- +- compile.$$addBindingClass = debugInfoEnabled ? function $$addBindingClass($element) { +- safeAddClass($element, 'ng-binding'); +- } : noop; +- +- compile.$$addScopeInfo = debugInfoEnabled ? function $$addScopeInfo($element, scope, isolated, noTemplate) { +- var dataName = isolated ? (noTemplate ? '$isolateScopeNoTemplate' : '$isolateScope') : '$scope'; +- $element.data(dataName, scope); +- } : noop; +- +- compile.$$addScopeClass = debugInfoEnabled ? function $$addScopeClass($element, isolated) { +- safeAddClass($element, isolated ? 'ng-isolate-scope' : 'ng-scope'); +- } : noop; +- +- return compile; +- +- //================================ +- +- function compile($compileNodes, transcludeFn, maxPriority, ignoreDirective, +- previousCompileContext) { +- if (!($compileNodes instanceof jqLite)) { +- // jquery always rewraps, whereas we need to preserve the original selector so that we can +- // modify it. +- $compileNodes = jqLite($compileNodes); +- } +- // We can not compile top level text elements since text nodes can be merged and we will +- // not be able to attach scope data to them, so we will wrap them in <span> +- forEach($compileNodes, function(node, index) { +- if (node.nodeType == NODE_TYPE_TEXT && node.nodeValue.match(/\S+/) /* non-empty */ ) { +- $compileNodes[index] = jqLite(node).wrap('<span></span>').parent()[0]; +- } +- }); +- var compositeLinkFn = +- compileNodes($compileNodes, transcludeFn, $compileNodes, +- maxPriority, ignoreDirective, previousCompileContext); +- compile.$$addScopeClass($compileNodes); +- var namespace = null; +- return function publicLinkFn(scope, cloneConnectFn, options) { +- assertArg(scope, 'scope'); +- +- options = options || {}; +- var parentBoundTranscludeFn = options.parentBoundTranscludeFn, +- transcludeControllers = options.transcludeControllers, +- futureParentElement = options.futureParentElement; +- +- // When `parentBoundTranscludeFn` is passed, it is a +- // `controllersBoundTransclude` function (it was previously passed +- // as `transclude` to directive.link) so we must unwrap it to get +- // its `boundTranscludeFn` +- if (parentBoundTranscludeFn && parentBoundTranscludeFn.$$boundTransclude) { +- parentBoundTranscludeFn = parentBoundTranscludeFn.$$boundTransclude; +- } +- +- if (!namespace) { +- namespace = detectNamespaceForChildElements(futureParentElement); +- } +- var $linkNode; +- if (namespace !== 'html') { +- // When using a directive with replace:true and templateUrl the $compileNodes +- // (or a child element inside of them) +- // might change, so we need to recreate the namespace adapted compileNodes +- // for call to the link function. +- // Note: This will already clone the nodes... +- $linkNode = jqLite( +- wrapTemplate(namespace, jqLite('<div>').append($compileNodes).html()) +- ); +- } else if (cloneConnectFn) { +- // important!!: we must call our jqLite.clone() since the jQuery one is trying to be smart +- // and sometimes changes the structure of the DOM. +- $linkNode = JQLitePrototype.clone.call($compileNodes); +- } else { +- $linkNode = $compileNodes; +- } +- +- if (transcludeControllers) { +- for (var controllerName in transcludeControllers) { +- $linkNode.data('$' + controllerName + 'Controller', transcludeControllers[controllerName].instance); +- } +- } +- +- compile.$$addScopeInfo($linkNode, scope); +- +- if (cloneConnectFn) cloneConnectFn($linkNode, scope); +- if (compositeLinkFn) compositeLinkFn(scope, $linkNode, $linkNode, parentBoundTranscludeFn); +- return $linkNode; +- }; +- } +- +- function detectNamespaceForChildElements(parentElement) { +- // TODO: Make this detect MathML as well... +- var node = parentElement && parentElement[0]; +- if (!node) { +- return 'html'; +- } else { +- return nodeName_(node) !== 'foreignobject' && node.toString().match(/SVG/) ? 'svg' : 'html'; +- } +- } +- +- /** +- * Compile function matches each node in nodeList against the directives. Once all directives +- * for a particular node are collected their compile functions are executed. The compile +- * functions return values - the linking functions - are combined into a composite linking +- * function, which is the a linking function for the node. +- * +- * @param {NodeList} nodeList an array of nodes or NodeList to compile +- * @param {function(angular.Scope, cloneAttachFn=)} transcludeFn A linking function, where the +- * scope argument is auto-generated to the new child of the transcluded parent scope. +- * @param {DOMElement=} $rootElement If the nodeList is the root of the compilation tree then +- * the rootElement must be set the jqLite collection of the compile root. This is +- * needed so that the jqLite collection items can be replaced with widgets. +- * @param {number=} maxPriority Max directive priority. +- * @returns {Function} A composite linking function of all of the matched directives or null. +- */ +- function compileNodes(nodeList, transcludeFn, $rootElement, maxPriority, ignoreDirective, +- previousCompileContext) { +- var linkFns = [], +- attrs, directives, nodeLinkFn, childNodes, childLinkFn, linkFnFound, nodeLinkFnFound; +- +- for (var i = 0; i < nodeList.length; i++) { +- attrs = new Attributes(); +- +- // we must always refer to nodeList[i] since the nodes can be replaced underneath us. +- directives = collectDirectives(nodeList[i], [], attrs, i === 0 ? maxPriority : undefined, +- ignoreDirective); +- +- nodeLinkFn = (directives.length) +- ? applyDirectivesToNode(directives, nodeList[i], attrs, transcludeFn, $rootElement, +- null, [], [], previousCompileContext) +- : null; +- +- if (nodeLinkFn && nodeLinkFn.scope) { +- compile.$$addScopeClass(attrs.$$element); +- } +- +- childLinkFn = (nodeLinkFn && nodeLinkFn.terminal || +- !(childNodes = nodeList[i].childNodes) || +- !childNodes.length) +- ? null +- : compileNodes(childNodes, +- nodeLinkFn ? ( +- (nodeLinkFn.transcludeOnThisElement || !nodeLinkFn.templateOnThisElement) +- && nodeLinkFn.transclude) : transcludeFn); +- +- if (nodeLinkFn || childLinkFn) { +- linkFns.push(i, nodeLinkFn, childLinkFn); +- linkFnFound = true; +- nodeLinkFnFound = nodeLinkFnFound || nodeLinkFn; +- } +- +- //use the previous context only for the first element in the virtual group +- previousCompileContext = null; +- } +- +- // return a linking function if we have found anything, null otherwise +- return linkFnFound ? compositeLinkFn : null; +- +- function compositeLinkFn(scope, nodeList, $rootElement, parentBoundTranscludeFn) { +- var nodeLinkFn, childLinkFn, node, childScope, i, ii, idx, childBoundTranscludeFn; +- var stableNodeList; +- +- +- if (nodeLinkFnFound) { +- // copy nodeList so that if a nodeLinkFn removes or adds an element at this DOM level our +- // offsets don't get screwed up +- var nodeListLength = nodeList.length; +- stableNodeList = new Array(nodeListLength); +- +- // create a sparse array by only copying the elements which have a linkFn +- for (i = 0; i < linkFns.length; i+=3) { +- idx = linkFns[i]; +- stableNodeList[idx] = nodeList[idx]; +- } +- } else { +- stableNodeList = nodeList; +- } +- +- for (i = 0, ii = linkFns.length; i < ii;) { +- node = stableNodeList[linkFns[i++]]; +- nodeLinkFn = linkFns[i++]; +- childLinkFn = linkFns[i++]; +- +- if (nodeLinkFn) { +- if (nodeLinkFn.scope) { +- childScope = scope.$new(); +- compile.$$addScopeInfo(jqLite(node), childScope); +- } else { +- childScope = scope; +- } +- +- if (nodeLinkFn.transcludeOnThisElement) { +- childBoundTranscludeFn = createBoundTranscludeFn( +- scope, nodeLinkFn.transclude, parentBoundTranscludeFn, +- nodeLinkFn.elementTranscludeOnThisElement); +- +- } else if (!nodeLinkFn.templateOnThisElement && parentBoundTranscludeFn) { +- childBoundTranscludeFn = parentBoundTranscludeFn; +- +- } else if (!parentBoundTranscludeFn && transcludeFn) { +- childBoundTranscludeFn = createBoundTranscludeFn(scope, transcludeFn); +- +- } else { +- childBoundTranscludeFn = null; +- } +- +- nodeLinkFn(childLinkFn, childScope, node, $rootElement, childBoundTranscludeFn); +- +- } else if (childLinkFn) { +- childLinkFn(scope, node.childNodes, undefined, parentBoundTranscludeFn); +- } +- } +- } +- } +- +- function createBoundTranscludeFn(scope, transcludeFn, previousBoundTranscludeFn, elementTransclusion) { +- +- var boundTranscludeFn = function(transcludedScope, cloneFn, controllers, futureParentElement, containingScope) { +- +- if (!transcludedScope) { +- transcludedScope = scope.$new(false, containingScope); +- transcludedScope.$$transcluded = true; +- } +- +- return transcludeFn(transcludedScope, cloneFn, { +- parentBoundTranscludeFn: previousBoundTranscludeFn, +- transcludeControllers: controllers, +- futureParentElement: futureParentElement +- }); +- }; +- +- return boundTranscludeFn; +- } +- +- /** +- * Looks for directives on the given node and adds them to the directive collection which is +- * sorted. +- * +- * @param node Node to search. +- * @param directives An array to which the directives are added to. This array is sorted before +- * the function returns. +- * @param attrs The shared attrs object which is used to populate the normalized attributes. +- * @param {number=} maxPriority Max directive priority. +- */ +- function collectDirectives(node, directives, attrs, maxPriority, ignoreDirective) { +- var nodeType = node.nodeType, +- attrsMap = attrs.$attr, +- match, +- className; +- +- switch (nodeType) { +- case NODE_TYPE_ELEMENT: /* Element */ +- // use the node name: <directive> +- addDirective(directives, +- directiveNormalize(nodeName_(node)), 'E', maxPriority, ignoreDirective); +- +- // iterate over the attributes +- for (var attr, name, nName, ngAttrName, value, isNgAttr, nAttrs = node.attributes, +- j = 0, jj = nAttrs && nAttrs.length; j < jj; j++) { +- var attrStartName = false; +- var attrEndName = false; +- +- attr = nAttrs[j]; +- name = attr.name; +- value = trim(attr.value); +- +- // support ngAttr attribute binding +- ngAttrName = directiveNormalize(name); +- if (isNgAttr = NG_ATTR_BINDING.test(ngAttrName)) { +- name = name.replace(PREFIX_REGEXP, '') +- .substr(8).replace(/_(.)/g, function(match, letter) { +- return letter.toUpperCase(); +- }); +- } +- +- var directiveNName = ngAttrName.replace(/(Start|End)$/, ''); +- if (directiveIsMultiElement(directiveNName)) { +- if (ngAttrName === directiveNName + 'Start') { +- attrStartName = name; +- attrEndName = name.substr(0, name.length - 5) + 'end'; +- name = name.substr(0, name.length - 6); +- } +- } +- +- nName = directiveNormalize(name.toLowerCase()); +- attrsMap[nName] = name; +- if (isNgAttr || !attrs.hasOwnProperty(nName)) { +- attrs[nName] = value; +- if (getBooleanAttrName(node, nName)) { +- attrs[nName] = true; // presence means true +- } +- } +- addAttrInterpolateDirective(node, directives, value, nName, isNgAttr); +- addDirective(directives, nName, 'A', maxPriority, ignoreDirective, attrStartName, +- attrEndName); +- } +- +- // use class as directive +- className = node.className; +- if (isObject(className)) { +- // Maybe SVGAnimatedString +- className = className.animVal; +- } +- if (isString(className) && className !== '') { +- while (match = CLASS_DIRECTIVE_REGEXP.exec(className)) { +- nName = directiveNormalize(match[2]); +- if (addDirective(directives, nName, 'C', maxPriority, ignoreDirective)) { +- attrs[nName] = trim(match[3]); +- } +- className = className.substr(match.index + match[0].length); +- } +- } +- break; +- case NODE_TYPE_TEXT: /* Text Node */ +- addTextInterpolateDirective(directives, node.nodeValue); +- break; +- case NODE_TYPE_COMMENT: /* Comment */ +- try { +- match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); +- if (match) { +- nName = directiveNormalize(match[1]); +- if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { +- attrs[nName] = trim(match[2]); +- } +- } +- } catch (e) { +- // turns out that under some circumstances IE9 throws errors when one attempts to read +- // comment's node value. +- // Just ignore it and continue. (Can't seem to reproduce in test case.) +- } +- break; +- } +- +- directives.sort(byPriority); +- return directives; +- } +- +- /** +- * Given a node with an directive-start it collects all of the siblings until it finds +- * directive-end. +- * @param node +- * @param attrStart +- * @param attrEnd +- * @returns {*} +- */ +- function groupScan(node, attrStart, attrEnd) { +- var nodes = []; +- var depth = 0; +- if (attrStart && node.hasAttribute && node.hasAttribute(attrStart)) { +- do { +- if (!node) { +- throw $compileMinErr('uterdir', +- "Unterminated attribute, found '{0}' but no matching '{1}' found.", +- attrStart, attrEnd); +- } +- if (node.nodeType == NODE_TYPE_ELEMENT) { +- if (node.hasAttribute(attrStart)) depth++; +- if (node.hasAttribute(attrEnd)) depth--; +- } +- nodes.push(node); +- node = node.nextSibling; +- } while (depth > 0); +- } else { +- nodes.push(node); +- } +- +- return jqLite(nodes); +- } +- +- /** +- * Wrapper for linking function which converts normal linking function into a grouped +- * linking function. +- * @param linkFn +- * @param attrStart +- * @param attrEnd +- * @returns {Function} +- */ +- function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) { +- return function(scope, element, attrs, controllers, transcludeFn) { +- element = groupScan(element[0], attrStart, attrEnd); +- return linkFn(scope, element, attrs, controllers, transcludeFn); +- }; +- } +- +- /** +- * Once the directives have been collected, their compile functions are executed. This method +- * is responsible for inlining directive templates as well as terminating the application +- * of the directives if the terminal directive has been reached. +- * +- * @param {Array} directives Array of collected directives to execute their compile function. +- * this needs to be pre-sorted by priority order. +- * @param {Node} compileNode The raw DOM node to apply the compile functions to +- * @param {Object} templateAttrs The shared attribute function +- * @param {function(angular.Scope, cloneAttachFn=)} transcludeFn A linking function, where the +- * scope argument is auto-generated to the new +- * child of the transcluded parent scope. +- * @param {JQLite} jqCollection If we are working on the root of the compile tree then this +- * argument has the root jqLite array so that we can replace nodes +- * on it. +- * @param {Object=} originalReplaceDirective An optional directive that will be ignored when +- * compiling the transclusion. +- * @param {Array.<Function>} preLinkFns +- * @param {Array.<Function>} postLinkFns +- * @param {Object} previousCompileContext Context used for previous compilation of the current +- * node +- * @returns {Function} linkFn +- */ +- function applyDirectivesToNode(directives, compileNode, templateAttrs, transcludeFn, +- jqCollection, originalReplaceDirective, preLinkFns, postLinkFns, +- previousCompileContext) { +- previousCompileContext = previousCompileContext || {}; +- +- var terminalPriority = -Number.MAX_VALUE, +- newScopeDirective, +- controllerDirectives = previousCompileContext.controllerDirectives, +- controllers, +- newIsolateScopeDirective = previousCompileContext.newIsolateScopeDirective, +- templateDirective = previousCompileContext.templateDirective, +- nonTlbTranscludeDirective = previousCompileContext.nonTlbTranscludeDirective, +- hasTranscludeDirective = false, +- hasTemplate = false, +- hasElementTranscludeDirective = previousCompileContext.hasElementTranscludeDirective, +- $compileNode = templateAttrs.$$element = jqLite(compileNode), +- directive, +- directiveName, +- $template, +- replaceDirective = originalReplaceDirective, +- childTranscludeFn = transcludeFn, +- linkFn, +- directiveValue; +- +- // executes all directives on the current element +- for (var i = 0, ii = directives.length; i < ii; i++) { +- directive = directives[i]; +- var attrStart = directive.$$start; +- var attrEnd = directive.$$end; +- +- // collect multiblock sections +- if (attrStart) { +- $compileNode = groupScan(compileNode, attrStart, attrEnd); +- } +- $template = undefined; +- +- if (terminalPriority > directive.priority) { +- break; // prevent further processing of directives +- } +- +- if (directiveValue = directive.scope) { +- +- // skip the check for directives with async templates, we'll check the derived sync +- // directive when the template arrives +- if (!directive.templateUrl) { +- if (isObject(directiveValue)) { +- // This directive is trying to add an isolated scope. +- // Check that there is no scope of any kind already +- assertNoDuplicate('new/isolated scope', newIsolateScopeDirective || newScopeDirective, +- directive, $compileNode); +- newIsolateScopeDirective = directive; +- } else { +- // This directive is trying to add a child scope. +- // Check that there is no isolated scope already +- assertNoDuplicate('new/isolated scope', newIsolateScopeDirective, directive, +- $compileNode); +- } +- } +- +- newScopeDirective = newScopeDirective || directive; +- } +- +- directiveName = directive.name; +- +- if (!directive.templateUrl && directive.controller) { +- directiveValue = directive.controller; +- controllerDirectives = controllerDirectives || {}; +- assertNoDuplicate("'" + directiveName + "' controller", +- controllerDirectives[directiveName], directive, $compileNode); +- controllerDirectives[directiveName] = directive; +- } +- +- if (directiveValue = directive.transclude) { +- hasTranscludeDirective = true; +- +- // Special case ngIf and ngRepeat so that we don't complain about duplicate transclusion. +- // This option should only be used by directives that know how to safely handle element transclusion, +- // where the transcluded nodes are added or replaced after linking. +- if (!directive.$$tlb) { +- assertNoDuplicate('transclusion', nonTlbTranscludeDirective, directive, $compileNode); +- nonTlbTranscludeDirective = directive; +- } +- +- if (directiveValue == 'element') { +- hasElementTranscludeDirective = true; +- terminalPriority = directive.priority; +- $template = $compileNode; +- $compileNode = templateAttrs.$$element = +- jqLite(document.createComment(' ' + directiveName + ': ' + +- templateAttrs[directiveName] + ' ')); +- compileNode = $compileNode[0]; +- replaceWith(jqCollection, sliceArgs($template), compileNode); +- +- childTranscludeFn = compile($template, transcludeFn, terminalPriority, +- replaceDirective && replaceDirective.name, { +- // Don't pass in: +- // - controllerDirectives - otherwise we'll create duplicates controllers +- // - newIsolateScopeDirective or templateDirective - combining templates with +- // element transclusion doesn't make sense. +- // +- // We need only nonTlbTranscludeDirective so that we prevent putting transclusion +- // on the same element more than once. +- nonTlbTranscludeDirective: nonTlbTranscludeDirective +- }); +- } else { +- $template = jqLite(jqLiteClone(compileNode)).contents(); +- $compileNode.empty(); // clear contents +- childTranscludeFn = compile($template, transcludeFn); +- } +- } +- +- if (directive.template) { +- hasTemplate = true; +- assertNoDuplicate('template', templateDirective, directive, $compileNode); +- templateDirective = directive; +- +- directiveValue = (isFunction(directive.template)) +- ? directive.template($compileNode, templateAttrs) +- : directive.template; +- +- directiveValue = denormalizeTemplate(directiveValue); +- +- if (directive.replace) { +- replaceDirective = directive; +- if (jqLiteIsTextNode(directiveValue)) { +- $template = []; +- } else { +- $template = removeComments(wrapTemplate(directive.templateNamespace, trim(directiveValue))); +- } +- compileNode = $template[0]; +- +- if ($template.length != 1 || compileNode.nodeType !== NODE_TYPE_ELEMENT) { +- throw $compileMinErr('tplrt', +- "Template for directive '{0}' must have exactly one root element. {1}", +- directiveName, ''); +- } +- +- replaceWith(jqCollection, $compileNode, compileNode); +- +- var newTemplateAttrs = {$attr: {}}; +- +- // combine directives from the original node and from the template: +- // - take the array of directives for this element +- // - split it into two parts, those that already applied (processed) and those that weren't (unprocessed) +- // - collect directives from the template and sort them by priority +- // - combine directives as: processed + template + unprocessed +- var templateDirectives = collectDirectives(compileNode, [], newTemplateAttrs); +- var unprocessedDirectives = directives.splice(i + 1, directives.length - (i + 1)); +- +- if (newIsolateScopeDirective) { +- markDirectivesAsIsolate(templateDirectives); +- } +- directives = directives.concat(templateDirectives).concat(unprocessedDirectives); +- mergeTemplateAttributes(templateAttrs, newTemplateAttrs); +- +- ii = directives.length; +- } else { +- $compileNode.html(directiveValue); +- } +- } +- +- if (directive.templateUrl) { +- hasTemplate = true; +- assertNoDuplicate('template', templateDirective, directive, $compileNode); +- templateDirective = directive; +- +- if (directive.replace) { +- replaceDirective = directive; +- } +- +- nodeLinkFn = compileTemplateUrl(directives.splice(i, directives.length - i), $compileNode, +- templateAttrs, jqCollection, hasTranscludeDirective && childTranscludeFn, preLinkFns, postLinkFns, { +- controllerDirectives: controllerDirectives, +- newIsolateScopeDirective: newIsolateScopeDirective, +- templateDirective: templateDirective, +- nonTlbTranscludeDirective: nonTlbTranscludeDirective +- }); +- ii = directives.length; +- } else if (directive.compile) { +- try { +- linkFn = directive.compile($compileNode, templateAttrs, childTranscludeFn); +- if (isFunction(linkFn)) { +- addLinkFns(null, linkFn, attrStart, attrEnd); +- } else if (linkFn) { +- addLinkFns(linkFn.pre, linkFn.post, attrStart, attrEnd); +- } +- } catch (e) { +- $exceptionHandler(e, startingTag($compileNode)); +- } +- } +- +- if (directive.terminal) { +- nodeLinkFn.terminal = true; +- terminalPriority = Math.max(terminalPriority, directive.priority); +- } +- +- } +- +- nodeLinkFn.scope = newScopeDirective && newScopeDirective.scope === true; +- nodeLinkFn.transcludeOnThisElement = hasTranscludeDirective; +- nodeLinkFn.elementTranscludeOnThisElement = hasElementTranscludeDirective; +- nodeLinkFn.templateOnThisElement = hasTemplate; +- nodeLinkFn.transclude = childTranscludeFn; +- +- previousCompileContext.hasElementTranscludeDirective = hasElementTranscludeDirective; +- +- // might be normal or delayed nodeLinkFn depending on if templateUrl is present +- return nodeLinkFn; +- +- //////////////////// +- +- function addLinkFns(pre, post, attrStart, attrEnd) { +- if (pre) { +- if (attrStart) pre = groupElementsLinkFnWrapper(pre, attrStart, attrEnd); +- pre.require = directive.require; +- pre.directiveName = directiveName; +- if (newIsolateScopeDirective === directive || directive.$$isolateScope) { +- pre = cloneAndAnnotateFn(pre, {isolateScope: true}); +- } +- preLinkFns.push(pre); +- } +- if (post) { +- if (attrStart) post = groupElementsLinkFnWrapper(post, attrStart, attrEnd); +- post.require = directive.require; +- post.directiveName = directiveName; +- if (newIsolateScopeDirective === directive || directive.$$isolateScope) { +- post = cloneAndAnnotateFn(post, {isolateScope: true}); +- } +- postLinkFns.push(post); +- } +- } +- +- +- function getControllers(directiveName, require, $element, elementControllers) { +- var value, retrievalMethod = 'data', optional = false; +- var $searchElement = $element; +- var match; +- if (isString(require)) { +- match = require.match(REQUIRE_PREFIX_REGEXP); +- require = require.substring(match[0].length); +- +- if (match[3]) { +- if (match[1]) match[3] = null; +- else match[1] = match[3]; +- } +- if (match[1] === '^') { +- retrievalMethod = 'inheritedData'; +- } else if (match[1] === '^^') { +- retrievalMethod = 'inheritedData'; +- $searchElement = $element.parent(); +- } +- if (match[2] === '?') { +- optional = true; +- } +- +- value = null; +- +- if (elementControllers && retrievalMethod === 'data') { +- if (value = elementControllers[require]) { +- value = value.instance; +- } +- } +- value = value || $searchElement[retrievalMethod]('$' + require + 'Controller'); +- +- if (!value && !optional) { +- throw $compileMinErr('ctreq', +- "Controller '{0}', required by directive '{1}', can't be found!", +- require, directiveName); +- } +- return value || null; +- } else if (isArray(require)) { +- value = []; +- forEach(require, function(require) { +- value.push(getControllers(directiveName, require, $element, elementControllers)); +- }); +- } +- return value; +- } +- +- +- function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) { +- var i, ii, linkFn, controller, isolateScope, elementControllers, transcludeFn, $element, +- attrs; +- +- if (compileNode === linkNode) { +- attrs = templateAttrs; +- $element = templateAttrs.$$element; +- } else { +- $element = jqLite(linkNode); +- attrs = new Attributes($element, templateAttrs); +- } +- +- if (newIsolateScopeDirective) { +- isolateScope = scope.$new(true); +- } +- +- if (boundTranscludeFn) { +- // track `boundTranscludeFn` so it can be unwrapped if `transcludeFn` +- // is later passed as `parentBoundTranscludeFn` to `publicLinkFn` +- transcludeFn = controllersBoundTransclude; +- transcludeFn.$$boundTransclude = boundTranscludeFn; +- } +- +- if (controllerDirectives) { +- // TODO: merge `controllers` and `elementControllers` into single object. +- controllers = {}; +- elementControllers = {}; +- forEach(controllerDirectives, function(directive) { +- var locals = { +- $scope: directive === newIsolateScopeDirective || directive.$$isolateScope ? isolateScope : scope, +- $element: $element, +- $attrs: attrs, +- $transclude: transcludeFn +- }, controllerInstance; +- +- controller = directive.controller; +- if (controller == '@') { +- controller = attrs[directive.name]; +- } +- +- controllerInstance = $controller(controller, locals, true, directive.controllerAs); +- +- // For directives with element transclusion the element is a comment, +- // but jQuery .data doesn't support attaching data to comment nodes as it's hard to +- // clean up (http://bugs.jquery.com/ticket/8335). +- // Instead, we save the controllers for the element in a local hash and attach to .data +- // later, once we have the actual element. +- elementControllers[directive.name] = controllerInstance; +- if (!hasElementTranscludeDirective) { +- $element.data('$' + directive.name + 'Controller', controllerInstance.instance); +- } +- +- controllers[directive.name] = controllerInstance; +- }); +- } +- +- if (newIsolateScopeDirective) { +- compile.$$addScopeInfo($element, isolateScope, true, !(templateDirective && (templateDirective === newIsolateScopeDirective || +- templateDirective === newIsolateScopeDirective.$$originalDirective))); +- compile.$$addScopeClass($element, true); +- +- var isolateScopeController = controllers && controllers[newIsolateScopeDirective.name]; +- var isolateBindingContext = isolateScope; +- if (isolateScopeController && isolateScopeController.identifier && +- newIsolateScopeDirective.bindToController === true) { +- isolateBindingContext = isolateScopeController.instance; +- } +- +- forEach(isolateScope.$$isolateBindings = newIsolateScopeDirective.$$isolateBindings, function(definition, scopeName) { +- var attrName = definition.attrName, +- optional = definition.optional, +- mode = definition.mode, // @, =, or & +- lastValue, +- parentGet, parentSet, compare; +- +- switch (mode) { +- +- case '@': +- attrs.$observe(attrName, function(value) { +- isolateBindingContext[scopeName] = value; +- }); +- attrs.$$observers[attrName].$$scope = scope; +- if (attrs[attrName]) { +- // If the attribute has been provided then we trigger an interpolation to ensure +- // the value is there for use in the link fn +- isolateBindingContext[scopeName] = $interpolate(attrs[attrName])(scope); +- } +- break; +- +- case '=': +- if (optional && !attrs[attrName]) { +- return; +- } +- parentGet = $parse(attrs[attrName]); +- if (parentGet.literal) { +- compare = equals; +- } else { +- compare = function(a, b) { return a === b || (a !== a && b !== b); }; +- } +- parentSet = parentGet.assign || function() { +- // reset the change, or we will throw this exception on every $digest +- lastValue = isolateBindingContext[scopeName] = parentGet(scope); +- throw $compileMinErr('nonassign', +- "Expression '{0}' used with directive '{1}' is non-assignable!", +- attrs[attrName], newIsolateScopeDirective.name); +- }; +- lastValue = isolateBindingContext[scopeName] = parentGet(scope); +- var parentValueWatch = function parentValueWatch(parentValue) { +- if (!compare(parentValue, isolateBindingContext[scopeName])) { +- // we are out of sync and need to copy +- if (!compare(parentValue, lastValue)) { +- // parent changed and it has precedence +- isolateBindingContext[scopeName] = parentValue; +- } else { +- // if the parent can be assigned then do so +- parentSet(scope, parentValue = isolateBindingContext[scopeName]); +- } +- } +- return lastValue = parentValue; +- }; +- parentValueWatch.$stateful = true; +- var unwatch; +- if (definition.collection) { +- unwatch = scope.$watchCollection(attrs[attrName], parentValueWatch); +- } else { +- unwatch = scope.$watch($parse(attrs[attrName], parentValueWatch), null, parentGet.literal); +- } +- isolateScope.$on('$destroy', unwatch); +- break; +- +- case '&': +- parentGet = $parse(attrs[attrName]); +- isolateBindingContext[scopeName] = function(locals) { +- return parentGet(scope, locals); +- }; +- break; +- } +- }); +- } +- if (controllers) { +- forEach(controllers, function(controller) { +- controller(); +- }); +- controllers = null; +- } +- +- // PRELINKING +- for (i = 0, ii = preLinkFns.length; i < ii; i++) { +- linkFn = preLinkFns[i]; +- invokeLinkFn(linkFn, +- linkFn.isolateScope ? isolateScope : scope, +- $element, +- attrs, +- linkFn.require && getControllers(linkFn.directiveName, linkFn.require, $element, elementControllers), +- transcludeFn +- ); +- } +- +- // RECURSION +- // We only pass the isolate scope, if the isolate directive has a template, +- // otherwise the child elements do not belong to the isolate directive. +- var scopeToChild = scope; +- if (newIsolateScopeDirective && (newIsolateScopeDirective.template || newIsolateScopeDirective.templateUrl === null)) { +- scopeToChild = isolateScope; +- } +- childLinkFn && childLinkFn(scopeToChild, linkNode.childNodes, undefined, boundTranscludeFn); +- +- // POSTLINKING +- for (i = postLinkFns.length - 1; i >= 0; i--) { +- linkFn = postLinkFns[i]; +- invokeLinkFn(linkFn, +- linkFn.isolateScope ? isolateScope : scope, +- $element, +- attrs, +- linkFn.require && getControllers(linkFn.directiveName, linkFn.require, $element, elementControllers), +- transcludeFn +- ); +- } +- +- // This is the function that is injected as `$transclude`. +- // Note: all arguments are optional! +- function controllersBoundTransclude(scope, cloneAttachFn, futureParentElement) { +- var transcludeControllers; +- +- // No scope passed in: +- if (!isScope(scope)) { +- futureParentElement = cloneAttachFn; +- cloneAttachFn = scope; +- scope = undefined; +- } +- +- if (hasElementTranscludeDirective) { +- transcludeControllers = elementControllers; +- } +- if (!futureParentElement) { +- futureParentElement = hasElementTranscludeDirective ? $element.parent() : $element; +- } +- return boundTranscludeFn(scope, cloneAttachFn, transcludeControllers, futureParentElement, scopeToChild); +- } +- } +- } +- +- function markDirectivesAsIsolate(directives) { +- // mark all directives as needing isolate scope. +- for (var j = 0, jj = directives.length; j < jj; j++) { +- directives[j] = inherit(directives[j], {$$isolateScope: true}); +- } +- } +- +- /** +- * looks up the directive and decorates it with exception handling and proper parameters. We +- * call this the boundDirective. +- * +- * @param {string} name name of the directive to look up. +- * @param {string} location The directive must be found in specific format. +- * String containing any of theses characters: +- * +- * * `E`: element name +- * * `A': attribute +- * * `C`: class +- * * `M`: comment +- * @returns {boolean} true if directive was added. +- */ +- function addDirective(tDirectives, name, location, maxPriority, ignoreDirective, startAttrName, +- endAttrName) { +- if (name === ignoreDirective) return null; +- var match = null; +- if (hasDirectives.hasOwnProperty(name)) { +- for (var directive, directives = $injector.get(name + Suffix), +- i = 0, ii = directives.length; i < ii; i++) { +- try { +- directive = directives[i]; +- if ((maxPriority === undefined || maxPriority > directive.priority) && +- directive.restrict.indexOf(location) != -1) { +- if (startAttrName) { +- directive = inherit(directive, {$$start: startAttrName, $$end: endAttrName}); +- } +- tDirectives.push(directive); +- match = directive; +- } +- } catch (e) { $exceptionHandler(e); } +- } +- } +- return match; +- } +- +- +- /** +- * looks up the directive and returns true if it is a multi-element directive, +- * and therefore requires DOM nodes between -start and -end markers to be grouped +- * together. +- * +- * @param {string} name name of the directive to look up. +- * @returns true if directive was registered as multi-element. +- */ +- function directiveIsMultiElement(name) { +- if (hasDirectives.hasOwnProperty(name)) { +- for (var directive, directives = $injector.get(name + Suffix), +- i = 0, ii = directives.length; i < ii; i++) { +- directive = directives[i]; +- if (directive.multiElement) { +- return true; +- } +- } +- } +- return false; +- } +- +- /** +- * When the element is replaced with HTML template then the new attributes +- * on the template need to be merged with the existing attributes in the DOM. +- * The desired effect is to have both of the attributes present. +- * +- * @param {object} dst destination attributes (original DOM) +- * @param {object} src source attributes (from the directive template) +- */ +- function mergeTemplateAttributes(dst, src) { +- var srcAttr = src.$attr, +- dstAttr = dst.$attr, +- $element = dst.$$element; +- +- // reapply the old attributes to the new element +- forEach(dst, function(value, key) { +- if (key.charAt(0) != '$') { +- if (src[key] && src[key] !== value) { +- value += (key === 'style' ? ';' : ' ') + src[key]; +- } +- dst.$set(key, value, true, srcAttr[key]); +- } +- }); +- +- // copy the new attributes on the old attrs object +- forEach(src, function(value, key) { +- if (key == 'class') { +- safeAddClass($element, value); +- dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; +- } else if (key == 'style') { +- $element.attr('style', $element.attr('style') + ';' + value); +- dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; +- // `dst` will never contain hasOwnProperty as DOM parser won't let it. +- // You will get an "InvalidCharacterError: DOM Exception 5" error if you +- // have an attribute like "has-own-property" or "data-has-own-property", etc. +- } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { +- dst[key] = value; +- dstAttr[key] = srcAttr[key]; +- } +- }); +- } +- +- +- function compileTemplateUrl(directives, $compileNode, tAttrs, +- $rootElement, childTranscludeFn, preLinkFns, postLinkFns, previousCompileContext) { +- var linkQueue = [], +- afterTemplateNodeLinkFn, +- afterTemplateChildLinkFn, +- beforeTemplateCompileNode = $compileNode[0], +- origAsyncDirective = directives.shift(), +- derivedSyncDirective = inherit(origAsyncDirective, { +- templateUrl: null, transclude: null, replace: null, $$originalDirective: origAsyncDirective +- }), +- templateUrl = (isFunction(origAsyncDirective.templateUrl)) +- ? origAsyncDirective.templateUrl($compileNode, tAttrs) +- : origAsyncDirective.templateUrl, +- templateNamespace = origAsyncDirective.templateNamespace; +- +- $compileNode.empty(); +- +- $templateRequest($sce.getTrustedResourceUrl(templateUrl)) +- .then(function(content) { +- var compileNode, tempTemplateAttrs, $template, childBoundTranscludeFn; +- +- content = denormalizeTemplate(content); +- +- if (origAsyncDirective.replace) { +- if (jqLiteIsTextNode(content)) { +- $template = []; +- } else { +- $template = removeComments(wrapTemplate(templateNamespace, trim(content))); +- } +- compileNode = $template[0]; +- +- if ($template.length != 1 || compileNode.nodeType !== NODE_TYPE_ELEMENT) { +- throw $compileMinErr('tplrt', +- "Template for directive '{0}' must have exactly one root element. {1}", +- origAsyncDirective.name, templateUrl); +- } +- +- tempTemplateAttrs = {$attr: {}}; +- replaceWith($rootElement, $compileNode, compileNode); +- var templateDirectives = collectDirectives(compileNode, [], tempTemplateAttrs); +- +- if (isObject(origAsyncDirective.scope)) { +- markDirectivesAsIsolate(templateDirectives); +- } +- directives = templateDirectives.concat(directives); +- mergeTemplateAttributes(tAttrs, tempTemplateAttrs); +- } else { +- compileNode = beforeTemplateCompileNode; +- $compileNode.html(content); +- } +- +- directives.unshift(derivedSyncDirective); +- +- afterTemplateNodeLinkFn = applyDirectivesToNode(directives, compileNode, tAttrs, +- childTranscludeFn, $compileNode, origAsyncDirective, preLinkFns, postLinkFns, +- previousCompileContext); +- forEach($rootElement, function(node, i) { +- if (node == compileNode) { +- $rootElement[i] = $compileNode[0]; +- } +- }); +- afterTemplateChildLinkFn = compileNodes($compileNode[0].childNodes, childTranscludeFn); +- +- while (linkQueue.length) { +- var scope = linkQueue.shift(), +- beforeTemplateLinkNode = linkQueue.shift(), +- linkRootElement = linkQueue.shift(), +- boundTranscludeFn = linkQueue.shift(), +- linkNode = $compileNode[0]; +- +- if (scope.$$destroyed) continue; +- +- if (beforeTemplateLinkNode !== beforeTemplateCompileNode) { +- var oldClasses = beforeTemplateLinkNode.className; +- +- if (!(previousCompileContext.hasElementTranscludeDirective && +- origAsyncDirective.replace)) { +- // it was cloned therefore we have to clone as well. +- linkNode = jqLiteClone(compileNode); +- } +- replaceWith(linkRootElement, jqLite(beforeTemplateLinkNode), linkNode); +- +- // Copy in CSS classes from original node +- safeAddClass(jqLite(linkNode), oldClasses); +- } +- if (afterTemplateNodeLinkFn.transcludeOnThisElement) { +- childBoundTranscludeFn = createBoundTranscludeFn(scope, afterTemplateNodeLinkFn.transclude, boundTranscludeFn); +- } else { +- childBoundTranscludeFn = boundTranscludeFn; +- } +- afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, linkNode, $rootElement, +- childBoundTranscludeFn); +- } +- linkQueue = null; +- }); +- +- return function delayedNodeLinkFn(ignoreChildLinkFn, scope, node, rootElement, boundTranscludeFn) { +- var childBoundTranscludeFn = boundTranscludeFn; +- if (scope.$$destroyed) return; +- if (linkQueue) { +- linkQueue.push(scope, +- node, +- rootElement, +- childBoundTranscludeFn); +- } else { +- if (afterTemplateNodeLinkFn.transcludeOnThisElement) { +- childBoundTranscludeFn = createBoundTranscludeFn(scope, afterTemplateNodeLinkFn.transclude, boundTranscludeFn); +- } +- afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, node, rootElement, childBoundTranscludeFn); +- } +- }; +- } +- +- +- /** +- * Sorting function for bound directives. +- */ +- function byPriority(a, b) { +- var diff = b.priority - a.priority; +- if (diff !== 0) return diff; +- if (a.name !== b.name) return (a.name < b.name) ? -1 : 1; +- return a.index - b.index; +- } +- +- +- function assertNoDuplicate(what, previousDirective, directive, element) { +- if (previousDirective) { +- throw $compileMinErr('multidir', 'Multiple directives [{0}, {1}] asking for {2} on: {3}', +- previousDirective.name, directive.name, what, startingTag(element)); +- } +- } +- +- +- function addTextInterpolateDirective(directives, text) { +- var interpolateFn = $interpolate(text, true); +- if (interpolateFn) { +- directives.push({ +- priority: 0, +- compile: function textInterpolateCompileFn(templateNode) { +- var templateNodeParent = templateNode.parent(), +- hasCompileParent = !!templateNodeParent.length; +- +- // When transcluding a template that has bindings in the root +- // we don't have a parent and thus need to add the class during linking fn. +- if (hasCompileParent) compile.$$addBindingClass(templateNodeParent); +- +- return function textInterpolateLinkFn(scope, node) { +- var parent = node.parent(); +- if (!hasCompileParent) compile.$$addBindingClass(parent); +- compile.$$addBindingInfo(parent, interpolateFn.expressions); +- scope.$watch(interpolateFn, function interpolateFnWatchAction(value) { +- node[0].nodeValue = value; +- }); +- }; +- } +- }); +- } +- } +- +- +- function wrapTemplate(type, template) { +- type = lowercase(type || 'html'); +- switch (type) { +- case 'svg': +- case 'math': +- var wrapper = document.createElement('div'); +- wrapper.innerHTML = '<' + type + '>' + template + '</' + type + '>'; +- return wrapper.childNodes[0].childNodes; +- default: +- return template; +- } +- } +- +- +- function getTrustedContext(node, attrNormalizedName) { +- if (attrNormalizedName == "srcdoc") { +- return $sce.HTML; +- } +- var tag = nodeName_(node); +- // maction[xlink:href] can source SVG. It's not limited to <maction>. +- if (attrNormalizedName == "xlinkHref" || +- (tag == "form" && attrNormalizedName == "action") || +- (tag != "img" && (attrNormalizedName == "src" || +- attrNormalizedName == "ngSrc"))) { +- return $sce.RESOURCE_URL; +- } +- } +- +- +- function addAttrInterpolateDirective(node, directives, value, name, allOrNothing) { +- var trustedContext = getTrustedContext(node, name); +- allOrNothing = ALL_OR_NOTHING_ATTRS[name] || allOrNothing; +- +- var interpolateFn = $interpolate(value, true, trustedContext, allOrNothing); +- +- // no interpolation found -> ignore +- if (!interpolateFn) return; +- +- +- if (name === "multiple" && nodeName_(node) === "select") { +- throw $compileMinErr("selmulti", +- "Binding to the 'multiple' attribute is not supported. Element: {0}", +- startingTag(node)); +- } +- +- directives.push({ +- priority: 100, +- compile: function() { +- return { +- pre: function attrInterpolatePreLinkFn(scope, element, attr) { +- var $$observers = (attr.$$observers || (attr.$$observers = {})); +- +- if (EVENT_HANDLER_ATTR_REGEXP.test(name)) { +- throw $compileMinErr('nodomevents', +- "Interpolations for HTML DOM event attributes are disallowed. Please use the " + +- "ng- versions (such as ng-click instead of onclick) instead."); +- } +- +- // If the attribute has changed since last $interpolate()ed +- var newValue = attr[name]; +- if (newValue !== value) { +- // we need to interpolate again since the attribute value has been updated +- // (e.g. by another directive's compile function) +- // ensure unset/empty values make interpolateFn falsy +- interpolateFn = newValue && $interpolate(newValue, true, trustedContext, allOrNothing); +- value = newValue; +- } +- +- // if attribute was updated so that there is no interpolation going on we don't want to +- // register any observers +- if (!interpolateFn) return; +- +- // initialize attr object so that it's ready in case we need the value for isolate +- // scope initialization, otherwise the value would not be available from isolate +- // directive's linking fn during linking phase +- attr[name] = interpolateFn(scope); +- +- ($$observers[name] || ($$observers[name] = [])).$$inter = true; +- (attr.$$observers && attr.$$observers[name].$$scope || scope). +- $watch(interpolateFn, function interpolateFnWatchAction(newValue, oldValue) { +- //special case for class attribute addition + removal +- //so that class changes can tap into the animation +- //hooks provided by the $animate service. Be sure to +- //skip animations when the first digest occurs (when +- //both the new and the old values are the same) since +- //the CSS classes are the non-interpolated values +- if (name === 'class' && newValue != oldValue) { +- attr.$updateClass(newValue, oldValue); +- } else { +- attr.$set(name, newValue); +- } +- }); +- } +- }; +- } +- }); +- } +- +- +- /** +- * This is a special jqLite.replaceWith, which can replace items which +- * have no parents, provided that the containing jqLite collection is provided. +- * +- * @param {JqLite=} $rootElement The root of the compile tree. Used so that we can replace nodes +- * in the root of the tree. +- * @param {JqLite} elementsToRemove The jqLite element which we are going to replace. We keep +- * the shell, but replace its DOM node reference. +- * @param {Node} newNode The new DOM node. +- */ +- function replaceWith($rootElement, elementsToRemove, newNode) { +- var firstElementToRemove = elementsToRemove[0], +- removeCount = elementsToRemove.length, +- parent = firstElementToRemove.parentNode, +- i, ii; +- +- if ($rootElement) { +- for (i = 0, ii = $rootElement.length; i < ii; i++) { +- if ($rootElement[i] == firstElementToRemove) { +- $rootElement[i++] = newNode; +- for (var j = i, j2 = j + removeCount - 1, +- jj = $rootElement.length; +- j < jj; j++, j2++) { +- if (j2 < jj) { +- $rootElement[j] = $rootElement[j2]; +- } else { +- delete $rootElement[j]; +- } +- } +- $rootElement.length -= removeCount - 1; +- +- // If the replaced element is also the jQuery .context then replace it +- // .context is a deprecated jQuery api, so we should set it only when jQuery set it +- // http://api.jquery.com/context/ +- if ($rootElement.context === firstElementToRemove) { +- $rootElement.context = newNode; +- } +- break; +- } +- } +- } +- +- if (parent) { +- parent.replaceChild(newNode, firstElementToRemove); +- } +- +- // TODO(perf): what's this document fragment for? is it needed? can we at least reuse it? +- var fragment = document.createDocumentFragment(); +- fragment.appendChild(firstElementToRemove); +- +- // Copy over user data (that includes Angular's $scope etc.). Don't copy private +- // data here because there's no public interface in jQuery to do that and copying over +- // event listeners (which is the main use of private data) wouldn't work anyway. +- jqLite(newNode).data(jqLite(firstElementToRemove).data()); +- +- // Remove data of the replaced element. We cannot just call .remove() +- // on the element it since that would deallocate scope that is needed +- // for the new node. Instead, remove the data "manually". +- if (!jQuery) { +- delete jqLite.cache[firstElementToRemove[jqLite.expando]]; +- } else { +- // jQuery 2.x doesn't expose the data storage. Use jQuery.cleanData to clean up after +- // the replaced element. The cleanData version monkey-patched by Angular would cause +- // the scope to be trashed and we do need the very same scope to work with the new +- // element. However, we cannot just cache the non-patched version and use it here as +- // that would break if another library patches the method after Angular does (one +- // example is jQuery UI). Instead, set a flag indicating scope destroying should be +- // skipped this one time. +- skipDestroyOnNextJQueryCleanData = true; +- jQuery.cleanData([firstElementToRemove]); +- } +- +- for (var k = 1, kk = elementsToRemove.length; k < kk; k++) { +- var element = elementsToRemove[k]; +- jqLite(element).remove(); // must do this way to clean up expando +- fragment.appendChild(element); +- delete elementsToRemove[k]; +- } +- +- elementsToRemove[0] = newNode; +- elementsToRemove.length = 1; +- } +- +- +- function cloneAndAnnotateFn(fn, annotation) { +- return extend(function() { return fn.apply(null, arguments); }, fn, annotation); +- } +- +- +- function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { +- try { +- linkFn(scope, $element, attrs, controllers, transcludeFn); +- } catch (e) { +- $exceptionHandler(e, startingTag($element)); +- } +- } +- }]; +-} +- +-var PREFIX_REGEXP = /^((?:x|data)[\:\-_])/i; +-/** +- * Converts all accepted directives format into proper directive name. +- * @param name Name to normalize +- */ +-function directiveNormalize(name) { +- return camelCase(name.replace(PREFIX_REGEXP, '')); +-} +- +-/** +- * @ngdoc type +- * @name $compile.directive.Attributes +- * +- * @description +- * A shared object between directive compile / linking functions which contains normalized DOM +- * element attributes. The values reflect current binding state `{{ }}`. The normalization is +- * needed since all of these are treated as equivalent in Angular: +- * +- * ``` +- * <span ng:bind="a" ng-bind="a" data-ng-bind="a" x-ng-bind="a"> +- * ``` +- */ +- +-/** +- * @ngdoc property +- * @name $compile.directive.Attributes#$attr +- * +- * @description +- * A map of DOM element attribute names to the normalized name. This is +- * needed to do reverse lookup from normalized name back to actual name. +- */ +- +- +-/** +- * @ngdoc method +- * @name $compile.directive.Attributes#$set +- * @kind function +- * +- * @description +- * Set DOM element attribute value. +- * +- * +- * @param {string} name Normalized element attribute name of the property to modify. The name is +- * reverse-translated using the {@link ng.$compile.directive.Attributes#$attr $attr} +- * property to the original name. +- * @param {string} value Value to set the attribute to. The value can be an interpolated string. +- */ +- +- +- +-/** +- * Closure compiler type information +- */ +- +-function nodesetLinkingFn( +- /* angular.Scope */ scope, +- /* NodeList */ nodeList, +- /* Element */ rootElement, +- /* function(Function) */ boundTranscludeFn +-) {} +- +-function directiveLinkingFn( +- /* nodesetLinkingFn */ nodesetLinkingFn, +- /* angular.Scope */ scope, +- /* Node */ node, +- /* Element */ rootElement, +- /* function(Function) */ boundTranscludeFn +-) {} +- +-function tokenDifference(str1, str2) { +- var values = '', +- tokens1 = str1.split(/\s+/), +- tokens2 = str2.split(/\s+/); +- +- outer: +- for (var i = 0; i < tokens1.length; i++) { +- var token = tokens1[i]; +- for (var j = 0; j < tokens2.length; j++) { +- if (token == tokens2[j]) continue outer; +- } +- values += (values.length > 0 ? ' ' : '') + token; +- } +- return values; +-} +- +-function removeComments(jqNodes) { +- jqNodes = jqLite(jqNodes); +- var i = jqNodes.length; +- +- if (i <= 1) { +- return jqNodes; +- } +- +- while (i--) { +- var node = jqNodes[i]; +- if (node.nodeType === NODE_TYPE_COMMENT) { +- splice.call(jqNodes, i, 1); +- } +- } +- return jqNodes; +-} +- +-var $controllerMinErr = minErr('$controller'); +- +-/** +- * @ngdoc provider +- * @name $controllerProvider +- * @description +- * The {@link ng.$controller $controller service} is used by Angular to create new +- * controllers. +- * +- * This provider allows controller registration via the +- * {@link ng.$controllerProvider#register register} method. +- */ +-function $ControllerProvider() { +- var controllers = {}, +- globals = false, +- CNTRL_REG = /^(\S+)(\s+as\s+(\w+))?$/; +- +- +- /** +- * @ngdoc method +- * @name $controllerProvider#register +- * @param {string|Object} name Controller name, or an object map of controllers where the keys are +- * the names and the values are the constructors. +- * @param {Function|Array} constructor Controller constructor fn (optionally decorated with DI +- * annotations in the array notation). +- */ +- this.register = function(name, constructor) { +- assertNotHasOwnProperty(name, 'controller'); +- if (isObject(name)) { +- extend(controllers, name); +- } else { +- controllers[name] = constructor; +- } +- }; +- +- /** +- * @ngdoc method +- * @name $controllerProvider#allowGlobals +- * @description If called, allows `$controller` to find controller constructors on `window` +- */ +- this.allowGlobals = function() { +- globals = true; +- }; +- +- +- this.$get = ['$injector', '$window', function($injector, $window) { +- +- /** +- * @ngdoc service +- * @name $controller +- * @requires $injector +- * +- * @param {Function|string} constructor If called with a function then it's considered to be the +- * controller constructor function. Otherwise it's considered to be a string which is used +- * to retrieve the controller constructor using the following steps: +- * +- * * check if a controller with given name is registered via `$controllerProvider` +- * * check if evaluating the string on the current scope returns a constructor +- * * if $controllerProvider#allowGlobals, check `window[constructor]` on the global +- * `window` object (not recommended) +- * +- * The string can use the `controller as property` syntax, where the controller instance is published +- * as the specified property on the `scope`; the `scope` must be injected into `locals` param for this +- * to work correctly. +- * +- * @param {Object} locals Injection locals for Controller. +- * @return {Object} Instance of given controller. +- * +- * @description +- * `$controller` service is responsible for instantiating controllers. +- * +- * It's just a simple call to {@link auto.$injector $injector}, but extracted into +- * a service, so that one can override this service with [BC version](https://gist.github.com/1649788). +- */ +- return function(expression, locals, later, ident) { +- // PRIVATE API: +- // param `later` --- indicates that the controller's constructor is invoked at a later time. +- // If true, $controller will allocate the object with the correct +- // prototype chain, but will not invoke the controller until a returned +- // callback is invoked. +- // param `ident` --- An optional label which overrides the label parsed from the controller +- // expression, if any. +- var instance, match, constructor, identifier; +- later = later === true; +- if (ident && isString(ident)) { +- identifier = ident; +- } +- +- if (isString(expression)) { +- match = expression.match(CNTRL_REG); +- if (!match) { +- throw $controllerMinErr('ctrlfmt', +- "Badly formed controller string '{0}'. " + +- "Must match `__name__ as __id__` or `__name__`.", expression); +- } +- constructor = match[1], +- identifier = identifier || match[3]; +- expression = controllers.hasOwnProperty(constructor) +- ? controllers[constructor] +- : getter(locals.$scope, constructor, true) || +- (globals ? getter($window, constructor, true) : undefined); +- +- assertArgFn(expression, constructor, true); +- } +- +- if (later) { +- // Instantiate controller later: +- // This machinery is used to create an instance of the object before calling the +- // controller's constructor itself. +- // +- // This allows properties to be added to the controller before the constructor is +- // invoked. Primarily, this is used for isolate scope bindings in $compile. +- // +- // This feature is not intended for use by applications, and is thus not documented +- // publicly. +- // Object creation: http://jsperf.com/create-constructor/2 +- var controllerPrototype = (isArray(expression) ? +- expression[expression.length - 1] : expression).prototype; +- instance = Object.create(controllerPrototype || null); +- +- if (identifier) { +- addIdentifier(locals, identifier, instance, constructor || expression.name); +- } +- +- return extend(function() { +- $injector.invoke(expression, instance, locals, constructor); +- return instance; +- }, { +- instance: instance, +- identifier: identifier +- }); +- } +- +- instance = $injector.instantiate(expression, locals, constructor); +- +- if (identifier) { +- addIdentifier(locals, identifier, instance, constructor || expression.name); +- } +- +- return instance; +- }; +- +- function addIdentifier(locals, identifier, instance, name) { +- if (!(locals && isObject(locals.$scope))) { +- throw minErr('$controller')('noscp', +- "Cannot export controller '{0}' as '{1}'! No $scope object provided via `locals`.", +- name, identifier); +- } +- +- locals.$scope[identifier] = instance; +- } +- }]; +-} +- +-/** +- * @ngdoc service +- * @name $document +- * @requires $window +- * +- * @description +- * A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object. +- * +- * @example +- <example module="documentExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <p>$document title: <b ng-bind="title"></b></p> +- <p>window.document title: <b ng-bind="windowTitle"></b></p> +- </div> +- </file> +- <file name="script.js"> +- angular.module('documentExample', []) +- .controller('ExampleController', ['$scope', '$document', function($scope, $document) { +- $scope.title = $document[0].title; +- $scope.windowTitle = angular.element(window.document)[0].title; +- }]); +- </file> +- </example> +- */ +-function $DocumentProvider() { +- this.$get = ['$window', function(window) { +- return jqLite(window.document); +- }]; +-} +- +-/** +- * @ngdoc service +- * @name $exceptionHandler +- * @requires ng.$log +- * +- * @description +- * Any uncaught exception in angular expressions is delegated to this service. +- * The default implementation simply delegates to `$log.error` which logs it into +- * the browser console. +- * +- * In unit tests, if `angular-mocks.js` is loaded, this service is overridden by +- * {@link ngMock.$exceptionHandler mock $exceptionHandler} which aids in testing. +- * +- * ## Example: +- * +- * ```js +- * angular.module('exceptionOverride', []).factory('$exceptionHandler', function() { +- * return function(exception, cause) { +- * exception.message += ' (caused by "' + cause + '")'; +- * throw exception; +- * }; +- * }); +- * ``` +- * +- * This example will override the normal action of `$exceptionHandler`, to make angular +- * exceptions fail hard when they happen, instead of just logging to the console. +- * +- * <hr /> +- * Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind` +- * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler} +- * (unless executed during a digest). +- * +- * If you wish, you can manually delegate exceptions, e.g. +- * `try { ... } catch(e) { $exceptionHandler(e); }` +- * +- * @param {Error} exception Exception associated with the error. +- * @param {string=} cause optional information about the context in which +- * the error was thrown. +- * +- */ +-function $ExceptionHandlerProvider() { +- this.$get = ['$log', function($log) { +- return function(exception, cause) { +- $log.error.apply($log, arguments); +- }; +- }]; +-} +- +-var APPLICATION_JSON = 'application/json'; +-var CONTENT_TYPE_APPLICATION_JSON = {'Content-Type': APPLICATION_JSON + ';charset=utf-8'}; +-var JSON_START = /^\[|^\{(?!\{)/; +-var JSON_ENDS = { +- '[': /]$/, +- '{': /}$/ +-}; +-var JSON_PROTECTION_PREFIX = /^\)\]\}',?\n/; +- +-function defaultHttpResponseTransform(data, headers) { +- if (isString(data)) { +- // Strip json vulnerability protection prefix and trim whitespace +- var tempData = data.replace(JSON_PROTECTION_PREFIX, '').trim(); +- +- if (tempData) { +- var contentType = headers('Content-Type'); +- if ((contentType && (contentType.indexOf(APPLICATION_JSON) === 0)) || isJsonLike(tempData)) { +- data = fromJson(tempData); +- } +- } +- } +- +- return data; +-} +- +-function isJsonLike(str) { +- var jsonStart = str.match(JSON_START); +- return jsonStart && JSON_ENDS[jsonStart[0]].test(str); +-} +- +-/** +- * Parse headers into key value object +- * +- * @param {string} headers Raw headers as a string +- * @returns {Object} Parsed headers as key value object +- */ +-function parseHeaders(headers) { +- var parsed = createMap(), key, val, i; +- +- if (!headers) return parsed; +- +- forEach(headers.split('\n'), function(line) { +- i = line.indexOf(':'); +- key = lowercase(trim(line.substr(0, i))); +- val = trim(line.substr(i + 1)); +- +- if (key) { +- parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; +- } +- }); +- +- return parsed; +-} +- +- +-/** +- * Returns a function that provides access to parsed headers. +- * +- * Headers are lazy parsed when first requested. +- * @see parseHeaders +- * +- * @param {(string|Object)} headers Headers to provide access to. +- * @returns {function(string=)} Returns a getter function which if called with: +- * +- * - if called with single an argument returns a single header value or null +- * - if called with no arguments returns an object containing all headers. +- */ +-function headersGetter(headers) { +- var headersObj = isObject(headers) ? headers : undefined; +- +- return function(name) { +- if (!headersObj) headersObj = parseHeaders(headers); +- +- if (name) { +- var value = headersObj[lowercase(name)]; +- if (value === void 0) { +- value = null; +- } +- return value; +- } +- +- return headersObj; +- }; +-} +- +- +-/** +- * Chain all given functions +- * +- * This function is used for both request and response transforming +- * +- * @param {*} data Data to transform. +- * @param {function(string=)} headers HTTP headers getter fn. +- * @param {number} status HTTP status code of the response. +- * @param {(Function|Array.<Function>)} fns Function or an array of functions. +- * @returns {*} Transformed data. +- */ +-function transformData(data, headers, status, fns) { +- if (isFunction(fns)) +- return fns(data, headers, status); +- +- forEach(fns, function(fn) { +- data = fn(data, headers, status); +- }); +- +- return data; +-} +- +- +-function isSuccess(status) { +- return 200 <= status && status < 300; +-} +- +- +-/** +- * @ngdoc provider +- * @name $httpProvider +- * @description +- * Use `$httpProvider` to change the default behavior of the {@link ng.$http $http} service. +- * */ +-function $HttpProvider() { +- /** +- * @ngdoc property +- * @name $httpProvider#defaults +- * @description +- * +- * Object containing default values for all {@link ng.$http $http} requests. +- * +- * - **`defaults.cache`** - {Object} - an object built with {@link ng.$cacheFactory `$cacheFactory`} +- * that will provide the cache for all requests who set their `cache` property to `true`. +- * If you set the `default.cache = false` then only requests that specify their own custom +- * cache object will be cached. See {@link $http#caching $http Caching} for more information. +- * +- * - **`defaults.xsrfCookieName`** - {string} - Name of cookie containing the XSRF token. +- * Defaults value is `'XSRF-TOKEN'`. +- * +- * - **`defaults.xsrfHeaderName`** - {string} - Name of HTTP header to populate with the +- * XSRF token. Defaults value is `'X-XSRF-TOKEN'`. +- * +- * - **`defaults.headers`** - {Object} - Default headers for all $http requests. +- * Refer to {@link ng.$http#setting-http-headers $http} for documentation on +- * setting default headers. +- * - **`defaults.headers.common`** +- * - **`defaults.headers.post`** +- * - **`defaults.headers.put`** +- * - **`defaults.headers.patch`** +- * +- **/ +- var defaults = this.defaults = { +- // transform incoming response data +- transformResponse: [defaultHttpResponseTransform], +- +- // transform outgoing request data +- transformRequest: [function(d) { +- return isObject(d) && !isFile(d) && !isBlob(d) && !isFormData(d) ? toJson(d) : d; +- }], +- +- // default headers +- headers: { +- common: { +- 'Accept': 'application/json, text/plain, */*' +- }, +- post: shallowCopy(CONTENT_TYPE_APPLICATION_JSON), +- put: shallowCopy(CONTENT_TYPE_APPLICATION_JSON), +- patch: shallowCopy(CONTENT_TYPE_APPLICATION_JSON) +- }, +- +- xsrfCookieName: 'XSRF-TOKEN', +- xsrfHeaderName: 'X-XSRF-TOKEN' +- }; +- +- var useApplyAsync = false; +- /** +- * @ngdoc method +- * @name $httpProvider#useApplyAsync +- * @description +- * +- * Configure $http service to combine processing of multiple http responses received at around +- * the same time via {@link ng.$rootScope.Scope#$applyAsync $rootScope.$applyAsync}. This can result in +- * significant performance improvement for bigger applications that make many HTTP requests +- * concurrently (common during application bootstrap). +- * +- * Defaults to false. If no value is specifed, returns the current configured value. +- * +- * @param {boolean=} value If true, when requests are loaded, they will schedule a deferred +- * "apply" on the next tick, giving time for subsequent requests in a roughly ~10ms window +- * to load and share the same digest cycle. +- * +- * @returns {boolean|Object} If a value is specified, returns the $httpProvider for chaining. +- * otherwise, returns the current configured value. +- **/ +- this.useApplyAsync = function(value) { +- if (isDefined(value)) { +- useApplyAsync = !!value; +- return this; +- } +- return useApplyAsync; +- }; +- +- /** +- * @ngdoc property +- * @name $httpProvider#interceptors +- * @description +- * +- * Array containing service factories for all synchronous or asynchronous {@link ng.$http $http} +- * pre-processing of request or postprocessing of responses. +- * +- * These service factories are ordered by request, i.e. they are applied in the same order as the +- * array, on request, but reverse order, on response. +- * +- * {@link ng.$http#interceptors Interceptors detailed info} +- **/ +- var interceptorFactories = this.interceptors = []; +- +- this.$get = ['$httpBackend', '$browser', '$cacheFactory', '$rootScope', '$q', '$injector', +- function($httpBackend, $browser, $cacheFactory, $rootScope, $q, $injector) { +- +- var defaultCache = $cacheFactory('$http'); +- +- /** +- * Interceptors stored in reverse order. Inner interceptors before outer interceptors. +- * The reversal is needed so that we can build up the interception chain around the +- * server request. +- */ +- var reversedInterceptors = []; +- +- forEach(interceptorFactories, function(interceptorFactory) { +- reversedInterceptors.unshift(isString(interceptorFactory) +- ? $injector.get(interceptorFactory) : $injector.invoke(interceptorFactory)); +- }); +- +- /** +- * @ngdoc service +- * @kind function +- * @name $http +- * @requires ng.$httpBackend +- * @requires $cacheFactory +- * @requires $rootScope +- * @requires $q +- * @requires $injector +- * +- * @description +- * The `$http` service is a core Angular service that facilitates communication with the remote +- * HTTP servers via the browser's [XMLHttpRequest](https://developer.mozilla.org/en/xmlhttprequest) +- * object or via [JSONP](http://en.wikipedia.org/wiki/JSONP). +- * +- * For unit testing applications that use `$http` service, see +- * {@link ngMock.$httpBackend $httpBackend mock}. +- * +- * For a higher level of abstraction, please check out the {@link ngResource.$resource +- * $resource} service. +- * +- * The $http API is based on the {@link ng.$q deferred/promise APIs} exposed by +- * the $q service. While for simple usage patterns this doesn't matter much, for advanced usage +- * it is important to familiarize yourself with these APIs and the guarantees they provide. +- * +- * +- * ## General usage +- * The `$http` service is a function which takes a single argument — a configuration object — +- * that is used to generate an HTTP request and returns a {@link ng.$q promise} +- * with two $http specific methods: `success` and `error`. +- * +- * ```js +- * // Simple GET request example : +- * $http.get('/someUrl'). +- * success(function(data, status, headers, config) { +- * // this callback will be called asynchronously +- * // when the response is available +- * }). +- * error(function(data, status, headers, config) { +- * // called asynchronously if an error occurs +- * // or server returns response with an error status. +- * }); +- * ``` +- * +- * ```js +- * // Simple POST request example (passing data) : +- * $http.post('/someUrl', {msg:'hello word!'}). +- * success(function(data, status, headers, config) { +- * // this callback will be called asynchronously +- * // when the response is available +- * }). +- * error(function(data, status, headers, config) { +- * // called asynchronously if an error occurs +- * // or server returns response with an error status. +- * }); +- * ``` +- * +- * +- * Since the returned value of calling the $http function is a `promise`, you can also use +- * the `then` method to register callbacks, and these callbacks will receive a single argument – +- * an object representing the response. See the API signature and type info below for more +- * details. +- * +- * A response status code between 200 and 299 is considered a success status and +- * will result in the success callback being called. Note that if the response is a redirect, +- * XMLHttpRequest will transparently follow it, meaning that the error callback will not be +- * called for such responses. +- * +- * ## Writing Unit Tests that use $http +- * When unit testing (using {@link ngMock ngMock}), it is necessary to call +- * {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending +- * request using trained responses. +- * +- * ``` +- * $httpBackend.expectGET(...); +- * $http.get(...); +- * $httpBackend.flush(); +- * ``` +- * +- * ## Shortcut methods +- * +- * Shortcut methods are also available. All shortcut methods require passing in the URL, and +- * request data must be passed in for POST/PUT requests. +- * +- * ```js +- * $http.get('/someUrl').success(successCallback); +- * $http.post('/someUrl', data).success(successCallback); +- * ``` +- * +- * Complete list of shortcut methods: +- * +- * - {@link ng.$http#get $http.get} +- * - {@link ng.$http#head $http.head} +- * - {@link ng.$http#post $http.post} +- * - {@link ng.$http#put $http.put} +- * - {@link ng.$http#delete $http.delete} +- * - {@link ng.$http#jsonp $http.jsonp} +- * - {@link ng.$http#patch $http.patch} +- * +- * +- * ## Setting HTTP Headers +- * +- * The $http service will automatically add certain HTTP headers to all requests. These defaults +- * can be fully configured by accessing the `$httpProvider.defaults.headers` configuration +- * object, which currently contains this default configuration: +- * +- * - `$httpProvider.defaults.headers.common` (headers that are common for all requests): +- * - `Accept: application/json, text/plain, * / *` +- * - `$httpProvider.defaults.headers.post`: (header defaults for POST requests) +- * - `Content-Type: application/json` +- * - `$httpProvider.defaults.headers.put` (header defaults for PUT requests) +- * - `Content-Type: application/json` +- * +- * To add or overwrite these defaults, simply add or remove a property from these configuration +- * objects. To add headers for an HTTP method other than POST or PUT, simply add a new object +- * with the lowercased HTTP method name as the key, e.g. +- * `$httpProvider.defaults.headers.get = { 'My-Header' : 'value' }. +- * +- * The defaults can also be set at runtime via the `$http.defaults` object in the same +- * fashion. For example: +- * +- * ``` +- * module.run(function($http) { +- * $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w' +- * }); +- * ``` +- * +- * In addition, you can supply a `headers` property in the config object passed when +- * calling `$http(config)`, which overrides the defaults without changing them globally. +- * +- * To explicitly remove a header automatically added via $httpProvider.defaults.headers on a per request basis, +- * Use the `headers` property, setting the desired header to `undefined`. For example: +- * +- * ```js +- * var req = { +- * method: 'POST', +- * url: 'http://example.com', +- * headers: { +- * 'Content-Type': undefined +- * }, +- * data: { test: 'test' }, +- * } +- * +- * $http(req).success(function(){...}).error(function(){...}); +- * ``` +- * +- * ## Transforming Requests and Responses +- * +- * Both requests and responses can be transformed using transformation functions: `transformRequest` +- * and `transformResponse`. These properties can be a single function that returns +- * the transformed value (`function(data, headersGetter, status)`) or an array of such transformation functions, +- * which allows you to `push` or `unshift` a new transformation function into the transformation chain. +- * +- * ### Default Transformations +- * +- * The `$httpProvider` provider and `$http` service expose `defaults.transformRequest` and +- * `defaults.transformResponse` properties. If a request does not provide its own transformations +- * then these will be applied. +- * +- * You can augment or replace the default transformations by modifying these properties by adding to or +- * replacing the array. +- * +- * Angular provides the following default transformations: +- * +- * Request transformations (`$httpProvider.defaults.transformRequest` and `$http.defaults.transformRequest`): +- * +- * - If the `data` property of the request configuration object contains an object, serialize it +- * into JSON format. +- * +- * Response transformations (`$httpProvider.defaults.transformResponse` and `$http.defaults.transformResponse`): +- * +- * - If XSRF prefix is detected, strip it (see Security Considerations section below). +- * - If JSON response is detected, deserialize it using a JSON parser. +- * +- * +- * ### Overriding the Default Transformations Per Request +- * +- * If you wish override the request/response transformations only for a single request then provide +- * `transformRequest` and/or `transformResponse` properties on the configuration object passed +- * into `$http`. +- * +- * Note that if you provide these properties on the config object the default transformations will be +- * overwritten. If you wish to augment the default transformations then you must include them in your +- * local transformation array. +- * +- * The following code demonstrates adding a new response transformation to be run after the default response +- * transformations have been run. +- * +- * ```js +- * function appendTransform(defaults, transform) { +- * +- * // We can't guarantee that the default transformation is an array +- * defaults = angular.isArray(defaults) ? defaults : [defaults]; +- * +- * // Append the new transformation to the defaults +- * return defaults.concat(transform); +- * } +- * +- * $http({ +- * url: '...', +- * method: 'GET', +- * transformResponse: appendTransform($http.defaults.transformResponse, function(value) { +- * return doTransform(value); +- * }) +- * }); +- * ``` +- * +- * +- * ## Caching +- * +- * To enable caching, set the request configuration `cache` property to `true` (to use default +- * cache) or to a custom cache object (built with {@link ng.$cacheFactory `$cacheFactory`}). +- * When the cache is enabled, `$http` stores the response from the server in the specified +- * cache. The next time the same request is made, the response is served from the cache without +- * sending a request to the server. +- * +- * Note that even if the response is served from cache, delivery of the data is asynchronous in +- * the same way that real requests are. +- * +- * If there are multiple GET requests for the same URL that should be cached using the same +- * cache, but the cache is not populated yet, only one request to the server will be made and +- * the remaining requests will be fulfilled using the response from the first request. +- * +- * You can change the default cache to a new object (built with +- * {@link ng.$cacheFactory `$cacheFactory`}) by updating the +- * {@link ng.$http#defaults `$http.defaults.cache`} property. All requests who set +- * their `cache` property to `true` will now use this cache object. +- * +- * If you set the default cache to `false` then only requests that specify their own custom +- * cache object will be cached. +- * +- * ## Interceptors +- * +- * Before you start creating interceptors, be sure to understand the +- * {@link ng.$q $q and deferred/promise APIs}. +- * +- * For purposes of global error handling, authentication, or any kind of synchronous or +- * asynchronous pre-processing of request or postprocessing of responses, it is desirable to be +- * able to intercept requests before they are handed to the server and +- * responses before they are handed over to the application code that +- * initiated these requests. The interceptors leverage the {@link ng.$q +- * promise APIs} to fulfill this need for both synchronous and asynchronous pre-processing. +- * +- * The interceptors are service factories that are registered with the `$httpProvider` by +- * adding them to the `$httpProvider.interceptors` array. The factory is called and +- * injected with dependencies (if specified) and returns the interceptor. +- * +- * There are two kinds of interceptors (and two kinds of rejection interceptors): +- * +- * * `request`: interceptors get called with an http `config` object. The function is free to +- * modify the `config` object or create a new one. The function needs to return the `config` +- * object directly, or a promise containing the `config` or a new `config` object. +- * * `requestError`: interceptor gets called when a previous interceptor threw an error or +- * resolved with a rejection. +- * * `response`: interceptors get called with http `response` object. The function is free to +- * modify the `response` object or create a new one. The function needs to return the `response` +- * object directly, or as a promise containing the `response` or a new `response` object. +- * * `responseError`: interceptor gets called when a previous interceptor threw an error or +- * resolved with a rejection. +- * +- * +- * ```js +- * // register the interceptor as a service +- * $provide.factory('myHttpInterceptor', function($q, dependency1, dependency2) { +- * return { +- * // optional method +- * 'request': function(config) { +- * // do something on success +- * return config; +- * }, +- * +- * // optional method +- * 'requestError': function(rejection) { +- * // do something on error +- * if (canRecover(rejection)) { +- * return responseOrNewPromise +- * } +- * return $q.reject(rejection); +- * }, +- * +- * +- * +- * // optional method +- * 'response': function(response) { +- * // do something on success +- * return response; +- * }, +- * +- * // optional method +- * 'responseError': function(rejection) { +- * // do something on error +- * if (canRecover(rejection)) { +- * return responseOrNewPromise +- * } +- * return $q.reject(rejection); +- * } +- * }; +- * }); +- * +- * $httpProvider.interceptors.push('myHttpInterceptor'); +- * +- * +- * // alternatively, register the interceptor via an anonymous factory +- * $httpProvider.interceptors.push(function($q, dependency1, dependency2) { +- * return { +- * 'request': function(config) { +- * // same as above +- * }, +- * +- * 'response': function(response) { +- * // same as above +- * } +- * }; +- * }); +- * ``` +- * +- * ## Security Considerations +- * +- * When designing web applications, consider security threats from: +- * +- * - [JSON vulnerability](http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx) +- * - [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) +- * +- * Both server and the client must cooperate in order to eliminate these threats. Angular comes +- * pre-configured with strategies that address these issues, but for this to work backend server +- * cooperation is required. +- * +- * ### JSON Vulnerability Protection +- * +- * A [JSON vulnerability](http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx) +- * allows third party website to turn your JSON resource URL into +- * [JSONP](http://en.wikipedia.org/wiki/JSONP) request under some conditions. To +- * counter this your server can prefix all JSON requests with following string `")]}',\n"`. +- * Angular will automatically strip the prefix before processing it as JSON. +- * +- * For example if your server needs to return: +- * ```js +- * ['one','two'] +- * ``` +- * +- * which is vulnerable to attack, your server can return: +- * ```js +- * )]}', +- * ['one','two'] +- * ``` +- * +- * Angular will strip the prefix, before processing the JSON. +- * +- * +- * ### Cross Site Request Forgery (XSRF) Protection +- * +- * [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) is a technique by which +- * an unauthorized site can gain your user's private data. Angular provides a mechanism +- * to counter XSRF. When performing XHR requests, the $http service reads a token from a cookie +- * (by default, `XSRF-TOKEN`) and sets it as an HTTP header (`X-XSRF-TOKEN`). Since only +- * JavaScript that runs on your domain could read the cookie, your server can be assured that +- * the XHR came from JavaScript running on your domain. The header will not be set for +- * cross-domain requests. +- * +- * To take advantage of this, your server needs to set a token in a JavaScript readable session +- * cookie called `XSRF-TOKEN` on the first HTTP GET request. On subsequent XHR requests the +- * server can verify that the cookie matches `X-XSRF-TOKEN` HTTP header, and therefore be sure +- * that only JavaScript running on your domain could have sent the request. The token must be +- * unique for each user and must be verifiable by the server (to prevent the JavaScript from +- * making up its own tokens). We recommend that the token is a digest of your site's +- * authentication cookie with a [salt](https://en.wikipedia.org/wiki/Salt_(cryptography)) +- * for added security. +- * +- * The name of the headers can be specified using the xsrfHeaderName and xsrfCookieName +- * properties of either $httpProvider.defaults at config-time, $http.defaults at run-time, +- * or the per-request config object. +- * +- * +- * @param {object} config Object describing the request to be made and how it should be +- * processed. The object has following properties: +- * +- * - **method** – `{string}` – HTTP method (e.g. 'GET', 'POST', etc) +- * - **url** – `{string}` – Absolute or relative URL of the resource that is being requested. +- * - **params** – `{Object.<string|Object>}` – Map of strings or objects which will be turned +- * to `?key1=value1&key2=value2` after the url. If the value is not a string, it will be +- * JSONified. +- * - **data** – `{string|Object}` – Data to be sent as the request message data. +- * - **headers** – `{Object}` – Map of strings or functions which return strings representing +- * HTTP headers to send to the server. If the return value of a function is null, the +- * header will not be sent. +- * - **xsrfHeaderName** – `{string}` – Name of HTTP header to populate with the XSRF token. +- * - **xsrfCookieName** – `{string}` – Name of cookie containing the XSRF token. +- * - **transformRequest** – +- * `{function(data, headersGetter)|Array.<function(data, headersGetter)>}` – +- * transform function or an array of such functions. The transform function takes the http +- * request body and headers and returns its transformed (typically serialized) version. +- * See {@link ng.$http#overriding-the-default-transformations-per-request +- * Overriding the Default Transformations} +- * - **transformResponse** – +- * `{function(data, headersGetter, status)|Array.<function(data, headersGetter, status)>}` – +- * transform function or an array of such functions. The transform function takes the http +- * response body, headers and status and returns its transformed (typically deserialized) version. +- * See {@link ng.$http#overriding-the-default-transformations-per-request +- * Overriding the Default Transformations} +- * - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the +- * GET request, otherwise if a cache instance built with +- * {@link ng.$cacheFactory $cacheFactory}, this cache will be used for +- * caching. +- * - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} +- * that should abort the request when resolved. +- * - **withCredentials** - `{boolean}` - whether to set the `withCredentials` flag on the +- * XHR object. See [requests with credentials](https://developer.mozilla.org/docs/Web/HTTP/Access_control_CORS#Requests_with_credentials) +- * for more information. +- * - **responseType** - `{string}` - see +- * [requestType](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#responseType). +- * +- * @returns {HttpPromise} Returns a {@link ng.$q promise} object with the +- * standard `then` method and two http specific methods: `success` and `error`. The `then` +- * method takes two arguments a success and an error callback which will be called with a +- * response object. The `success` and `error` methods take a single argument - a function that +- * will be called when the request succeeds or fails respectively. The arguments passed into +- * these functions are destructured representation of the response object passed into the +- * `then` method. The response object has these properties: +- * +- * - **data** – `{string|Object}` – The response body transformed with the transform +- * functions. +- * - **status** – `{number}` – HTTP status code of the response. +- * - **headers** – `{function([headerName])}` – Header getter function. +- * - **config** – `{Object}` – The configuration object that was used to generate the request. +- * - **statusText** – `{string}` – HTTP status text of the response. +- * +- * @property {Array.<Object>} pendingRequests Array of config objects for currently pending +- * requests. This is primarily meant to be used for debugging purposes. +- * +- * +- * @example +-<example module="httpExample"> +-<file name="index.html"> +- <div ng-controller="FetchController"> +- <select ng-model="method"> +- <option>GET</option> +- <option>JSONP</option> +- </select> +- <input type="text" ng-model="url" size="80"/> +- <button id="fetchbtn" ng-click="fetch()">fetch</button><br> +- <button id="samplegetbtn" ng-click="updateModel('GET', 'http-hello.html')">Sample GET</button> +- <button id="samplejsonpbtn" +- ng-click="updateModel('JSONP', +- 'https://angularjs.org/greet.php?callback=JSON_CALLBACK&name=Super%20Hero')"> +- Sample JSONP +- </button> +- <button id="invalidjsonpbtn" +- ng-click="updateModel('JSONP', 'https://angularjs.org/doesntexist&callback=JSON_CALLBACK')"> +- Invalid JSONP +- </button> +- <pre>http status code: {{status}}</pre> +- <pre>http response data: {{data}}</pre> +- </div> +-</file> +-<file name="script.js"> +- angular.module('httpExample', []) +- .controller('FetchController', ['$scope', '$http', '$templateCache', +- function($scope, $http, $templateCache) { +- $scope.method = 'GET'; +- $scope.url = 'http-hello.html'; +- +- $scope.fetch = function() { +- $scope.code = null; +- $scope.response = null; +- +- $http({method: $scope.method, url: $scope.url, cache: $templateCache}). +- success(function(data, status) { +- $scope.status = status; +- $scope.data = data; +- }). +- error(function(data, status) { +- $scope.data = data || "Request failed"; +- $scope.status = status; +- }); +- }; +- +- $scope.updateModel = function(method, url) { +- $scope.method = method; +- $scope.url = url; +- }; +- }]); +-</file> +-<file name="http-hello.html"> +- Hello, $http! +-</file> +-<file name="protractor.js" type="protractor"> +- var status = element(by.binding('status')); +- var data = element(by.binding('data')); +- var fetchBtn = element(by.id('fetchbtn')); +- var sampleGetBtn = element(by.id('samplegetbtn')); +- var sampleJsonpBtn = element(by.id('samplejsonpbtn')); +- var invalidJsonpBtn = element(by.id('invalidjsonpbtn')); +- +- it('should make an xhr GET request', function() { +- sampleGetBtn.click(); +- fetchBtn.click(); +- expect(status.getText()).toMatch('200'); +- expect(data.getText()).toMatch(/Hello, \$http!/); +- }); +- +-// Commented out due to flakes. See https://github.com/angular/angular.js/issues/9185 +-// it('should make a JSONP request to angularjs.org', function() { +-// sampleJsonpBtn.click(); +-// fetchBtn.click(); +-// expect(status.getText()).toMatch('200'); +-// expect(data.getText()).toMatch(/Super Hero!/); +-// }); +- +- it('should make JSONP request to invalid URL and invoke the error handler', +- function() { +- invalidJsonpBtn.click(); +- fetchBtn.click(); +- expect(status.getText()).toMatch('0'); +- expect(data.getText()).toMatch('Request failed'); +- }); +-</file> +-</example> +- */ +- function $http(requestConfig) { +- +- if (!angular.isObject(requestConfig)) { +- throw minErr('$http')('badreq', 'Http request configuration must be an object. Received: {0}', requestConfig); +- } +- +- var config = extend({ +- method: 'get', +- transformRequest: defaults.transformRequest, +- transformResponse: defaults.transformResponse +- }, requestConfig); +- +- config.headers = mergeHeaders(requestConfig); +- config.method = uppercase(config.method); +- +- var serverRequest = function(config) { +- var headers = config.headers; +- var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest); +- +- // strip content-type if data is undefined +- if (isUndefined(reqData)) { +- forEach(headers, function(value, header) { +- if (lowercase(header) === 'content-type') { +- delete headers[header]; +- } +- }); +- } +- +- if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { +- config.withCredentials = defaults.withCredentials; +- } +- +- // send request +- return sendReq(config, reqData).then(transformResponse, transformResponse); +- }; +- +- var chain = [serverRequest, undefined]; +- var promise = $q.when(config); +- +- // apply interceptors +- forEach(reversedInterceptors, function(interceptor) { +- if (interceptor.request || interceptor.requestError) { +- chain.unshift(interceptor.request, interceptor.requestError); +- } +- if (interceptor.response || interceptor.responseError) { +- chain.push(interceptor.response, interceptor.responseError); +- } +- }); +- +- while (chain.length) { +- var thenFn = chain.shift(); +- var rejectFn = chain.shift(); +- +- promise = promise.then(thenFn, rejectFn); +- } +- +- promise.success = function(fn) { +- promise.then(function(response) { +- fn(response.data, response.status, response.headers, config); +- }); +- return promise; +- }; +- +- promise.error = function(fn) { +- promise.then(null, function(response) { +- fn(response.data, response.status, response.headers, config); +- }); +- return promise; +- }; +- +- return promise; +- +- function transformResponse(response) { +- // make a copy since the response must be cacheable +- var resp = extend({}, response); +- if (!response.data) { +- resp.data = response.data; +- } else { +- resp.data = transformData(response.data, response.headers, response.status, config.transformResponse); +- } +- return (isSuccess(response.status)) +- ? resp +- : $q.reject(resp); +- } +- +- function executeHeaderFns(headers) { +- var headerContent, processedHeaders = {}; +- +- forEach(headers, function(headerFn, header) { +- if (isFunction(headerFn)) { +- headerContent = headerFn(); +- if (headerContent != null) { +- processedHeaders[header] = headerContent; +- } +- } else { +- processedHeaders[header] = headerFn; +- } +- }); +- +- return processedHeaders; +- } +- +- function mergeHeaders(config) { +- var defHeaders = defaults.headers, +- reqHeaders = extend({}, config.headers), +- defHeaderName, lowercaseDefHeaderName, reqHeaderName; +- +- defHeaders = extend({}, defHeaders.common, defHeaders[lowercase(config.method)]); +- +- // using for-in instead of forEach to avoid unecessary iteration after header has been found +- defaultHeadersIteration: +- for (defHeaderName in defHeaders) { +- lowercaseDefHeaderName = lowercase(defHeaderName); +- +- for (reqHeaderName in reqHeaders) { +- if (lowercase(reqHeaderName) === lowercaseDefHeaderName) { +- continue defaultHeadersIteration; +- } +- } +- +- reqHeaders[defHeaderName] = defHeaders[defHeaderName]; +- } +- +- // execute if header value is a function for merged headers +- return executeHeaderFns(reqHeaders); +- } +- } +- +- $http.pendingRequests = []; +- +- /** +- * @ngdoc method +- * @name $http#get +- * +- * @description +- * Shortcut method to perform `GET` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- +- /** +- * @ngdoc method +- * @name $http#delete +- * +- * @description +- * Shortcut method to perform `DELETE` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- +- /** +- * @ngdoc method +- * @name $http#head +- * +- * @description +- * Shortcut method to perform `HEAD` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- +- /** +- * @ngdoc method +- * @name $http#jsonp +- * +- * @description +- * Shortcut method to perform `JSONP` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request. +- * The name of the callback should be the string `JSON_CALLBACK`. +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- createShortMethods('get', 'delete', 'head', 'jsonp'); +- +- /** +- * @ngdoc method +- * @name $http#post +- * +- * @description +- * Shortcut method to perform `POST` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {*} data Request content +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- +- /** +- * @ngdoc method +- * @name $http#put +- * +- * @description +- * Shortcut method to perform `PUT` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {*} data Request content +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- +- /** +- * @ngdoc method +- * @name $http#patch +- * +- * @description +- * Shortcut method to perform `PATCH` request. +- * +- * @param {string} url Relative or absolute URL specifying the destination of the request +- * @param {*} data Request content +- * @param {Object=} config Optional configuration object +- * @returns {HttpPromise} Future object +- */ +- createShortMethodsWithData('post', 'put', 'patch'); +- +- /** +- * @ngdoc property +- * @name $http#defaults +- * +- * @description +- * Runtime equivalent of the `$httpProvider.defaults` property. Allows configuration of +- * default headers, withCredentials as well as request and response transformations. +- * +- * See "Setting HTTP Headers" and "Transforming Requests and Responses" sections above. +- */ +- $http.defaults = defaults; +- +- +- return $http; +- +- +- function createShortMethods(names) { +- forEach(arguments, function(name) { +- $http[name] = function(url, config) { +- return $http(extend(config || {}, { +- method: name, +- url: url +- })); +- }; +- }); +- } +- +- +- function createShortMethodsWithData(name) { +- forEach(arguments, function(name) { +- $http[name] = function(url, data, config) { +- return $http(extend(config || {}, { +- method: name, +- url: url, +- data: data +- })); +- }; +- }); +- } +- +- +- /** +- * Makes the request. +- * +- * !!! ACCESSES CLOSURE VARS: +- * $httpBackend, defaults, $log, $rootScope, defaultCache, $http.pendingRequests +- */ +- function sendReq(config, reqData) { +- var deferred = $q.defer(), +- promise = deferred.promise, +- cache, +- cachedResp, +- reqHeaders = config.headers, +- url = buildUrl(config.url, config.params); +- +- $http.pendingRequests.push(config); +- promise.then(removePendingReq, removePendingReq); +- +- +- if ((config.cache || defaults.cache) && config.cache !== false && +- (config.method === 'GET' || config.method === 'JSONP')) { +- cache = isObject(config.cache) ? config.cache +- : isObject(defaults.cache) ? defaults.cache +- : defaultCache; +- } +- +- if (cache) { +- cachedResp = cache.get(url); +- if (isDefined(cachedResp)) { +- if (isPromiseLike(cachedResp)) { +- // cached request has already been sent, but there is no response yet +- cachedResp.then(resolvePromiseWithResult, resolvePromiseWithResult); +- } else { +- // serving from cache +- if (isArray(cachedResp)) { +- resolvePromise(cachedResp[1], cachedResp[0], shallowCopy(cachedResp[2]), cachedResp[3]); +- } else { +- resolvePromise(cachedResp, 200, {}, 'OK'); +- } +- } +- } else { +- // put the promise for the non-transformed response into cache as a placeholder +- cache.put(url, promise); +- } +- } +- +- +- // if we won't have the response in cache, set the xsrf headers and +- // send the request to the backend +- if (isUndefined(cachedResp)) { +- var xsrfValue = urlIsSameOrigin(config.url) +- ? $browser.cookies()[config.xsrfCookieName || defaults.xsrfCookieName] +- : undefined; +- if (xsrfValue) { +- reqHeaders[(config.xsrfHeaderName || defaults.xsrfHeaderName)] = xsrfValue; +- } +- +- $httpBackend(config.method, url, reqData, done, reqHeaders, config.timeout, +- config.withCredentials, config.responseType); +- } +- +- return promise; +- +- +- /** +- * Callback registered to $httpBackend(): +- * - caches the response if desired +- * - resolves the raw $http promise +- * - calls $apply +- */ +- function done(status, response, headersString, statusText) { +- if (cache) { +- if (isSuccess(status)) { +- cache.put(url, [status, response, parseHeaders(headersString), statusText]); +- } else { +- // remove promise from the cache +- cache.remove(url); +- } +- } +- +- function resolveHttpPromise() { +- resolvePromise(response, status, headersString, statusText); +- } +- +- if (useApplyAsync) { +- $rootScope.$applyAsync(resolveHttpPromise); +- } else { +- resolveHttpPromise(); +- if (!$rootScope.$$phase) $rootScope.$apply(); +- } +- } +- +- +- /** +- * Resolves the raw $http promise. +- */ +- function resolvePromise(response, status, headers, statusText) { +- // normalize internal statuses to 0 +- status = Math.max(status, 0); +- +- (isSuccess(status) ? deferred.resolve : deferred.reject)({ +- data: response, +- status: status, +- headers: headersGetter(headers), +- config: config, +- statusText: statusText +- }); +- } +- +- function resolvePromiseWithResult(result) { +- resolvePromise(result.data, result.status, shallowCopy(result.headers()), result.statusText); +- } +- +- function removePendingReq() { +- var idx = $http.pendingRequests.indexOf(config); +- if (idx !== -1) $http.pendingRequests.splice(idx, 1); +- } +- } +- +- +- function buildUrl(url, params) { +- if (!params) return url; +- var parts = []; +- forEachSorted(params, function(value, key) { +- if (value === null || isUndefined(value)) return; +- if (!isArray(value)) value = [value]; +- +- forEach(value, function(v) { +- if (isObject(v)) { +- if (isDate(v)) { +- v = v.toISOString(); +- } else { +- v = toJson(v); +- } +- } +- parts.push(encodeUriQuery(key) + '=' + +- encodeUriQuery(v)); +- }); +- }); +- if (parts.length > 0) { +- url += ((url.indexOf('?') == -1) ? '?' : '&') + parts.join('&'); +- } +- return url; +- } +- }]; +-} +- +-function createXhr() { +- return new window.XMLHttpRequest(); +-} +- +-/** +- * @ngdoc service +- * @name $httpBackend +- * @requires $window +- * @requires $document +- * +- * @description +- * HTTP backend used by the {@link ng.$http service} that delegates to +- * XMLHttpRequest object or JSONP and deals with browser incompatibilities. +- * +- * You should never need to use this service directly, instead use the higher-level abstractions: +- * {@link ng.$http $http} or {@link ngResource.$resource $resource}. +- * +- * During testing this implementation is swapped with {@link ngMock.$httpBackend mock +- * $httpBackend} which can be trained with responses. +- */ +-function $HttpBackendProvider() { +- this.$get = ['$browser', '$window', '$document', function($browser, $window, $document) { +- return createHttpBackend($browser, createXhr, $browser.defer, $window.angular.callbacks, $document[0]); +- }]; +-} +- +-function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDocument) { +- // TODO(vojta): fix the signature +- return function(method, url, post, callback, headers, timeout, withCredentials, responseType) { +- $browser.$$incOutstandingRequestCount(); +- url = url || $browser.url(); +- +- if (lowercase(method) == 'jsonp') { +- var callbackId = '_' + (callbacks.counter++).toString(36); +- callbacks[callbackId] = function(data) { +- callbacks[callbackId].data = data; +- callbacks[callbackId].called = true; +- }; +- +- var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), +- callbackId, function(status, text) { +- completeRequest(callback, status, callbacks[callbackId].data, "", text); +- callbacks[callbackId] = noop; +- }); +- } else { +- +- var xhr = createXhr(); +- +- xhr.open(method, url, true); +- forEach(headers, function(value, key) { +- if (isDefined(value)) { +- xhr.setRequestHeader(key, value); +- } +- }); +- +- xhr.onload = function requestLoaded() { +- var statusText = xhr.statusText || ''; +- +- // responseText is the old-school way of retrieving response (supported by IE8 & 9) +- // response/responseType properties were introduced in XHR Level2 spec (supported by IE10) +- var response = ('response' in xhr) ? xhr.response : xhr.responseText; +- +- // normalize IE9 bug (http://bugs.jquery.com/ticket/1450) +- var status = xhr.status === 1223 ? 204 : xhr.status; +- +- // fix status code when it is 0 (0 status is undocumented). +- // Occurs when accessing file resources or on Android 4.1 stock browser +- // while retrieving files from application cache. +- if (status === 0) { +- status = response ? 200 : urlResolve(url).protocol == 'file' ? 404 : 0; +- } +- +- completeRequest(callback, +- status, +- response, +- xhr.getAllResponseHeaders(), +- statusText); +- }; +- +- var requestError = function() { +- // The response is always empty +- // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error +- completeRequest(callback, -1, null, null, ''); +- }; +- +- xhr.onerror = requestError; +- xhr.onabort = requestError; +- +- if (withCredentials) { +- xhr.withCredentials = true; +- } +- +- if (responseType) { +- try { +- xhr.responseType = responseType; +- } catch (e) { +- // WebKit added support for the json responseType value on 09/03/2013 +- // https://bugs.webkit.org/show_bug.cgi?id=73648. Versions of Safari prior to 7 are +- // known to throw when setting the value "json" as the response type. Other older +- // browsers implementing the responseType +- // +- // The json response type can be ignored if not supported, because JSON payloads are +- // parsed on the client-side regardless. +- if (responseType !== 'json') { +- throw e; +- } +- } +- } +- +- xhr.send(post || null); +- } +- +- if (timeout > 0) { +- var timeoutId = $browserDefer(timeoutRequest, timeout); +- } else if (isPromiseLike(timeout)) { +- timeout.then(timeoutRequest); +- } +- +- +- function timeoutRequest() { +- jsonpDone && jsonpDone(); +- xhr && xhr.abort(); +- } +- +- function completeRequest(callback, status, response, headersString, statusText) { +- // cancel timeout and subsequent timeout promise resolution +- if (timeoutId !== undefined) { +- $browserDefer.cancel(timeoutId); +- } +- jsonpDone = xhr = null; +- +- callback(status, response, headersString, statusText); +- $browser.$$completeOutstandingRequest(noop); +- } +- }; +- +- function jsonpReq(url, callbackId, done) { +- // we can't use jQuery/jqLite here because jQuery does crazy shit with script elements, e.g.: +- // - fetches local scripts via XHR and evals them +- // - adds and immediately removes script elements from the document +- var script = rawDocument.createElement('script'), callback = null; +- script.type = "text/javascript"; +- script.src = url; +- script.async = true; +- +- callback = function(event) { +- removeEventListenerFn(script, "load", callback); +- removeEventListenerFn(script, "error", callback); +- rawDocument.body.removeChild(script); +- script = null; +- var status = -1; +- var text = "unknown"; +- +- if (event) { +- if (event.type === "load" && !callbacks[callbackId].called) { +- event = { type: "error" }; +- } +- text = event.type; +- status = event.type === "error" ? 404 : 200; +- } +- +- if (done) { +- done(status, text); +- } +- }; +- +- addEventListenerFn(script, "load", callback); +- addEventListenerFn(script, "error", callback); +- rawDocument.body.appendChild(script); +- return callback; +- } +-} +- +-var $interpolateMinErr = minErr('$interpolate'); +- +-/** +- * @ngdoc provider +- * @name $interpolateProvider +- * +- * @description +- * +- * Used for configuring the interpolation markup. Defaults to `{{` and `}}`. +- * +- * @example +-<example module="customInterpolationApp"> +-<file name="index.html"> +-<script> +- var customInterpolationApp = angular.module('customInterpolationApp', []); +- +- customInterpolationApp.config(function($interpolateProvider) { +- $interpolateProvider.startSymbol('//'); +- $interpolateProvider.endSymbol('//'); +- }); +- +- +- customInterpolationApp.controller('DemoController', function() { +- this.label = "This binding is brought you by // interpolation symbols."; +- }); +-</script> +-<div ng-app="App" ng-controller="DemoController as demo"> +- //demo.label// +-</div> +-</file> +-<file name="protractor.js" type="protractor"> +- it('should interpolate binding with custom symbols', function() { +- expect(element(by.binding('demo.label')).getText()).toBe('This binding is brought you by // interpolation symbols.'); +- }); +-</file> +-</example> +- */ +-function $InterpolateProvider() { +- var startSymbol = '{{'; +- var endSymbol = '}}'; +- +- /** +- * @ngdoc method +- * @name $interpolateProvider#startSymbol +- * @description +- * Symbol to denote start of expression in the interpolated string. Defaults to `{{`. +- * +- * @param {string=} value new value to set the starting symbol to. +- * @returns {string|self} Returns the symbol when used as getter and self if used as setter. +- */ +- this.startSymbol = function(value) { +- if (value) { +- startSymbol = value; +- return this; +- } else { +- return startSymbol; +- } +- }; +- +- /** +- * @ngdoc method +- * @name $interpolateProvider#endSymbol +- * @description +- * Symbol to denote the end of expression in the interpolated string. Defaults to `}}`. +- * +- * @param {string=} value new value to set the ending symbol to. +- * @returns {string|self} Returns the symbol when used as getter and self if used as setter. +- */ +- this.endSymbol = function(value) { +- if (value) { +- endSymbol = value; +- return this; +- } else { +- return endSymbol; +- } +- }; +- +- +- this.$get = ['$parse', '$exceptionHandler', '$sce', function($parse, $exceptionHandler, $sce) { +- var startSymbolLength = startSymbol.length, +- endSymbolLength = endSymbol.length, +- escapedStartRegexp = new RegExp(startSymbol.replace(/./g, escape), 'g'), +- escapedEndRegexp = new RegExp(endSymbol.replace(/./g, escape), 'g'); +- +- function escape(ch) { +- return '\\\\\\' + ch; +- } +- +- /** +- * @ngdoc service +- * @name $interpolate +- * @kind function +- * +- * @requires $parse +- * @requires $sce +- * +- * @description +- * +- * Compiles a string with markup into an interpolation function. This service is used by the +- * HTML {@link ng.$compile $compile} service for data binding. See +- * {@link ng.$interpolateProvider $interpolateProvider} for configuring the +- * interpolation markup. +- * +- * +- * ```js +- * var $interpolate = ...; // injected +- * var exp = $interpolate('Hello {{name | uppercase}}!'); +- * expect(exp({name:'Angular'}).toEqual('Hello ANGULAR!'); +- * ``` +- * +- * `$interpolate` takes an optional fourth argument, `allOrNothing`. If `allOrNothing` is +- * `true`, the interpolation function will return `undefined` unless all embedded expressions +- * evaluate to a value other than `undefined`. +- * +- * ```js +- * var $interpolate = ...; // injected +- * var context = {greeting: 'Hello', name: undefined }; +- * +- * // default "forgiving" mode +- * var exp = $interpolate('{{greeting}} {{name}}!'); +- * expect(exp(context)).toEqual('Hello !'); +- * +- * // "allOrNothing" mode +- * exp = $interpolate('{{greeting}} {{name}}!', false, null, true); +- * expect(exp(context)).toBeUndefined(); +- * context.name = 'Angular'; +- * expect(exp(context)).toEqual('Hello Angular!'); +- * ``` +- * +- * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior. +- * +- * ####Escaped Interpolation +- * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers +- * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash). +- * It will be rendered as a regular start/end marker, and will not be interpreted as an expression +- * or binding. +- * +- * This enables web-servers to prevent script injection attacks and defacing attacks, to some +- * degree, while also enabling code examples to work without relying on the +- * {@link ng.directive:ngNonBindable ngNonBindable} directive. +- * +- * **For security purposes, it is strongly encouraged that web servers escape user-supplied data, +- * replacing angle brackets (<, >) with &lt; and &gt; respectively, and replacing all +- * interpolation start/end markers with their escaped counterparts.** +- * +- * Escaped interpolation markers are only replaced with the actual interpolation markers in rendered +- * output when the $interpolate service processes the text. So, for HTML elements interpolated +- * by {@link ng.$compile $compile}, or otherwise interpolated with the `mustHaveExpression` parameter +- * set to `true`, the interpolated text must contain an unescaped interpolation expression. As such, +- * this is typically useful only when user-data is used in rendering a template from the server, or +- * when otherwise untrusted data is used by a directive. +- * +- * <example> +- * <file name="index.html"> +- * <div ng-init="username='A user'"> +- * <p ng-init="apptitle='Escaping demo'">{{apptitle}}: \{\{ username = "defaced value"; \}\} +- * </p> +- * <p><strong>{{username}}</strong> attempts to inject code which will deface the +- * application, but fails to accomplish their task, because the server has correctly +- * escaped the interpolation start/end markers with REVERSE SOLIDUS U+005C (backslash) +- * characters.</p> +- * <p>Instead, the result of the attempted script injection is visible, and can be removed +- * from the database by an administrator.</p> +- * </div> +- * </file> +- * </example> +- * +- * @param {string} text The text with markup to interpolate. +- * @param {boolean=} mustHaveExpression if set to true then the interpolation string must have +- * embedded expression in order to return an interpolation function. Strings with no +- * embedded expression will return null for the interpolation function. +- * @param {string=} trustedContext when provided, the returned function passes the interpolated +- * result through {@link ng.$sce#getTrusted $sce.getTrusted(interpolatedResult, +- * trustedContext)} before returning it. Refer to the {@link ng.$sce $sce} service that +- * provides Strict Contextual Escaping for details. +- * @param {boolean=} allOrNothing if `true`, then the returned function returns undefined +- * unless all embedded expressions evaluate to a value other than `undefined`. +- * @returns {function(context)} an interpolation function which is used to compute the +- * interpolated string. The function has these parameters: +- * +- * - `context`: evaluation context for all expressions embedded in the interpolated text +- */ +- function $interpolate(text, mustHaveExpression, trustedContext, allOrNothing) { +- allOrNothing = !!allOrNothing; +- var startIndex, +- endIndex, +- index = 0, +- expressions = [], +- parseFns = [], +- textLength = text.length, +- exp, +- concat = [], +- expressionPositions = []; +- +- while (index < textLength) { +- if (((startIndex = text.indexOf(startSymbol, index)) != -1) && +- ((endIndex = text.indexOf(endSymbol, startIndex + startSymbolLength)) != -1)) { +- if (index !== startIndex) { +- concat.push(unescapeText(text.substring(index, startIndex))); +- } +- exp = text.substring(startIndex + startSymbolLength, endIndex); +- expressions.push(exp); +- parseFns.push($parse(exp, parseStringifyInterceptor)); +- index = endIndex + endSymbolLength; +- expressionPositions.push(concat.length); +- concat.push(''); +- } else { +- // we did not find an interpolation, so we have to add the remainder to the separators array +- if (index !== textLength) { +- concat.push(unescapeText(text.substring(index))); +- } +- break; +- } +- } +- +- // Concatenating expressions makes it hard to reason about whether some combination of +- // concatenated values are unsafe to use and could easily lead to XSS. By requiring that a +- // single expression be used for iframe[src], object[src], etc., we ensure that the value +- // that's used is assigned or constructed by some JS code somewhere that is more testable or +- // make it obvious that you bound the value to some user controlled value. This helps reduce +- // the load when auditing for XSS issues. +- if (trustedContext && concat.length > 1) { +- throw $interpolateMinErr('noconcat', +- "Error while interpolating: {0}\nStrict Contextual Escaping disallows " + +- "interpolations that concatenate multiple expressions when a trusted value is " + +- "required. See http://docs.angularjs.org/api/ng.$sce", text); +- } +- +- if (!mustHaveExpression || expressions.length) { +- var compute = function(values) { +- for (var i = 0, ii = expressions.length; i < ii; i++) { +- if (allOrNothing && isUndefined(values[i])) return; +- concat[expressionPositions[i]] = values[i]; +- } +- return concat.join(''); +- }; +- +- var getValue = function(value) { +- return trustedContext ? +- $sce.getTrusted(trustedContext, value) : +- $sce.valueOf(value); +- }; +- +- var stringify = function(value) { +- if (value == null) { // null || undefined +- return ''; +- } +- switch (typeof value) { +- case 'string': +- break; +- case 'number': +- value = '' + value; +- break; +- default: +- value = toJson(value); +- } +- +- return value; +- }; +- +- return extend(function interpolationFn(context) { +- var i = 0; +- var ii = expressions.length; +- var values = new Array(ii); +- +- try { +- for (; i < ii; i++) { +- values[i] = parseFns[i](context); +- } +- +- return compute(values); +- } catch (err) { +- var newErr = $interpolateMinErr('interr', "Can't interpolate: {0}\n{1}", text, +- err.toString()); +- $exceptionHandler(newErr); +- } +- +- }, { +- // all of these properties are undocumented for now +- exp: text, //just for compatibility with regular watchers created via $watch +- expressions: expressions, +- $$watchDelegate: function(scope, listener, objectEquality) { +- var lastValue; +- return scope.$watchGroup(parseFns, function interpolateFnWatcher(values, oldValues) { +- var currValue = compute(values); +- if (isFunction(listener)) { +- listener.call(this, currValue, values !== oldValues ? lastValue : currValue, scope); +- } +- lastValue = currValue; +- }, objectEquality); +- } +- }); +- } +- +- function unescapeText(text) { +- return text.replace(escapedStartRegexp, startSymbol). +- replace(escapedEndRegexp, endSymbol); +- } +- +- function parseStringifyInterceptor(value) { +- try { +- value = getValue(value); +- return allOrNothing && !isDefined(value) ? value : stringify(value); +- } catch (err) { +- var newErr = $interpolateMinErr('interr', "Can't interpolate: {0}\n{1}", text, +- err.toString()); +- $exceptionHandler(newErr); +- } +- } +- } +- +- +- /** +- * @ngdoc method +- * @name $interpolate#startSymbol +- * @description +- * Symbol to denote the start of expression in the interpolated string. Defaults to `{{`. +- * +- * Use {@link ng.$interpolateProvider#startSymbol `$interpolateProvider.startSymbol`} to change +- * the symbol. +- * +- * @returns {string} start symbol. +- */ +- $interpolate.startSymbol = function() { +- return startSymbol; +- }; +- +- +- /** +- * @ngdoc method +- * @name $interpolate#endSymbol +- * @description +- * Symbol to denote the end of expression in the interpolated string. Defaults to `}}`. +- * +- * Use {@link ng.$interpolateProvider#endSymbol `$interpolateProvider.endSymbol`} to change +- * the symbol. +- * +- * @returns {string} end symbol. +- */ +- $interpolate.endSymbol = function() { +- return endSymbol; +- }; +- +- return $interpolate; +- }]; +-} +- +-function $IntervalProvider() { +- this.$get = ['$rootScope', '$window', '$q', '$$q', +- function($rootScope, $window, $q, $$q) { +- var intervals = {}; +- +- +- /** +- * @ngdoc service +- * @name $interval +- * +- * @description +- * Angular's wrapper for `window.setInterval`. The `fn` function is executed every `delay` +- * milliseconds. +- * +- * The return value of registering an interval function is a promise. This promise will be +- * notified upon each tick of the interval, and will be resolved after `count` iterations, or +- * run indefinitely if `count` is not defined. The value of the notification will be the +- * number of iterations that have run. +- * To cancel an interval, call `$interval.cancel(promise)`. +- * +- * In tests you can use {@link ngMock.$interval#flush `$interval.flush(millis)`} to +- * move forward by `millis` milliseconds and trigger any functions scheduled to run in that +- * time. +- * +- * <div class="alert alert-warning"> +- * **Note**: Intervals created by this service must be explicitly destroyed when you are finished +- * with them. In particular they are not automatically destroyed when a controller's scope or a +- * directive's element are destroyed. +- * You should take this into consideration and make sure to always cancel the interval at the +- * appropriate moment. See the example below for more details on how and when to do this. +- * </div> +- * +- * @param {function()} fn A function that should be called repeatedly. +- * @param {number} delay Number of milliseconds between each function call. +- * @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat +- * indefinitely. +- * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise +- * will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block. +- * @returns {promise} A promise which will be notified on each iteration. +- * +- * @example +- * <example module="intervalExample"> +- * <file name="index.html"> +- * <script> +- * angular.module('intervalExample', []) +- * .controller('ExampleController', ['$scope', '$interval', +- * function($scope, $interval) { +- * $scope.format = 'M/d/yy h:mm:ss a'; +- * $scope.blood_1 = 100; +- * $scope.blood_2 = 120; +- * +- * var stop; +- * $scope.fight = function() { +- * // Don't start a new fight if we are already fighting +- * if ( angular.isDefined(stop) ) return; +- * +- * stop = $interval(function() { +- * if ($scope.blood_1 > 0 && $scope.blood_2 > 0) { +- * $scope.blood_1 = $scope.blood_1 - 3; +- * $scope.blood_2 = $scope.blood_2 - 4; +- * } else { +- * $scope.stopFight(); +- * } +- * }, 100); +- * }; +- * +- * $scope.stopFight = function() { +- * if (angular.isDefined(stop)) { +- * $interval.cancel(stop); +- * stop = undefined; +- * } +- * }; +- * +- * $scope.resetFight = function() { +- * $scope.blood_1 = 100; +- * $scope.blood_2 = 120; +- * }; +- * +- * $scope.$on('$destroy', function() { +- * // Make sure that the interval is destroyed too +- * $scope.stopFight(); +- * }); +- * }]) +- * // Register the 'myCurrentTime' directive factory method. +- * // We inject $interval and dateFilter service since the factory method is DI. +- * .directive('myCurrentTime', ['$interval', 'dateFilter', +- * function($interval, dateFilter) { +- * // return the directive link function. (compile function not needed) +- * return function(scope, element, attrs) { +- * var format, // date format +- * stopTime; // so that we can cancel the time updates +- * +- * // used to update the UI +- * function updateTime() { +- * element.text(dateFilter(new Date(), format)); +- * } +- * +- * // watch the expression, and update the UI on change. +- * scope.$watch(attrs.myCurrentTime, function(value) { +- * format = value; +- * updateTime(); +- * }); +- * +- * stopTime = $interval(updateTime, 1000); +- * +- * // listen on DOM destroy (removal) event, and cancel the next UI update +- * // to prevent updating time after the DOM element was removed. +- * element.on('$destroy', function() { +- * $interval.cancel(stopTime); +- * }); +- * } +- * }]); +- * </script> +- * +- * <div> +- * <div ng-controller="ExampleController"> +- * Date format: <input ng-model="format"> <hr/> +- * Current time is: <span my-current-time="format"></span> +- * <hr/> +- * Blood 1 : <font color='red'>{{blood_1}}</font> +- * Blood 2 : <font color='red'>{{blood_2}}</font> +- * <button type="button" data-ng-click="fight()">Fight</button> +- * <button type="button" data-ng-click="stopFight()">StopFight</button> +- * <button type="button" data-ng-click="resetFight()">resetFight</button> +- * </div> +- * </div> +- * +- * </file> +- * </example> +- */ +- function interval(fn, delay, count, invokeApply) { +- var setInterval = $window.setInterval, +- clearInterval = $window.clearInterval, +- iteration = 0, +- skipApply = (isDefined(invokeApply) && !invokeApply), +- deferred = (skipApply ? $$q : $q).defer(), +- promise = deferred.promise; +- +- count = isDefined(count) ? count : 0; +- +- promise.then(null, null, fn); +- +- promise.$$intervalId = setInterval(function tick() { +- deferred.notify(iteration++); +- +- if (count > 0 && iteration >= count) { +- deferred.resolve(iteration); +- clearInterval(promise.$$intervalId); +- delete intervals[promise.$$intervalId]; +- } +- +- if (!skipApply) $rootScope.$apply(); +- +- }, delay); +- +- intervals[promise.$$intervalId] = deferred; +- +- return promise; +- } +- +- +- /** +- * @ngdoc method +- * @name $interval#cancel +- * +- * @description +- * Cancels a task associated with the `promise`. +- * +- * @param {promise} promise returned by the `$interval` function. +- * @returns {boolean} Returns `true` if the task was successfully canceled. +- */ +- interval.cancel = function(promise) { +- if (promise && promise.$$intervalId in intervals) { +- intervals[promise.$$intervalId].reject('canceled'); +- $window.clearInterval(promise.$$intervalId); +- delete intervals[promise.$$intervalId]; +- return true; +- } +- return false; +- }; +- +- return interval; +- }]; +-} +- +-/** +- * @ngdoc service +- * @name $locale +- * +- * @description +- * $locale service provides localization rules for various Angular components. As of right now the +- * only public api is: +- * +- * * `id` – `{string}` – locale id formatted as `languageId-countryId` (e.g. `en-us`) +- */ +-function $LocaleProvider() { +- this.$get = function() { +- return { +- id: 'en-us', +- +- NUMBER_FORMATS: { +- DECIMAL_SEP: '.', +- GROUP_SEP: ',', +- PATTERNS: [ +- { // Decimal Pattern +- minInt: 1, +- minFrac: 0, +- maxFrac: 3, +- posPre: '', +- posSuf: '', +- negPre: '-', +- negSuf: '', +- gSize: 3, +- lgSize: 3 +- },{ //Currency Pattern +- minInt: 1, +- minFrac: 2, +- maxFrac: 2, +- posPre: '\u00A4', +- posSuf: '', +- negPre: '(\u00A4', +- negSuf: ')', +- gSize: 3, +- lgSize: 3 +- } +- ], +- CURRENCY_SYM: '$' +- }, +- +- DATETIME_FORMATS: { +- MONTH: +- 'January,February,March,April,May,June,July,August,September,October,November,December' +- .split(','), +- SHORTMONTH: 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(','), +- DAY: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday'.split(','), +- SHORTDAY: 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'.split(','), +- AMPMS: ['AM','PM'], +- medium: 'MMM d, y h:mm:ss a', +- 'short': 'M/d/yy h:mm a', +- fullDate: 'EEEE, MMMM d, y', +- longDate: 'MMMM d, y', +- mediumDate: 'MMM d, y', +- shortDate: 'M/d/yy', +- mediumTime: 'h:mm:ss a', +- shortTime: 'h:mm a', +- ERANAMES: [ +- "Before Christ", +- "Anno Domini" +- ], +- ERAS: [ +- "BC", +- "AD" +- ] +- }, +- +- pluralCat: function(num) { +- if (num === 1) { +- return 'one'; +- } +- return 'other'; +- } +- }; +- }; +-} +- +-var PATH_MATCH = /^([^\?#]*)(\?([^#]*))?(#(.*))?$/, +- DEFAULT_PORTS = {'http': 80, 'https': 443, 'ftp': 21}; +-var $locationMinErr = minErr('$location'); +- +- +-/** +- * Encode path using encodeUriSegment, ignoring forward slashes +- * +- * @param {string} path Path to encode +- * @returns {string} +- */ +-function encodePath(path) { +- var segments = path.split('/'), +- i = segments.length; +- +- while (i--) { +- segments[i] = encodeUriSegment(segments[i]); +- } +- +- return segments.join('/'); +-} +- +-function parseAbsoluteUrl(absoluteUrl, locationObj) { +- var parsedUrl = urlResolve(absoluteUrl); +- +- locationObj.$$protocol = parsedUrl.protocol; +- locationObj.$$host = parsedUrl.hostname; +- locationObj.$$port = int(parsedUrl.port) || DEFAULT_PORTS[parsedUrl.protocol] || null; +-} +- +- +-function parseAppUrl(relativeUrl, locationObj) { +- var prefixed = (relativeUrl.charAt(0) !== '/'); +- if (prefixed) { +- relativeUrl = '/' + relativeUrl; +- } +- var match = urlResolve(relativeUrl); +- locationObj.$$path = decodeURIComponent(prefixed && match.pathname.charAt(0) === '/' ? +- match.pathname.substring(1) : match.pathname); +- locationObj.$$search = parseKeyValue(match.search); +- locationObj.$$hash = decodeURIComponent(match.hash); +- +- // make sure path starts with '/'; +- if (locationObj.$$path && locationObj.$$path.charAt(0) != '/') { +- locationObj.$$path = '/' + locationObj.$$path; +- } +-} +- +- +-/** +- * +- * @param {string} begin +- * @param {string} whole +- * @returns {string} returns text from whole after begin or undefined if it does not begin with +- * expected string. +- */ +-function beginsWith(begin, whole) { +- if (whole.indexOf(begin) === 0) { +- return whole.substr(begin.length); +- } +-} +- +- +-function stripHash(url) { +- var index = url.indexOf('#'); +- return index == -1 ? url : url.substr(0, index); +-} +- +-function trimEmptyHash(url) { +- return url.replace(/(#.+)|#$/, '$1'); +-} +- +- +-function stripFile(url) { +- return url.substr(0, stripHash(url).lastIndexOf('/') + 1); +-} +- +-/* return the server only (scheme://host:port) */ +-function serverBase(url) { +- return url.substring(0, url.indexOf('/', url.indexOf('//') + 2)); +-} +- +- +-/** +- * LocationHtml5Url represents an url +- * This object is exposed as $location service when HTML5 mode is enabled and supported +- * +- * @constructor +- * @param {string} appBase application base URL +- * @param {string} basePrefix url path prefix +- */ +-function LocationHtml5Url(appBase, basePrefix) { +- this.$$html5 = true; +- basePrefix = basePrefix || ''; +- var appBaseNoFile = stripFile(appBase); +- parseAbsoluteUrl(appBase, this); +- +- +- /** +- * Parse given html5 (regular) url string into properties +- * @param {string} url HTML5 url +- * @private +- */ +- this.$$parse = function(url) { +- var pathUrl = beginsWith(appBaseNoFile, url); +- if (!isString(pathUrl)) { +- throw $locationMinErr('ipthprfx', 'Invalid url "{0}", missing path prefix "{1}".', url, +- appBaseNoFile); +- } +- +- parseAppUrl(pathUrl, this); +- +- if (!this.$$path) { +- this.$$path = '/'; +- } +- +- this.$$compose(); +- }; +- +- /** +- * Compose url and update `absUrl` property +- * @private +- */ +- this.$$compose = function() { +- var search = toKeyValue(this.$$search), +- hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; +- +- this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; +- this.$$absUrl = appBaseNoFile + this.$$url.substr(1); // first char is always '/' +- }; +- +- this.$$parseLinkUrl = function(url, relHref) { +- if (relHref && relHref[0] === '#') { +- // special case for links to hash fragments: +- // keep the old url and only replace the hash fragment +- this.hash(relHref.slice(1)); +- return true; +- } +- var appUrl, prevAppUrl; +- var rewrittenUrl; +- +- if ((appUrl = beginsWith(appBase, url)) !== undefined) { +- prevAppUrl = appUrl; +- if ((appUrl = beginsWith(basePrefix, appUrl)) !== undefined) { +- rewrittenUrl = appBaseNoFile + (beginsWith('/', appUrl) || appUrl); +- } else { +- rewrittenUrl = appBase + prevAppUrl; +- } +- } else if ((appUrl = beginsWith(appBaseNoFile, url)) !== undefined) { +- rewrittenUrl = appBaseNoFile + appUrl; +- } else if (appBaseNoFile == url + '/') { +- rewrittenUrl = appBaseNoFile; +- } +- if (rewrittenUrl) { +- this.$$parse(rewrittenUrl); +- } +- return !!rewrittenUrl; +- }; +-} +- +- +-/** +- * LocationHashbangUrl represents url +- * This object is exposed as $location service when developer doesn't opt into html5 mode. +- * It also serves as the base class for html5 mode fallback on legacy browsers. +- * +- * @constructor +- * @param {string} appBase application base URL +- * @param {string} hashPrefix hashbang prefix +- */ +-function LocationHashbangUrl(appBase, hashPrefix) { +- var appBaseNoFile = stripFile(appBase); +- +- parseAbsoluteUrl(appBase, this); +- +- +- /** +- * Parse given hashbang url into properties +- * @param {string} url Hashbang url +- * @private +- */ +- this.$$parse = function(url) { +- var withoutBaseUrl = beginsWith(appBase, url) || beginsWith(appBaseNoFile, url); +- var withoutHashUrl; +- +- if (withoutBaseUrl.charAt(0) === '#') { +- +- // The rest of the url starts with a hash so we have +- // got either a hashbang path or a plain hash fragment +- withoutHashUrl = beginsWith(hashPrefix, withoutBaseUrl); +- if (isUndefined(withoutHashUrl)) { +- // There was no hashbang prefix so we just have a hash fragment +- withoutHashUrl = withoutBaseUrl; +- } +- +- } else { +- // There was no hashbang path nor hash fragment: +- // If we are in HTML5 mode we use what is left as the path; +- // Otherwise we ignore what is left +- withoutHashUrl = this.$$html5 ? withoutBaseUrl : ''; +- } +- +- parseAppUrl(withoutHashUrl, this); +- +- this.$$path = removeWindowsDriveName(this.$$path, withoutHashUrl, appBase); +- +- this.$$compose(); +- +- /* +- * In Windows, on an anchor node on documents loaded from +- * the filesystem, the browser will return a pathname +- * prefixed with the drive name ('/C:/path') when a +- * pathname without a drive is set: +- * * a.setAttribute('href', '/foo') +- * * a.pathname === '/C:/foo' //true +- * +- * Inside of Angular, we're always using pathnames that +- * do not include drive names for routing. +- */ +- function removeWindowsDriveName(path, url, base) { +- /* +- Matches paths for file protocol on windows, +- such as /C:/foo/bar, and captures only /foo/bar. +- */ +- var windowsFilePathExp = /^\/[A-Z]:(\/.*)/; +- +- var firstPathSegmentMatch; +- +- //Get the relative path from the input URL. +- if (url.indexOf(base) === 0) { +- url = url.replace(base, ''); +- } +- +- // The input URL intentionally contains a first path segment that ends with a colon. +- if (windowsFilePathExp.exec(url)) { +- return path; +- } +- +- firstPathSegmentMatch = windowsFilePathExp.exec(path); +- return firstPathSegmentMatch ? firstPathSegmentMatch[1] : path; +- } +- }; +- +- /** +- * Compose hashbang url and update `absUrl` property +- * @private +- */ +- this.$$compose = function() { +- var search = toKeyValue(this.$$search), +- hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; +- +- this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; +- this.$$absUrl = appBase + (this.$$url ? hashPrefix + this.$$url : ''); +- }; +- +- this.$$parseLinkUrl = function(url, relHref) { +- if (stripHash(appBase) == stripHash(url)) { +- this.$$parse(url); +- return true; +- } +- return false; +- }; +-} +- +- +-/** +- * LocationHashbangUrl represents url +- * This object is exposed as $location service when html5 history api is enabled but the browser +- * does not support it. +- * +- * @constructor +- * @param {string} appBase application base URL +- * @param {string} hashPrefix hashbang prefix +- */ +-function LocationHashbangInHtml5Url(appBase, hashPrefix) { +- this.$$html5 = true; +- LocationHashbangUrl.apply(this, arguments); +- +- var appBaseNoFile = stripFile(appBase); +- +- this.$$parseLinkUrl = function(url, relHref) { +- if (relHref && relHref[0] === '#') { +- // special case for links to hash fragments: +- // keep the old url and only replace the hash fragment +- this.hash(relHref.slice(1)); +- return true; +- } +- +- var rewrittenUrl; +- var appUrl; +- +- if (appBase == stripHash(url)) { +- rewrittenUrl = url; +- } else if ((appUrl = beginsWith(appBaseNoFile, url))) { +- rewrittenUrl = appBase + hashPrefix + appUrl; +- } else if (appBaseNoFile === url + '/') { +- rewrittenUrl = appBaseNoFile; +- } +- if (rewrittenUrl) { +- this.$$parse(rewrittenUrl); +- } +- return !!rewrittenUrl; +- }; +- +- this.$$compose = function() { +- var search = toKeyValue(this.$$search), +- hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; +- +- this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; +- // include hashPrefix in $$absUrl when $$url is empty so IE8 & 9 do not reload page because of removal of '#' +- this.$$absUrl = appBase + hashPrefix + this.$$url; +- }; +- +-} +- +- +-var locationPrototype = { +- +- /** +- * Are we in html5 mode? +- * @private +- */ +- $$html5: false, +- +- /** +- * Has any change been replacing? +- * @private +- */ +- $$replace: false, +- +- /** +- * @ngdoc method +- * @name $location#absUrl +- * +- * @description +- * This method is getter only. +- * +- * Return full url representation with all segments encoded according to rules specified in +- * [RFC 3986](http://www.ietf.org/rfc/rfc3986.txt). +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var absUrl = $location.absUrl(); +- * // => "http://example.com/#/some/path?foo=bar&baz=xoxo" +- * ``` +- * +- * @return {string} full url +- */ +- absUrl: locationGetter('$$absUrl'), +- +- /** +- * @ngdoc method +- * @name $location#url +- * +- * @description +- * This method is getter / setter. +- * +- * Return url (e.g. `/path?a=b#hash`) when called without any parameter. +- * +- * Change path, search and hash, when called with parameter and return `$location`. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var url = $location.url(); +- * // => "/some/path?foo=bar&baz=xoxo" +- * ``` +- * +- * @param {string=} url New url without base prefix (e.g. `/path?a=b#hash`) +- * @return {string} url +- */ +- url: function(url) { +- if (isUndefined(url)) +- return this.$$url; +- +- var match = PATH_MATCH.exec(url); +- if (match[1] || url === '') this.path(decodeURIComponent(match[1])); +- if (match[2] || match[1] || url === '') this.search(match[3] || ''); +- this.hash(match[5] || ''); +- +- return this; +- }, +- +- /** +- * @ngdoc method +- * @name $location#protocol +- * +- * @description +- * This method is getter only. +- * +- * Return protocol of current url. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var protocol = $location.protocol(); +- * // => "http" +- * ``` +- * +- * @return {string} protocol of current url +- */ +- protocol: locationGetter('$$protocol'), +- +- /** +- * @ngdoc method +- * @name $location#host +- * +- * @description +- * This method is getter only. +- * +- * Return host of current url. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var host = $location.host(); +- * // => "example.com" +- * ``` +- * +- * @return {string} host of current url. +- */ +- host: locationGetter('$$host'), +- +- /** +- * @ngdoc method +- * @name $location#port +- * +- * @description +- * This method is getter only. +- * +- * Return port of current url. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var port = $location.port(); +- * // => 80 +- * ``` +- * +- * @return {Number} port +- */ +- port: locationGetter('$$port'), +- +- /** +- * @ngdoc method +- * @name $location#path +- * +- * @description +- * This method is getter / setter. +- * +- * Return path of current url when called without any parameter. +- * +- * Change path when called with parameter and return `$location`. +- * +- * Note: Path should always begin with forward slash (/), this method will add the forward slash +- * if it is missing. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var path = $location.path(); +- * // => "/some/path" +- * ``` +- * +- * @param {(string|number)=} path New path +- * @return {string} path +- */ +- path: locationGetterSetter('$$path', function(path) { +- path = path !== null ? path.toString() : ''; +- return path.charAt(0) == '/' ? path : '/' + path; +- }), +- +- /** +- * @ngdoc method +- * @name $location#search +- * +- * @description +- * This method is getter / setter. +- * +- * Return search part (as object) of current url when called without any parameter. +- * +- * Change search part when called with parameter and return `$location`. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo +- * var searchObject = $location.search(); +- * // => {foo: 'bar', baz: 'xoxo'} +- * +- * // set foo to 'yipee' +- * $location.search('foo', 'yipee'); +- * // $location.search() => {foo: 'yipee', baz: 'xoxo'} +- * ``` +- * +- * @param {string|Object.<string>|Object.<Array.<string>>} search New search params - string or +- * hash object. +- * +- * When called with a single argument the method acts as a setter, setting the `search` component +- * of `$location` to the specified value. +- * +- * If the argument is a hash object containing an array of values, these values will be encoded +- * as duplicate search parameters in the url. +- * +- * @param {(string|Number|Array<string>|boolean)=} paramValue If `search` is a string or number, then `paramValue` +- * will override only a single search property. +- * +- * If `paramValue` is an array, it will override the property of the `search` component of +- * `$location` specified via the first argument. +- * +- * If `paramValue` is `null`, the property specified via the first argument will be deleted. +- * +- * If `paramValue` is `true`, the property specified via the first argument will be added with no +- * value nor trailing equal sign. +- * +- * @return {Object} If called with no arguments returns the parsed `search` object. If called with +- * one or more arguments returns `$location` object itself. +- */ +- search: function(search, paramValue) { +- switch (arguments.length) { +- case 0: +- return this.$$search; +- case 1: +- if (isString(search) || isNumber(search)) { +- search = search.toString(); +- this.$$search = parseKeyValue(search); +- } else if (isObject(search)) { +- search = copy(search, {}); +- // remove object undefined or null properties +- forEach(search, function(value, key) { +- if (value == null) delete search[key]; +- }); +- +- this.$$search = search; +- } else { +- throw $locationMinErr('isrcharg', +- 'The first argument of the `$location#search()` call must be a string or an object.'); +- } +- break; +- default: +- if (isUndefined(paramValue) || paramValue === null) { +- delete this.$$search[search]; +- } else { +- this.$$search[search] = paramValue; +- } +- } +- +- this.$$compose(); +- return this; +- }, +- +- /** +- * @ngdoc method +- * @name $location#hash +- * +- * @description +- * This method is getter / setter. +- * +- * Return hash fragment when called without any parameter. +- * +- * Change hash fragment when called with parameter and return `$location`. +- * +- * +- * ```js +- * // given url http://example.com/#/some/path?foo=bar&baz=xoxo#hashValue +- * var hash = $location.hash(); +- * // => "hashValue" +- * ``` +- * +- * @param {(string|number)=} hash New hash fragment +- * @return {string} hash +- */ +- hash: locationGetterSetter('$$hash', function(hash) { +- return hash !== null ? hash.toString() : ''; +- }), +- +- /** +- * @ngdoc method +- * @name $location#replace +- * +- * @description +- * If called, all changes to $location during current `$digest` will be replacing current history +- * record, instead of adding new one. +- */ +- replace: function() { +- this.$$replace = true; +- return this; +- } +-}; +- +-forEach([LocationHashbangInHtml5Url, LocationHashbangUrl, LocationHtml5Url], function(Location) { +- Location.prototype = Object.create(locationPrototype); +- +- /** +- * @ngdoc method +- * @name $location#state +- * +- * @description +- * This method is getter / setter. +- * +- * Return the history state object when called without any parameter. +- * +- * Change the history state object when called with one parameter and return `$location`. +- * The state object is later passed to `pushState` or `replaceState`. +- * +- * NOTE: This method is supported only in HTML5 mode and only in browsers supporting +- * the HTML5 History API (i.e. methods `pushState` and `replaceState`). If you need to support +- * older browsers (like IE9 or Android < 4.0), don't use this method. +- * +- * @param {object=} state State object for pushState or replaceState +- * @return {object} state +- */ +- Location.prototype.state = function(state) { +- if (!arguments.length) +- return this.$$state; +- +- if (Location !== LocationHtml5Url || !this.$$html5) { +- throw $locationMinErr('nostate', 'History API state support is available only ' + +- 'in HTML5 mode and only in browsers supporting HTML5 History API'); +- } +- // The user might modify `stateObject` after invoking `$location.state(stateObject)` +- // but we're changing the $$state reference to $browser.state() during the $digest +- // so the modification window is narrow. +- this.$$state = isUndefined(state) ? null : state; +- +- return this; +- }; +-}); +- +- +-function locationGetter(property) { +- return function() { +- return this[property]; +- }; +-} +- +- +-function locationGetterSetter(property, preprocess) { +- return function(value) { +- if (isUndefined(value)) +- return this[property]; +- +- this[property] = preprocess(value); +- this.$$compose(); +- +- return this; +- }; +-} +- +- +-/** +- * @ngdoc service +- * @name $location +- * +- * @requires $rootElement +- * +- * @description +- * The $location service parses the URL in the browser address bar (based on the +- * [window.location](https://developer.mozilla.org/en/window.location)) and makes the URL +- * available to your application. Changes to the URL in the address bar are reflected into +- * $location service and changes to $location are reflected into the browser address bar. +- * +- * **The $location service:** +- * +- * - Exposes the current URL in the browser address bar, so you can +- * - Watch and observe the URL. +- * - Change the URL. +- * - Synchronizes the URL with the browser when the user +- * - Changes the address bar. +- * - Clicks the back or forward button (or clicks a History link). +- * - Clicks on a link. +- * - Represents the URL object as a set of methods (protocol, host, port, path, search, hash). +- * +- * For more information see {@link guide/$location Developer Guide: Using $location} +- */ +- +-/** +- * @ngdoc provider +- * @name $locationProvider +- * @description +- * Use the `$locationProvider` to configure how the application deep linking paths are stored. +- */ +-function $LocationProvider() { +- var hashPrefix = '', +- html5Mode = { +- enabled: false, +- requireBase: true, +- rewriteLinks: true +- }; +- +- /** +- * @ngdoc method +- * @name $locationProvider#hashPrefix +- * @description +- * @param {string=} prefix Prefix for hash part (containing path and search) +- * @returns {*} current value if used as getter or itself (chaining) if used as setter +- */ +- this.hashPrefix = function(prefix) { +- if (isDefined(prefix)) { +- hashPrefix = prefix; +- return this; +- } else { +- return hashPrefix; +- } +- }; +- +- /** +- * @ngdoc method +- * @name $locationProvider#html5Mode +- * @description +- * @param {(boolean|Object)=} mode If boolean, sets `html5Mode.enabled` to value. +- * If object, sets `enabled`, `requireBase` and `rewriteLinks` to respective values. Supported +- * properties: +- * - **enabled** – `{boolean}` – (default: false) If true, will rely on `history.pushState` to +- * change urls where supported. Will fall back to hash-prefixed paths in browsers that do not +- * support `pushState`. +- * - **requireBase** - `{boolean}` - (default: `true`) When html5Mode is enabled, specifies +- * whether or not a <base> tag is required to be present. If `enabled` and `requireBase` are +- * true, and a base tag is not present, an error will be thrown when `$location` is injected. +- * See the {@link guide/$location $location guide for more information} +- * - **rewriteLinks** - `{boolean}` - (default: `true`) When html5Mode is enabled, +- * enables/disables url rewriting for relative links. +- * +- * @returns {Object} html5Mode object if used as getter or itself (chaining) if used as setter +- */ +- this.html5Mode = function(mode) { +- if (isBoolean(mode)) { +- html5Mode.enabled = mode; +- return this; +- } else if (isObject(mode)) { +- +- if (isBoolean(mode.enabled)) { +- html5Mode.enabled = mode.enabled; +- } +- +- if (isBoolean(mode.requireBase)) { +- html5Mode.requireBase = mode.requireBase; +- } +- +- if (isBoolean(mode.rewriteLinks)) { +- html5Mode.rewriteLinks = mode.rewriteLinks; +- } +- +- return this; +- } else { +- return html5Mode; +- } +- }; +- +- /** +- * @ngdoc event +- * @name $location#$locationChangeStart +- * @eventType broadcast on root scope +- * @description +- * Broadcasted before a URL will change. +- * +- * This change can be prevented by calling +- * `preventDefault` method of the event. See {@link ng.$rootScope.Scope#$on} for more +- * details about event object. Upon successful change +- * {@link ng.$location#$locationChangeSuccess $locationChangeSuccess} is fired. +- * +- * The `newState` and `oldState` parameters may be defined only in HTML5 mode and when +- * the browser supports the HTML5 History API. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {string} newUrl New URL +- * @param {string=} oldUrl URL that was before it was changed. +- * @param {string=} newState New history state object +- * @param {string=} oldState History state object that was before it was changed. +- */ +- +- /** +- * @ngdoc event +- * @name $location#$locationChangeSuccess +- * @eventType broadcast on root scope +- * @description +- * Broadcasted after a URL was changed. +- * +- * The `newState` and `oldState` parameters may be defined only in HTML5 mode and when +- * the browser supports the HTML5 History API. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {string} newUrl New URL +- * @param {string=} oldUrl URL that was before it was changed. +- * @param {string=} newState New history state object +- * @param {string=} oldState History state object that was before it was changed. +- */ +- +- this.$get = ['$rootScope', '$browser', '$sniffer', '$rootElement', '$window', +- function($rootScope, $browser, $sniffer, $rootElement, $window) { +- var $location, +- LocationMode, +- baseHref = $browser.baseHref(), // if base[href] is undefined, it defaults to '' +- initialUrl = $browser.url(), +- appBase; +- +- if (html5Mode.enabled) { +- if (!baseHref && html5Mode.requireBase) { +- throw $locationMinErr('nobase', +- "$location in HTML5 mode requires a <base> tag to be present!"); +- } +- appBase = serverBase(initialUrl) + (baseHref || '/'); +- LocationMode = $sniffer.history ? LocationHtml5Url : LocationHashbangInHtml5Url; +- } else { +- appBase = stripHash(initialUrl); +- LocationMode = LocationHashbangUrl; +- } +- $location = new LocationMode(appBase, '#' + hashPrefix); +- $location.$$parseLinkUrl(initialUrl, initialUrl); +- +- $location.$$state = $browser.state(); +- +- var IGNORE_URI_REGEXP = /^\s*(javascript|mailto):/i; +- +- function setBrowserUrlWithFallback(url, replace, state) { +- var oldUrl = $location.url(); +- var oldState = $location.$$state; +- try { +- $browser.url(url, replace, state); +- +- // Make sure $location.state() returns referentially identical (not just deeply equal) +- // state object; this makes possible quick checking if the state changed in the digest +- // loop. Checking deep equality would be too expensive. +- $location.$$state = $browser.state(); +- } catch (e) { +- // Restore old values if pushState fails +- $location.url(oldUrl); +- $location.$$state = oldState; +- +- throw e; +- } +- } +- +- $rootElement.on('click', function(event) { +- // TODO(vojta): rewrite link when opening in new tab/window (in legacy browser) +- // currently we open nice url link and redirect then +- +- if (!html5Mode.rewriteLinks || event.ctrlKey || event.metaKey || event.shiftKey || event.which == 2 || event.button == 2) return; +- +- var elm = jqLite(event.target); +- +- // traverse the DOM up to find first A tag +- while (nodeName_(elm[0]) !== 'a') { +- // ignore rewriting if no A tag (reached root element, or no parent - removed from document) +- if (elm[0] === $rootElement[0] || !(elm = elm.parent())[0]) return; +- } +- +- var absHref = elm.prop('href'); +- // get the actual href attribute - see +- // http://msdn.microsoft.com/en-us/library/ie/dd347148(v=vs.85).aspx +- var relHref = elm.attr('href') || elm.attr('xlink:href'); +- +- if (isObject(absHref) && absHref.toString() === '[object SVGAnimatedString]') { +- // SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during +- // an animation. +- absHref = urlResolve(absHref.animVal).href; +- } +- +- // Ignore when url is started with javascript: or mailto: +- if (IGNORE_URI_REGEXP.test(absHref)) return; +- +- if (absHref && !elm.attr('target') && !event.isDefaultPrevented()) { +- if ($location.$$parseLinkUrl(absHref, relHref)) { +- // We do a preventDefault for all urls that are part of the angular application, +- // in html5mode and also without, so that we are able to abort navigation without +- // getting double entries in the location history. +- event.preventDefault(); +- // update location manually +- if ($location.absUrl() != $browser.url()) { +- $rootScope.$apply(); +- // hack to work around FF6 bug 684208 when scenario runner clicks on links +- $window.angular['ff-684208-preventDefault'] = true; +- } +- } +- } +- }); +- +- +- // rewrite hashbang url <> html5 url +- if (trimEmptyHash($location.absUrl()) != trimEmptyHash(initialUrl)) { +- $browser.url($location.absUrl(), true); +- } +- +- var initializing = true; +- +- // update $location when $browser url changes +- $browser.onUrlChange(function(newUrl, newState) { +- $rootScope.$evalAsync(function() { +- var oldUrl = $location.absUrl(); +- var oldState = $location.$$state; +- var defaultPrevented; +- +- $location.$$parse(newUrl); +- $location.$$state = newState; +- +- defaultPrevented = $rootScope.$broadcast('$locationChangeStart', newUrl, oldUrl, +- newState, oldState).defaultPrevented; +- +- // if the location was changed by a `$locationChangeStart` handler then stop +- // processing this location change +- if ($location.absUrl() !== newUrl) return; +- +- if (defaultPrevented) { +- $location.$$parse(oldUrl); +- $location.$$state = oldState; +- setBrowserUrlWithFallback(oldUrl, false, oldState); +- } else { +- initializing = false; +- afterLocationChange(oldUrl, oldState); +- } +- }); +- if (!$rootScope.$$phase) $rootScope.$digest(); +- }); +- +- // update browser +- $rootScope.$watch(function $locationWatch() { +- var oldUrl = trimEmptyHash($browser.url()); +- var newUrl = trimEmptyHash($location.absUrl()); +- var oldState = $browser.state(); +- var currentReplace = $location.$$replace; +- var urlOrStateChanged = oldUrl !== newUrl || +- ($location.$$html5 && $sniffer.history && oldState !== $location.$$state); +- +- if (initializing || urlOrStateChanged) { +- initializing = false; +- +- $rootScope.$evalAsync(function() { +- var newUrl = $location.absUrl(); +- var defaultPrevented = $rootScope.$broadcast('$locationChangeStart', newUrl, oldUrl, +- $location.$$state, oldState).defaultPrevented; +- +- // if the location was changed by a `$locationChangeStart` handler then stop +- // processing this location change +- if ($location.absUrl() !== newUrl) return; +- +- if (defaultPrevented) { +- $location.$$parse(oldUrl); +- $location.$$state = oldState; +- } else { +- if (urlOrStateChanged) { +- setBrowserUrlWithFallback(newUrl, currentReplace, +- oldState === $location.$$state ? null : $location.$$state); +- } +- afterLocationChange(oldUrl, oldState); +- } +- }); +- } +- +- $location.$$replace = false; +- +- // we don't need to return anything because $evalAsync will make the digest loop dirty when +- // there is a change +- }); +- +- return $location; +- +- function afterLocationChange(oldUrl, oldState) { +- $rootScope.$broadcast('$locationChangeSuccess', $location.absUrl(), oldUrl, +- $location.$$state, oldState); +- } +-}]; +-} +- +-/** +- * @ngdoc service +- * @name $log +- * @requires $window +- * +- * @description +- * Simple service for logging. Default implementation safely writes the message +- * into the browser's console (if present). +- * +- * The main purpose of this service is to simplify debugging and troubleshooting. +- * +- * The default is to log `debug` messages. You can use +- * {@link ng.$logProvider ng.$logProvider#debugEnabled} to change this. +- * +- * @example +- <example module="logExample"> +- <file name="script.js"> +- angular.module('logExample', []) +- .controller('LogController', ['$scope', '$log', function($scope, $log) { +- $scope.$log = $log; +- $scope.message = 'Hello World!'; +- }]); +- </file> +- <file name="index.html"> +- <div ng-controller="LogController"> +- <p>Reload this page with open console, enter text and hit the log button...</p> +- Message: +- <input type="text" ng-model="message"/> +- <button ng-click="$log.log(message)">log</button> +- <button ng-click="$log.warn(message)">warn</button> +- <button ng-click="$log.info(message)">info</button> +- <button ng-click="$log.error(message)">error</button> +- <button ng-click="$log.debug(message)">debug</button> +- </div> +- </file> +- </example> +- */ +- +-/** +- * @ngdoc provider +- * @name $logProvider +- * @description +- * Use the `$logProvider` to configure how the application logs messages +- */ +-function $LogProvider() { +- var debug = true, +- self = this; +- +- /** +- * @ngdoc method +- * @name $logProvider#debugEnabled +- * @description +- * @param {boolean=} flag enable or disable debug level messages +- * @returns {*} current value if used as getter or itself (chaining) if used as setter +- */ +- this.debugEnabled = function(flag) { +- if (isDefined(flag)) { +- debug = flag; +- return this; +- } else { +- return debug; +- } +- }; +- +- this.$get = ['$window', function($window) { +- return { +- /** +- * @ngdoc method +- * @name $log#log +- * +- * @description +- * Write a log message +- */ +- log: consoleLog('log'), +- +- /** +- * @ngdoc method +- * @name $log#info +- * +- * @description +- * Write an information message +- */ +- info: consoleLog('info'), +- +- /** +- * @ngdoc method +- * @name $log#warn +- * +- * @description +- * Write a warning message +- */ +- warn: consoleLog('warn'), +- +- /** +- * @ngdoc method +- * @name $log#error +- * +- * @description +- * Write an error message +- */ +- error: consoleLog('error'), +- +- /** +- * @ngdoc method +- * @name $log#debug +- * +- * @description +- * Write a debug message +- */ +- debug: (function() { +- var fn = consoleLog('debug'); +- +- return function() { +- if (debug) { +- fn.apply(self, arguments); +- } +- }; +- }()) +- }; +- +- function formatError(arg) { +- if (arg instanceof Error) { +- if (arg.stack) { +- arg = (arg.message && arg.stack.indexOf(arg.message) === -1) +- ? 'Error: ' + arg.message + '\n' + arg.stack +- : arg.stack; +- } else if (arg.sourceURL) { +- arg = arg.message + '\n' + arg.sourceURL + ':' + arg.line; +- } +- } +- return arg; +- } +- +- function consoleLog(type) { +- var console = $window.console || {}, +- logFn = console[type] || console.log || noop, +- hasApply = false; +- +- // Note: reading logFn.apply throws an error in IE11 in IE8 document mode. +- // The reason behind this is that console.log has type "object" in IE8... +- try { +- hasApply = !!logFn.apply; +- } catch (e) {} +- +- if (hasApply) { +- return function() { +- var args = []; +- forEach(arguments, function(arg) { +- args.push(formatError(arg)); +- }); +- return logFn.apply(console, args); +- }; +- } +- +- // we are IE which either doesn't have window.console => this is noop and we do nothing, +- // or we are IE where console.log doesn't have apply so we log at least first 2 args +- return function(arg1, arg2) { +- logFn(arg1, arg2 == null ? '' : arg2); +- }; +- } +- }]; +-} +- +-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +- * Any commits to this file should be reviewed with security in mind. * +- * Changes to this file can potentially create security vulnerabilities. * +- * An approval from 2 Core members with history of modifying * +- * this file is required. * +- * * +- * Does the change somehow allow for arbitrary javascript to be executed? * +- * Or allows for someone to change the prototype of built-in objects? * +- * Or gives undesired access to variables likes document or window? * +- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +- +-var $parseMinErr = minErr('$parse'); +- +-// Sandboxing Angular Expressions +-// ------------------------------ +-// Angular expressions are generally considered safe because these expressions only have direct +-// access to `$scope` and locals. However, one can obtain the ability to execute arbitrary JS code by +-// obtaining a reference to native JS functions such as the Function constructor. +-// +-// As an example, consider the following Angular expression: +-// +-// {}.toString.constructor('alert("evil JS code")') +-// +-// This sandboxing technique is not perfect and doesn't aim to be. The goal is to prevent exploits +-// against the expression language, but not to prevent exploits that were enabled by exposing +-// sensitive JavaScript or browser APIs on Scope. Exposing such objects on a Scope is never a good +-// practice and therefore we are not even trying to protect against interaction with an object +-// explicitly exposed in this way. +-// +-// In general, it is not possible to access a Window object from an angular expression unless a +-// window or some DOM object that has a reference to window is published onto a Scope. +-// Similarly we prevent invocations of function known to be dangerous, as well as assignments to +-// native objects. +-// +-// See https://docs.angularjs.org/guide/security +- +- +-function ensureSafeMemberName(name, fullExpression) { +- if (name === "__defineGetter__" || name === "__defineSetter__" +- || name === "__lookupGetter__" || name === "__lookupSetter__" +- || name === "__proto__") { +- throw $parseMinErr('isecfld', +- 'Attempting to access a disallowed field in Angular expressions! ' +- + 'Expression: {0}', fullExpression); +- } +- return name; +-} +- +-function ensureSafeObject(obj, fullExpression) { +- // nifty check if obj is Function that is fast and works across iframes and other contexts +- if (obj) { +- if (obj.constructor === obj) { +- throw $parseMinErr('isecfn', +- 'Referencing Function in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } else if (// isWindow(obj) +- obj.window === obj) { +- throw $parseMinErr('isecwindow', +- 'Referencing the Window in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } else if (// isElement(obj) +- obj.children && (obj.nodeName || (obj.prop && obj.attr && obj.find))) { +- throw $parseMinErr('isecdom', +- 'Referencing DOM nodes in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } else if (// block Object so that we can't get hold of dangerous Object.* methods +- obj === Object) { +- throw $parseMinErr('isecobj', +- 'Referencing Object in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } +- } +- return obj; +-} +- +-var CALL = Function.prototype.call; +-var APPLY = Function.prototype.apply; +-var BIND = Function.prototype.bind; +- +-function ensureSafeFunction(obj, fullExpression) { +- if (obj) { +- if (obj.constructor === obj) { +- throw $parseMinErr('isecfn', +- 'Referencing Function in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } else if (obj === CALL || obj === APPLY || obj === BIND) { +- throw $parseMinErr('isecff', +- 'Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}', +- fullExpression); +- } +- } +-} +- +-//Keyword constants +-var CONSTANTS = createMap(); +-forEach({ +- 'null': function() { return null; }, +- 'true': function() { return true; }, +- 'false': function() { return false; }, +- 'undefined': function() {} +-}, function(constantGetter, name) { +- constantGetter.constant = constantGetter.literal = constantGetter.sharedGetter = true; +- CONSTANTS[name] = constantGetter; +-}); +- +-//Not quite a constant, but can be lex/parsed the same +-CONSTANTS['this'] = function(self) { return self; }; +-CONSTANTS['this'].sharedGetter = true; +- +- +-//Operators - will be wrapped by binaryFn/unaryFn/assignment/filter +-var OPERATORS = extend(createMap(), { +- '+':function(self, locals, a, b) { +- a=a(self, locals); b=b(self, locals); +- if (isDefined(a)) { +- if (isDefined(b)) { +- return a + b; +- } +- return a; +- } +- return isDefined(b) ? b : undefined;}, +- '-':function(self, locals, a, b) { +- a=a(self, locals); b=b(self, locals); +- return (isDefined(a) ? a : 0) - (isDefined(b) ? b : 0); +- }, +- '*':function(self, locals, a, b) {return a(self, locals) * b(self, locals);}, +- '/':function(self, locals, a, b) {return a(self, locals) / b(self, locals);}, +- '%':function(self, locals, a, b) {return a(self, locals) % b(self, locals);}, +- '===':function(self, locals, a, b) {return a(self, locals) === b(self, locals);}, +- '!==':function(self, locals, a, b) {return a(self, locals) !== b(self, locals);}, +- '==':function(self, locals, a, b) {return a(self, locals) == b(self, locals);}, +- '!=':function(self, locals, a, b) {return a(self, locals) != b(self, locals);}, +- '<':function(self, locals, a, b) {return a(self, locals) < b(self, locals);}, +- '>':function(self, locals, a, b) {return a(self, locals) > b(self, locals);}, +- '<=':function(self, locals, a, b) {return a(self, locals) <= b(self, locals);}, +- '>=':function(self, locals, a, b) {return a(self, locals) >= b(self, locals);}, +- '&&':function(self, locals, a, b) {return a(self, locals) && b(self, locals);}, +- '||':function(self, locals, a, b) {return a(self, locals) || b(self, locals);}, +- '!':function(self, locals, a) {return !a(self, locals);}, +- +- //Tokenized as operators but parsed as assignment/filters +- '=':true, +- '|':true +-}); +-var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'}; +- +- +-///////////////////////////////////////// +- +- +-/** +- * @constructor +- */ +-var Lexer = function(options) { +- this.options = options; +-}; +- +-Lexer.prototype = { +- constructor: Lexer, +- +- lex: function(text) { +- this.text = text; +- this.index = 0; +- this.tokens = []; +- +- while (this.index < this.text.length) { +- var ch = this.text.charAt(this.index); +- if (ch === '"' || ch === "'") { +- this.readString(ch); +- } else if (this.isNumber(ch) || ch === '.' && this.isNumber(this.peek())) { +- this.readNumber(); +- } else if (this.isIdent(ch)) { +- this.readIdent(); +- } else if (this.is(ch, '(){}[].,;:?')) { +- this.tokens.push({index: this.index, text: ch}); +- this.index++; +- } else if (this.isWhitespace(ch)) { +- this.index++; +- } else { +- var ch2 = ch + this.peek(); +- var ch3 = ch2 + this.peek(2); +- var op1 = OPERATORS[ch]; +- var op2 = OPERATORS[ch2]; +- var op3 = OPERATORS[ch3]; +- if (op1 || op2 || op3) { +- var token = op3 ? ch3 : (op2 ? ch2 : ch); +- this.tokens.push({index: this.index, text: token, operator: true}); +- this.index += token.length; +- } else { +- this.throwError('Unexpected next character ', this.index, this.index + 1); +- } +- } +- } +- return this.tokens; +- }, +- +- is: function(ch, chars) { +- return chars.indexOf(ch) !== -1; +- }, +- +- peek: function(i) { +- var num = i || 1; +- return (this.index + num < this.text.length) ? this.text.charAt(this.index + num) : false; +- }, +- +- isNumber: function(ch) { +- return ('0' <= ch && ch <= '9') && typeof ch === "string"; +- }, +- +- isWhitespace: function(ch) { +- // IE treats non-breaking space as \u00A0 +- return (ch === ' ' || ch === '\r' || ch === '\t' || +- ch === '\n' || ch === '\v' || ch === '\u00A0'); +- }, +- +- isIdent: function(ch) { +- return ('a' <= ch && ch <= 'z' || +- 'A' <= ch && ch <= 'Z' || +- '_' === ch || ch === '$'); +- }, +- +- isExpOperator: function(ch) { +- return (ch === '-' || ch === '+' || this.isNumber(ch)); +- }, +- +- throwError: function(error, start, end) { +- end = end || this.index; +- var colStr = (isDefined(start) +- ? 's ' + start + '-' + this.index + ' [' + this.text.substring(start, end) + ']' +- : ' ' + end); +- throw $parseMinErr('lexerr', 'Lexer Error: {0} at column{1} in expression [{2}].', +- error, colStr, this.text); +- }, +- +- readNumber: function() { +- var number = ''; +- var start = this.index; +- while (this.index < this.text.length) { +- var ch = lowercase(this.text.charAt(this.index)); +- if (ch == '.' || this.isNumber(ch)) { +- number += ch; +- } else { +- var peekCh = this.peek(); +- if (ch == 'e' && this.isExpOperator(peekCh)) { +- number += ch; +- } else if (this.isExpOperator(ch) && +- peekCh && this.isNumber(peekCh) && +- number.charAt(number.length - 1) == 'e') { +- number += ch; +- } else if (this.isExpOperator(ch) && +- (!peekCh || !this.isNumber(peekCh)) && +- number.charAt(number.length - 1) == 'e') { +- this.throwError('Invalid exponent'); +- } else { +- break; +- } +- } +- this.index++; +- } +- this.tokens.push({ +- index: start, +- text: number, +- constant: true, +- value: Number(number) +- }); +- }, +- +- readIdent: function() { +- var start = this.index; +- while (this.index < this.text.length) { +- var ch = this.text.charAt(this.index); +- if (!(this.isIdent(ch) || this.isNumber(ch))) { +- break; +- } +- this.index++; +- } +- this.tokens.push({ +- index: start, +- text: this.text.slice(start, this.index), +- identifier: true +- }); +- }, +- +- readString: function(quote) { +- var start = this.index; +- this.index++; +- var string = ''; +- var rawString = quote; +- var escape = false; +- while (this.index < this.text.length) { +- var ch = this.text.charAt(this.index); +- rawString += ch; +- if (escape) { +- if (ch === 'u') { +- var hex = this.text.substring(this.index + 1, this.index + 5); +- if (!hex.match(/[\da-f]{4}/i)) +- this.throwError('Invalid unicode escape [\\u' + hex + ']'); +- this.index += 4; +- string += String.fromCharCode(parseInt(hex, 16)); +- } else { +- var rep = ESCAPE[ch]; +- string = string + (rep || ch); +- } +- escape = false; +- } else if (ch === '\\') { +- escape = true; +- } else if (ch === quote) { +- this.index++; +- this.tokens.push({ +- index: start, +- text: rawString, +- constant: true, +- value: string +- }); +- return; +- } else { +- string += ch; +- } +- this.index++; +- } +- this.throwError('Unterminated quote', start); +- } +-}; +- +- +-function isConstant(exp) { +- return exp.constant; +-} +- +-/** +- * @constructor +- */ +-var Parser = function(lexer, $filter, options) { +- this.lexer = lexer; +- this.$filter = $filter; +- this.options = options; +-}; +- +-Parser.ZERO = extend(function() { +- return 0; +-}, { +- sharedGetter: true, +- constant: true +-}); +- +-Parser.prototype = { +- constructor: Parser, +- +- parse: function(text) { +- this.text = text; +- this.tokens = this.lexer.lex(text); +- +- var value = this.statements(); +- +- if (this.tokens.length !== 0) { +- this.throwError('is an unexpected token', this.tokens[0]); +- } +- +- value.literal = !!value.literal; +- value.constant = !!value.constant; +- +- return value; +- }, +- +- primary: function() { +- var primary; +- if (this.expect('(')) { +- primary = this.filterChain(); +- this.consume(')'); +- } else if (this.expect('[')) { +- primary = this.arrayDeclaration(); +- } else if (this.expect('{')) { +- primary = this.object(); +- } else if (this.peek().identifier && this.peek().text in CONSTANTS) { +- primary = CONSTANTS[this.consume().text]; +- } else if (this.peek().identifier) { +- primary = this.identifier(); +- } else if (this.peek().constant) { +- primary = this.constant(); +- } else { +- this.throwError('not a primary expression', this.peek()); +- } +- +- var next, context; +- while ((next = this.expect('(', '[', '.'))) { +- if (next.text === '(') { +- primary = this.functionCall(primary, context); +- context = null; +- } else if (next.text === '[') { +- context = primary; +- primary = this.objectIndex(primary); +- } else if (next.text === '.') { +- context = primary; +- primary = this.fieldAccess(primary); +- } else { +- this.throwError('IMPOSSIBLE'); +- } +- } +- return primary; +- }, +- +- throwError: function(msg, token) { +- throw $parseMinErr('syntax', +- 'Syntax Error: Token \'{0}\' {1} at column {2} of the expression [{3}] starting at [{4}].', +- token.text, msg, (token.index + 1), this.text, this.text.substring(token.index)); +- }, +- +- peekToken: function() { +- if (this.tokens.length === 0) +- throw $parseMinErr('ueoe', 'Unexpected end of expression: {0}', this.text); +- return this.tokens[0]; +- }, +- +- peek: function(e1, e2, e3, e4) { +- return this.peekAhead(0, e1, e2, e3, e4); +- }, +- peekAhead: function(i, e1, e2, e3, e4) { +- if (this.tokens.length > i) { +- var token = this.tokens[i]; +- var t = token.text; +- if (t === e1 || t === e2 || t === e3 || t === e4 || +- (!e1 && !e2 && !e3 && !e4)) { +- return token; +- } +- } +- return false; +- }, +- +- expect: function(e1, e2, e3, e4) { +- var token = this.peek(e1, e2, e3, e4); +- if (token) { +- this.tokens.shift(); +- return token; +- } +- return false; +- }, +- +- consume: function(e1) { +- if (this.tokens.length === 0) { +- throw $parseMinErr('ueoe', 'Unexpected end of expression: {0}', this.text); +- } +- +- var token = this.expect(e1); +- if (!token) { +- this.throwError('is unexpected, expecting [' + e1 + ']', this.peek()); +- } +- return token; +- }, +- +- unaryFn: function(op, right) { +- var fn = OPERATORS[op]; +- return extend(function $parseUnaryFn(self, locals) { +- return fn(self, locals, right); +- }, { +- constant:right.constant, +- inputs: [right] +- }); +- }, +- +- binaryFn: function(left, op, right, isBranching) { +- var fn = OPERATORS[op]; +- return extend(function $parseBinaryFn(self, locals) { +- return fn(self, locals, left, right); +- }, { +- constant: left.constant && right.constant, +- inputs: !isBranching && [left, right] +- }); +- }, +- +- identifier: function() { +- var id = this.consume().text; +- +- //Continue reading each `.identifier` unless it is a method invocation +- while (this.peek('.') && this.peekAhead(1).identifier && !this.peekAhead(2, '(')) { +- id += this.consume().text + this.consume().text; +- } +- +- return getterFn(id, this.options, this.text); +- }, +- +- constant: function() { +- var value = this.consume().value; +- +- return extend(function $parseConstant() { +- return value; +- }, { +- constant: true, +- literal: true +- }); +- }, +- +- statements: function() { +- var statements = []; +- while (true) { +- if (this.tokens.length > 0 && !this.peek('}', ')', ';', ']')) +- statements.push(this.filterChain()); +- if (!this.expect(';')) { +- // optimize for the common case where there is only one statement. +- // TODO(size): maybe we should not support multiple statements? +- return (statements.length === 1) +- ? statements[0] +- : function $parseStatements(self, locals) { +- var value; +- for (var i = 0, ii = statements.length; i < ii; i++) { +- value = statements[i](self, locals); +- } +- return value; +- }; +- } +- } +- }, +- +- filterChain: function() { +- var left = this.expression(); +- var token; +- while ((token = this.expect('|'))) { +- left = this.filter(left); +- } +- return left; +- }, +- +- filter: function(inputFn) { +- var fn = this.$filter(this.consume().text); +- var argsFn; +- var args; +- +- if (this.peek(':')) { +- argsFn = []; +- args = []; // we can safely reuse the array +- while (this.expect(':')) { +- argsFn.push(this.expression()); +- } +- } +- +- var inputs = [inputFn].concat(argsFn || []); +- +- return extend(function $parseFilter(self, locals) { +- var input = inputFn(self, locals); +- if (args) { +- args[0] = input; +- +- var i = argsFn.length; +- while (i--) { +- args[i + 1] = argsFn[i](self, locals); +- } +- +- return fn.apply(undefined, args); +- } +- +- return fn(input); +- }, { +- constant: !fn.$stateful && inputs.every(isConstant), +- inputs: !fn.$stateful && inputs +- }); +- }, +- +- expression: function() { +- return this.assignment(); +- }, +- +- assignment: function() { +- var left = this.ternary(); +- var right; +- var token; +- if ((token = this.expect('='))) { +- if (!left.assign) { +- this.throwError('implies assignment but [' + +- this.text.substring(0, token.index) + '] can not be assigned to', token); +- } +- right = this.ternary(); +- return extend(function $parseAssignment(scope, locals) { +- return left.assign(scope, right(scope, locals), locals); +- }, { +- inputs: [left, right] +- }); +- } +- return left; +- }, +- +- ternary: function() { +- var left = this.logicalOR(); +- var middle; +- var token; +- if ((token = this.expect('?'))) { +- middle = this.assignment(); +- if (this.consume(':')) { +- var right = this.assignment(); +- +- return extend(function $parseTernary(self, locals) { +- return left(self, locals) ? middle(self, locals) : right(self, locals); +- }, { +- constant: left.constant && middle.constant && right.constant +- }); +- } +- } +- +- return left; +- }, +- +- logicalOR: function() { +- var left = this.logicalAND(); +- var token; +- while ((token = this.expect('||'))) { +- left = this.binaryFn(left, token.text, this.logicalAND(), true); +- } +- return left; +- }, +- +- logicalAND: function() { +- var left = this.equality(); +- var token; +- while ((token = this.expect('&&'))) { +- left = this.binaryFn(left, token.text, this.equality(), true); +- } +- return left; +- }, +- +- equality: function() { +- var left = this.relational(); +- var token; +- while ((token = this.expect('==','!=','===','!=='))) { +- left = this.binaryFn(left, token.text, this.relational()); +- } +- return left; +- }, +- +- relational: function() { +- var left = this.additive(); +- var token; +- while ((token = this.expect('<', '>', '<=', '>='))) { +- left = this.binaryFn(left, token.text, this.additive()); +- } +- return left; +- }, +- +- additive: function() { +- var left = this.multiplicative(); +- var token; +- while ((token = this.expect('+','-'))) { +- left = this.binaryFn(left, token.text, this.multiplicative()); +- } +- return left; +- }, +- +- multiplicative: function() { +- var left = this.unary(); +- var token; +- while ((token = this.expect('*','/','%'))) { +- left = this.binaryFn(left, token.text, this.unary()); +- } +- return left; +- }, +- +- unary: function() { +- var token; +- if (this.expect('+')) { +- return this.primary(); +- } else if ((token = this.expect('-'))) { +- return this.binaryFn(Parser.ZERO, token.text, this.unary()); +- } else if ((token = this.expect('!'))) { +- return this.unaryFn(token.text, this.unary()); +- } else { +- return this.primary(); +- } +- }, +- +- fieldAccess: function(object) { +- var getter = this.identifier(); +- +- return extend(function $parseFieldAccess(scope, locals, self) { +- var o = self || object(scope, locals); +- return (o == null) ? undefined : getter(o); +- }, { +- assign: function(scope, value, locals) { +- var o = object(scope, locals); +- if (!o) object.assign(scope, o = {}, locals); +- return getter.assign(o, value); +- } +- }); +- }, +- +- objectIndex: function(obj) { +- var expression = this.text; +- +- var indexFn = this.expression(); +- this.consume(']'); +- +- return extend(function $parseObjectIndex(self, locals) { +- var o = obj(self, locals), +- i = indexFn(self, locals), +- v; +- +- ensureSafeMemberName(i, expression); +- if (!o) return undefined; +- v = ensureSafeObject(o[i], expression); +- return v; +- }, { +- assign: function(self, value, locals) { +- var key = ensureSafeMemberName(indexFn(self, locals), expression); +- // prevent overwriting of Function.constructor which would break ensureSafeObject check +- var o = ensureSafeObject(obj(self, locals), expression); +- if (!o) obj.assign(self, o = {}, locals); +- return o[key] = value; +- } +- }); +- }, +- +- functionCall: function(fnGetter, contextGetter) { +- var argsFn = []; +- if (this.peekToken().text !== ')') { +- do { +- argsFn.push(this.expression()); +- } while (this.expect(',')); +- } +- this.consume(')'); +- +- var expressionText = this.text; +- // we can safely reuse the array across invocations +- var args = argsFn.length ? [] : null; +- +- return function $parseFunctionCall(scope, locals) { +- var context = contextGetter ? contextGetter(scope, locals) : isDefined(contextGetter) ? undefined : scope; +- var fn = fnGetter(scope, locals, context) || noop; +- +- if (args) { +- var i = argsFn.length; +- while (i--) { +- args[i] = ensureSafeObject(argsFn[i](scope, locals), expressionText); +- } +- } +- +- ensureSafeObject(context, expressionText); +- ensureSafeFunction(fn, expressionText); +- +- // IE doesn't have apply for some native functions +- var v = fn.apply +- ? fn.apply(context, args) +- : fn(args[0], args[1], args[2], args[3], args[4]); +- +- if (args) { +- // Free-up the memory (arguments of the last function call). +- args.length = 0; +- } +- +- return ensureSafeObject(v, expressionText); +- }; +- }, +- +- // This is used with json array declaration +- arrayDeclaration: function() { +- var elementFns = []; +- if (this.peekToken().text !== ']') { +- do { +- if (this.peek(']')) { +- // Support trailing commas per ES5.1. +- break; +- } +- elementFns.push(this.expression()); +- } while (this.expect(',')); +- } +- this.consume(']'); +- +- return extend(function $parseArrayLiteral(self, locals) { +- var array = []; +- for (var i = 0, ii = elementFns.length; i < ii; i++) { +- array.push(elementFns[i](self, locals)); +- } +- return array; +- }, { +- literal: true, +- constant: elementFns.every(isConstant), +- inputs: elementFns +- }); +- }, +- +- object: function() { +- var keys = [], valueFns = []; +- if (this.peekToken().text !== '}') { +- do { +- if (this.peek('}')) { +- // Support trailing commas per ES5.1. +- break; +- } +- var token = this.consume(); +- if (token.constant) { +- keys.push(token.value); +- } else if (token.identifier) { +- keys.push(token.text); +- } else { +- this.throwError("invalid key", token); +- } +- this.consume(':'); +- valueFns.push(this.expression()); +- } while (this.expect(',')); +- } +- this.consume('}'); +- +- return extend(function $parseObjectLiteral(self, locals) { +- var object = {}; +- for (var i = 0, ii = valueFns.length; i < ii; i++) { +- object[keys[i]] = valueFns[i](self, locals); +- } +- return object; +- }, { +- literal: true, +- constant: valueFns.every(isConstant), +- inputs: valueFns +- }); +- } +-}; +- +- +-////////////////////////////////////////////////// +-// Parser helper functions +-////////////////////////////////////////////////// +- +-function setter(obj, locals, path, setValue, fullExp) { +- ensureSafeObject(obj, fullExp); +- ensureSafeObject(locals, fullExp); +- +- var element = path.split('.'), key; +- for (var i = 0; element.length > 1; i++) { +- key = ensureSafeMemberName(element.shift(), fullExp); +- var propertyObj = (i === 0 && locals && locals[key]) || obj[key]; +- if (!propertyObj) { +- propertyObj = {}; +- obj[key] = propertyObj; +- } +- obj = ensureSafeObject(propertyObj, fullExp); +- } +- key = ensureSafeMemberName(element.shift(), fullExp); +- ensureSafeObject(obj[key], fullExp); +- obj[key] = setValue; +- return setValue; +-} +- +-var getterFnCacheDefault = createMap(); +-var getterFnCacheExpensive = createMap(); +- +-function isPossiblyDangerousMemberName(name) { +- return name == 'constructor'; +-} +- +-/** +- * Implementation of the "Black Hole" variant from: +- * - http://jsperf.com/angularjs-parse-getter/4 +- * - http://jsperf.com/path-evaluation-simplified/7 +- */ +-function cspSafeGetterFn(key0, key1, key2, key3, key4, fullExp, expensiveChecks) { +- ensureSafeMemberName(key0, fullExp); +- ensureSafeMemberName(key1, fullExp); +- ensureSafeMemberName(key2, fullExp); +- ensureSafeMemberName(key3, fullExp); +- ensureSafeMemberName(key4, fullExp); +- var eso = function(o) { +- return ensureSafeObject(o, fullExp); +- }; +- var eso0 = (expensiveChecks || isPossiblyDangerousMemberName(key0)) ? eso : identity; +- var eso1 = (expensiveChecks || isPossiblyDangerousMemberName(key1)) ? eso : identity; +- var eso2 = (expensiveChecks || isPossiblyDangerousMemberName(key2)) ? eso : identity; +- var eso3 = (expensiveChecks || isPossiblyDangerousMemberName(key3)) ? eso : identity; +- var eso4 = (expensiveChecks || isPossiblyDangerousMemberName(key4)) ? eso : identity; +- +- return function cspSafeGetter(scope, locals) { +- var pathVal = (locals && locals.hasOwnProperty(key0)) ? locals : scope; +- +- if (pathVal == null) return pathVal; +- pathVal = eso0(pathVal[key0]); +- +- if (!key1) return pathVal; +- if (pathVal == null) return undefined; +- pathVal = eso1(pathVal[key1]); +- +- if (!key2) return pathVal; +- if (pathVal == null) return undefined; +- pathVal = eso2(pathVal[key2]); +- +- if (!key3) return pathVal; +- if (pathVal == null) return undefined; +- pathVal = eso3(pathVal[key3]); +- +- if (!key4) return pathVal; +- if (pathVal == null) return undefined; +- pathVal = eso4(pathVal[key4]); +- +- return pathVal; +- }; +-} +- +-function getterFnWithEnsureSafeObject(fn, fullExpression) { +- return function(s, l) { +- return fn(s, l, ensureSafeObject, fullExpression); +- }; +-} +- +-function getterFn(path, options, fullExp) { +- var expensiveChecks = options.expensiveChecks; +- var getterFnCache = (expensiveChecks ? getterFnCacheExpensive : getterFnCacheDefault); +- var fn = getterFnCache[path]; +- if (fn) return fn; +- +- +- var pathKeys = path.split('.'), +- pathKeysLength = pathKeys.length; +- +- // http://jsperf.com/angularjs-parse-getter/6 +- if (options.csp) { +- if (pathKeysLength < 6) { +- fn = cspSafeGetterFn(pathKeys[0], pathKeys[1], pathKeys[2], pathKeys[3], pathKeys[4], fullExp, expensiveChecks); +- } else { +- fn = function cspSafeGetter(scope, locals) { +- var i = 0, val; +- do { +- val = cspSafeGetterFn(pathKeys[i++], pathKeys[i++], pathKeys[i++], pathKeys[i++], +- pathKeys[i++], fullExp, expensiveChecks)(scope, locals); +- +- locals = undefined; // clear after first iteration +- scope = val; +- } while (i < pathKeysLength); +- return val; +- }; +- } +- } else { +- var code = ''; +- if (expensiveChecks) { +- code += 's = eso(s, fe);\nl = eso(l, fe);\n'; +- } +- var needsEnsureSafeObject = expensiveChecks; +- forEach(pathKeys, function(key, index) { +- ensureSafeMemberName(key, fullExp); +- var lookupJs = (index +- // we simply dereference 's' on any .dot notation +- ? 's' +- // but if we are first then we check locals first, and if so read it first +- : '((l&&l.hasOwnProperty("' + key + '"))?l:s)') + '.' + key; +- if (expensiveChecks || isPossiblyDangerousMemberName(key)) { +- lookupJs = 'eso(' + lookupJs + ', fe)'; +- needsEnsureSafeObject = true; +- } +- code += 'if(s == null) return undefined;\n' + +- 's=' + lookupJs + ';\n'; +- }); +- code += 'return s;'; +- +- /* jshint -W054 */ +- var evaledFnGetter = new Function('s', 'l', 'eso', 'fe', code); // s=scope, l=locals, eso=ensureSafeObject +- /* jshint +W054 */ +- evaledFnGetter.toString = valueFn(code); +- if (needsEnsureSafeObject) { +- evaledFnGetter = getterFnWithEnsureSafeObject(evaledFnGetter, fullExp); +- } +- fn = evaledFnGetter; +- } +- +- fn.sharedGetter = true; +- fn.assign = function(self, value, locals) { +- return setter(self, locals, path, value, path); +- }; +- getterFnCache[path] = fn; +- return fn; +-} +- +-var objectValueOf = Object.prototype.valueOf; +- +-function getValueOf(value) { +- return isFunction(value.valueOf) ? value.valueOf() : objectValueOf.call(value); +-} +- +-/////////////////////////////////// +- +-/** +- * @ngdoc service +- * @name $parse +- * @kind function +- * +- * @description +- * +- * Converts Angular {@link guide/expression expression} into a function. +- * +- * ```js +- * var getter = $parse('user.name'); +- * var setter = getter.assign; +- * var context = {user:{name:'angular'}}; +- * var locals = {user:{name:'local'}}; +- * +- * expect(getter(context)).toEqual('angular'); +- * setter(context, 'newValue'); +- * expect(context.user.name).toEqual('newValue'); +- * expect(getter(context, locals)).toEqual('local'); +- * ``` +- * +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- * +- * The returned function also has the following properties: +- * * `literal` – `{boolean}` – whether the expression's top-level node is a JavaScript +- * literal. +- * * `constant` – `{boolean}` – whether the expression is made entirely of JavaScript +- * constant literals. +- * * `assign` – `{?function(context, value)}` – if the expression is assignable, this will be +- * set to a function to change its value on the given context. +- * +- */ +- +- +-/** +- * @ngdoc provider +- * @name $parseProvider +- * +- * @description +- * `$parseProvider` can be used for configuring the default behavior of the {@link ng.$parse $parse} +- * service. +- */ +-function $ParseProvider() { +- var cacheDefault = createMap(); +- var cacheExpensive = createMap(); +- +- +- +- this.$get = ['$filter', '$sniffer', function($filter, $sniffer) { +- var $parseOptions = { +- csp: $sniffer.csp, +- expensiveChecks: false +- }, +- $parseOptionsExpensive = { +- csp: $sniffer.csp, +- expensiveChecks: true +- }; +- +- function wrapSharedExpression(exp) { +- var wrapped = exp; +- +- if (exp.sharedGetter) { +- wrapped = function $parseWrapper(self, locals) { +- return exp(self, locals); +- }; +- wrapped.literal = exp.literal; +- wrapped.constant = exp.constant; +- wrapped.assign = exp.assign; +- } +- +- return wrapped; +- } +- +- return function $parse(exp, interceptorFn, expensiveChecks) { +- var parsedExpression, oneTime, cacheKey; +- +- switch (typeof exp) { +- case 'string': +- cacheKey = exp = exp.trim(); +- +- var cache = (expensiveChecks ? cacheExpensive : cacheDefault); +- parsedExpression = cache[cacheKey]; +- +- if (!parsedExpression) { +- if (exp.charAt(0) === ':' && exp.charAt(1) === ':') { +- oneTime = true; +- exp = exp.substring(2); +- } +- +- var parseOptions = expensiveChecks ? $parseOptionsExpensive : $parseOptions; +- var lexer = new Lexer(parseOptions); +- var parser = new Parser(lexer, $filter, parseOptions); +- parsedExpression = parser.parse(exp); +- +- if (parsedExpression.constant) { +- parsedExpression.$$watchDelegate = constantWatchDelegate; +- } else if (oneTime) { +- //oneTime is not part of the exp passed to the Parser so we may have to +- //wrap the parsedExpression before adding a $$watchDelegate +- parsedExpression = wrapSharedExpression(parsedExpression); +- parsedExpression.$$watchDelegate = parsedExpression.literal ? +- oneTimeLiteralWatchDelegate : oneTimeWatchDelegate; +- } else if (parsedExpression.inputs) { +- parsedExpression.$$watchDelegate = inputsWatchDelegate; +- } +- +- cache[cacheKey] = parsedExpression; +- } +- return addInterceptor(parsedExpression, interceptorFn); +- +- case 'function': +- return addInterceptor(exp, interceptorFn); +- +- default: +- return addInterceptor(noop, interceptorFn); +- } +- }; +- +- function collectExpressionInputs(inputs, list) { +- for (var i = 0, ii = inputs.length; i < ii; i++) { +- var input = inputs[i]; +- if (!input.constant) { +- if (input.inputs) { +- collectExpressionInputs(input.inputs, list); +- } else if (list.indexOf(input) === -1) { // TODO(perf) can we do better? +- list.push(input); +- } +- } +- } +- +- return list; +- } +- +- function expressionInputDirtyCheck(newValue, oldValueOfValue) { +- +- if (newValue == null || oldValueOfValue == null) { // null/undefined +- return newValue === oldValueOfValue; +- } +- +- if (typeof newValue === 'object') { +- +- // attempt to convert the value to a primitive type +- // TODO(docs): add a note to docs that by implementing valueOf even objects and arrays can +- // be cheaply dirty-checked +- newValue = getValueOf(newValue); +- +- if (typeof newValue === 'object') { +- // objects/arrays are not supported - deep-watching them would be too expensive +- return false; +- } +- +- // fall-through to the primitive equality check +- } +- +- //Primitive or NaN +- return newValue === oldValueOfValue || (newValue !== newValue && oldValueOfValue !== oldValueOfValue); +- } +- +- function inputsWatchDelegate(scope, listener, objectEquality, parsedExpression) { +- var inputExpressions = parsedExpression.$$inputs || +- (parsedExpression.$$inputs = collectExpressionInputs(parsedExpression.inputs, [])); +- +- var lastResult; +- +- if (inputExpressions.length === 1) { +- var oldInputValue = expressionInputDirtyCheck; // init to something unique so that equals check fails +- inputExpressions = inputExpressions[0]; +- return scope.$watch(function expressionInputWatch(scope) { +- var newInputValue = inputExpressions(scope); +- if (!expressionInputDirtyCheck(newInputValue, oldInputValue)) { +- lastResult = parsedExpression(scope); +- oldInputValue = newInputValue && getValueOf(newInputValue); +- } +- return lastResult; +- }, listener, objectEquality); +- } +- +- var oldInputValueOfValues = []; +- for (var i = 0, ii = inputExpressions.length; i < ii; i++) { +- oldInputValueOfValues[i] = expressionInputDirtyCheck; // init to something unique so that equals check fails +- } +- +- return scope.$watch(function expressionInputsWatch(scope) { +- var changed = false; +- +- for (var i = 0, ii = inputExpressions.length; i < ii; i++) { +- var newInputValue = inputExpressions[i](scope); +- if (changed || (changed = !expressionInputDirtyCheck(newInputValue, oldInputValueOfValues[i]))) { +- oldInputValueOfValues[i] = newInputValue && getValueOf(newInputValue); +- } +- } +- +- if (changed) { +- lastResult = parsedExpression(scope); +- } +- +- return lastResult; +- }, listener, objectEquality); +- } +- +- function oneTimeWatchDelegate(scope, listener, objectEquality, parsedExpression) { +- var unwatch, lastValue; +- return unwatch = scope.$watch(function oneTimeWatch(scope) { +- return parsedExpression(scope); +- }, function oneTimeListener(value, old, scope) { +- lastValue = value; +- if (isFunction(listener)) { +- listener.apply(this, arguments); +- } +- if (isDefined(value)) { +- scope.$$postDigest(function() { +- if (isDefined(lastValue)) { +- unwatch(); +- } +- }); +- } +- }, objectEquality); +- } +- +- function oneTimeLiteralWatchDelegate(scope, listener, objectEquality, parsedExpression) { +- var unwatch, lastValue; +- return unwatch = scope.$watch(function oneTimeWatch(scope) { +- return parsedExpression(scope); +- }, function oneTimeListener(value, old, scope) { +- lastValue = value; +- if (isFunction(listener)) { +- listener.call(this, value, old, scope); +- } +- if (isAllDefined(value)) { +- scope.$$postDigest(function() { +- if (isAllDefined(lastValue)) unwatch(); +- }); +- } +- }, objectEquality); +- +- function isAllDefined(value) { +- var allDefined = true; +- forEach(value, function(val) { +- if (!isDefined(val)) allDefined = false; +- }); +- return allDefined; +- } +- } +- +- function constantWatchDelegate(scope, listener, objectEquality, parsedExpression) { +- var unwatch; +- return unwatch = scope.$watch(function constantWatch(scope) { +- return parsedExpression(scope); +- }, function constantListener(value, old, scope) { +- if (isFunction(listener)) { +- listener.apply(this, arguments); +- } +- unwatch(); +- }, objectEquality); +- } +- +- function addInterceptor(parsedExpression, interceptorFn) { +- if (!interceptorFn) return parsedExpression; +- var watchDelegate = parsedExpression.$$watchDelegate; +- +- var regularWatch = +- watchDelegate !== oneTimeLiteralWatchDelegate && +- watchDelegate !== oneTimeWatchDelegate; +- +- var fn = regularWatch ? function regularInterceptedExpression(scope, locals) { +- var value = parsedExpression(scope, locals); +- return interceptorFn(value, scope, locals); +- } : function oneTimeInterceptedExpression(scope, locals) { +- var value = parsedExpression(scope, locals); +- var result = interceptorFn(value, scope, locals); +- // we only return the interceptor's result if the +- // initial value is defined (for bind-once) +- return isDefined(value) ? result : value; +- }; +- +- // Propagate $$watchDelegates other then inputsWatchDelegate +- if (parsedExpression.$$watchDelegate && +- parsedExpression.$$watchDelegate !== inputsWatchDelegate) { +- fn.$$watchDelegate = parsedExpression.$$watchDelegate; +- } else if (!interceptorFn.$stateful) { +- // If there is an interceptor, but no watchDelegate then treat the interceptor like +- // we treat filters - it is assumed to be a pure function unless flagged with $stateful +- fn.$$watchDelegate = inputsWatchDelegate; +- fn.inputs = [parsedExpression]; +- } +- +- return fn; +- } +- }]; +-} +- +-/** +- * @ngdoc service +- * @name $q +- * @requires $rootScope +- * +- * @description +- * A service that helps you run functions asynchronously, and use their return values (or exceptions) +- * when they are done processing. +- * +- * This is an implementation of promises/deferred objects inspired by +- * [Kris Kowal's Q](https://github.com/kriskowal/q). +- * +- * $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred +- * implementations, and the other which resembles ES6 promises to some degree. +- * +- * # $q constructor +- * +- * The streamlined ES6 style promise is essentially just using $q as a constructor which takes a `resolver` +- * function as the first argument. This is similar to the native Promise implementation from ES6 Harmony, +- * see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). +- * +- * While the constructor-style use is supported, not all of the supporting methods from ES6 Harmony promises are +- * available yet. +- * +- * It can be used like so: +- * +- * ```js +- * // for the purpose of this example let's assume that variables `$q` and `okToGreet` +- * // are available in the current lexical scope (they could have been injected or passed in). +- * +- * function asyncGreet(name) { +- * // perform some asynchronous operation, resolve or reject the promise when appropriate. +- * return $q(function(resolve, reject) { +- * setTimeout(function() { +- * if (okToGreet(name)) { +- * resolve('Hello, ' + name + '!'); +- * } else { +- * reject('Greeting ' + name + ' is not allowed.'); +- * } +- * }, 1000); +- * }); +- * } +- * +- * var promise = asyncGreet('Robin Hood'); +- * promise.then(function(greeting) { +- * alert('Success: ' + greeting); +- * }, function(reason) { +- * alert('Failed: ' + reason); +- * }); +- * ``` +- * +- * Note: progress/notify callbacks are not currently supported via the ES6-style interface. +- * +- * However, the more traditional CommonJS-style usage is still available, and documented below. +- * +- * [The CommonJS Promise proposal](http://wiki.commonjs.org/wiki/Promises) describes a promise as an +- * interface for interacting with an object that represents the result of an action that is +- * performed asynchronously, and may or may not be finished at any given point in time. +- * +- * From the perspective of dealing with error handling, deferred and promise APIs are to +- * asynchronous programming what `try`, `catch` and `throw` keywords are to synchronous programming. +- * +- * ```js +- * // for the purpose of this example let's assume that variables `$q` and `okToGreet` +- * // are available in the current lexical scope (they could have been injected or passed in). +- * +- * function asyncGreet(name) { +- * var deferred = $q.defer(); +- * +- * setTimeout(function() { +- * deferred.notify('About to greet ' + name + '.'); +- * +- * if (okToGreet(name)) { +- * deferred.resolve('Hello, ' + name + '!'); +- * } else { +- * deferred.reject('Greeting ' + name + ' is not allowed.'); +- * } +- * }, 1000); +- * +- * return deferred.promise; +- * } +- * +- * var promise = asyncGreet('Robin Hood'); +- * promise.then(function(greeting) { +- * alert('Success: ' + greeting); +- * }, function(reason) { +- * alert('Failed: ' + reason); +- * }, function(update) { +- * alert('Got notification: ' + update); +- * }); +- * ``` +- * +- * At first it might not be obvious why this extra complexity is worth the trouble. The payoff +- * comes in the way of guarantees that promise and deferred APIs make, see +- * https://github.com/kriskowal/uncommonjs/blob/master/promises/specification.md. +- * +- * Additionally the promise api allows for composition that is very hard to do with the +- * traditional callback ([CPS](http://en.wikipedia.org/wiki/Continuation-passing_style)) approach. +- * For more on this please see the [Q documentation](https://github.com/kriskowal/q) especially the +- * section on serial or parallel joining of promises. +- * +- * # The Deferred API +- * +- * A new instance of deferred is constructed by calling `$q.defer()`. +- * +- * The purpose of the deferred object is to expose the associated Promise instance as well as APIs +- * that can be used for signaling the successful or unsuccessful completion, as well as the status +- * of the task. +- * +- * **Methods** +- * +- * - `resolve(value)` – resolves the derived promise with the `value`. If the value is a rejection +- * constructed via `$q.reject`, the promise will be rejected instead. +- * - `reject(reason)` – rejects the derived promise with the `reason`. This is equivalent to +- * resolving it with a rejection constructed via `$q.reject`. +- * - `notify(value)` - provides updates on the status of the promise's execution. This may be called +- * multiple times before the promise is either resolved or rejected. +- * +- * **Properties** +- * +- * - promise – `{Promise}` – promise object associated with this deferred. +- * +- * +- * # The Promise API +- * +- * A new promise instance is created when a deferred instance is created and can be retrieved by +- * calling `deferred.promise`. +- * +- * The purpose of the promise object is to allow for interested parties to get access to the result +- * of the deferred task when it completes. +- * +- * **Methods** +- * +- * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or +- * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously +- * as soon as the result is available. The callbacks are called with a single argument: the result +- * or rejection reason. Additionally, the notify callback may be called zero or more times to +- * provide a progress indication, before the promise is resolved or rejected. +- * +- * This method *returns a new promise* which is resolved or rejected via the return value of the +- * `successCallback`, `errorCallback`. It also notifies via the return value of the +- * `notifyCallback` method. The promise cannot be resolved or rejected from the notifyCallback +- * method. +- * +- * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` +- * +- * - `finally(callback, notifyCallback)` – allows you to observe either the fulfillment or rejection of a promise, +- * but to do so without modifying the final value. This is useful to release resources or do some +- * clean-up that needs to be done whether the promise was rejected or resolved. See the [full +- * specification](https://github.com/kriskowal/q/wiki/API-Reference#promisefinallycallback) for +- * more information. +- * +- * # Chaining promises +- * +- * Because calling the `then` method of a promise returns a new derived promise, it is easily +- * possible to create a chain of promises: +- * +- * ```js +- * promiseB = promiseA.then(function(result) { +- * return result + 1; +- * }); +- * +- * // promiseB will be resolved immediately after promiseA is resolved and its value +- * // will be the result of promiseA incremented by 1 +- * ``` +- * +- * It is possible to create chains of any length and since a promise can be resolved with another +- * promise (which will defer its resolution further), it is possible to pause/defer resolution of +- * the promises at any point in the chain. This makes it possible to implement powerful APIs like +- * $http's response interceptors. +- * +- * +- * # Differences between Kris Kowal's Q and $q +- * +- * There are two main differences: +- * +- * - $q is integrated with the {@link ng.$rootScope.Scope} Scope model observation +- * mechanism in angular, which means faster propagation of resolution or rejection into your +- * models and avoiding unnecessary browser repaints, which would result in flickering UI. +- * - Q has many more features than $q, but that comes at a cost of bytes. $q is tiny, but contains +- * all the important functionality needed for common async tasks. +- * +- * # Testing +- * +- * ```js +- * it('should simulate promise', inject(function($q, $rootScope) { +- * var deferred = $q.defer(); +- * var promise = deferred.promise; +- * var resolvedValue; +- * +- * promise.then(function(value) { resolvedValue = value; }); +- * expect(resolvedValue).toBeUndefined(); +- * +- * // Simulate resolving of promise +- * deferred.resolve(123); +- * // Note that the 'then' function does not get called synchronously. +- * // This is because we want the promise API to always be async, whether or not +- * // it got called synchronously or asynchronously. +- * expect(resolvedValue).toBeUndefined(); +- * +- * // Propagate promise resolution to 'then' functions using $apply(). +- * $rootScope.$apply(); +- * expect(resolvedValue).toEqual(123); +- * })); +- * ``` +- * +- * @param {function(function, function)} resolver Function which is responsible for resolving or +- * rejecting the newly created promise. The first parameter is a function which resolves the +- * promise, the second parameter is a function which rejects the promise. +- * +- * @returns {Promise} The newly created promise. +- */ +-function $QProvider() { +- +- this.$get = ['$rootScope', '$exceptionHandler', function($rootScope, $exceptionHandler) { +- return qFactory(function(callback) { +- $rootScope.$evalAsync(callback); +- }, $exceptionHandler); +- }]; +-} +- +-function $$QProvider() { +- this.$get = ['$browser', '$exceptionHandler', function($browser, $exceptionHandler) { +- return qFactory(function(callback) { +- $browser.defer(callback); +- }, $exceptionHandler); +- }]; +-} +- +-/** +- * Constructs a promise manager. +- * +- * @param {function(function)} nextTick Function for executing functions in the next turn. +- * @param {function(...*)} exceptionHandler Function into which unexpected exceptions are passed for +- * debugging purposes. +- * @returns {object} Promise manager. +- */ +-function qFactory(nextTick, exceptionHandler) { +- var $qMinErr = minErr('$q', TypeError); +- function callOnce(self, resolveFn, rejectFn) { +- var called = false; +- function wrap(fn) { +- return function(value) { +- if (called) return; +- called = true; +- fn.call(self, value); +- }; +- } +- +- return [wrap(resolveFn), wrap(rejectFn)]; +- } +- +- /** +- * @ngdoc method +- * @name ng.$q#defer +- * @kind function +- * +- * @description +- * Creates a `Deferred` object which represents a task which will finish in the future. +- * +- * @returns {Deferred} Returns a new instance of deferred. +- */ +- var defer = function() { +- return new Deferred(); +- }; +- +- function Promise() { +- this.$$state = { status: 0 }; +- } +- +- Promise.prototype = { +- then: function(onFulfilled, onRejected, progressBack) { +- var result = new Deferred(); +- +- this.$$state.pending = this.$$state.pending || []; +- this.$$state.pending.push([result, onFulfilled, onRejected, progressBack]); +- if (this.$$state.status > 0) scheduleProcessQueue(this.$$state); +- +- return result.promise; +- }, +- +- "catch": function(callback) { +- return this.then(null, callback); +- }, +- +- "finally": function(callback, progressBack) { +- return this.then(function(value) { +- return handleCallback(value, true, callback); +- }, function(error) { +- return handleCallback(error, false, callback); +- }, progressBack); +- } +- }; +- +- //Faster, more basic than angular.bind http://jsperf.com/angular-bind-vs-custom-vs-native +- function simpleBind(context, fn) { +- return function(value) { +- fn.call(context, value); +- }; +- } +- +- function processQueue(state) { +- var fn, promise, pending; +- +- pending = state.pending; +- state.processScheduled = false; +- state.pending = undefined; +- for (var i = 0, ii = pending.length; i < ii; ++i) { +- promise = pending[i][0]; +- fn = pending[i][state.status]; +- try { +- if (isFunction(fn)) { +- promise.resolve(fn(state.value)); +- } else if (state.status === 1) { +- promise.resolve(state.value); +- } else { +- promise.reject(state.value); +- } +- } catch (e) { +- promise.reject(e); +- exceptionHandler(e); +- } +- } +- } +- +- function scheduleProcessQueue(state) { +- if (state.processScheduled || !state.pending) return; +- state.processScheduled = true; +- nextTick(function() { processQueue(state); }); +- } +- +- function Deferred() { +- this.promise = new Promise(); +- //Necessary to support unbound execution :/ +- this.resolve = simpleBind(this, this.resolve); +- this.reject = simpleBind(this, this.reject); +- this.notify = simpleBind(this, this.notify); +- } +- +- Deferred.prototype = { +- resolve: function(val) { +- if (this.promise.$$state.status) return; +- if (val === this.promise) { +- this.$$reject($qMinErr( +- 'qcycle', +- "Expected promise to be resolved with value other than itself '{0}'", +- val)); +- } else { +- this.$$resolve(val); +- } +- +- }, +- +- $$resolve: function(val) { +- var then, fns; +- +- fns = callOnce(this, this.$$resolve, this.$$reject); +- try { +- if ((isObject(val) || isFunction(val))) then = val && val.then; +- if (isFunction(then)) { +- this.promise.$$state.status = -1; +- then.call(val, fns[0], fns[1], this.notify); +- } else { +- this.promise.$$state.value = val; +- this.promise.$$state.status = 1; +- scheduleProcessQueue(this.promise.$$state); +- } +- } catch (e) { +- fns[1](e); +- exceptionHandler(e); +- } +- }, +- +- reject: function(reason) { +- if (this.promise.$$state.status) return; +- this.$$reject(reason); +- }, +- +- $$reject: function(reason) { +- this.promise.$$state.value = reason; +- this.promise.$$state.status = 2; +- scheduleProcessQueue(this.promise.$$state); +- }, +- +- notify: function(progress) { +- var callbacks = this.promise.$$state.pending; +- +- if ((this.promise.$$state.status <= 0) && callbacks && callbacks.length) { +- nextTick(function() { +- var callback, result; +- for (var i = 0, ii = callbacks.length; i < ii; i++) { +- result = callbacks[i][0]; +- callback = callbacks[i][3]; +- try { +- result.notify(isFunction(callback) ? callback(progress) : progress); +- } catch (e) { +- exceptionHandler(e); +- } +- } +- }); +- } +- } +- }; +- +- /** +- * @ngdoc method +- * @name $q#reject +- * @kind function +- * +- * @description +- * Creates a promise that is resolved as rejected with the specified `reason`. This api should be +- * used to forward rejection in a chain of promises. If you are dealing with the last promise in +- * a promise chain, you don't need to worry about it. +- * +- * When comparing deferreds/promises to the familiar behavior of try/catch/throw, think of +- * `reject` as the `throw` keyword in JavaScript. This also means that if you "catch" an error via +- * a promise error callback and you want to forward the error to the promise derived from the +- * current promise, you have to "rethrow" the error by returning a rejection constructed via +- * `reject`. +- * +- * ```js +- * promiseB = promiseA.then(function(result) { +- * // success: do something and resolve promiseB +- * // with the old or a new result +- * return result; +- * }, function(reason) { +- * // error: handle the error if possible and +- * // resolve promiseB with newPromiseOrValue, +- * // otherwise forward the rejection to promiseB +- * if (canHandle(reason)) { +- * // handle the error and recover +- * return newPromiseOrValue; +- * } +- * return $q.reject(reason); +- * }); +- * ``` +- * +- * @param {*} reason Constant, message, exception or an object representing the rejection reason. +- * @returns {Promise} Returns a promise that was already resolved as rejected with the `reason`. +- */ +- var reject = function(reason) { +- var result = new Deferred(); +- result.reject(reason); +- return result.promise; +- }; +- +- var makePromise = function makePromise(value, resolved) { +- var result = new Deferred(); +- if (resolved) { +- result.resolve(value); +- } else { +- result.reject(value); +- } +- return result.promise; +- }; +- +- var handleCallback = function handleCallback(value, isResolved, callback) { +- var callbackOutput = null; +- try { +- if (isFunction(callback)) callbackOutput = callback(); +- } catch (e) { +- return makePromise(e, false); +- } +- if (isPromiseLike(callbackOutput)) { +- return callbackOutput.then(function() { +- return makePromise(value, isResolved); +- }, function(error) { +- return makePromise(error, false); +- }); +- } else { +- return makePromise(value, isResolved); +- } +- }; +- +- /** +- * @ngdoc method +- * @name $q#when +- * @kind function +- * +- * @description +- * Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise. +- * This is useful when you are dealing with an object that might or might not be a promise, or if +- * the promise comes from a source that can't be trusted. +- * +- * @param {*} value Value or a promise +- * @returns {Promise} Returns a promise of the passed value or promise +- */ +- +- +- var when = function(value, callback, errback, progressBack) { +- var result = new Deferred(); +- result.resolve(value); +- return result.promise.then(callback, errback, progressBack); +- }; +- +- /** +- * @ngdoc method +- * @name $q#all +- * @kind function +- * +- * @description +- * Combines multiple promises into a single promise that is resolved when all of the input +- * promises are resolved. +- * +- * @param {Array.<Promise>|Object.<Promise>} promises An array or hash of promises. +- * @returns {Promise} Returns a single promise that will be resolved with an array/hash of values, +- * each value corresponding to the promise at the same index/key in the `promises` array/hash. +- * If any of the promises is resolved with a rejection, this resulting promise will be rejected +- * with the same rejection value. +- */ +- +- function all(promises) { +- var deferred = new Deferred(), +- counter = 0, +- results = isArray(promises) ? [] : {}; +- +- forEach(promises, function(promise, key) { +- counter++; +- when(promise).then(function(value) { +- if (results.hasOwnProperty(key)) return; +- results[key] = value; +- if (!(--counter)) deferred.resolve(results); +- }, function(reason) { +- if (results.hasOwnProperty(key)) return; +- deferred.reject(reason); +- }); +- }); +- +- if (counter === 0) { +- deferred.resolve(results); +- } +- +- return deferred.promise; +- } +- +- var $Q = function Q(resolver) { +- if (!isFunction(resolver)) { +- throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver); +- } +- +- if (!(this instanceof Q)) { +- // More useful when $Q is the Promise itself. +- return new Q(resolver); +- } +- +- var deferred = new Deferred(); +- +- function resolveFn(value) { +- deferred.resolve(value); +- } +- +- function rejectFn(reason) { +- deferred.reject(reason); +- } +- +- resolver(resolveFn, rejectFn); +- +- return deferred.promise; +- }; +- +- $Q.defer = defer; +- $Q.reject = reject; +- $Q.when = when; +- $Q.all = all; +- +- return $Q; +-} +- +-function $$RAFProvider() { //rAF +- this.$get = ['$window', '$timeout', function($window, $timeout) { +- var requestAnimationFrame = $window.requestAnimationFrame || +- $window.webkitRequestAnimationFrame; +- +- var cancelAnimationFrame = $window.cancelAnimationFrame || +- $window.webkitCancelAnimationFrame || +- $window.webkitCancelRequestAnimationFrame; +- +- var rafSupported = !!requestAnimationFrame; +- var raf = rafSupported +- ? function(fn) { +- var id = requestAnimationFrame(fn); +- return function() { +- cancelAnimationFrame(id); +- }; +- } +- : function(fn) { +- var timer = $timeout(fn, 16.66, false); // 1000 / 60 = 16.666 +- return function() { +- $timeout.cancel(timer); +- }; +- }; +- +- raf.supported = rafSupported; +- +- return raf; +- }]; +-} +- +-/** +- * DESIGN NOTES +- * +- * The design decisions behind the scope are heavily favored for speed and memory consumption. +- * +- * The typical use of scope is to watch the expressions, which most of the time return the same +- * value as last time so we optimize the operation. +- * +- * Closures construction is expensive in terms of speed as well as memory: +- * - No closures, instead use prototypical inheritance for API +- * - Internal state needs to be stored on scope directly, which means that private state is +- * exposed as $$____ properties +- * +- * Loop operations are optimized by using while(count--) { ... } +- * - this means that in order to keep the same order of execution as addition we have to add +- * items to the array at the beginning (unshift) instead of at the end (push) +- * +- * Child scopes are created and removed often +- * - Using an array would be slow since inserts in middle are expensive so we use linked list +- * +- * There are few watches then a lot of observers. This is why you don't want the observer to be +- * implemented in the same way as watch. Watch requires return of initialization function which +- * are expensive to construct. +- */ +- +- +-/** +- * @ngdoc provider +- * @name $rootScopeProvider +- * @description +- * +- * Provider for the $rootScope service. +- */ +- +-/** +- * @ngdoc method +- * @name $rootScopeProvider#digestTtl +- * @description +- * +- * Sets the number of `$digest` iterations the scope should attempt to execute before giving up and +- * assuming that the model is unstable. +- * +- * The current default is 10 iterations. +- * +- * In complex applications it's possible that the dependencies between `$watch`s will result in +- * several digest iterations. However if an application needs more than the default 10 digest +- * iterations for its model to stabilize then you should investigate what is causing the model to +- * continuously change during the digest. +- * +- * Increasing the TTL could have performance implications, so you should not change it without +- * proper justification. +- * +- * @param {number} limit The number of digest iterations. +- */ +- +- +-/** +- * @ngdoc service +- * @name $rootScope +- * @description +- * +- * Every application has a single root {@link ng.$rootScope.Scope scope}. +- * All other scopes are descendant scopes of the root scope. Scopes provide separation +- * between the model and the view, via a mechanism for watching the model for changes. +- * They also provide an event emission/broadcast and subscription facility. See the +- * {@link guide/scope developer guide on scopes}. +- */ +-function $RootScopeProvider() { +- var TTL = 10; +- var $rootScopeMinErr = minErr('$rootScope'); +- var lastDirtyWatch = null; +- var applyAsyncId = null; +- +- this.digestTtl = function(value) { +- if (arguments.length) { +- TTL = value; +- } +- return TTL; +- }; +- +- function createChildScopeClass(parent) { +- function ChildScope() { +- this.$$watchers = this.$$nextSibling = +- this.$$childHead = this.$$childTail = null; +- this.$$listeners = {}; +- this.$$listenerCount = {}; +- this.$$watchersCount = 0; +- this.$id = nextUid(); +- this.$$ChildScope = null; +- } +- ChildScope.prototype = parent; +- return ChildScope; +- } +- +- this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser', +- function($injector, $exceptionHandler, $parse, $browser) { +- +- function destroyChildScope($event) { +- $event.currentScope.$$destroyed = true; +- } +- +- /** +- * @ngdoc type +- * @name $rootScope.Scope +- * +- * @description +- * A root scope can be retrieved using the {@link ng.$rootScope $rootScope} key from the +- * {@link auto.$injector $injector}. Child scopes are created using the +- * {@link ng.$rootScope.Scope#$new $new()} method. (Most scopes are created automatically when +- * compiled HTML template is executed.) +- * +- * Here is a simple scope snippet to show how you can interact with the scope. +- * ```html +- * <file src="./test/ng/rootScopeSpec.js" tag="docs1" /> +- * ``` +- * +- * # Inheritance +- * A scope can inherit from a parent scope, as in this example: +- * ```js +- var parent = $rootScope; +- var child = parent.$new(); +- +- parent.salutation = "Hello"; +- expect(child.salutation).toEqual('Hello'); +- +- child.salutation = "Welcome"; +- expect(child.salutation).toEqual('Welcome'); +- expect(parent.salutation).toEqual('Hello'); +- * ``` +- * +- * When interacting with `Scope` in tests, additional helper methods are available on the +- * instances of `Scope` type. See {@link ngMock.$rootScope.Scope ngMock Scope} for additional +- * details. +- * +- * +- * @param {Object.<string, function()>=} providers Map of service factory which need to be +- * provided for the current scope. Defaults to {@link ng}. +- * @param {Object.<string, *>=} instanceCache Provides pre-instantiated services which should +- * append/override services provided by `providers`. This is handy +- * when unit-testing and having the need to override a default +- * service. +- * @returns {Object} Newly created scope. +- * +- */ +- function Scope() { +- this.$id = nextUid(); +- this.$$phase = this.$parent = this.$$watchers = +- this.$$nextSibling = this.$$prevSibling = +- this.$$childHead = this.$$childTail = null; +- this.$root = this; +- this.$$destroyed = false; +- this.$$listeners = {}; +- this.$$listenerCount = {}; +- this.$$isolateBindings = null; +- } +- +- /** +- * @ngdoc property +- * @name $rootScope.Scope#$id +- * +- * @description +- * Unique scope ID (monotonically increasing) useful for debugging. +- */ +- +- /** +- * @ngdoc property +- * @name $rootScope.Scope#$parent +- * +- * @description +- * Reference to the parent scope. +- */ +- +- /** +- * @ngdoc property +- * @name $rootScope.Scope#$root +- * +- * @description +- * Reference to the root scope. +- */ +- +- Scope.prototype = { +- constructor: Scope, +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$new +- * @kind function +- * +- * @description +- * Creates a new child {@link ng.$rootScope.Scope scope}. +- * +- * The parent scope will propagate the {@link ng.$rootScope.Scope#$digest $digest()} event. +- * The scope can be removed from the scope hierarchy using {@link ng.$rootScope.Scope#$destroy $destroy()}. +- * +- * {@link ng.$rootScope.Scope#$destroy $destroy()} must be called on a scope when it is +- * desired for the scope and its child scopes to be permanently detached from the parent and +- * thus stop participating in model change detection and listener notification by invoking. +- * +- * @param {boolean} isolate If true, then the scope does not prototypically inherit from the +- * parent scope. The scope is isolated, as it can not see parent scope properties. +- * When creating widgets, it is useful for the widget to not accidentally read parent +- * state. +- * +- * @param {Scope} [parent=this] The {@link ng.$rootScope.Scope `Scope`} that will be the `$parent` +- * of the newly created scope. Defaults to `this` scope if not provided. +- * This is used when creating a transclude scope to correctly place it +- * in the scope hierarchy while maintaining the correct prototypical +- * inheritance. +- * +- * @returns {Object} The newly created child scope. +- * +- */ +- $new: function(isolate, parent) { +- var child; +- +- parent = parent || this; +- +- if (isolate) { +- child = new Scope(); +- child.$root = this.$root; +- } else { +- // Only create a child scope class if somebody asks for one, +- // but cache it to allow the VM to optimize lookups. +- if (!this.$$ChildScope) { +- this.$$ChildScope = createChildScopeClass(this); +- } +- child = new this.$$ChildScope(); +- } +- child.$parent = parent; +- child.$$prevSibling = parent.$$childTail; +- if (parent.$$childHead) { +- parent.$$childTail.$$nextSibling = child; +- parent.$$childTail = child; +- } else { +- parent.$$childHead = parent.$$childTail = child; +- } +- +- // When the new scope is not isolated or we inherit from `this`, and +- // the parent scope is destroyed, the property `$$destroyed` is inherited +- // prototypically. In all other cases, this property needs to be set +- // when the parent scope is destroyed. +- // The listener needs to be added after the parent is set +- if (isolate || parent != this) child.$on('$destroy', destroyChildScope); +- +- return child; +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$watch +- * @kind function +- * +- * @description +- * Registers a `listener` callback to be executed whenever the `watchExpression` changes. +- * +- * - The `watchExpression` is called on every call to {@link ng.$rootScope.Scope#$digest +- * $digest()} and should return the value that will be watched. (Since +- * {@link ng.$rootScope.Scope#$digest $digest()} reruns when it detects changes the +- * `watchExpression` can execute multiple times per +- * {@link ng.$rootScope.Scope#$digest $digest()} and should be idempotent.) +- * - The `listener` is called only when the value from the current `watchExpression` and the +- * previous call to `watchExpression` are not equal (with the exception of the initial run, +- * see below). Inequality is determined according to reference inequality, +- * [strict comparison](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators) +- * via the `!==` Javascript operator, unless `objectEquality == true` +- * (see next point) +- * - When `objectEquality == true`, inequality of the `watchExpression` is determined +- * according to the {@link angular.equals} function. To save the value of the object for +- * later comparison, the {@link angular.copy} function is used. This therefore means that +- * watching complex objects will have adverse memory and performance implications. +- * - The watch `listener` may change the model, which may trigger other `listener`s to fire. +- * This is achieved by rerunning the watchers until no changes are detected. The rerun +- * iteration limit is 10 to prevent an infinite loop deadlock. +- * +- * +- * If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called, +- * you can register a `watchExpression` function with no `listener`. (Since `watchExpression` +- * can execute multiple times per {@link ng.$rootScope.Scope#$digest $digest} cycle when a +- * change is detected, be prepared for multiple calls to your listener.) +- * +- * After a watcher is registered with the scope, the `listener` fn is called asynchronously +- * (via {@link ng.$rootScope.Scope#$evalAsync $evalAsync}) to initialize the +- * watcher. In rare cases, this is undesirable because the listener is called when the result +- * of `watchExpression` didn't change. To detect this scenario within the `listener` fn, you +- * can compare the `newVal` and `oldVal`. If these two values are identical (`===`) then the +- * listener was called due to initialization. +- * +- * +- * +- * # Example +- * ```js +- // let's assume that scope was dependency injected as the $rootScope +- var scope = $rootScope; +- scope.name = 'misko'; +- scope.counter = 0; +- +- expect(scope.counter).toEqual(0); +- scope.$watch('name', function(newValue, oldValue) { +- scope.counter = scope.counter + 1; +- }); +- expect(scope.counter).toEqual(0); +- +- scope.$digest(); +- // the listener is always called during the first $digest loop after it was registered +- expect(scope.counter).toEqual(1); +- +- scope.$digest(); +- // but now it will not be called unless the value changes +- expect(scope.counter).toEqual(1); +- +- scope.name = 'adam'; +- scope.$digest(); +- expect(scope.counter).toEqual(2); +- +- +- +- // Using a function as a watchExpression +- var food; +- scope.foodCounter = 0; +- expect(scope.foodCounter).toEqual(0); +- scope.$watch( +- // This function returns the value being watched. It is called for each turn of the $digest loop +- function() { return food; }, +- // This is the change listener, called when the value returned from the above function changes +- function(newValue, oldValue) { +- if ( newValue !== oldValue ) { +- // Only increment the counter if the value changed +- scope.foodCounter = scope.foodCounter + 1; +- } +- } +- ); +- // No digest has been run so the counter will be zero +- expect(scope.foodCounter).toEqual(0); +- +- // Run the digest but since food has not changed count will still be zero +- scope.$digest(); +- expect(scope.foodCounter).toEqual(0); +- +- // Update food and run digest. Now the counter will increment +- food = 'cheeseburger'; +- scope.$digest(); +- expect(scope.foodCounter).toEqual(1); +- +- * ``` +- * +- * +- * +- * @param {(function()|string)} watchExpression Expression that is evaluated on each +- * {@link ng.$rootScope.Scope#$digest $digest} cycle. A change in the return value triggers +- * a call to the `listener`. +- * +- * - `string`: Evaluated as {@link guide/expression expression} +- * - `function(scope)`: called with current `scope` as a parameter. +- * @param {function(newVal, oldVal, scope)} listener Callback called whenever the value +- * of `watchExpression` changes. +- * +- * - `newVal` contains the current value of the `watchExpression` +- * - `oldVal` contains the previous value of the `watchExpression` +- * - `scope` refers to the current scope +- * @param {boolean=} objectEquality Compare for object equality using {@link angular.equals} instead of +- * comparing for reference equality. +- * @returns {function()} Returns a deregistration function for this listener. +- */ +- $watch: function(watchExp, listener, objectEquality) { +- var get = $parse(watchExp); +- +- if (get.$$watchDelegate) { +- return get.$$watchDelegate(this, listener, objectEquality, get); +- } +- var scope = this, +- array = scope.$$watchers, +- watcher = { +- fn: listener, +- last: initWatchVal, +- get: get, +- exp: watchExp, +- eq: !!objectEquality +- }; +- +- lastDirtyWatch = null; +- +- if (!isFunction(listener)) { +- watcher.fn = noop; +- } +- +- if (!array) { +- array = scope.$$watchers = []; +- } +- // we use unshift since we use a while loop in $digest for speed. +- // the while loop reads in reverse order. +- array.unshift(watcher); +- +- return function deregisterWatch() { +- arrayRemove(array, watcher); +- lastDirtyWatch = null; +- }; +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$watchGroup +- * @kind function +- * +- * @description +- * A variant of {@link ng.$rootScope.Scope#$watch $watch()} where it watches an array of `watchExpressions`. +- * If any one expression in the collection changes the `listener` is executed. +- * +- * - The items in the `watchExpressions` array are observed via standard $watch operation and are examined on every +- * call to $digest() to see if any items changes. +- * - The `listener` is called whenever any expression in the `watchExpressions` array changes. +- * +- * @param {Array.<string|Function(scope)>} watchExpressions Array of expressions that will be individually +- * watched using {@link ng.$rootScope.Scope#$watch $watch()} +- * +- * @param {function(newValues, oldValues, scope)} listener Callback called whenever the return value of any +- * expression in `watchExpressions` changes +- * The `newValues` array contains the current values of the `watchExpressions`, with the indexes matching +- * those of `watchExpression` +- * and the `oldValues` array contains the previous values of the `watchExpressions`, with the indexes matching +- * those of `watchExpression` +- * The `scope` refers to the current scope. +- * @returns {function()} Returns a de-registration function for all listeners. +- */ +- $watchGroup: function(watchExpressions, listener) { +- var oldValues = new Array(watchExpressions.length); +- var newValues = new Array(watchExpressions.length); +- var deregisterFns = []; +- var self = this; +- var changeReactionScheduled = false; +- var firstRun = true; +- +- if (!watchExpressions.length) { +- // No expressions means we call the listener ASAP +- var shouldCall = true; +- self.$evalAsync(function() { +- if (shouldCall) listener(newValues, newValues, self); +- }); +- return function deregisterWatchGroup() { +- shouldCall = false; +- }; +- } +- +- if (watchExpressions.length === 1) { +- // Special case size of one +- return this.$watch(watchExpressions[0], function watchGroupAction(value, oldValue, scope) { +- newValues[0] = value; +- oldValues[0] = oldValue; +- listener(newValues, (value === oldValue) ? newValues : oldValues, scope); +- }); +- } +- +- forEach(watchExpressions, function(expr, i) { +- var unwatchFn = self.$watch(expr, function watchGroupSubAction(value, oldValue) { +- newValues[i] = value; +- oldValues[i] = oldValue; +- if (!changeReactionScheduled) { +- changeReactionScheduled = true; +- self.$evalAsync(watchGroupAction); +- } +- }); +- deregisterFns.push(unwatchFn); +- }); +- +- function watchGroupAction() { +- changeReactionScheduled = false; +- +- if (firstRun) { +- firstRun = false; +- listener(newValues, newValues, self); +- } else { +- listener(newValues, oldValues, self); +- } +- } +- +- return function deregisterWatchGroup() { +- while (deregisterFns.length) { +- deregisterFns.shift()(); +- } +- }; +- }, +- +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$watchCollection +- * @kind function +- * +- * @description +- * Shallow watches the properties of an object and fires whenever any of the properties change +- * (for arrays, this implies watching the array items; for object maps, this implies watching +- * the properties). If a change is detected, the `listener` callback is fired. +- * +- * - The `obj` collection is observed via standard $watch operation and is examined on every +- * call to $digest() to see if any items have been added, removed, or moved. +- * - The `listener` is called whenever anything within the `obj` has changed. Examples include +- * adding, removing, and moving items belonging to an object or array. +- * +- * +- * # Example +- * ```js +- $scope.names = ['igor', 'matias', 'misko', 'james']; +- $scope.dataCount = 4; +- +- $scope.$watchCollection('names', function(newNames, oldNames) { +- $scope.dataCount = newNames.length; +- }); +- +- expect($scope.dataCount).toEqual(4); +- $scope.$digest(); +- +- //still at 4 ... no changes +- expect($scope.dataCount).toEqual(4); +- +- $scope.names.pop(); +- $scope.$digest(); +- +- //now there's been a change +- expect($scope.dataCount).toEqual(3); +- * ``` +- * +- * +- * @param {string|function(scope)} obj Evaluated as {@link guide/expression expression}. The +- * expression value should evaluate to an object or an array which is observed on each +- * {@link ng.$rootScope.Scope#$digest $digest} cycle. Any shallow change within the +- * collection will trigger a call to the `listener`. +- * +- * @param {function(newCollection, oldCollection, scope)} listener a callback function called +- * when a change is detected. +- * - The `newCollection` object is the newly modified data obtained from the `obj` expression +- * - The `oldCollection` object is a copy of the former collection data. +- * Due to performance considerations, the`oldCollection` value is computed only if the +- * `listener` function declares two or more arguments. +- * - The `scope` argument refers to the current scope. +- * +- * @returns {function()} Returns a de-registration function for this listener. When the +- * de-registration function is executed, the internal watch operation is terminated. +- */ +- $watchCollection: function(obj, listener) { +- $watchCollectionInterceptor.$stateful = true; +- +- var self = this; +- // the current value, updated on each dirty-check run +- var newValue; +- // a shallow copy of the newValue from the last dirty-check run, +- // updated to match newValue during dirty-check run +- var oldValue; +- // a shallow copy of the newValue from when the last change happened +- var veryOldValue; +- // only track veryOldValue if the listener is asking for it +- var trackVeryOldValue = (listener.length > 1); +- var changeDetected = 0; +- var changeDetector = $parse(obj, $watchCollectionInterceptor); +- var internalArray = []; +- var internalObject = {}; +- var initRun = true; +- var oldLength = 0; +- +- function $watchCollectionInterceptor(_value) { +- newValue = _value; +- var newLength, key, bothNaN, newItem, oldItem; +- +- // If the new value is undefined, then return undefined as the watch may be a one-time watch +- if (isUndefined(newValue)) return; +- +- if (!isObject(newValue)) { // if primitive +- if (oldValue !== newValue) { +- oldValue = newValue; +- changeDetected++; +- } +- } else if (isArrayLike(newValue)) { +- if (oldValue !== internalArray) { +- // we are transitioning from something which was not an array into array. +- oldValue = internalArray; +- oldLength = oldValue.length = 0; +- changeDetected++; +- } +- +- newLength = newValue.length; +- +- if (oldLength !== newLength) { +- // if lengths do not match we need to trigger change notification +- changeDetected++; +- oldValue.length = oldLength = newLength; +- } +- // copy the items to oldValue and look for changes. +- for (var i = 0; i < newLength; i++) { +- oldItem = oldValue[i]; +- newItem = newValue[i]; +- +- bothNaN = (oldItem !== oldItem) && (newItem !== newItem); +- if (!bothNaN && (oldItem !== newItem)) { +- changeDetected++; +- oldValue[i] = newItem; +- } +- } +- } else { +- if (oldValue !== internalObject) { +- // we are transitioning from something which was not an object into object. +- oldValue = internalObject = {}; +- oldLength = 0; +- changeDetected++; +- } +- // copy the items to oldValue and look for changes. +- newLength = 0; +- for (key in newValue) { +- if (newValue.hasOwnProperty(key)) { +- newLength++; +- newItem = newValue[key]; +- oldItem = oldValue[key]; +- +- if (key in oldValue) { +- bothNaN = (oldItem !== oldItem) && (newItem !== newItem); +- if (!bothNaN && (oldItem !== newItem)) { +- changeDetected++; +- oldValue[key] = newItem; +- } +- } else { +- oldLength++; +- oldValue[key] = newItem; +- changeDetected++; +- } +- } +- } +- if (oldLength > newLength) { +- // we used to have more keys, need to find them and destroy them. +- changeDetected++; +- for (key in oldValue) { +- if (!newValue.hasOwnProperty(key)) { +- oldLength--; +- delete oldValue[key]; +- } +- } +- } +- } +- return changeDetected; +- } +- +- function $watchCollectionAction() { +- if (initRun) { +- initRun = false; +- listener(newValue, newValue, self); +- } else { +- listener(newValue, veryOldValue, self); +- } +- +- // make a copy for the next time a collection is changed +- if (trackVeryOldValue) { +- if (!isObject(newValue)) { +- //primitive +- veryOldValue = newValue; +- } else if (isArrayLike(newValue)) { +- veryOldValue = new Array(newValue.length); +- for (var i = 0; i < newValue.length; i++) { +- veryOldValue[i] = newValue[i]; +- } +- } else { // if object +- veryOldValue = {}; +- for (var key in newValue) { +- if (hasOwnProperty.call(newValue, key)) { +- veryOldValue[key] = newValue[key]; +- } +- } +- } +- } +- } +- +- return this.$watch(changeDetector, $watchCollectionAction); +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$digest +- * @kind function +- * +- * @description +- * Processes all of the {@link ng.$rootScope.Scope#$watch watchers} of the current scope and +- * its children. Because a {@link ng.$rootScope.Scope#$watch watcher}'s listener can change +- * the model, the `$digest()` keeps calling the {@link ng.$rootScope.Scope#$watch watchers} +- * until no more listeners are firing. This means that it is possible to get into an infinite +- * loop. This function will throw `'Maximum iteration limit exceeded.'` if the number of +- * iterations exceeds 10. +- * +- * Usually, you don't call `$digest()` directly in +- * {@link ng.directive:ngController controllers} or in +- * {@link ng.$compileProvider#directive directives}. +- * Instead, you should call {@link ng.$rootScope.Scope#$apply $apply()} (typically from within +- * a {@link ng.$compileProvider#directive directive}), which will force a `$digest()`. +- * +- * If you want to be notified whenever `$digest()` is called, +- * you can register a `watchExpression` function with +- * {@link ng.$rootScope.Scope#$watch $watch()} with no `listener`. +- * +- * In unit tests, you may need to call `$digest()` to simulate the scope life cycle. +- * +- * # Example +- * ```js +- var scope = ...; +- scope.name = 'misko'; +- scope.counter = 0; +- +- expect(scope.counter).toEqual(0); +- scope.$watch('name', function(newValue, oldValue) { +- scope.counter = scope.counter + 1; +- }); +- expect(scope.counter).toEqual(0); +- +- scope.$digest(); +- // the listener is always called during the first $digest loop after it was registered +- expect(scope.counter).toEqual(1); +- +- scope.$digest(); +- // but now it will not be called unless the value changes +- expect(scope.counter).toEqual(1); +- +- scope.name = 'adam'; +- scope.$digest(); +- expect(scope.counter).toEqual(2); +- * ``` +- * +- */ +- $digest: function() { +- var watch, value, last, +- watchers, +- length, +- dirty, ttl = TTL, +- next, current, target = this, +- watchLog = [], +- logIdx, logMsg, asyncTask; +- +- beginPhase('$digest'); +- // Check for changes to browser url that happened in sync before the call to $digest +- $browser.$$checkUrlChange(); +- +- if (this === $rootScope && applyAsyncId !== null) { +- // If this is the root scope, and $applyAsync has scheduled a deferred $apply(), then +- // cancel the scheduled $apply and flush the queue of expressions to be evaluated. +- $browser.defer.cancel(applyAsyncId); +- flushApplyAsync(); +- } +- +- lastDirtyWatch = null; +- +- do { // "while dirty" loop +- dirty = false; +- current = target; +- +- while (asyncQueue.length) { +- try { +- asyncTask = asyncQueue.shift(); +- asyncTask.scope.$eval(asyncTask.expression, asyncTask.locals); +- } catch (e) { +- $exceptionHandler(e); +- } +- lastDirtyWatch = null; +- } +- +- traverseScopesLoop: +- do { // "traverse the scopes" loop +- if ((watchers = current.$$watchers)) { +- // process our watches +- length = watchers.length; +- while (length--) { +- try { +- watch = watchers[length]; +- // Most common watches are on primitives, in which case we can short +- // circuit it with === operator, only when === fails do we use .equals +- if (watch) { +- if ((value = watch.get(current)) !== (last = watch.last) && +- !(watch.eq +- ? equals(value, last) +- : (typeof value === 'number' && typeof last === 'number' +- && isNaN(value) && isNaN(last)))) { +- dirty = true; +- lastDirtyWatch = watch; +- watch.last = watch.eq ? copy(value, null) : value; +- watch.fn(value, ((last === initWatchVal) ? value : last), current); +- if (ttl < 5) { +- logIdx = 4 - ttl; +- if (!watchLog[logIdx]) watchLog[logIdx] = []; +- watchLog[logIdx].push({ +- msg: isFunction(watch.exp) ? 'fn: ' + (watch.exp.name || watch.exp.toString()) : watch.exp, +- newVal: value, +- oldVal: last +- }); +- } +- } else if (watch === lastDirtyWatch) { +- // If the most recently dirty watcher is now clean, short circuit since the remaining watchers +- // have already been tested. +- dirty = false; +- break traverseScopesLoop; +- } +- } +- } catch (e) { +- $exceptionHandler(e); +- } +- } +- } +- +- // Insanity Warning: scope depth-first traversal +- // yes, this code is a bit crazy, but it works and we have tests to prove it! +- // this piece should be kept in sync with the traversal in $broadcast +- if (!(next = (current.$$childHead || +- (current !== target && current.$$nextSibling)))) { +- while (current !== target && !(next = current.$$nextSibling)) { +- current = current.$parent; +- } +- } +- } while ((current = next)); +- +- // `break traverseScopesLoop;` takes us to here +- +- if ((dirty || asyncQueue.length) && !(ttl--)) { +- clearPhase(); +- throw $rootScopeMinErr('infdig', +- '{0} $digest() iterations reached. Aborting!\n' + +- 'Watchers fired in the last 5 iterations: {1}', +- TTL, watchLog); +- } +- +- } while (dirty || asyncQueue.length); +- +- clearPhase(); +- +- while (postDigestQueue.length) { +- try { +- postDigestQueue.shift()(); +- } catch (e) { +- $exceptionHandler(e); +- } +- } +- }, +- +- +- /** +- * @ngdoc event +- * @name $rootScope.Scope#$destroy +- * @eventType broadcast on scope being destroyed +- * +- * @description +- * Broadcasted when a scope and its children are being destroyed. +- * +- * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to +- * clean up DOM bindings before an element is removed from the DOM. +- */ +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$destroy +- * @kind function +- * +- * @description +- * Removes the current scope (and all of its children) from the parent scope. Removal implies +- * that calls to {@link ng.$rootScope.Scope#$digest $digest()} will no longer +- * propagate to the current scope and its children. Removal also implies that the current +- * scope is eligible for garbage collection. +- * +- * The `$destroy()` is usually used by directives such as +- * {@link ng.directive:ngRepeat ngRepeat} for managing the +- * unrolling of the loop. +- * +- * Just before a scope is destroyed, a `$destroy` event is broadcasted on this scope. +- * Application code can register a `$destroy` event handler that will give it a chance to +- * perform any necessary cleanup. +- * +- * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to +- * clean up DOM bindings before an element is removed from the DOM. +- */ +- $destroy: function() { +- // we can't destroy the root scope or a scope that has been already destroyed +- if (this.$$destroyed) return; +- var parent = this.$parent; +- +- this.$broadcast('$destroy'); +- this.$$destroyed = true; +- if (this === $rootScope) return; +- +- for (var eventName in this.$$listenerCount) { +- decrementListenerCount(this, this.$$listenerCount[eventName], eventName); +- } +- +- // sever all the references to parent scopes (after this cleanup, the current scope should +- // not be retained by any of our references and should be eligible for garbage collection) +- if (parent.$$childHead == this) parent.$$childHead = this.$$nextSibling; +- if (parent.$$childTail == this) parent.$$childTail = this.$$prevSibling; +- if (this.$$prevSibling) this.$$prevSibling.$$nextSibling = this.$$nextSibling; +- if (this.$$nextSibling) this.$$nextSibling.$$prevSibling = this.$$prevSibling; +- +- // Disable listeners, watchers and apply/digest methods +- this.$destroy = this.$digest = this.$apply = this.$evalAsync = this.$applyAsync = noop; +- this.$on = this.$watch = this.$watchGroup = function() { return noop; }; +- this.$$listeners = {}; +- +- // All of the code below is bogus code that works around V8's memory leak via optimized code +- // and inline caches. +- // +- // see: +- // - https://code.google.com/p/v8/issues/detail?id=2073#c26 +- // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909 +- // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451 +- +- this.$parent = this.$$nextSibling = this.$$prevSibling = this.$$childHead = +- this.$$childTail = this.$root = this.$$watchers = null; +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$eval +- * @kind function +- * +- * @description +- * Executes the `expression` on the current scope and returns the result. Any exceptions in +- * the expression are propagated (uncaught). This is useful when evaluating Angular +- * expressions. +- * +- * # Example +- * ```js +- var scope = ng.$rootScope.Scope(); +- scope.a = 1; +- scope.b = 2; +- +- expect(scope.$eval('a+b')).toEqual(3); +- expect(scope.$eval(function(scope){ return scope.a + scope.b; })).toEqual(3); +- * ``` +- * +- * @param {(string|function())=} expression An angular expression to be executed. +- * +- * - `string`: execute using the rules as defined in {@link guide/expression expression}. +- * - `function(scope)`: execute the function with the current `scope` parameter. +- * +- * @param {(object)=} locals Local variables object, useful for overriding values in scope. +- * @returns {*} The result of evaluating the expression. +- */ +- $eval: function(expr, locals) { +- return $parse(expr)(this, locals); +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$evalAsync +- * @kind function +- * +- * @description +- * Executes the expression on the current scope at a later point in time. +- * +- * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only +- * that: +- * +- * - it will execute after the function that scheduled the evaluation (preferably before DOM +- * rendering). +- * - at least one {@link ng.$rootScope.Scope#$digest $digest cycle} will be performed after +- * `expression` execution. +- * +- * Any exceptions from the execution of the expression are forwarded to the +- * {@link ng.$exceptionHandler $exceptionHandler} service. +- * +- * __Note:__ if this function is called outside of a `$digest` cycle, a new `$digest` cycle +- * will be scheduled. However, it is encouraged to always call code that changes the model +- * from within an `$apply` call. That includes code evaluated via `$evalAsync`. +- * +- * @param {(string|function())=} expression An angular expression to be executed. +- * +- * - `string`: execute using the rules as defined in {@link guide/expression expression}. +- * - `function(scope)`: execute the function with the current `scope` parameter. +- * +- * @param {(object)=} locals Local variables object, useful for overriding values in scope. +- */ +- $evalAsync: function(expr, locals) { +- // if we are outside of an $digest loop and this is the first time we are scheduling async +- // task also schedule async auto-flush +- if (!$rootScope.$$phase && !asyncQueue.length) { +- $browser.defer(function() { +- if (asyncQueue.length) { +- $rootScope.$digest(); +- } +- }); +- } +- +- asyncQueue.push({scope: this, expression: expr, locals: locals}); +- }, +- +- $$postDigest: function(fn) { +- postDigestQueue.push(fn); +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$apply +- * @kind function +- * +- * @description +- * `$apply()` is used to execute an expression in angular from outside of the angular +- * framework. (For example from browser DOM events, setTimeout, XHR or third party libraries). +- * Because we are calling into the angular framework we need to perform proper scope life +- * cycle of {@link ng.$exceptionHandler exception handling}, +- * {@link ng.$rootScope.Scope#$digest executing watches}. +- * +- * ## Life cycle +- * +- * # Pseudo-Code of `$apply()` +- * ```js +- function $apply(expr) { +- try { +- return $eval(expr); +- } catch (e) { +- $exceptionHandler(e); +- } finally { +- $root.$digest(); +- } +- } +- * ``` +- * +- * +- * Scope's `$apply()` method transitions through the following stages: +- * +- * 1. The {@link guide/expression expression} is executed using the +- * {@link ng.$rootScope.Scope#$eval $eval()} method. +- * 2. Any exceptions from the execution of the expression are forwarded to the +- * {@link ng.$exceptionHandler $exceptionHandler} service. +- * 3. The {@link ng.$rootScope.Scope#$watch watch} listeners are fired immediately after the +- * expression was executed using the {@link ng.$rootScope.Scope#$digest $digest()} method. +- * +- * +- * @param {(string|function())=} exp An angular expression to be executed. +- * +- * - `string`: execute using the rules as defined in {@link guide/expression expression}. +- * - `function(scope)`: execute the function with current `scope` parameter. +- * +- * @returns {*} The result of evaluating the expression. +- */ +- $apply: function(expr) { +- try { +- beginPhase('$apply'); +- return this.$eval(expr); +- } catch (e) { +- $exceptionHandler(e); +- } finally { +- clearPhase(); +- try { +- $rootScope.$digest(); +- } catch (e) { +- $exceptionHandler(e); +- throw e; +- } +- } +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$applyAsync +- * @kind function +- * +- * @description +- * Schedule the invocation of $apply to occur at a later time. The actual time difference +- * varies across browsers, but is typically around ~10 milliseconds. +- * +- * This can be used to queue up multiple expressions which need to be evaluated in the same +- * digest. +- * +- * @param {(string|function())=} exp An angular expression to be executed. +- * +- * - `string`: execute using the rules as defined in {@link guide/expression expression}. +- * - `function(scope)`: execute the function with current `scope` parameter. +- */ +- $applyAsync: function(expr) { +- var scope = this; +- expr && applyAsyncQueue.push($applyAsyncExpression); +- scheduleApplyAsync(); +- +- function $applyAsyncExpression() { +- scope.$eval(expr); +- } +- }, +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$on +- * @kind function +- * +- * @description +- * Listens on events of a given type. See {@link ng.$rootScope.Scope#$emit $emit} for +- * discussion of event life cycle. +- * +- * The event listener function format is: `function(event, args...)`. The `event` object +- * passed into the listener has the following attributes: +- * +- * - `targetScope` - `{Scope}`: the scope on which the event was `$emit`-ed or +- * `$broadcast`-ed. +- * - `currentScope` - `{Scope}`: the scope that is currently handling the event. Once the +- * event propagates through the scope hierarchy, this property is set to null. +- * - `name` - `{string}`: name of the event. +- * - `stopPropagation` - `{function=}`: calling `stopPropagation` function will cancel +- * further event propagation (available only for events that were `$emit`-ed). +- * - `preventDefault` - `{function}`: calling `preventDefault` sets `defaultPrevented` flag +- * to true. +- * - `defaultPrevented` - `{boolean}`: true if `preventDefault` was called. +- * +- * @param {string} name Event name to listen on. +- * @param {function(event, ...args)} listener Function to call when the event is emitted. +- * @returns {function()} Returns a deregistration function for this listener. +- */ +- $on: function(name, listener) { +- var namedListeners = this.$$listeners[name]; +- if (!namedListeners) { +- this.$$listeners[name] = namedListeners = []; +- } +- namedListeners.push(listener); +- +- var current = this; +- do { +- if (!current.$$listenerCount[name]) { +- current.$$listenerCount[name] = 0; +- } +- current.$$listenerCount[name]++; +- } while ((current = current.$parent)); +- +- var self = this; +- return function() { +- var indexOfListener = namedListeners.indexOf(listener); +- if (indexOfListener !== -1) { +- namedListeners[indexOfListener] = null; +- decrementListenerCount(self, 1, name); +- } +- }; +- }, +- +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$emit +- * @kind function +- * +- * @description +- * Dispatches an event `name` upwards through the scope hierarchy notifying the +- * registered {@link ng.$rootScope.Scope#$on} listeners. +- * +- * The event life cycle starts at the scope on which `$emit` was called. All +- * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get +- * notified. Afterwards, the event traverses upwards toward the root scope and calls all +- * registered listeners along the way. The event will stop propagating if one of the listeners +- * cancels it. +- * +- * Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed +- * onto the {@link ng.$exceptionHandler $exceptionHandler} service. +- * +- * @param {string} name Event name to emit. +- * @param {...*} args Optional one or more arguments which will be passed onto the event listeners. +- * @return {Object} Event object (see {@link ng.$rootScope.Scope#$on}). +- */ +- $emit: function(name, args) { +- var empty = [], +- namedListeners, +- scope = this, +- stopPropagation = false, +- event = { +- name: name, +- targetScope: scope, +- stopPropagation: function() {stopPropagation = true;}, +- preventDefault: function() { +- event.defaultPrevented = true; +- }, +- defaultPrevented: false +- }, +- listenerArgs = concat([event], arguments, 1), +- i, length; +- +- do { +- namedListeners = scope.$$listeners[name] || empty; +- event.currentScope = scope; +- for (i = 0, length = namedListeners.length; i < length; i++) { +- +- // if listeners were deregistered, defragment the array +- if (!namedListeners[i]) { +- namedListeners.splice(i, 1); +- i--; +- length--; +- continue; +- } +- try { +- //allow all listeners attached to the current scope to run +- namedListeners[i].apply(null, listenerArgs); +- } catch (e) { +- $exceptionHandler(e); +- } +- } +- //if any listener on the current scope stops propagation, prevent bubbling +- if (stopPropagation) { +- event.currentScope = null; +- return event; +- } +- //traverse upwards +- scope = scope.$parent; +- } while (scope); +- +- event.currentScope = null; +- +- return event; +- }, +- +- +- /** +- * @ngdoc method +- * @name $rootScope.Scope#$broadcast +- * @kind function +- * +- * @description +- * Dispatches an event `name` downwards to all child scopes (and their children) notifying the +- * registered {@link ng.$rootScope.Scope#$on} listeners. +- * +- * The event life cycle starts at the scope on which `$broadcast` was called. All +- * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get +- * notified. Afterwards, the event propagates to all direct and indirect scopes of the current +- * scope and calls all registered listeners along the way. The event cannot be canceled. +- * +- * Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed +- * onto the {@link ng.$exceptionHandler $exceptionHandler} service. +- * +- * @param {string} name Event name to broadcast. +- * @param {...*} args Optional one or more arguments which will be passed onto the event listeners. +- * @return {Object} Event object, see {@link ng.$rootScope.Scope#$on} +- */ +- $broadcast: function(name, args) { +- var target = this, +- current = target, +- next = target, +- event = { +- name: name, +- targetScope: target, +- preventDefault: function() { +- event.defaultPrevented = true; +- }, +- defaultPrevented: false +- }; +- +- if (!target.$$listenerCount[name]) return event; +- +- var listenerArgs = concat([event], arguments, 1), +- listeners, i, length; +- +- //down while you can, then up and next sibling or up and next sibling until back at root +- while ((current = next)) { +- event.currentScope = current; +- listeners = current.$$listeners[name] || []; +- for (i = 0, length = listeners.length; i < length; i++) { +- // if listeners were deregistered, defragment the array +- if (!listeners[i]) { +- listeners.splice(i, 1); +- i--; +- length--; +- continue; +- } +- +- try { +- listeners[i].apply(null, listenerArgs); +- } catch (e) { +- $exceptionHandler(e); +- } +- } +- +- // Insanity Warning: scope depth-first traversal +- // yes, this code is a bit crazy, but it works and we have tests to prove it! +- // this piece should be kept in sync with the traversal in $digest +- // (though it differs due to having the extra check for $$listenerCount) +- if (!(next = ((current.$$listenerCount[name] && current.$$childHead) || +- (current !== target && current.$$nextSibling)))) { +- while (current !== target && !(next = current.$$nextSibling)) { +- current = current.$parent; +- } +- } +- } +- +- event.currentScope = null; +- return event; +- } +- }; +- +- var $rootScope = new Scope(); +- +- //The internal queues. Expose them on the $rootScope for debugging/testing purposes. +- var asyncQueue = $rootScope.$$asyncQueue = []; +- var postDigestQueue = $rootScope.$$postDigestQueue = []; +- var applyAsyncQueue = $rootScope.$$applyAsyncQueue = []; +- +- return $rootScope; +- +- +- function beginPhase(phase) { +- if ($rootScope.$$phase) { +- throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase); +- } +- +- $rootScope.$$phase = phase; +- } +- +- function clearPhase() { +- $rootScope.$$phase = null; +- } +- +- +- function decrementListenerCount(current, count, name) { +- do { +- current.$$listenerCount[name] -= count; +- +- if (current.$$listenerCount[name] === 0) { +- delete current.$$listenerCount[name]; +- } +- } while ((current = current.$parent)); +- } +- +- /** +- * function used as an initial value for watchers. +- * because it's unique we can easily tell it apart from other values +- */ +- function initWatchVal() {} +- +- function flushApplyAsync() { +- while (applyAsyncQueue.length) { +- try { +- applyAsyncQueue.shift()(); +- } catch (e) { +- $exceptionHandler(e); +- } +- } +- applyAsyncId = null; +- } +- +- function scheduleApplyAsync() { +- if (applyAsyncId === null) { +- applyAsyncId = $browser.defer(function() { +- $rootScope.$apply(flushApplyAsync); +- }); +- } +- } +- }]; +-} +- +-/** +- * @description +- * Private service to sanitize uris for links and images. Used by $compile and $sanitize. +- */ +-function $$SanitizeUriProvider() { +- var aHrefSanitizationWhitelist = /^\s*(https?|ftp|mailto|tel|file):/, +- imgSrcSanitizationWhitelist = /^\s*((https?|ftp|file|blob):|data:image\/)/; +- +- /** +- * @description +- * Retrieves or overrides the default regular expression that is used for whitelisting of safe +- * urls during a[href] sanitization. +- * +- * The sanitization is a security measure aimed at prevent XSS attacks via html links. +- * +- * Any url about to be assigned to a[href] via data-binding is first normalized and turned into +- * an absolute url. Afterwards, the url is matched against the `aHrefSanitizationWhitelist` +- * regular expression. If a match is found, the original url is written into the dom. Otherwise, +- * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. +- * +- * @param {RegExp=} regexp New regexp to whitelist urls with. +- * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for +- * chaining otherwise. +- */ +- this.aHrefSanitizationWhitelist = function(regexp) { +- if (isDefined(regexp)) { +- aHrefSanitizationWhitelist = regexp; +- return this; +- } +- return aHrefSanitizationWhitelist; +- }; +- +- +- /** +- * @description +- * Retrieves or overrides the default regular expression that is used for whitelisting of safe +- * urls during img[src] sanitization. +- * +- * The sanitization is a security measure aimed at prevent XSS attacks via html links. +- * +- * Any url about to be assigned to img[src] via data-binding is first normalized and turned into +- * an absolute url. Afterwards, the url is matched against the `imgSrcSanitizationWhitelist` +- * regular expression. If a match is found, the original url is written into the dom. Otherwise, +- * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. +- * +- * @param {RegExp=} regexp New regexp to whitelist urls with. +- * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for +- * chaining otherwise. +- */ +- this.imgSrcSanitizationWhitelist = function(regexp) { +- if (isDefined(regexp)) { +- imgSrcSanitizationWhitelist = regexp; +- return this; +- } +- return imgSrcSanitizationWhitelist; +- }; +- +- this.$get = function() { +- return function sanitizeUri(uri, isImage) { +- var regex = isImage ? imgSrcSanitizationWhitelist : aHrefSanitizationWhitelist; +- var normalizedVal; +- normalizedVal = urlResolve(uri).href; +- if (normalizedVal !== '' && !normalizedVal.match(regex)) { +- return 'unsafe:' + normalizedVal; +- } +- return uri; +- }; +- }; +-} +- +-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +- * Any commits to this file should be reviewed with security in mind. * +- * Changes to this file can potentially create security vulnerabilities. * +- * An approval from 2 Core members with history of modifying * +- * this file is required. * +- * * +- * Does the change somehow allow for arbitrary javascript to be executed? * +- * Or allows for someone to change the prototype of built-in objects? * +- * Or gives undesired access to variables likes document or window? * +- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ +- +-var $sceMinErr = minErr('$sce'); +- +-var SCE_CONTEXTS = { +- HTML: 'html', +- CSS: 'css', +- URL: 'url', +- // RESOURCE_URL is a subtype of URL used in contexts where a privileged resource is sourced from a +- // url. (e.g. ng-include, script src, templateUrl) +- RESOURCE_URL: 'resourceUrl', +- JS: 'js' +-}; +- +-// Helper functions follow. +- +-function adjustMatcher(matcher) { +- if (matcher === 'self') { +- return matcher; +- } else if (isString(matcher)) { +- // Strings match exactly except for 2 wildcards - '*' and '**'. +- // '*' matches any character except those from the set ':/.?&'. +- // '**' matches any character (like .* in a RegExp). +- // More than 2 *'s raises an error as it's ill defined. +- if (matcher.indexOf('***') > -1) { +- throw $sceMinErr('iwcard', +- 'Illegal sequence *** in string matcher. String: {0}', matcher); +- } +- matcher = escapeForRegexp(matcher). +- replace('\\*\\*', '.*'). +- replace('\\*', '[^:/.?&;]*'); +- return new RegExp('^' + matcher + '$'); +- } else if (isRegExp(matcher)) { +- // The only other type of matcher allowed is a Regexp. +- // Match entire URL / disallow partial matches. +- // Flags are reset (i.e. no global, ignoreCase or multiline) +- return new RegExp('^' + matcher.source + '$'); +- } else { +- throw $sceMinErr('imatcher', +- 'Matchers may only be "self", string patterns or RegExp objects'); +- } +-} +- +- +-function adjustMatchers(matchers) { +- var adjustedMatchers = []; +- if (isDefined(matchers)) { +- forEach(matchers, function(matcher) { +- adjustedMatchers.push(adjustMatcher(matcher)); +- }); +- } +- return adjustedMatchers; +-} +- +- +-/** +- * @ngdoc service +- * @name $sceDelegate +- * @kind function +- * +- * @description +- * +- * `$sceDelegate` is a service that is used by the `$sce` service to provide {@link ng.$sce Strict +- * Contextual Escaping (SCE)} services to AngularJS. +- * +- * Typically, you would configure or override the {@link ng.$sceDelegate $sceDelegate} instead of +- * the `$sce` service to customize the way Strict Contextual Escaping works in AngularJS. This is +- * because, while the `$sce` provides numerous shorthand methods, etc., you really only need to +- * override 3 core functions (`trustAs`, `getTrusted` and `valueOf`) to replace the way things +- * work because `$sce` delegates to `$sceDelegate` for these operations. +- * +- * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} to configure this service. +- * +- * The default instance of `$sceDelegate` should work out of the box with little pain. While you +- * can override it completely to change the behavior of `$sce`, the common case would +- * involve configuring the {@link ng.$sceDelegateProvider $sceDelegateProvider} instead by setting +- * your own whitelists and blacklists for trusting URLs used for loading AngularJS resources such as +- * templates. Refer {@link ng.$sceDelegateProvider#resourceUrlWhitelist +- * $sceDelegateProvider.resourceUrlWhitelist} and {@link +- * ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} +- */ +- +-/** +- * @ngdoc provider +- * @name $sceDelegateProvider +- * @description +- * +- * The `$sceDelegateProvider` provider allows developers to configure the {@link ng.$sceDelegate +- * $sceDelegate} service. This allows one to get/set the whitelists and blacklists used to ensure +- * that the URLs used for sourcing Angular templates are safe. Refer {@link +- * ng.$sceDelegateProvider#resourceUrlWhitelist $sceDelegateProvider.resourceUrlWhitelist} and +- * {@link ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} +- * +- * For the general details about this service in Angular, read the main page for {@link ng.$sce +- * Strict Contextual Escaping (SCE)}. +- * +- * **Example**: Consider the following case. <a name="example"></a> +- * +- * - your app is hosted at url `http://myapp.example.com/` +- * - but some of your templates are hosted on other domains you control such as +- * `http://srv01.assets.example.com/`, `http://srv02.assets.example.com/`, etc. +- * - and you have an open redirect at `http://myapp.example.com/clickThru?...`. +- * +- * Here is what a secure configuration for this scenario might look like: +- * +- * ``` +- * angular.module('myApp', []).config(function($sceDelegateProvider) { +- * $sceDelegateProvider.resourceUrlWhitelist([ +- * // Allow same origin resource loads. +- * 'self', +- * // Allow loading from our assets domain. Notice the difference between * and **. +- * 'http://srv*.assets.example.com/**' +- * ]); +- * +- * // The blacklist overrides the whitelist so the open redirect here is blocked. +- * $sceDelegateProvider.resourceUrlBlacklist([ +- * 'http://myapp.example.com/clickThru**' +- * ]); +- * }); +- * ``` +- */ +- +-function $SceDelegateProvider() { +- this.SCE_CONTEXTS = SCE_CONTEXTS; +- +- // Resource URLs can also be trusted by policy. +- var resourceUrlWhitelist = ['self'], +- resourceUrlBlacklist = []; +- +- /** +- * @ngdoc method +- * @name $sceDelegateProvider#resourceUrlWhitelist +- * @kind function +- * +- * @param {Array=} whitelist When provided, replaces the resourceUrlWhitelist with the value +- * provided. This must be an array or null. A snapshot of this array is used so further +- * changes to the array are ignored. +- * +- * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items +- * allowed in this array. +- * +- * Note: **an empty whitelist array will block all URLs**! +- * +- * @return {Array} the currently set whitelist array. +- * +- * The **default value** when no whitelist has been explicitly set is `['self']` allowing only +- * same origin resource requests. +- * +- * @description +- * Sets/Gets the whitelist of trusted resource URLs. +- */ +- this.resourceUrlWhitelist = function(value) { +- if (arguments.length) { +- resourceUrlWhitelist = adjustMatchers(value); +- } +- return resourceUrlWhitelist; +- }; +- +- /** +- * @ngdoc method +- * @name $sceDelegateProvider#resourceUrlBlacklist +- * @kind function +- * +- * @param {Array=} blacklist When provided, replaces the resourceUrlBlacklist with the value +- * provided. This must be an array or null. A snapshot of this array is used so further +- * changes to the array are ignored. +- * +- * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items +- * allowed in this array. +- * +- * The typical usage for the blacklist is to **block +- * [open redirects](http://cwe.mitre.org/data/definitions/601.html)** served by your domain as +- * these would otherwise be trusted but actually return content from the redirected domain. +- * +- * Finally, **the blacklist overrides the whitelist** and has the final say. +- * +- * @return {Array} the currently set blacklist array. +- * +- * The **default value** when no whitelist has been explicitly set is the empty array (i.e. there +- * is no blacklist.) +- * +- * @description +- * Sets/Gets the blacklist of trusted resource URLs. +- */ +- +- this.resourceUrlBlacklist = function(value) { +- if (arguments.length) { +- resourceUrlBlacklist = adjustMatchers(value); +- } +- return resourceUrlBlacklist; +- }; +- +- this.$get = ['$injector', function($injector) { +- +- var htmlSanitizer = function htmlSanitizer(html) { +- throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.'); +- }; +- +- if ($injector.has('$sanitize')) { +- htmlSanitizer = $injector.get('$sanitize'); +- } +- +- +- function matchUrl(matcher, parsedUrl) { +- if (matcher === 'self') { +- return urlIsSameOrigin(parsedUrl); +- } else { +- // definitely a regex. See adjustMatchers() +- return !!matcher.exec(parsedUrl.href); +- } +- } +- +- function isResourceUrlAllowedByPolicy(url) { +- var parsedUrl = urlResolve(url.toString()); +- var i, n, allowed = false; +- // Ensure that at least one item from the whitelist allows this url. +- for (i = 0, n = resourceUrlWhitelist.length; i < n; i++) { +- if (matchUrl(resourceUrlWhitelist[i], parsedUrl)) { +- allowed = true; +- break; +- } +- } +- if (allowed) { +- // Ensure that no item from the blacklist blocked this url. +- for (i = 0, n = resourceUrlBlacklist.length; i < n; i++) { +- if (matchUrl(resourceUrlBlacklist[i], parsedUrl)) { +- allowed = false; +- break; +- } +- } +- } +- return allowed; +- } +- +- function generateHolderType(Base) { +- var holderType = function TrustedValueHolderType(trustedValue) { +- this.$$unwrapTrustedValue = function() { +- return trustedValue; +- }; +- }; +- if (Base) { +- holderType.prototype = new Base(); +- } +- holderType.prototype.valueOf = function sceValueOf() { +- return this.$$unwrapTrustedValue(); +- }; +- holderType.prototype.toString = function sceToString() { +- return this.$$unwrapTrustedValue().toString(); +- }; +- return holderType; +- } +- +- var trustedValueHolderBase = generateHolderType(), +- byType = {}; +- +- byType[SCE_CONTEXTS.HTML] = generateHolderType(trustedValueHolderBase); +- byType[SCE_CONTEXTS.CSS] = generateHolderType(trustedValueHolderBase); +- byType[SCE_CONTEXTS.URL] = generateHolderType(trustedValueHolderBase); +- byType[SCE_CONTEXTS.JS] = generateHolderType(trustedValueHolderBase); +- byType[SCE_CONTEXTS.RESOURCE_URL] = generateHolderType(byType[SCE_CONTEXTS.URL]); +- +- /** +- * @ngdoc method +- * @name $sceDelegate#trustAs +- * +- * @description +- * Returns an object that is trusted by angular for use in specified strict +- * contextual escaping contexts (such as ng-bind-html, ng-include, any src +- * attribute interpolation, any dom event binding attribute interpolation +- * such as for onclick, etc.) that uses the provided value. +- * See {@link ng.$sce $sce} for enabling strict contextual escaping. +- * +- * @param {string} type The kind of context in which this value is safe for use. e.g. url, +- * resourceUrl, html, js and css. +- * @param {*} value The value that that should be considered trusted/safe. +- * @returns {*} A value that can be used to stand in for the provided `value` in places +- * where Angular expects a $sce.trustAs() return value. +- */ +- function trustAs(type, trustedValue) { +- var Constructor = (byType.hasOwnProperty(type) ? byType[type] : null); +- if (!Constructor) { +- throw $sceMinErr('icontext', +- 'Attempted to trust a value in invalid context. Context: {0}; Value: {1}', +- type, trustedValue); +- } +- if (trustedValue === null || trustedValue === undefined || trustedValue === '') { +- return trustedValue; +- } +- // All the current contexts in SCE_CONTEXTS happen to be strings. In order to avoid trusting +- // mutable objects, we ensure here that the value passed in is actually a string. +- if (typeof trustedValue !== 'string') { +- throw $sceMinErr('itype', +- 'Attempted to trust a non-string value in a content requiring a string: Context: {0}', +- type); +- } +- return new Constructor(trustedValue); +- } +- +- /** +- * @ngdoc method +- * @name $sceDelegate#valueOf +- * +- * @description +- * If the passed parameter had been returned by a prior call to {@link ng.$sceDelegate#trustAs +- * `$sceDelegate.trustAs`}, returns the value that had been passed to {@link +- * ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}. +- * +- * If the passed parameter is not a value that had been returned by {@link +- * ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}, returns it as-is. +- * +- * @param {*} value The result of a prior {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`} +- * call or anything else. +- * @returns {*} The `value` that was originally provided to {@link ng.$sceDelegate#trustAs +- * `$sceDelegate.trustAs`} if `value` is the result of such a call. Otherwise, returns +- * `value` unchanged. +- */ +- function valueOf(maybeTrusted) { +- if (maybeTrusted instanceof trustedValueHolderBase) { +- return maybeTrusted.$$unwrapTrustedValue(); +- } else { +- return maybeTrusted; +- } +- } +- +- /** +- * @ngdoc method +- * @name $sceDelegate#getTrusted +- * +- * @description +- * Takes the result of a {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`} call and +- * returns the originally supplied value if the queried context type is a supertype of the +- * created type. If this condition isn't satisfied, throws an exception. +- * +- * @param {string} type The kind of context in which this value is to be used. +- * @param {*} maybeTrusted The result of a prior {@link ng.$sceDelegate#trustAs +- * `$sceDelegate.trustAs`} call. +- * @returns {*} The value the was originally provided to {@link ng.$sceDelegate#trustAs +- * `$sceDelegate.trustAs`} if valid in this context. Otherwise, throws an exception. +- */ +- function getTrusted(type, maybeTrusted) { +- if (maybeTrusted === null || maybeTrusted === undefined || maybeTrusted === '') { +- return maybeTrusted; +- } +- var constructor = (byType.hasOwnProperty(type) ? byType[type] : null); +- if (constructor && maybeTrusted instanceof constructor) { +- return maybeTrusted.$$unwrapTrustedValue(); +- } +- // If we get here, then we may only take one of two actions. +- // 1. sanitize the value for the requested type, or +- // 2. throw an exception. +- if (type === SCE_CONTEXTS.RESOURCE_URL) { +- if (isResourceUrlAllowedByPolicy(maybeTrusted)) { +- return maybeTrusted; +- } else { +- throw $sceMinErr('insecurl', +- 'Blocked loading resource from url not allowed by $sceDelegate policy. URL: {0}', +- maybeTrusted.toString()); +- } +- } else if (type === SCE_CONTEXTS.HTML) { +- return htmlSanitizer(maybeTrusted); +- } +- throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.'); +- } +- +- return { trustAs: trustAs, +- getTrusted: getTrusted, +- valueOf: valueOf }; +- }]; +-} +- +- +-/** +- * @ngdoc provider +- * @name $sceProvider +- * @description +- * +- * The $sceProvider provider allows developers to configure the {@link ng.$sce $sce} service. +- * - enable/disable Strict Contextual Escaping (SCE) in a module +- * - override the default implementation with a custom delegate +- * +- * Read more about {@link ng.$sce Strict Contextual Escaping (SCE)}. +- */ +- +-/* jshint maxlen: false*/ +- +-/** +- * @ngdoc service +- * @name $sce +- * @kind function +- * +- * @description +- * +- * `$sce` is a service that provides Strict Contextual Escaping services to AngularJS. +- * +- * # Strict Contextual Escaping +- * +- * Strict Contextual Escaping (SCE) is a mode in which AngularJS requires bindings in certain +- * contexts to result in a value that is marked as safe to use for that context. One example of +- * such a context is binding arbitrary html controlled by the user via `ng-bind-html`. We refer +- * to these contexts as privileged or SCE contexts. +- * +- * As of version 1.2, Angular ships with SCE enabled by default. +- * +- * Note: When enabled (the default), IE<11 in quirks mode is not supported. In this mode, IE<11 allow +- * one to execute arbitrary javascript by the use of the expression() syntax. Refer +- * <http://blogs.msdn.com/b/ie/archive/2008/10/16/ending-expressions.aspx> to learn more about them. +- * You can ensure your document is in standards mode and not quirks mode by adding `<!doctype html>` +- * to the top of your HTML document. +- * +- * SCE assists in writing code in way that (a) is secure by default and (b) makes auditing for +- * security vulnerabilities such as XSS, clickjacking, etc. a lot easier. +- * +- * Here's an example of a binding in a privileged context: +- * +- * ``` +- * <input ng-model="userHtml"> +- * <div ng-bind-html="userHtml"></div> +- * ``` +- * +- * Notice that `ng-bind-html` is bound to `userHtml` controlled by the user. With SCE +- * disabled, this application allows the user to render arbitrary HTML into the DIV. +- * In a more realistic example, one may be rendering user comments, blog articles, etc. via +- * bindings. (HTML is just one example of a context where rendering user controlled input creates +- * security vulnerabilities.) +- * +- * For the case of HTML, you might use a library, either on the client side, or on the server side, +- * to sanitize unsafe HTML before binding to the value and rendering it in the document. +- * +- * How would you ensure that every place that used these types of bindings was bound to a value that +- * was sanitized by your library (or returned as safe for rendering by your server?) How can you +- * ensure that you didn't accidentally delete the line that sanitized the value, or renamed some +- * properties/fields and forgot to update the binding to the sanitized value? +- * +- * To be secure by default, you want to ensure that any such bindings are disallowed unless you can +- * determine that something explicitly says it's safe to use a value for binding in that +- * context. You can then audit your code (a simple grep would do) to ensure that this is only done +- * for those values that you can easily tell are safe - because they were received from your server, +- * sanitized by your library, etc. You can organize your codebase to help with this - perhaps +- * allowing only the files in a specific directory to do this. Ensuring that the internal API +- * exposed by that code doesn't markup arbitrary values as safe then becomes a more manageable task. +- * +- * In the case of AngularJS' SCE service, one uses {@link ng.$sce#trustAs $sce.trustAs} +- * (and shorthand methods such as {@link ng.$sce#trustAsHtml $sce.trustAsHtml}, etc.) to +- * obtain values that will be accepted by SCE / privileged contexts. +- * +- * +- * ## How does it work? +- * +- * In privileged contexts, directives and code will bind to the result of {@link ng.$sce#getTrusted +- * $sce.getTrusted(context, value)} rather than to the value directly. Directives use {@link +- * ng.$sce#parseAs $sce.parseAs} rather than `$parse` to watch attribute bindings, which performs the +- * {@link ng.$sce#getTrusted $sce.getTrusted} behind the scenes on non-constant literals. +- * +- * As an example, {@link ng.directive:ngBindHtml ngBindHtml} uses {@link +- * ng.$sce#parseAsHtml $sce.parseAsHtml(binding expression)}. Here's the actual code (slightly +- * simplified): +- * +- * ``` +- * var ngBindHtmlDirective = ['$sce', function($sce) { +- * return function(scope, element, attr) { +- * scope.$watch($sce.parseAsHtml(attr.ngBindHtml), function(value) { +- * element.html(value || ''); +- * }); +- * }; +- * }]; +- * ``` +- * +- * ## Impact on loading templates +- * +- * This applies both to the {@link ng.directive:ngInclude `ng-include`} directive as well as +- * `templateUrl`'s specified by {@link guide/directive directives}. +- * +- * By default, Angular only loads templates from the same domain and protocol as the application +- * document. This is done by calling {@link ng.$sce#getTrustedResourceUrl +- * $sce.getTrustedResourceUrl} on the template URL. To load templates from other domains and/or +- * protocols, you may either either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist +- * them} or {@link ng.$sce#trustAsResourceUrl wrap it} into a trusted value. +- * +- * *Please note*: +- * The browser's +- * [Same Origin Policy](https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest) +- * and [Cross-Origin Resource Sharing (CORS)](http://www.w3.org/TR/cors/) +- * policy apply in addition to this and may further restrict whether the template is successfully +- * loaded. This means that without the right CORS policy, loading templates from a different domain +- * won't work on all browsers. Also, loading templates from `file://` URL does not work on some +- * browsers. +- * +- * ## This feels like too much overhead +- * +- * It's important to remember that SCE only applies to interpolation expressions. +- * +- * If your expressions are constant literals, they're automatically trusted and you don't need to +- * call `$sce.trustAs` on them (remember to include the `ngSanitize` module) (e.g. +- * `<div ng-bind-html="'<b>implicitly trusted</b>'"></div>`) just works. +- * +- * Additionally, `a[href]` and `img[src]` automatically sanitize their URLs and do not pass them +- * through {@link ng.$sce#getTrusted $sce.getTrusted}. SCE doesn't play a role here. +- * +- * The included {@link ng.$sceDelegate $sceDelegate} comes with sane defaults to allow you to load +- * templates in `ng-include` from your application's domain without having to even know about SCE. +- * It blocks loading templates from other domains or loading templates over http from an https +- * served document. You can change these by setting your own custom {@link +- * ng.$sceDelegateProvider#resourceUrlWhitelist whitelists} and {@link +- * ng.$sceDelegateProvider#resourceUrlBlacklist blacklists} for matching such URLs. +- * +- * This significantly reduces the overhead. It is far easier to pay the small overhead and have an +- * application that's secure and can be audited to verify that with much more ease than bolting +- * security onto an application later. +- * +- * <a name="contexts"></a> +- * ## What trusted context types are supported? +- * +- * | Context | Notes | +- * |---------------------|----------------| +- * | `$sce.HTML` | For HTML that's safe to source into the application. The {@link ng.directive:ngBindHtml ngBindHtml} directive uses this context for bindings. If an unsafe value is encountered and the {@link ngSanitize $sanitize} module is present this will sanitize the value instead of throwing an error. | +- * | `$sce.CSS` | For CSS that's safe to source into the application. Currently unused. Feel free to use it in your own directives. | +- * | `$sce.URL` | For URLs that are safe to follow as links. Currently unused (`<a href=` and `<img src=` sanitize their urls and don't constitute an SCE context. | +- * | `$sce.RESOURCE_URL` | For URLs that are not only safe to follow as links, but whose contents are also safe to include in your application. Examples include `ng-include`, `src` / `ngSrc` bindings for tags other than `IMG` (e.g. `IFRAME`, `OBJECT`, etc.) <br><br>Note that `$sce.RESOURCE_URL` makes a stronger statement about the URL than `$sce.URL` does and therefore contexts requiring values trusted for `$sce.RESOURCE_URL` can be used anywhere that values trusted for `$sce.URL` are required. | +- * | `$sce.JS` | For JavaScript that is safe to execute in your application's context. Currently unused. Feel free to use it in your own directives. | +- * +- * ## Format of items in {@link ng.$sceDelegateProvider#resourceUrlWhitelist resourceUrlWhitelist}/{@link ng.$sceDelegateProvider#resourceUrlBlacklist Blacklist} <a name="resourceUrlPatternItem"></a> +- * +- * Each element in these arrays must be one of the following: +- * +- * - **'self'** +- * - The special **string**, `'self'`, can be used to match against all URLs of the **same +- * domain** as the application document using the **same protocol**. +- * - **String** (except the special value `'self'`) +- * - The string is matched against the full *normalized / absolute URL* of the resource +- * being tested (substring matches are not good enough.) +- * - There are exactly **two wildcard sequences** - `*` and `**`. All other characters +- * match themselves. +- * - `*`: matches zero or more occurrences of any character other than one of the following 6 +- * characters: '`:`', '`/`', '`.`', '`?`', '`&`' and ';'. It's a useful wildcard for use +- * in a whitelist. +- * - `**`: matches zero or more occurrences of *any* character. As such, it's not +- * not appropriate to use in for a scheme, domain, etc. as it would match too much. (e.g. +- * http://**.example.com/ would match http://evil.com/?ignore=.example.com/ and that might +- * not have been the intention.) Its usage at the very end of the path is ok. (e.g. +- * http://foo.example.com/templates/**). +- * - **RegExp** (*see caveat below*) +- * - *Caveat*: While regular expressions are powerful and offer great flexibility, their syntax +- * (and all the inevitable escaping) makes them *harder to maintain*. It's easy to +- * accidentally introduce a bug when one updates a complex expression (imho, all regexes should +- * have good test coverage.). For instance, the use of `.` in the regex is correct only in a +- * small number of cases. A `.` character in the regex used when matching the scheme or a +- * subdomain could be matched against a `:` or literal `.` that was likely not intended. It +- * is highly recommended to use the string patterns and only fall back to regular expressions +- * if they as a last resort. +- * - The regular expression must be an instance of RegExp (i.e. not a string.) It is +- * matched against the **entire** *normalized / absolute URL* of the resource being tested +- * (even when the RegExp did not have the `^` and `$` codes.) In addition, any flags +- * present on the RegExp (such as multiline, global, ignoreCase) are ignored. +- * - If you are generating your JavaScript from some other templating engine (not +- * recommended, e.g. in issue [#4006](https://github.com/angular/angular.js/issues/4006)), +- * remember to escape your regular expression (and be aware that you might need more than +- * one level of escaping depending on your templating engine and the way you interpolated +- * the value.) Do make use of your platform's escaping mechanism as it might be good +- * enough before coding your own. e.g. Ruby has +- * [Regexp.escape(str)](http://www.ruby-doc.org/core-2.0.0/Regexp.html#method-c-escape) +- * and Python has [re.escape](http://docs.python.org/library/re.html#re.escape). +- * Javascript lacks a similar built in function for escaping. Take a look at Google +- * Closure library's [goog.string.regExpEscape(s)]( +- * http://docs.closure-library.googlecode.com/git/closure_goog_string_string.js.source.html#line962). +- * +- * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} for an example. +- * +- * ## Show me an example using SCE. +- * +- * <example module="mySceApp" deps="angular-sanitize.js"> +- * <file name="index.html"> +- * <div ng-controller="AppController as myCtrl"> +- * <i ng-bind-html="myCtrl.explicitlyTrustedHtml" id="explicitlyTrustedHtml"></i><br><br> +- * <b>User comments</b><br> +- * By default, HTML that isn't explicitly trusted (e.g. Alice's comment) is sanitized when +- * $sanitize is available. If $sanitize isn't available, this results in an error instead of an +- * exploit. +- * <div class="well"> +- * <div ng-repeat="userComment in myCtrl.userComments"> +- * <b>{{userComment.name}}</b>: +- * <span ng-bind-html="userComment.htmlComment" class="htmlComment"></span> +- * <br> +- * </div> +- * </div> +- * </div> +- * </file> +- * +- * <file name="script.js"> +- * angular.module('mySceApp', ['ngSanitize']) +- * .controller('AppController', ['$http', '$templateCache', '$sce', +- * function($http, $templateCache, $sce) { +- * var self = this; +- * $http.get("test_data.json", {cache: $templateCache}).success(function(userComments) { +- * self.userComments = userComments; +- * }); +- * self.explicitlyTrustedHtml = $sce.trustAsHtml( +- * '<span onmouseover="this.textContent="Explicitly trusted HTML bypasses ' + +- * 'sanitization."">Hover over this text.</span>'); +- * }]); +- * </file> +- * +- * <file name="test_data.json"> +- * [ +- * { "name": "Alice", +- * "htmlComment": +- * "<span onmouseover='this.textContent=\"PWN3D!\"'>Is <i>anyone</i> reading this?</span>" +- * }, +- * { "name": "Bob", +- * "htmlComment": "<i>Yes!</i> Am I the only other one?" +- * } +- * ] +- * </file> +- * +- * <file name="protractor.js" type="protractor"> +- * describe('SCE doc demo', function() { +- * it('should sanitize untrusted values', function() { +- * expect(element.all(by.css('.htmlComment')).first().getInnerHtml()) +- * .toBe('<span>Is <i>anyone</i> reading this?</span>'); +- * }); +- * +- * it('should NOT sanitize explicitly trusted values', function() { +- * expect(element(by.id('explicitlyTrustedHtml')).getInnerHtml()).toBe( +- * '<span onmouseover="this.textContent="Explicitly trusted HTML bypasses ' + +- * 'sanitization."">Hover over this text.</span>'); +- * }); +- * }); +- * </file> +- * </example> +- * +- * +- * +- * ## Can I disable SCE completely? +- * +- * Yes, you can. However, this is strongly discouraged. SCE gives you a lot of security benefits +- * for little coding overhead. It will be much harder to take an SCE disabled application and +- * either secure it on your own or enable SCE at a later stage. It might make sense to disable SCE +- * for cases where you have a lot of existing code that was written before SCE was introduced and +- * you're migrating them a module at a time. +- * +- * That said, here's how you can completely disable SCE: +- * +- * ``` +- * angular.module('myAppWithSceDisabledmyApp', []).config(function($sceProvider) { +- * // Completely disable SCE. For demonstration purposes only! +- * // Do not use in new projects. +- * $sceProvider.enabled(false); +- * }); +- * ``` +- * +- */ +-/* jshint maxlen: 100 */ +- +-function $SceProvider() { +- var enabled = true; +- +- /** +- * @ngdoc method +- * @name $sceProvider#enabled +- * @kind function +- * +- * @param {boolean=} value If provided, then enables/disables SCE. +- * @return {boolean} true if SCE is enabled, false otherwise. +- * +- * @description +- * Enables/disables SCE and returns the current value. +- */ +- this.enabled = function(value) { +- if (arguments.length) { +- enabled = !!value; +- } +- return enabled; +- }; +- +- +- /* Design notes on the default implementation for SCE. +- * +- * The API contract for the SCE delegate +- * ------------------------------------- +- * The SCE delegate object must provide the following 3 methods: +- * +- * - trustAs(contextEnum, value) +- * This method is used to tell the SCE service that the provided value is OK to use in the +- * contexts specified by contextEnum. It must return an object that will be accepted by +- * getTrusted() for a compatible contextEnum and return this value. +- * +- * - valueOf(value) +- * For values that were not produced by trustAs(), return them as is. For values that were +- * produced by trustAs(), return the corresponding input value to trustAs. Basically, if +- * trustAs is wrapping the given values into some type, this operation unwraps it when given +- * such a value. +- * +- * - getTrusted(contextEnum, value) +- * This function should return the a value that is safe to use in the context specified by +- * contextEnum or throw and exception otherwise. +- * +- * NOTE: This contract deliberately does NOT state that values returned by trustAs() must be +- * opaque or wrapped in some holder object. That happens to be an implementation detail. For +- * instance, an implementation could maintain a registry of all trusted objects by context. In +- * such a case, trustAs() would return the same object that was passed in. getTrusted() would +- * return the same object passed in if it was found in the registry under a compatible context or +- * throw an exception otherwise. An implementation might only wrap values some of the time based +- * on some criteria. getTrusted() might return a value and not throw an exception for special +- * constants or objects even if not wrapped. All such implementations fulfill this contract. +- * +- * +- * A note on the inheritance model for SCE contexts +- * ------------------------------------------------ +- * I've used inheritance and made RESOURCE_URL wrapped types a subtype of URL wrapped types. This +- * is purely an implementation details. +- * +- * The contract is simply this: +- * +- * getTrusted($sce.RESOURCE_URL, value) succeeding implies that getTrusted($sce.URL, value) +- * will also succeed. +- * +- * Inheritance happens to capture this in a natural way. In some future, we +- * may not use inheritance anymore. That is OK because no code outside of +- * sce.js and sceSpecs.js would need to be aware of this detail. +- */ +- +- this.$get = ['$parse', '$sceDelegate', function( +- $parse, $sceDelegate) { +- // Prereq: Ensure that we're not running in IE<11 quirks mode. In that mode, IE < 11 allow +- // the "expression(javascript expression)" syntax which is insecure. +- if (enabled && msie < 8) { +- throw $sceMinErr('iequirks', +- 'Strict Contextual Escaping does not support Internet Explorer version < 11 in quirks ' + +- 'mode. You can fix this by adding the text <!doctype html> to the top of your HTML ' + +- 'document. See http://docs.angularjs.org/api/ng.$sce for more information.'); +- } +- +- var sce = shallowCopy(SCE_CONTEXTS); +- +- /** +- * @ngdoc method +- * @name $sce#isEnabled +- * @kind function +- * +- * @return {Boolean} true if SCE is enabled, false otherwise. If you want to set the value, you +- * have to do it at module config time on {@link ng.$sceProvider $sceProvider}. +- * +- * @description +- * Returns a boolean indicating if SCE is enabled. +- */ +- sce.isEnabled = function() { +- return enabled; +- }; +- sce.trustAs = $sceDelegate.trustAs; +- sce.getTrusted = $sceDelegate.getTrusted; +- sce.valueOf = $sceDelegate.valueOf; +- +- if (!enabled) { +- sce.trustAs = sce.getTrusted = function(type, value) { return value; }; +- sce.valueOf = identity; +- } +- +- /** +- * @ngdoc method +- * @name $sce#parseAs +- * +- * @description +- * Converts Angular {@link guide/expression expression} into a function. This is like {@link +- * ng.$parse $parse} and is identical when the expression is a literal constant. Otherwise, it +- * wraps the expression in a call to {@link ng.$sce#getTrusted $sce.getTrusted(*type*, +- * *result*)} +- * +- * @param {string} type The kind of SCE context in which this result will be used. +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- sce.parseAs = function sceParseAs(type, expr) { +- var parsed = $parse(expr); +- if (parsed.literal && parsed.constant) { +- return parsed; +- } else { +- return $parse(expr, function(value) { +- return sce.getTrusted(type, value); +- }); +- } +- }; +- +- /** +- * @ngdoc method +- * @name $sce#trustAs +- * +- * @description +- * Delegates to {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}. As such, +- * returns an object that is trusted by angular for use in specified strict contextual +- * escaping contexts (such as ng-bind-html, ng-include, any src attribute +- * interpolation, any dom event binding attribute interpolation such as for onclick, etc.) +- * that uses the provided value. See * {@link ng.$sce $sce} for enabling strict contextual +- * escaping. +- * +- * @param {string} type The kind of context in which this value is safe for use. e.g. url, +- * resource_url, html, js and css. +- * @param {*} value The value that that should be considered trusted/safe. +- * @returns {*} A value that can be used to stand in for the provided `value` in places +- * where Angular expects a $sce.trustAs() return value. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#trustAsHtml +- * +- * @description +- * Shorthand method. `$sce.trustAsHtml(value)` → +- * {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.HTML, value)`} +- * +- * @param {*} value The value to trustAs. +- * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedHtml +- * $sce.getTrustedHtml(value)} to obtain the original value. (privileged directives +- * only accept expressions that are either literal constants or are the +- * return value of {@link ng.$sce#trustAs $sce.trustAs}.) +- */ +- +- /** +- * @ngdoc method +- * @name $sce#trustAsUrl +- * +- * @description +- * Shorthand method. `$sce.trustAsUrl(value)` → +- * {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.URL, value)`} +- * +- * @param {*} value The value to trustAs. +- * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedUrl +- * $sce.getTrustedUrl(value)} to obtain the original value. (privileged directives +- * only accept expressions that are either literal constants or are the +- * return value of {@link ng.$sce#trustAs $sce.trustAs}.) +- */ +- +- /** +- * @ngdoc method +- * @name $sce#trustAsResourceUrl +- * +- * @description +- * Shorthand method. `$sce.trustAsResourceUrl(value)` → +- * {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.RESOURCE_URL, value)`} +- * +- * @param {*} value The value to trustAs. +- * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedResourceUrl +- * $sce.getTrustedResourceUrl(value)} to obtain the original value. (privileged directives +- * only accept expressions that are either literal constants or are the return +- * value of {@link ng.$sce#trustAs $sce.trustAs}.) +- */ +- +- /** +- * @ngdoc method +- * @name $sce#trustAsJs +- * +- * @description +- * Shorthand method. `$sce.trustAsJs(value)` → +- * {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.JS, value)`} +- * +- * @param {*} value The value to trustAs. +- * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedJs +- * $sce.getTrustedJs(value)} to obtain the original value. (privileged directives +- * only accept expressions that are either literal constants or are the +- * return value of {@link ng.$sce#trustAs $sce.trustAs}.) +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrusted +- * +- * @description +- * Delegates to {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted`}. As such, +- * takes the result of a {@link ng.$sce#trustAs `$sce.trustAs`}() call and returns the +- * originally supplied value if the queried context type is a supertype of the created type. +- * If this condition isn't satisfied, throws an exception. +- * +- * @param {string} type The kind of context in which this value is to be used. +- * @param {*} maybeTrusted The result of a prior {@link ng.$sce#trustAs `$sce.trustAs`} +- * call. +- * @returns {*} The value the was originally provided to +- * {@link ng.$sce#trustAs `$sce.trustAs`} if valid in this context. +- * Otherwise, throws an exception. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrustedHtml +- * +- * @description +- * Shorthand method. `$sce.getTrustedHtml(value)` → +- * {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.HTML, value)`} +- * +- * @param {*} value The value to pass to `$sce.getTrusted`. +- * @returns {*} The return value of `$sce.getTrusted($sce.HTML, value)` +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrustedCss +- * +- * @description +- * Shorthand method. `$sce.getTrustedCss(value)` → +- * {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.CSS, value)`} +- * +- * @param {*} value The value to pass to `$sce.getTrusted`. +- * @returns {*} The return value of `$sce.getTrusted($sce.CSS, value)` +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrustedUrl +- * +- * @description +- * Shorthand method. `$sce.getTrustedUrl(value)` → +- * {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.URL, value)`} +- * +- * @param {*} value The value to pass to `$sce.getTrusted`. +- * @returns {*} The return value of `$sce.getTrusted($sce.URL, value)` +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrustedResourceUrl +- * +- * @description +- * Shorthand method. `$sce.getTrustedResourceUrl(value)` → +- * {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.RESOURCE_URL, value)`} +- * +- * @param {*} value The value to pass to `$sceDelegate.getTrusted`. +- * @returns {*} The return value of `$sce.getTrusted($sce.RESOURCE_URL, value)` +- */ +- +- /** +- * @ngdoc method +- * @name $sce#getTrustedJs +- * +- * @description +- * Shorthand method. `$sce.getTrustedJs(value)` → +- * {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.JS, value)`} +- * +- * @param {*} value The value to pass to `$sce.getTrusted`. +- * @returns {*} The return value of `$sce.getTrusted($sce.JS, value)` +- */ +- +- /** +- * @ngdoc method +- * @name $sce#parseAsHtml +- * +- * @description +- * Shorthand method. `$sce.parseAsHtml(expression string)` → +- * {@link ng.$sce#parseAs `$sce.parseAs($sce.HTML, value)`} +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#parseAsCss +- * +- * @description +- * Shorthand method. `$sce.parseAsCss(value)` → +- * {@link ng.$sce#parseAs `$sce.parseAs($sce.CSS, value)`} +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#parseAsUrl +- * +- * @description +- * Shorthand method. `$sce.parseAsUrl(value)` → +- * {@link ng.$sce#parseAs `$sce.parseAs($sce.URL, value)`} +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#parseAsResourceUrl +- * +- * @description +- * Shorthand method. `$sce.parseAsResourceUrl(value)` → +- * {@link ng.$sce#parseAs `$sce.parseAs($sce.RESOURCE_URL, value)`} +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- +- /** +- * @ngdoc method +- * @name $sce#parseAsJs +- * +- * @description +- * Shorthand method. `$sce.parseAsJs(value)` → +- * {@link ng.$sce#parseAs `$sce.parseAs($sce.JS, value)`} +- * +- * @param {string} expression String expression to compile. +- * @returns {function(context, locals)} a function which represents the compiled expression: +- * +- * * `context` – `{object}` – an object against which any expressions embedded in the strings +- * are evaluated against (typically a scope object). +- * * `locals` – `{object=}` – local variables context object, useful for overriding values in +- * `context`. +- */ +- +- // Shorthand delegations. +- var parse = sce.parseAs, +- getTrusted = sce.getTrusted, +- trustAs = sce.trustAs; +- +- forEach(SCE_CONTEXTS, function(enumValue, name) { +- var lName = lowercase(name); +- sce[camelCase("parse_as_" + lName)] = function(expr) { +- return parse(enumValue, expr); +- }; +- sce[camelCase("get_trusted_" + lName)] = function(value) { +- return getTrusted(enumValue, value); +- }; +- sce[camelCase("trust_as_" + lName)] = function(value) { +- return trustAs(enumValue, value); +- }; +- }); +- +- return sce; +- }]; +-} +- +-/** +- * !!! This is an undocumented "private" service !!! +- * +- * @name $sniffer +- * @requires $window +- * @requires $document +- * +- * @property {boolean} history Does the browser support html5 history api ? +- * @property {boolean} transitions Does the browser support CSS transition events ? +- * @property {boolean} animations Does the browser support CSS animation events ? +- * +- * @description +- * This is very simple implementation of testing browser's features. +- */ +-function $SnifferProvider() { +- this.$get = ['$window', '$document', function($window, $document) { +- var eventSupport = {}, +- android = +- int((/android (\d+)/.exec(lowercase(($window.navigator || {}).userAgent)) || [])[1]), +- boxee = /Boxee/i.test(($window.navigator || {}).userAgent), +- document = $document[0] || {}, +- vendorPrefix, +- vendorRegex = /^(Moz|webkit|ms)(?=[A-Z])/, +- bodyStyle = document.body && document.body.style, +- transitions = false, +- animations = false, +- match; +- +- if (bodyStyle) { +- for (var prop in bodyStyle) { +- if (match = vendorRegex.exec(prop)) { +- vendorPrefix = match[0]; +- vendorPrefix = vendorPrefix.substr(0, 1).toUpperCase() + vendorPrefix.substr(1); +- break; +- } +- } +- +- if (!vendorPrefix) { +- vendorPrefix = ('WebkitOpacity' in bodyStyle) && 'webkit'; +- } +- +- transitions = !!(('transition' in bodyStyle) || (vendorPrefix + 'Transition' in bodyStyle)); +- animations = !!(('animation' in bodyStyle) || (vendorPrefix + 'Animation' in bodyStyle)); +- +- if (android && (!transitions || !animations)) { +- transitions = isString(document.body.style.webkitTransition); +- animations = isString(document.body.style.webkitAnimation); +- } +- } +- +- +- return { +- // Android has history.pushState, but it does not update location correctly +- // so let's not use the history API at all. +- // http://code.google.com/p/android/issues/detail?id=17471 +- // https://github.com/angular/angular.js/issues/904 +- +- // older webkit browser (533.9) on Boxee box has exactly the same problem as Android has +- // so let's not use the history API also +- // We are purposefully using `!(android < 4)` to cover the case when `android` is undefined +- // jshint -W018 +- history: !!($window.history && $window.history.pushState && !(android < 4) && !boxee), +- // jshint +W018 +- hasEvent: function(event) { +- // IE9 implements 'input' event it's so fubared that we rather pretend that it doesn't have +- // it. In particular the event is not fired when backspace or delete key are pressed or +- // when cut operation is performed. +- // IE10+ implements 'input' event but it erroneously fires under various situations, +- // e.g. when placeholder changes, or a form is focused. +- if (event === 'input' && msie <= 11) return false; +- +- if (isUndefined(eventSupport[event])) { +- var divElm = document.createElement('div'); +- eventSupport[event] = 'on' + event in divElm; +- } +- +- return eventSupport[event]; +- }, +- csp: csp(), +- vendorPrefix: vendorPrefix, +- transitions: transitions, +- animations: animations, +- android: android +- }; +- }]; +-} +- +-var $compileMinErr = minErr('$compile'); +- +-/** +- * @ngdoc service +- * @name $templateRequest +- * +- * @description +- * The `$templateRequest` service downloads the provided template using `$http` and, upon success, +- * stores the contents inside of `$templateCache`. If the HTTP request fails or the response data +- * of the HTTP request is empty, a `$compile` error will be thrown (the exception can be thwarted +- * by setting the 2nd parameter of the function to true). +- * +- * @param {string} tpl The HTTP request template URL +- * @param {boolean=} ignoreRequestError Whether or not to ignore the exception when the request fails or the template is empty +- * +- * @return {Promise} the HTTP Promise for the given. +- * +- * @property {number} totalPendingRequests total amount of pending template requests being downloaded. +- */ +-function $TemplateRequestProvider() { +- this.$get = ['$templateCache', '$http', '$q', function($templateCache, $http, $q) { +- function handleRequestFn(tpl, ignoreRequestError) { +- handleRequestFn.totalPendingRequests++; +- +- var transformResponse = $http.defaults && $http.defaults.transformResponse; +- +- if (isArray(transformResponse)) { +- transformResponse = transformResponse.filter(function(transformer) { +- return transformer !== defaultHttpResponseTransform; +- }); +- } else if (transformResponse === defaultHttpResponseTransform) { +- transformResponse = null; +- } +- +- var httpOptions = { +- cache: $templateCache, +- transformResponse: transformResponse +- }; +- +- return $http.get(tpl, httpOptions) +- ['finally'](function() { +- handleRequestFn.totalPendingRequests--; +- }) +- .then(function(response) { +- return response.data; +- }, handleError); +- +- function handleError(resp) { +- if (!ignoreRequestError) { +- throw $compileMinErr('tpload', 'Failed to load template: {0}', tpl); +- } +- return $q.reject(resp); +- } +- } +- +- handleRequestFn.totalPendingRequests = 0; +- +- return handleRequestFn; +- }]; +-} +- +-function $$TestabilityProvider() { +- this.$get = ['$rootScope', '$browser', '$location', +- function($rootScope, $browser, $location) { +- +- /** +- * @name $testability +- * +- * @description +- * The private $$testability service provides a collection of methods for use when debugging +- * or by automated test and debugging tools. +- */ +- var testability = {}; +- +- /** +- * @name $$testability#findBindings +- * +- * @description +- * Returns an array of elements that are bound (via ng-bind or {{}}) +- * to expressions matching the input. +- * +- * @param {Element} element The element root to search from. +- * @param {string} expression The binding expression to match. +- * @param {boolean} opt_exactMatch If true, only returns exact matches +- * for the expression. Filters and whitespace are ignored. +- */ +- testability.findBindings = function(element, expression, opt_exactMatch) { +- var bindings = element.getElementsByClassName('ng-binding'); +- var matches = []; +- forEach(bindings, function(binding) { +- var dataBinding = angular.element(binding).data('$binding'); +- if (dataBinding) { +- forEach(dataBinding, function(bindingName) { +- if (opt_exactMatch) { +- var matcher = new RegExp('(^|\\s)' + escapeForRegexp(expression) + '(\\s|\\||$)'); +- if (matcher.test(bindingName)) { +- matches.push(binding); +- } +- } else { +- if (bindingName.indexOf(expression) != -1) { +- matches.push(binding); +- } +- } +- }); +- } +- }); +- return matches; +- }; +- +- /** +- * @name $$testability#findModels +- * +- * @description +- * Returns an array of elements that are two-way found via ng-model to +- * expressions matching the input. +- * +- * @param {Element} element The element root to search from. +- * @param {string} expression The model expression to match. +- * @param {boolean} opt_exactMatch If true, only returns exact matches +- * for the expression. +- */ +- testability.findModels = function(element, expression, opt_exactMatch) { +- var prefixes = ['ng-', 'data-ng-', 'ng\\:']; +- for (var p = 0; p < prefixes.length; ++p) { +- var attributeEquals = opt_exactMatch ? '=' : '*='; +- var selector = '[' + prefixes[p] + 'model' + attributeEquals + '"' + expression + '"]'; +- var elements = element.querySelectorAll(selector); +- if (elements.length) { +- return elements; +- } +- } +- }; +- +- /** +- * @name $$testability#getLocation +- * +- * @description +- * Shortcut for getting the location in a browser agnostic way. Returns +- * the path, search, and hash. (e.g. /path?a=b#hash) +- */ +- testability.getLocation = function() { +- return $location.url(); +- }; +- +- /** +- * @name $$testability#setLocation +- * +- * @description +- * Shortcut for navigating to a location without doing a full page reload. +- * +- * @param {string} url The location url (path, search and hash, +- * e.g. /path?a=b#hash) to go to. +- */ +- testability.setLocation = function(url) { +- if (url !== $location.url()) { +- $location.url(url); +- $rootScope.$digest(); +- } +- }; +- +- /** +- * @name $$testability#whenStable +- * +- * @description +- * Calls the callback when $timeout and $http requests are completed. +- * +- * @param {function} callback +- */ +- testability.whenStable = function(callback) { +- $browser.notifyWhenNoOutstandingRequests(callback); +- }; +- +- return testability; +- }]; +-} +- +-function $TimeoutProvider() { +- this.$get = ['$rootScope', '$browser', '$q', '$$q', '$exceptionHandler', +- function($rootScope, $browser, $q, $$q, $exceptionHandler) { +- var deferreds = {}; +- +- +- /** +- * @ngdoc service +- * @name $timeout +- * +- * @description +- * Angular's wrapper for `window.setTimeout`. The `fn` function is wrapped into a try/catch +- * block and delegates any exceptions to +- * {@link ng.$exceptionHandler $exceptionHandler} service. +- * +- * The return value of registering a timeout function is a promise, which will be resolved when +- * the timeout is reached and the timeout function is executed. +- * +- * To cancel a timeout request, call `$timeout.cancel(promise)`. +- * +- * In tests you can use {@link ngMock.$timeout `$timeout.flush()`} to +- * synchronously flush the queue of deferred functions. +- * +- * @param {function()} fn A function, whose execution should be delayed. +- * @param {number=} [delay=0] Delay in milliseconds. +- * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise +- * will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block. +- * @returns {Promise} Promise that will be resolved when the timeout is reached. The value this +- * promise will be resolved with is the return value of the `fn` function. +- * +- */ +- function timeout(fn, delay, invokeApply) { +- var skipApply = (isDefined(invokeApply) && !invokeApply), +- deferred = (skipApply ? $$q : $q).defer(), +- promise = deferred.promise, +- timeoutId; +- +- timeoutId = $browser.defer(function() { +- try { +- deferred.resolve(fn()); +- } catch (e) { +- deferred.reject(e); +- $exceptionHandler(e); +- } +- finally { +- delete deferreds[promise.$$timeoutId]; +- } +- +- if (!skipApply) $rootScope.$apply(); +- }, delay); +- +- promise.$$timeoutId = timeoutId; +- deferreds[timeoutId] = deferred; +- +- return promise; +- } +- +- +- /** +- * @ngdoc method +- * @name $timeout#cancel +- * +- * @description +- * Cancels a task associated with the `promise`. As a result of this, the promise will be +- * resolved with a rejection. +- * +- * @param {Promise=} promise Promise returned by the `$timeout` function. +- * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully +- * canceled. +- */ +- timeout.cancel = function(promise) { +- if (promise && promise.$$timeoutId in deferreds) { +- deferreds[promise.$$timeoutId].reject('canceled'); +- delete deferreds[promise.$$timeoutId]; +- return $browser.defer.cancel(promise.$$timeoutId); +- } +- return false; +- }; +- +- return timeout; +- }]; +-} +- +-// NOTE: The usage of window and document instead of $window and $document here is +-// deliberate. This service depends on the specific behavior of anchor nodes created by the +-// browser (resolving and parsing URLs) that is unlikely to be provided by mock objects and +-// cause us to break tests. In addition, when the browser resolves a URL for XHR, it +-// doesn't know about mocked locations and resolves URLs to the real document - which is +-// exactly the behavior needed here. There is little value is mocking these out for this +-// service. +-var urlParsingNode = document.createElement("a"); +-var originUrl = urlResolve(window.location.href); +- +- +-/** +- * +- * Implementation Notes for non-IE browsers +- * ---------------------------------------- +- * Assigning a URL to the href property of an anchor DOM node, even one attached to the DOM, +- * results both in the normalizing and parsing of the URL. Normalizing means that a relative +- * URL will be resolved into an absolute URL in the context of the application document. +- * Parsing means that the anchor node's host, hostname, protocol, port, pathname and related +- * properties are all populated to reflect the normalized URL. This approach has wide +- * compatibility - Safari 1+, Mozilla 1+, Opera 7+,e etc. See +- * http://www.aptana.com/reference/html/api/HTMLAnchorElement.html +- * +- * Implementation Notes for IE +- * --------------------------- +- * IE >= 8 and <= 10 normalizes the URL when assigned to the anchor node similar to the other +- * browsers. However, the parsed components will not be set if the URL assigned did not specify +- * them. (e.g. if you assign a.href = "foo", then a.protocol, a.host, etc. will be empty.) We +- * work around that by performing the parsing in a 2nd step by taking a previously normalized +- * URL (e.g. by assigning to a.href) and assigning it a.href again. This correctly populates the +- * properties such as protocol, hostname, port, etc. +- * +- * IE7 does not normalize the URL when assigned to an anchor node. (Apparently, it does, if one +- * uses the inner HTML approach to assign the URL as part of an HTML snippet - +- * http://stackoverflow.com/a/472729) However, setting img[src] does normalize the URL. +- * Unfortunately, setting img[src] to something like "javascript:foo" on IE throws an exception. +- * Since the primary usage for normalizing URLs is to sanitize such URLs, we can't use that +- * method and IE < 8 is unsupported. +- * +- * References: +- * http://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement +- * http://www.aptana.com/reference/html/api/HTMLAnchorElement.html +- * http://url.spec.whatwg.org/#urlutils +- * https://github.com/angular/angular.js/pull/2902 +- * http://james.padolsey.com/javascript/parsing-urls-with-the-dom/ +- * +- * @kind function +- * @param {string} url The URL to be parsed. +- * @description Normalizes and parses a URL. +- * @returns {object} Returns the normalized URL as a dictionary. +- * +- * | member name | Description | +- * |---------------|----------------| +- * | href | A normalized version of the provided URL if it was not an absolute URL | +- * | protocol | The protocol including the trailing colon | +- * | host | The host and port (if the port is non-default) of the normalizedUrl | +- * | search | The search params, minus the question mark | +- * | hash | The hash string, minus the hash symbol +- * | hostname | The hostname +- * | port | The port, without ":" +- * | pathname | The pathname, beginning with "/" +- * +- */ +-function urlResolve(url) { +- var href = url; +- +- if (msie) { +- // Normalize before parse. Refer Implementation Notes on why this is +- // done in two steps on IE. +- urlParsingNode.setAttribute("href", href); +- href = urlParsingNode.href; +- } +- +- urlParsingNode.setAttribute('href', href); +- +- // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils +- return { +- href: urlParsingNode.href, +- protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', +- host: urlParsingNode.host, +- search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', +- hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', +- hostname: urlParsingNode.hostname, +- port: urlParsingNode.port, +- pathname: (urlParsingNode.pathname.charAt(0) === '/') +- ? urlParsingNode.pathname +- : '/' + urlParsingNode.pathname +- }; +-} +- +-/** +- * Parse a request URL and determine whether this is a same-origin request as the application document. +- * +- * @param {string|object} requestUrl The url of the request as a string that will be resolved +- * or a parsed URL object. +- * @returns {boolean} Whether the request is for the same origin as the application document. +- */ +-function urlIsSameOrigin(requestUrl) { +- var parsed = (isString(requestUrl)) ? urlResolve(requestUrl) : requestUrl; +- return (parsed.protocol === originUrl.protocol && +- parsed.host === originUrl.host); +-} +- +-/** +- * @ngdoc service +- * @name $window +- * +- * @description +- * A reference to the browser's `window` object. While `window` +- * is globally available in JavaScript, it causes testability problems, because +- * it is a global variable. In angular we always refer to it through the +- * `$window` service, so it may be overridden, removed or mocked for testing. +- * +- * Expressions, like the one defined for the `ngClick` directive in the example +- * below, are evaluated with respect to the current scope. Therefore, there is +- * no risk of inadvertently coding in a dependency on a global value in such an +- * expression. +- * +- * @example +- <example module="windowExample"> +- <file name="index.html"> +- <script> +- angular.module('windowExample', []) +- .controller('ExampleController', ['$scope', '$window', function($scope, $window) { +- $scope.greeting = 'Hello, World!'; +- $scope.doGreeting = function(greeting) { +- $window.alert(greeting); +- }; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <input type="text" ng-model="greeting" /> +- <button ng-click="doGreeting(greeting)">ALERT</button> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should display the greeting in the input box', function() { +- element(by.model('greeting')).sendKeys('Hello, E2E Tests'); +- // If we click the button it will block the test runner +- // element(':button').click(); +- }); +- </file> +- </example> +- */ +-function $WindowProvider() { +- this.$get = valueFn(window); +-} +- +-/* global currencyFilter: true, +- dateFilter: true, +- filterFilter: true, +- jsonFilter: true, +- limitToFilter: true, +- lowercaseFilter: true, +- numberFilter: true, +- orderByFilter: true, +- uppercaseFilter: true, +- */ +- +-/** +- * @ngdoc provider +- * @name $filterProvider +- * @description +- * +- * Filters are just functions which transform input to an output. However filters need to be +- * Dependency Injected. To achieve this a filter definition consists of a factory function which is +- * annotated with dependencies and is responsible for creating a filter function. +- * +- * ```js +- * // Filter registration +- * function MyModule($provide, $filterProvider) { +- * // create a service to demonstrate injection (not always needed) +- * $provide.value('greet', function(name){ +- * return 'Hello ' + name + '!'; +- * }); +- * +- * // register a filter factory which uses the +- * // greet service to demonstrate DI. +- * $filterProvider.register('greet', function(greet){ +- * // return the filter function which uses the greet service +- * // to generate salutation +- * return function(text) { +- * // filters need to be forgiving so check input validity +- * return text && greet(text) || text; +- * }; +- * }); +- * } +- * ``` +- * +- * The filter function is registered with the `$injector` under the filter name suffix with +- * `Filter`. +- * +- * ```js +- * it('should be the same instance', inject( +- * function($filterProvider) { +- * $filterProvider.register('reverse', function(){ +- * return ...; +- * }); +- * }, +- * function($filter, reverseFilter) { +- * expect($filter('reverse')).toBe(reverseFilter); +- * }); +- * ``` +- * +- * +- * For more information about how angular filters work, and how to create your own filters, see +- * {@link guide/filter Filters} in the Angular Developer Guide. +- */ +- +-/** +- * @ngdoc service +- * @name $filter +- * @kind function +- * @description +- * Filters are used for formatting data displayed to the user. +- * +- * The general syntax in templates is as follows: +- * +- * {{ expression [| filter_name[:parameter_value] ... ] }} +- * +- * @param {String} name Name of the filter function to retrieve +- * @return {Function} the filter function +- * @example +- <example name="$filter" module="filterExample"> +- <file name="index.html"> +- <div ng-controller="MainCtrl"> +- <h3>{{ originalText }}</h3> +- <h3>{{ filteredText }}</h3> +- </div> +- </file> +- +- <file name="script.js"> +- angular.module('filterExample', []) +- .controller('MainCtrl', function($scope, $filter) { +- $scope.originalText = 'hello'; +- $scope.filteredText = $filter('uppercase')($scope.originalText); +- }); +- </file> +- </example> +- */ +-$FilterProvider.$inject = ['$provide']; +-function $FilterProvider($provide) { +- var suffix = 'Filter'; +- +- /** +- * @ngdoc method +- * @name $filterProvider#register +- * @param {string|Object} name Name of the filter function, or an object map of filters where +- * the keys are the filter names and the values are the filter factories. +- * @returns {Object} Registered filter instance, or if a map of filters was provided then a map +- * of the registered filter instances. +- */ +- function register(name, factory) { +- if (isObject(name)) { +- var filters = {}; +- forEach(name, function(filter, key) { +- filters[key] = register(key, filter); +- }); +- return filters; +- } else { +- return $provide.factory(name + suffix, factory); +- } +- } +- this.register = register; +- +- this.$get = ['$injector', function($injector) { +- return function(name) { +- return $injector.get(name + suffix); +- }; +- }]; +- +- //////////////////////////////////////// +- +- /* global +- currencyFilter: false, +- dateFilter: false, +- filterFilter: false, +- jsonFilter: false, +- limitToFilter: false, +- lowercaseFilter: false, +- numberFilter: false, +- orderByFilter: false, +- uppercaseFilter: false, +- */ +- +- register('currency', currencyFilter); +- register('date', dateFilter); +- register('filter', filterFilter); +- register('json', jsonFilter); +- register('limitTo', limitToFilter); +- register('lowercase', lowercaseFilter); +- register('number', numberFilter); +- register('orderBy', orderByFilter); +- register('uppercase', uppercaseFilter); +-} +- +-/** +- * @ngdoc filter +- * @name filter +- * @kind function +- * +- * @description +- * Selects a subset of items from `array` and returns it as a new array. +- * +- * @param {Array} array The source array. +- * @param {string|Object|function()} expression The predicate to be used for selecting items from +- * `array`. +- * +- * Can be one of: +- * +- * - `string`: The string is used for matching against the contents of the `array`. All strings or +- * objects with string properties in `array` that match this string will be returned. This also +- * applies to nested object properties. +- * The predicate can be negated by prefixing the string with `!`. +- * +- * - `Object`: A pattern object can be used to filter specific properties on objects contained +- * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items +- * which have property `name` containing "M" and property `phone` containing "1". A special +- * property name `$` can be used (as in `{$:"text"}`) to accept a match against any +- * property of the object or its nested object properties. That's equivalent to the simple +- * substring match with a `string` as described above. The predicate can be negated by prefixing +- * the string with `!`. +- * For example `{name: "!M"}` predicate will return an array of items which have property `name` +- * not containing "M". +- * +- * Note that a named property will match properties on the same level only, while the special +- * `$` property will match properties on the same level or deeper. E.g. an array item like +- * `{name: {first: 'John', last: 'Doe'}}` will **not** be matched by `{name: 'John'}`, but +- * **will** be matched by `{$: 'John'}`. +- * +- * - `function(value, index)`: A predicate function can be used to write arbitrary filters. The +- * function is called for each element of `array`. The final result is an array of those +- * elements that the predicate returned true for. +- * +- * @param {function(actual, expected)|true|undefined} comparator Comparator which is used in +- * determining if the expected value (from the filter expression) and actual value (from +- * the object in the array) should be considered a match. +- * +- * Can be one of: +- * +- * - `function(actual, expected)`: +- * The function will be given the object value and the predicate value to compare and +- * should return true if both values should be considered equal. +- * +- * - `true`: A shorthand for `function(actual, expected) { return angular.equals(actual, expected)}`. +- * This is essentially strict comparison of expected and actual. +- * +- * - `false|undefined`: A short hand for a function which will look for a substring match in case +- * insensitive way. +- * +- * @example +- <example> +- <file name="index.html"> +- <div ng-init="friends = [{name:'John', phone:'555-1276'}, +- {name:'Mary', phone:'800-BIG-MARY'}, +- {name:'Mike', phone:'555-4321'}, +- {name:'Adam', phone:'555-5678'}, +- {name:'Julie', phone:'555-8765'}, +- {name:'Juliette', phone:'555-5678'}]"></div> +- +- Search: <input ng-model="searchText"> +- <table id="searchTextResults"> +- <tr><th>Name</th><th>Phone</th></tr> +- <tr ng-repeat="friend in friends | filter:searchText"> +- <td>{{friend.name}}</td> +- <td>{{friend.phone}}</td> +- </tr> +- </table> +- <hr> +- Any: <input ng-model="search.$"> <br> +- Name only <input ng-model="search.name"><br> +- Phone only <input ng-model="search.phone"><br> +- Equality <input type="checkbox" ng-model="strict"><br> +- <table id="searchObjResults"> +- <tr><th>Name</th><th>Phone</th></tr> +- <tr ng-repeat="friendObj in friends | filter:search:strict"> +- <td>{{friendObj.name}}</td> +- <td>{{friendObj.phone}}</td> +- </tr> +- </table> +- </file> +- <file name="protractor.js" type="protractor"> +- var expectFriendNames = function(expectedNames, key) { +- element.all(by.repeater(key + ' in friends').column(key + '.name')).then(function(arr) { +- arr.forEach(function(wd, i) { +- expect(wd.getText()).toMatch(expectedNames[i]); +- }); +- }); +- }; +- +- it('should search across all fields when filtering with a string', function() { +- var searchText = element(by.model('searchText')); +- searchText.clear(); +- searchText.sendKeys('m'); +- expectFriendNames(['Mary', 'Mike', 'Adam'], 'friend'); +- +- searchText.clear(); +- searchText.sendKeys('76'); +- expectFriendNames(['John', 'Julie'], 'friend'); +- }); +- +- it('should search in specific fields when filtering with a predicate object', function() { +- var searchAny = element(by.model('search.$')); +- searchAny.clear(); +- searchAny.sendKeys('i'); +- expectFriendNames(['Mary', 'Mike', 'Julie', 'Juliette'], 'friendObj'); +- }); +- it('should use a equal comparison when comparator is true', function() { +- var searchName = element(by.model('search.name')); +- var strict = element(by.model('strict')); +- searchName.clear(); +- searchName.sendKeys('Julie'); +- strict.click(); +- expectFriendNames(['Julie'], 'friendObj'); +- }); +- </file> +- </example> +- */ +-function filterFilter() { +- return function(array, expression, comparator) { +- if (!isArray(array)) return array; +- +- var predicateFn; +- var matchAgainstAnyProp; +- +- switch (typeof expression) { +- case 'function': +- predicateFn = expression; +- break; +- case 'boolean': +- case 'number': +- case 'string': +- matchAgainstAnyProp = true; +- //jshint -W086 +- case 'object': +- //jshint +W086 +- predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp); +- break; +- default: +- return array; +- } +- +- return array.filter(predicateFn); +- }; +-} +- +-// Helper functions for `filterFilter` +-function createPredicateFn(expression, comparator, matchAgainstAnyProp) { +- var shouldMatchPrimitives = isObject(expression) && ('$' in expression); +- var predicateFn; +- +- if (comparator === true) { +- comparator = equals; +- } else if (!isFunction(comparator)) { +- comparator = function(actual, expected) { +- if (isObject(actual) || isObject(expected)) { +- // Prevent an object to be considered equal to a string like `'[object'` +- return false; +- } +- +- actual = lowercase('' + actual); +- expected = lowercase('' + expected); +- return actual.indexOf(expected) !== -1; +- }; +- } +- +- predicateFn = function(item) { +- if (shouldMatchPrimitives && !isObject(item)) { +- return deepCompare(item, expression.$, comparator, false); +- } +- return deepCompare(item, expression, comparator, matchAgainstAnyProp); +- }; +- +- return predicateFn; +-} +- +-function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) { +- var actualType = (actual !== null) ? typeof actual : 'null'; +- var expectedType = (expected !== null) ? typeof expected : 'null'; +- +- if ((expectedType === 'string') && (expected.charAt(0) === '!')) { +- return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp); +- } else if (isArray(actual)) { +- // In case `actual` is an array, consider it a match +- // if ANY of it's items matches `expected` +- return actual.some(function(item) { +- return deepCompare(item, expected, comparator, matchAgainstAnyProp); +- }); +- } +- +- switch (actualType) { +- case 'object': +- var key; +- if (matchAgainstAnyProp) { +- for (key in actual) { +- if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) { +- return true; +- } +- } +- return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false); +- } else if (expectedType === 'object') { +- for (key in expected) { +- var expectedVal = expected[key]; +- if (isFunction(expectedVal) || isUndefined(expectedVal)) { +- continue; +- } +- +- var matchAnyProperty = key === '$'; +- var actualVal = matchAnyProperty ? actual : actual[key]; +- if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) { +- return false; +- } +- } +- return true; +- } else { +- return comparator(actual, expected); +- } +- break; +- case 'function': +- return false; +- default: +- return comparator(actual, expected); +- } +-} +- +-/** +- * @ngdoc filter +- * @name currency +- * @kind function +- * +- * @description +- * Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default +- * symbol for current locale is used. +- * +- * @param {number} amount Input to filter. +- * @param {string=} symbol Currency symbol or identifier to be displayed. +- * @param {number=} fractionSize Number of decimal places to round the amount to, defaults to default max fraction size for current locale +- * @returns {string} Formatted number. +- * +- * +- * @example +- <example module="currencyExample"> +- <file name="index.html"> +- <script> +- angular.module('currencyExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.amount = 1234.56; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <input type="number" ng-model="amount"> <br> +- default currency symbol ($): <span id="currency-default">{{amount | currency}}</span><br> +- custom currency identifier (USD$): <span id="currency-custom">{{amount | currency:"USD$"}}</span> +- no fractions (0): <span id="currency-no-fractions">{{amount | currency:"USD$":0}}</span> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should init with 1234.56', function() { +- expect(element(by.id('currency-default')).getText()).toBe('$1,234.56'); +- expect(element(by.id('currency-custom')).getText()).toBe('USD$1,234.56'); +- expect(element(by.id('currency-no-fractions')).getText()).toBe('USD$1,235'); +- }); +- it('should update', function() { +- if (browser.params.browser == 'safari') { +- // Safari does not understand the minus key. See +- // https://github.com/angular/protractor/issues/481 +- return; +- } +- element(by.model('amount')).clear(); +- element(by.model('amount')).sendKeys('-1234'); +- expect(element(by.id('currency-default')).getText()).toBe('($1,234.00)'); +- expect(element(by.id('currency-custom')).getText()).toBe('(USD$1,234.00)'); +- expect(element(by.id('currency-no-fractions')).getText()).toBe('(USD$1,234)'); +- }); +- </file> +- </example> +- */ +-currencyFilter.$inject = ['$locale']; +-function currencyFilter($locale) { +- var formats = $locale.NUMBER_FORMATS; +- return function(amount, currencySymbol, fractionSize) { +- if (isUndefined(currencySymbol)) { +- currencySymbol = formats.CURRENCY_SYM; +- } +- +- if (isUndefined(fractionSize)) { +- fractionSize = formats.PATTERNS[1].maxFrac; +- } +- +- // if null or undefined pass it through +- return (amount == null) +- ? amount +- : formatNumber(amount, formats.PATTERNS[1], formats.GROUP_SEP, formats.DECIMAL_SEP, fractionSize). +- replace(/\u00A4/g, currencySymbol); +- }; +-} +- +-/** +- * @ngdoc filter +- * @name number +- * @kind function +- * +- * @description +- * Formats a number as text. +- * +- * If the input is not a number an empty string is returned. +- * +- * @param {number|string} number Number to format. +- * @param {(number|string)=} fractionSize Number of decimal places to round the number to. +- * If this is not provided then the fraction size is computed from the current locale's number +- * formatting pattern. In the case of the default locale, it will be 3. +- * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit. +- * +- * @example +- <example module="numberFilterExample"> +- <file name="index.html"> +- <script> +- angular.module('numberFilterExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.val = 1234.56789; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- Enter number: <input ng-model='val'><br> +- Default formatting: <span id='number-default'>{{val | number}}</span><br> +- No fractions: <span>{{val | number:0}}</span><br> +- Negative number: <span>{{-val | number:4}}</span> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should format numbers', function() { +- expect(element(by.id('number-default')).getText()).toBe('1,234.568'); +- expect(element(by.binding('val | number:0')).getText()).toBe('1,235'); +- expect(element(by.binding('-val | number:4')).getText()).toBe('-1,234.5679'); +- }); +- +- it('should update', function() { +- element(by.model('val')).clear(); +- element(by.model('val')).sendKeys('3374.333'); +- expect(element(by.id('number-default')).getText()).toBe('3,374.333'); +- expect(element(by.binding('val | number:0')).getText()).toBe('3,374'); +- expect(element(by.binding('-val | number:4')).getText()).toBe('-3,374.3330'); +- }); +- </file> +- </example> +- */ +- +- +-numberFilter.$inject = ['$locale']; +-function numberFilter($locale) { +- var formats = $locale.NUMBER_FORMATS; +- return function(number, fractionSize) { +- +- // if null or undefined pass it through +- return (number == null) +- ? number +- : formatNumber(number, formats.PATTERNS[0], formats.GROUP_SEP, formats.DECIMAL_SEP, +- fractionSize); +- }; +-} +- +-var DECIMAL_SEP = '.'; +-function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { +- if (!isFinite(number) || isObject(number)) return ''; +- +- var isNegative = number < 0; +- number = Math.abs(number); +- var numStr = number + '', +- formatedText = '', +- parts = []; +- +- var hasExponent = false; +- if (numStr.indexOf('e') !== -1) { +- var match = numStr.match(/([\d\.]+)e(-?)(\d+)/); +- if (match && match[2] == '-' && match[3] > fractionSize + 1) { +- number = 0; +- } else { +- formatedText = numStr; +- hasExponent = true; +- } +- } +- +- if (!hasExponent) { +- var fractionLen = (numStr.split(DECIMAL_SEP)[1] || '').length; +- +- // determine fractionSize if it is not specified +- if (isUndefined(fractionSize)) { +- fractionSize = Math.min(Math.max(pattern.minFrac, fractionLen), pattern.maxFrac); +- } +- +- // safely round numbers in JS without hitting imprecisions of floating-point arithmetics +- // inspired by: +- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round +- number = +(Math.round(+(number.toString() + 'e' + fractionSize)).toString() + 'e' + -fractionSize); +- +- var fraction = ('' + number).split(DECIMAL_SEP); +- var whole = fraction[0]; +- fraction = fraction[1] || ''; +- +- var i, pos = 0, +- lgroup = pattern.lgSize, +- group = pattern.gSize; +- +- if (whole.length >= (lgroup + group)) { +- pos = whole.length - lgroup; +- for (i = 0; i < pos; i++) { +- if ((pos - i) % group === 0 && i !== 0) { +- formatedText += groupSep; +- } +- formatedText += whole.charAt(i); +- } +- } +- +- for (i = pos; i < whole.length; i++) { +- if ((whole.length - i) % lgroup === 0 && i !== 0) { +- formatedText += groupSep; +- } +- formatedText += whole.charAt(i); +- } +- +- // format fraction part. +- while (fraction.length < fractionSize) { +- fraction += '0'; +- } +- +- if (fractionSize && fractionSize !== "0") formatedText += decimalSep + fraction.substr(0, fractionSize); +- } else { +- if (fractionSize > 0 && number < 1) { +- formatedText = number.toFixed(fractionSize); +- number = parseFloat(formatedText); +- } +- } +- +- if (number === 0) { +- isNegative = false; +- } +- +- parts.push(isNegative ? pattern.negPre : pattern.posPre, +- formatedText, +- isNegative ? pattern.negSuf : pattern.posSuf); +- return parts.join(''); +-} +- +-function padNumber(num, digits, trim) { +- var neg = ''; +- if (num < 0) { +- neg = '-'; +- num = -num; +- } +- num = '' + num; +- while (num.length < digits) num = '0' + num; +- if (trim) +- num = num.substr(num.length - digits); +- return neg + num; +-} +- +- +-function dateGetter(name, size, offset, trim) { +- offset = offset || 0; +- return function(date) { +- var value = date['get' + name](); +- if (offset > 0 || value > -offset) +- value += offset; +- if (value === 0 && offset == -12) value = 12; +- return padNumber(value, size, trim); +- }; +-} +- +-function dateStrGetter(name, shortForm) { +- return function(date, formats) { +- var value = date['get' + name](); +- var get = uppercase(shortForm ? ('SHORT' + name) : name); +- +- return formats[get][value]; +- }; +-} +- +-function timeZoneGetter(date) { +- var zone = -1 * date.getTimezoneOffset(); +- var paddedZone = (zone >= 0) ? "+" : ""; +- +- paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) + +- padNumber(Math.abs(zone % 60), 2); +- +- return paddedZone; +-} +- +-function getFirstThursdayOfYear(year) { +- // 0 = index of January +- var dayOfWeekOnFirst = (new Date(year, 0, 1)).getDay(); +- // 4 = index of Thursday (+1 to account for 1st = 5) +- // 11 = index of *next* Thursday (+1 account for 1st = 12) +- return new Date(year, 0, ((dayOfWeekOnFirst <= 4) ? 5 : 12) - dayOfWeekOnFirst); +-} +- +-function getThursdayThisWeek(datetime) { +- return new Date(datetime.getFullYear(), datetime.getMonth(), +- // 4 = index of Thursday +- datetime.getDate() + (4 - datetime.getDay())); +-} +- +-function weekGetter(size) { +- return function(date) { +- var firstThurs = getFirstThursdayOfYear(date.getFullYear()), +- thisThurs = getThursdayThisWeek(date); +- +- var diff = +thisThurs - +firstThurs, +- result = 1 + Math.round(diff / 6.048e8); // 6.048e8 ms per week +- +- return padNumber(result, size); +- }; +-} +- +-function ampmGetter(date, formats) { +- return date.getHours() < 12 ? formats.AMPMS[0] : formats.AMPMS[1]; +-} +- +-function eraGetter(date, formats) { +- return date.getFullYear() <= 0 ? formats.ERAS[0] : formats.ERAS[1]; +-} +- +-function longEraGetter(date, formats) { +- return date.getFullYear() <= 0 ? formats.ERANAMES[0] : formats.ERANAMES[1]; +-} +- +-var DATE_FORMATS = { +- yyyy: dateGetter('FullYear', 4), +- yy: dateGetter('FullYear', 2, 0, true), +- y: dateGetter('FullYear', 1), +- MMMM: dateStrGetter('Month'), +- MMM: dateStrGetter('Month', true), +- MM: dateGetter('Month', 2, 1), +- M: dateGetter('Month', 1, 1), +- dd: dateGetter('Date', 2), +- d: dateGetter('Date', 1), +- HH: dateGetter('Hours', 2), +- H: dateGetter('Hours', 1), +- hh: dateGetter('Hours', 2, -12), +- h: dateGetter('Hours', 1, -12), +- mm: dateGetter('Minutes', 2), +- m: dateGetter('Minutes', 1), +- ss: dateGetter('Seconds', 2), +- s: dateGetter('Seconds', 1), +- // while ISO 8601 requires fractions to be prefixed with `.` or `,` +- // we can be just safely rely on using `sss` since we currently don't support single or two digit fractions +- sss: dateGetter('Milliseconds', 3), +- EEEE: dateStrGetter('Day'), +- EEE: dateStrGetter('Day', true), +- a: ampmGetter, +- Z: timeZoneGetter, +- ww: weekGetter(2), +- w: weekGetter(1), +- G: eraGetter, +- GG: eraGetter, +- GGG: eraGetter, +- GGGG: longEraGetter +-}; +- +-var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/, +- NUMBER_STRING = /^\-?\d+$/; +- +-/** +- * @ngdoc filter +- * @name date +- * @kind function +- * +- * @description +- * Formats `date` to a string based on the requested `format`. +- * +- * `format` string can be composed of the following elements: +- * +- * * `'yyyy'`: 4 digit representation of year (e.g. AD 1 => 0001, AD 2010 => 2010) +- * * `'yy'`: 2 digit representation of year, padded (00-99). (e.g. AD 2001 => 01, AD 2010 => 10) +- * * `'y'`: 1 digit representation of year, e.g. (AD 1 => 1, AD 199 => 199) +- * * `'MMMM'`: Month in year (January-December) +- * * `'MMM'`: Month in year (Jan-Dec) +- * * `'MM'`: Month in year, padded (01-12) +- * * `'M'`: Month in year (1-12) +- * * `'dd'`: Day in month, padded (01-31) +- * * `'d'`: Day in month (1-31) +- * * `'EEEE'`: Day in Week,(Sunday-Saturday) +- * * `'EEE'`: Day in Week, (Sun-Sat) +- * * `'HH'`: Hour in day, padded (00-23) +- * * `'H'`: Hour in day (0-23) +- * * `'hh'`: Hour in AM/PM, padded (01-12) +- * * `'h'`: Hour in AM/PM, (1-12) +- * * `'mm'`: Minute in hour, padded (00-59) +- * * `'m'`: Minute in hour (0-59) +- * * `'ss'`: Second in minute, padded (00-59) +- * * `'s'`: Second in minute (0-59) +- * * `'sss'`: Millisecond in second, padded (000-999) +- * * `'a'`: AM/PM marker +- * * `'Z'`: 4 digit (+sign) representation of the timezone offset (-1200-+1200) +- * * `'ww'`: Week of year, padded (00-53). Week 01 is the week with the first Thursday of the year +- * * `'w'`: Week of year (0-53). Week 1 is the week with the first Thursday of the year +- * * `'G'`, `'GG'`, `'GGG'`: The abbreviated form of the era string (e.g. 'AD') +- * * `'GGGG'`: The long form of the era string (e.g. 'Anno Domini') +- * +- * `format` string can also be one of the following predefined +- * {@link guide/i18n localizable formats}: +- * +- * * `'medium'`: equivalent to `'MMM d, y h:mm:ss a'` for en_US locale +- * (e.g. Sep 3, 2010 12:05:08 PM) +- * * `'short'`: equivalent to `'M/d/yy h:mm a'` for en_US locale (e.g. 9/3/10 12:05 PM) +- * * `'fullDate'`: equivalent to `'EEEE, MMMM d, y'` for en_US locale +- * (e.g. Friday, September 3, 2010) +- * * `'longDate'`: equivalent to `'MMMM d, y'` for en_US locale (e.g. September 3, 2010) +- * * `'mediumDate'`: equivalent to `'MMM d, y'` for en_US locale (e.g. Sep 3, 2010) +- * * `'shortDate'`: equivalent to `'M/d/yy'` for en_US locale (e.g. 9/3/10) +- * * `'mediumTime'`: equivalent to `'h:mm:ss a'` for en_US locale (e.g. 12:05:08 PM) +- * * `'shortTime'`: equivalent to `'h:mm a'` for en_US locale (e.g. 12:05 PM) +- * +- * `format` string can contain literal values. These need to be escaped by surrounding with single quotes (e.g. +- * `"h 'in the morning'"`). In order to output a single quote, escape it - i.e., two single quotes in a sequence +- * (e.g. `"h 'o''clock'"`). +- * +- * @param {(Date|number|string)} date Date to format either as Date object, milliseconds (string or +- * number) or various ISO 8601 datetime string formats (e.g. yyyy-MM-ddTHH:mm:ss.sssZ and its +- * shorter versions like yyyy-MM-ddTHH:mmZ, yyyy-MM-dd or yyyyMMddTHHmmssZ). If no timezone is +- * specified in the string input, the time is considered to be in the local timezone. +- * @param {string=} format Formatting rules (see Description). If not specified, +- * `mediumDate` is used. +- * @param {string=} timezone Timezone to be used for formatting. Right now, only `'UTC'` is supported. +- * If not specified, the timezone of the browser will be used. +- * @returns {string} Formatted string or the input if input is not recognized as date/millis. +- * +- * @example +- <example> +- <file name="index.html"> +- <span ng-non-bindable>{{1288323623006 | date:'medium'}}</span>: +- <span>{{1288323623006 | date:'medium'}}</span><br> +- <span ng-non-bindable>{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}</span>: +- <span>{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}</span><br> +- <span ng-non-bindable>{{1288323623006 | date:'MM/dd/yyyy @ h:mma'}}</span>: +- <span>{{'1288323623006' | date:'MM/dd/yyyy @ h:mma'}}</span><br> +- <span ng-non-bindable>{{1288323623006 | date:"MM/dd/yyyy 'at' h:mma"}}</span>: +- <span>{{'1288323623006' | date:"MM/dd/yyyy 'at' h:mma"}}</span><br> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should format date', function() { +- expect(element(by.binding("1288323623006 | date:'medium'")).getText()). +- toMatch(/Oct 2\d, 2010 \d{1,2}:\d{2}:\d{2} (AM|PM)/); +- expect(element(by.binding("1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'")).getText()). +- toMatch(/2010\-10\-2\d \d{2}:\d{2}:\d{2} (\-|\+)?\d{4}/); +- expect(element(by.binding("'1288323623006' | date:'MM/dd/yyyy @ h:mma'")).getText()). +- toMatch(/10\/2\d\/2010 @ \d{1,2}:\d{2}(AM|PM)/); +- expect(element(by.binding("'1288323623006' | date:\"MM/dd/yyyy 'at' h:mma\"")).getText()). +- toMatch(/10\/2\d\/2010 at \d{1,2}:\d{2}(AM|PM)/); +- }); +- </file> +- </example> +- */ +-dateFilter.$inject = ['$locale']; +-function dateFilter($locale) { +- +- +- var R_ISO8601_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/; +- // 1 2 3 4 5 6 7 8 9 10 11 +- function jsonStringToDate(string) { +- var match; +- if (match = string.match(R_ISO8601_STR)) { +- var date = new Date(0), +- tzHour = 0, +- tzMin = 0, +- dateSetter = match[8] ? date.setUTCFullYear : date.setFullYear, +- timeSetter = match[8] ? date.setUTCHours : date.setHours; +- +- if (match[9]) { +- tzHour = int(match[9] + match[10]); +- tzMin = int(match[9] + match[11]); +- } +- dateSetter.call(date, int(match[1]), int(match[2]) - 1, int(match[3])); +- var h = int(match[4] || 0) - tzHour; +- var m = int(match[5] || 0) - tzMin; +- var s = int(match[6] || 0); +- var ms = Math.round(parseFloat('0.' + (match[7] || 0)) * 1000); +- timeSetter.call(date, h, m, s, ms); +- return date; +- } +- return string; +- } +- +- +- return function(date, format, timezone) { +- var text = '', +- parts = [], +- fn, match; +- +- format = format || 'mediumDate'; +- format = $locale.DATETIME_FORMATS[format] || format; +- if (isString(date)) { +- date = NUMBER_STRING.test(date) ? int(date) : jsonStringToDate(date); +- } +- +- if (isNumber(date)) { +- date = new Date(date); +- } +- +- if (!isDate(date)) { +- return date; +- } +- +- while (format) { +- match = DATE_FORMATS_SPLIT.exec(format); +- if (match) { +- parts = concat(parts, match, 1); +- format = parts.pop(); +- } else { +- parts.push(format); +- format = null; +- } +- } +- +- if (timezone && timezone === 'UTC') { +- date = new Date(date.getTime()); +- date.setMinutes(date.getMinutes() + date.getTimezoneOffset()); +- } +- forEach(parts, function(value) { +- fn = DATE_FORMATS[value]; +- text += fn ? fn(date, $locale.DATETIME_FORMATS) +- : value.replace(/(^'|'$)/g, '').replace(/''/g, "'"); +- }); +- +- return text; +- }; +-} +- +- +-/** +- * @ngdoc filter +- * @name json +- * @kind function +- * +- * @description +- * Allows you to convert a JavaScript object into JSON string. +- * +- * This filter is mostly useful for debugging. When using the double curly {{value}} notation +- * the binding is automatically converted to JSON. +- * +- * @param {*} object Any JavaScript object (including arrays and primitive types) to filter. +- * @param {number=} spacing The number of spaces to use per indentation, defaults to 2. +- * @returns {string} JSON string. +- * +- * +- * @example +- <example> +- <file name="index.html"> +- <pre id="default-spacing">{{ {'name':'value'} | json }}</pre> +- <pre id="custom-spacing">{{ {'name':'value'} | json:4 }}</pre> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should jsonify filtered objects', function() { +- expect(element(by.id('default-spacing')).getText()).toMatch(/\{\n "name": ?"value"\n}/); +- expect(element(by.id('custom-spacing')).getText()).toMatch(/\{\n "name": ?"value"\n}/); +- }); +- </file> +- </example> +- * +- */ +-function jsonFilter() { +- return function(object, spacing) { +- if (isUndefined(spacing)) { +- spacing = 2; +- } +- return toJson(object, spacing); +- }; +-} +- +- +-/** +- * @ngdoc filter +- * @name lowercase +- * @kind function +- * @description +- * Converts string to lowercase. +- * @see angular.lowercase +- */ +-var lowercaseFilter = valueFn(lowercase); +- +- +-/** +- * @ngdoc filter +- * @name uppercase +- * @kind function +- * @description +- * Converts string to uppercase. +- * @see angular.uppercase +- */ +-var uppercaseFilter = valueFn(uppercase); +- +-/** +- * @ngdoc filter +- * @name limitTo +- * @kind function +- * +- * @description +- * Creates a new array or string containing only a specified number of elements. The elements +- * are taken from either the beginning or the end of the source array, string or number, as specified by +- * the value and sign (positive or negative) of `limit`. If a number is used as input, it is +- * converted to a string. +- * +- * @param {Array|string|number} input Source array, string or number to be limited. +- * @param {string|number} limit The length of the returned array or string. If the `limit` number +- * is positive, `limit` number of items from the beginning of the source array/string are copied. +- * If the number is negative, `limit` number of items from the end of the source array/string +- * are copied. The `limit` will be trimmed if it exceeds `array.length` +- * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array +- * had less than `limit` elements. +- * +- * @example +- <example module="limitToExample"> +- <file name="index.html"> +- <script> +- angular.module('limitToExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.numbers = [1,2,3,4,5,6,7,8,9]; +- $scope.letters = "abcdefghi"; +- $scope.longNumber = 2345432342; +- $scope.numLimit = 3; +- $scope.letterLimit = 3; +- $scope.longNumberLimit = 3; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- Limit {{numbers}} to: <input type="number" step="1" ng-model="numLimit"> +- <p>Output numbers: {{ numbers | limitTo:numLimit }}</p> +- Limit {{letters}} to: <input type="number" step="1" ng-model="letterLimit"> +- <p>Output letters: {{ letters | limitTo:letterLimit }}</p> +- Limit {{longNumber}} to: <input type="number" step="1" ng-model="longNumberLimit"> +- <p>Output long number: {{ longNumber | limitTo:longNumberLimit }}</p> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- var numLimitInput = element(by.model('numLimit')); +- var letterLimitInput = element(by.model('letterLimit')); +- var longNumberLimitInput = element(by.model('longNumberLimit')); +- var limitedNumbers = element(by.binding('numbers | limitTo:numLimit')); +- var limitedLetters = element(by.binding('letters | limitTo:letterLimit')); +- var limitedLongNumber = element(by.binding('longNumber | limitTo:longNumberLimit')); +- +- it('should limit the number array to first three items', function() { +- expect(numLimitInput.getAttribute('value')).toBe('3'); +- expect(letterLimitInput.getAttribute('value')).toBe('3'); +- expect(longNumberLimitInput.getAttribute('value')).toBe('3'); +- expect(limitedNumbers.getText()).toEqual('Output numbers: [1,2,3]'); +- expect(limitedLetters.getText()).toEqual('Output letters: abc'); +- expect(limitedLongNumber.getText()).toEqual('Output long number: 234'); +- }); +- +- // There is a bug in safari and protractor that doesn't like the minus key +- // it('should update the output when -3 is entered', function() { +- // numLimitInput.clear(); +- // numLimitInput.sendKeys('-3'); +- // letterLimitInput.clear(); +- // letterLimitInput.sendKeys('-3'); +- // longNumberLimitInput.clear(); +- // longNumberLimitInput.sendKeys('-3'); +- // expect(limitedNumbers.getText()).toEqual('Output numbers: [7,8,9]'); +- // expect(limitedLetters.getText()).toEqual('Output letters: ghi'); +- // expect(limitedLongNumber.getText()).toEqual('Output long number: 342'); +- // }); +- +- it('should not exceed the maximum size of input array', function() { +- numLimitInput.clear(); +- numLimitInput.sendKeys('100'); +- letterLimitInput.clear(); +- letterLimitInput.sendKeys('100'); +- longNumberLimitInput.clear(); +- longNumberLimitInput.sendKeys('100'); +- expect(limitedNumbers.getText()).toEqual('Output numbers: [1,2,3,4,5,6,7,8,9]'); +- expect(limitedLetters.getText()).toEqual('Output letters: abcdefghi'); +- expect(limitedLongNumber.getText()).toEqual('Output long number: 2345432342'); +- }); +- </file> +- </example> +-*/ +-function limitToFilter() { +- return function(input, limit) { +- if (isNumber(input)) input = input.toString(); +- if (!isArray(input) && !isString(input)) return input; +- +- if (Math.abs(Number(limit)) === Infinity) { +- limit = Number(limit); +- } else { +- limit = int(limit); +- } +- +- //NaN check on limit +- if (limit) { +- return limit > 0 ? input.slice(0, limit) : input.slice(limit); +- } else { +- return isString(input) ? "" : []; +- } +- }; +-} +- +-/** +- * @ngdoc filter +- * @name orderBy +- * @kind function +- * +- * @description +- * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically +- * for strings and numerically for numbers. Note: if you notice numbers are not being sorted +- * correctly, make sure they are actually being saved as numbers and not strings. +- * +- * @param {Array} array The array to sort. +- * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be +- * used by the comparator to determine the order of elements. +- * +- * Can be one of: +- * +- * - `function`: Getter function. The result of this function will be sorted using the +- * `<`, `=`, `>` operator. +- * - `string`: An Angular expression. The result of this expression is used to compare elements +- * (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by +- * 3 first characters of a property called `name`). The result of a constant expression +- * is interpreted as a property name to be used in comparisons (for example `"special name"` +- * to sort object by the value of their `special name` property). An expression can be +- * optionally prefixed with `+` or `-` to control ascending or descending sort order +- * (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array +- * element itself is used to compare where sorting. +- * - `Array`: An array of function or string predicates. The first predicate in the array +- * is used for sorting, but when two items are equivalent, the next predicate is used. +- * +- * If the predicate is missing or empty then it defaults to `'+'`. +- * +- * @param {boolean=} reverse Reverse the order of the array. +- * @returns {Array} Sorted copy of the source array. +- * +- * +- * @example +- * The example below demonstrates a simple ngRepeat, where the data is sorted +- * by age in descending order (predicate is set to `'-age'`). +- * `reverse` is not set, which means it defaults to `false`. +- <example module="orderByExample"> +- <file name="index.html"> +- <script> +- angular.module('orderByExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.friends = +- [{name:'John', phone:'555-1212', age:10}, +- {name:'Mary', phone:'555-9876', age:19}, +- {name:'Mike', phone:'555-4321', age:21}, +- {name:'Adam', phone:'555-5678', age:35}, +- {name:'Julie', phone:'555-8765', age:29}]; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <table class="friend"> +- <tr> +- <th>Name</th> +- <th>Phone Number</th> +- <th>Age</th> +- </tr> +- <tr ng-repeat="friend in friends | orderBy:'-age'"> +- <td>{{friend.name}}</td> +- <td>{{friend.phone}}</td> +- <td>{{friend.age}}</td> +- </tr> +- </table> +- </div> +- </file> +- </example> +- * +- * The predicate and reverse parameters can be controlled dynamically through scope properties, +- * as shown in the next example. +- * @example +- <example module="orderByExample"> +- <file name="index.html"> +- <script> +- angular.module('orderByExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.friends = +- [{name:'John', phone:'555-1212', age:10}, +- {name:'Mary', phone:'555-9876', age:19}, +- {name:'Mike', phone:'555-4321', age:21}, +- {name:'Adam', phone:'555-5678', age:35}, +- {name:'Julie', phone:'555-8765', age:29}]; +- $scope.predicate = '-age'; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <pre>Sorting predicate = {{predicate}}; reverse = {{reverse}}</pre> +- <hr/> +- [ <a href="" ng-click="predicate=''">unsorted</a> ] +- <table class="friend"> +- <tr> +- <th><a href="" ng-click="predicate = 'name'; reverse=false">Name</a> +- (<a href="" ng-click="predicate = '-name'; reverse=false">^</a>)</th> +- <th><a href="" ng-click="predicate = 'phone'; reverse=!reverse">Phone Number</a></th> +- <th><a href="" ng-click="predicate = 'age'; reverse=!reverse">Age</a></th> +- </tr> +- <tr ng-repeat="friend in friends | orderBy:predicate:reverse"> +- <td>{{friend.name}}</td> +- <td>{{friend.phone}}</td> +- <td>{{friend.age}}</td> +- </tr> +- </table> +- </div> +- </file> +- </example> +- * +- * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the +- * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the +- * desired parameters. +- * +- * Example: +- * +- * @example +- <example module="orderByExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <table class="friend"> +- <tr> +- <th><a href="" ng-click="reverse=false;order('name', false)">Name</a> +- (<a href="" ng-click="order('-name',false)">^</a>)</th> +- <th><a href="" ng-click="reverse=!reverse;order('phone', reverse)">Phone Number</a></th> +- <th><a href="" ng-click="reverse=!reverse;order('age',reverse)">Age</a></th> +- </tr> +- <tr ng-repeat="friend in friends"> +- <td>{{friend.name}}</td> +- <td>{{friend.phone}}</td> +- <td>{{friend.age}}</td> +- </tr> +- </table> +- </div> +- </file> +- +- <file name="script.js"> +- angular.module('orderByExample', []) +- .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) { +- var orderBy = $filter('orderBy'); +- $scope.friends = [ +- { name: 'John', phone: '555-1212', age: 10 }, +- { name: 'Mary', phone: '555-9876', age: 19 }, +- { name: 'Mike', phone: '555-4321', age: 21 }, +- { name: 'Adam', phone: '555-5678', age: 35 }, +- { name: 'Julie', phone: '555-8765', age: 29 } +- ]; +- $scope.order = function(predicate, reverse) { +- $scope.friends = orderBy($scope.friends, predicate, reverse); +- }; +- $scope.order('-age',false); +- }]); +- </file> +-</example> +- */ +-orderByFilter.$inject = ['$parse']; +-function orderByFilter($parse) { +- return function(array, sortPredicate, reverseOrder) { +- if (!(isArrayLike(array))) return array; +- sortPredicate = isArray(sortPredicate) ? sortPredicate : [sortPredicate]; +- if (sortPredicate.length === 0) { sortPredicate = ['+']; } +- sortPredicate = sortPredicate.map(function(predicate) { +- var descending = false, get = predicate || identity; +- if (isString(predicate)) { +- if ((predicate.charAt(0) == '+' || predicate.charAt(0) == '-')) { +- descending = predicate.charAt(0) == '-'; +- predicate = predicate.substring(1); +- } +- if (predicate === '') { +- // Effectively no predicate was passed so we compare identity +- return reverseComparator(compare, descending); +- } +- get = $parse(predicate); +- if (get.constant) { +- var key = get(); +- return reverseComparator(function(a, b) { +- return compare(a[key], b[key]); +- }, descending); +- } +- } +- return reverseComparator(function(a, b) { +- return compare(get(a),get(b)); +- }, descending); +- }); +- return slice.call(array).sort(reverseComparator(comparator, reverseOrder)); +- +- function comparator(o1, o2) { +- for (var i = 0; i < sortPredicate.length; i++) { +- var comp = sortPredicate[i](o1, o2); +- if (comp !== 0) return comp; +- } +- return 0; +- } +- function reverseComparator(comp, descending) { +- return descending +- ? function(a, b) {return comp(b,a);} +- : comp; +- } +- +- function isPrimitive(value) { +- switch (typeof value) { +- case 'number': /* falls through */ +- case 'boolean': /* falls through */ +- case 'string': +- return true; +- default: +- return false; +- } +- } +- +- function objectToString(value) { +- if (value === null) return 'null'; +- if (typeof value.valueOf === 'function') { +- value = value.valueOf(); +- if (isPrimitive(value)) return value; +- } +- if (typeof value.toString === 'function') { +- value = value.toString(); +- if (isPrimitive(value)) return value; +- } +- return ''; +- } +- +- function compare(v1, v2) { +- var t1 = typeof v1; +- var t2 = typeof v2; +- if (t1 === t2 && t1 === "object") { +- v1 = objectToString(v1); +- v2 = objectToString(v2); +- } +- if (t1 === t2) { +- if (t1 === "string") { +- v1 = v1.toLowerCase(); +- v2 = v2.toLowerCase(); +- } +- if (v1 === v2) return 0; +- return v1 < v2 ? -1 : 1; +- } else { +- return t1 < t2 ? -1 : 1; +- } +- } +- }; +-} +- +-function ngDirective(directive) { +- if (isFunction(directive)) { +- directive = { +- link: directive +- }; +- } +- directive.restrict = directive.restrict || 'AC'; +- return valueFn(directive); +-} +- +-/** +- * @ngdoc directive +- * @name a +- * @restrict E +- * +- * @description +- * Modifies the default behavior of the html A tag so that the default action is prevented when +- * the href attribute is empty. +- * +- * This change permits the easy creation of action links with the `ngClick` directive +- * without changing the location or causing page reloads, e.g.: +- * `<a href="" ng-click="list.addItem()">Add Item</a>` +- */ +-var htmlAnchorDirective = valueFn({ +- restrict: 'E', +- compile: function(element, attr) { +- if (!attr.href && !attr.xlinkHref && !attr.name) { +- return function(scope, element) { +- // If the linked element is not an anchor tag anymore, do nothing +- if (element[0].nodeName.toLowerCase() !== 'a') return; +- +- // SVGAElement does not use the href attribute, but rather the 'xlinkHref' attribute. +- var href = toString.call(element.prop('href')) === '[object SVGAnimatedString]' ? +- 'xlink:href' : 'href'; +- element.on('click', function(event) { +- // if we have no href url, then don't navigate anywhere. +- if (!element.attr(href)) { +- event.preventDefault(); +- } +- }); +- }; +- } +- } +-}); +- +-/** +- * @ngdoc directive +- * @name ngHref +- * @restrict A +- * @priority 99 +- * +- * @description +- * Using Angular markup like `{{hash}}` in an href attribute will +- * make the link go to the wrong URL if the user clicks it before +- * Angular has a chance to replace the `{{hash}}` markup with its +- * value. Until Angular replaces the markup the link will be broken +- * and will most likely return a 404 error. The `ngHref` directive +- * solves this problem. +- * +- * The wrong way to write it: +- * ```html +- * <a href="http://www.gravatar.com/avatar/{{hash}}">link1</a> +- * ``` +- * +- * The correct way to write it: +- * ```html +- * <a ng-href="http://www.gravatar.com/avatar/{{hash}}">link1</a> +- * ``` +- * +- * @element A +- * @param {template} ngHref any string which can contain `{{}}` markup. +- * +- * @example +- * This example shows various combinations of `href`, `ng-href` and `ng-click` attributes +- * in links and their different behaviors: +- <example> +- <file name="index.html"> +- <input ng-model="value" /><br /> +- <a id="link-1" href ng-click="value = 1">link 1</a> (link, don't reload)<br /> +- <a id="link-2" href="" ng-click="value = 2">link 2</a> (link, don't reload)<br /> +- <a id="link-3" ng-href="/{{'123'}}">link 3</a> (link, reload!)<br /> +- <a id="link-4" href="" name="xx" ng-click="value = 4">anchor</a> (link, don't reload)<br /> +- <a id="link-5" name="xxx" ng-click="value = 5">anchor</a> (no link)<br /> +- <a id="link-6" ng-href="{{value}}">link</a> (link, change location) +- </file> +- <file name="protractor.js" type="protractor"> +- it('should execute ng-click but not reload when href without value', function() { +- element(by.id('link-1')).click(); +- expect(element(by.model('value')).getAttribute('value')).toEqual('1'); +- expect(element(by.id('link-1')).getAttribute('href')).toBe(''); +- }); +- +- it('should execute ng-click but not reload when href empty string', function() { +- element(by.id('link-2')).click(); +- expect(element(by.model('value')).getAttribute('value')).toEqual('2'); +- expect(element(by.id('link-2')).getAttribute('href')).toBe(''); +- }); +- +- it('should execute ng-click and change url when ng-href specified', function() { +- expect(element(by.id('link-3')).getAttribute('href')).toMatch(/\/123$/); +- +- element(by.id('link-3')).click(); +- +- // At this point, we navigate away from an Angular page, so we need +- // to use browser.driver to get the base webdriver. +- +- browser.wait(function() { +- return browser.driver.getCurrentUrl().then(function(url) { +- return url.match(/\/123$/); +- }); +- }, 5000, 'page should navigate to /123'); +- }); +- +- xit('should execute ng-click but not reload when href empty string and name specified', function() { +- element(by.id('link-4')).click(); +- expect(element(by.model('value')).getAttribute('value')).toEqual('4'); +- expect(element(by.id('link-4')).getAttribute('href')).toBe(''); +- }); +- +- it('should execute ng-click but not reload when no href but name specified', function() { +- element(by.id('link-5')).click(); +- expect(element(by.model('value')).getAttribute('value')).toEqual('5'); +- expect(element(by.id('link-5')).getAttribute('href')).toBe(null); +- }); +- +- it('should only change url when only ng-href', function() { +- element(by.model('value')).clear(); +- element(by.model('value')).sendKeys('6'); +- expect(element(by.id('link-6')).getAttribute('href')).toMatch(/\/6$/); +- +- element(by.id('link-6')).click(); +- +- // At this point, we navigate away from an Angular page, so we need +- // to use browser.driver to get the base webdriver. +- browser.wait(function() { +- return browser.driver.getCurrentUrl().then(function(url) { +- return url.match(/\/6$/); +- }); +- }, 5000, 'page should navigate to /6'); +- }); +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngSrc +- * @restrict A +- * @priority 99 +- * +- * @description +- * Using Angular markup like `{{hash}}` in a `src` attribute doesn't +- * work right: The browser will fetch from the URL with the literal +- * text `{{hash}}` until Angular replaces the expression inside +- * `{{hash}}`. The `ngSrc` directive solves this problem. +- * +- * The buggy way to write it: +- * ```html +- * <img src="http://www.gravatar.com/avatar/{{hash}}"/> +- * ``` +- * +- * The correct way to write it: +- * ```html +- * <img ng-src="http://www.gravatar.com/avatar/{{hash}}"/> +- * ``` +- * +- * @element IMG +- * @param {template} ngSrc any string which can contain `{{}}` markup. +- */ +- +-/** +- * @ngdoc directive +- * @name ngSrcset +- * @restrict A +- * @priority 99 +- * +- * @description +- * Using Angular markup like `{{hash}}` in a `srcset` attribute doesn't +- * work right: The browser will fetch from the URL with the literal +- * text `{{hash}}` until Angular replaces the expression inside +- * `{{hash}}`. The `ngSrcset` directive solves this problem. +- * +- * The buggy way to write it: +- * ```html +- * <img srcset="http://www.gravatar.com/avatar/{{hash}} 2x"/> +- * ``` +- * +- * The correct way to write it: +- * ```html +- * <img ng-srcset="http://www.gravatar.com/avatar/{{hash}} 2x"/> +- * ``` +- * +- * @element IMG +- * @param {template} ngSrcset any string which can contain `{{}}` markup. +- */ +- +-/** +- * @ngdoc directive +- * @name ngDisabled +- * @restrict A +- * @priority 100 +- * +- * @description +- * +- * This directive sets the `disabled` attribute on the element if the +- * {@link guide/expression expression} inside `ngDisabled` evaluates to truthy. +- * +- * A special directive is necessary because we cannot use interpolation inside the `disabled` +- * attribute. The following example would make the button enabled on Chrome/Firefox +- * but not on older IEs: +- * +- * ```html +- * <!-- See below for an example of ng-disabled being used correctly --> +- * <div ng-init="isDisabled = false"> +- * <button disabled="{{isDisabled}}">Disabled</button> +- * </div> +- * ``` +- * +- * This is because the HTML specification does not require browsers to preserve the values of +- * boolean attributes such as `disabled` (Their presence means true and their absence means false.) +- * If we put an Angular interpolation expression into such an attribute then the +- * binding information would be lost when the browser removes the attribute. +- * +- * @example +- <example> +- <file name="index.html"> +- Click me to toggle: <input type="checkbox" ng-model="checked"><br/> +- <button ng-model="button" ng-disabled="checked">Button</button> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should toggle button', function() { +- expect(element(by.css('button')).getAttribute('disabled')).toBeFalsy(); +- element(by.model('checked')).click(); +- expect(element(by.css('button')).getAttribute('disabled')).toBeTruthy(); +- }); +- </file> +- </example> +- * +- * @element INPUT +- * @param {expression} ngDisabled If the {@link guide/expression expression} is truthy, +- * then the `disabled` attribute will be set on the element +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngChecked +- * @restrict A +- * @priority 100 +- * +- * @description +- * The HTML specification does not require browsers to preserve the values of boolean attributes +- * such as checked. (Their presence means true and their absence means false.) +- * If we put an Angular interpolation expression into such an attribute then the +- * binding information would be lost when the browser removes the attribute. +- * The `ngChecked` directive solves this problem for the `checked` attribute. +- * This complementary directive is not removed by the browser and so provides +- * a permanent reliable place to store the binding information. +- * @example +- <example> +- <file name="index.html"> +- Check me to check both: <input type="checkbox" ng-model="master"><br/> +- <input id="checkSlave" type="checkbox" ng-checked="master"> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check both checkBoxes', function() { +- expect(element(by.id('checkSlave')).getAttribute('checked')).toBeFalsy(); +- element(by.model('master')).click(); +- expect(element(by.id('checkSlave')).getAttribute('checked')).toBeTruthy(); +- }); +- </file> +- </example> +- * +- * @element INPUT +- * @param {expression} ngChecked If the {@link guide/expression expression} is truthy, +- * then special attribute "checked" will be set on the element +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngReadonly +- * @restrict A +- * @priority 100 +- * +- * @description +- * The HTML specification does not require browsers to preserve the values of boolean attributes +- * such as readonly. (Their presence means true and their absence means false.) +- * If we put an Angular interpolation expression into such an attribute then the +- * binding information would be lost when the browser removes the attribute. +- * The `ngReadonly` directive solves this problem for the `readonly` attribute. +- * This complementary directive is not removed by the browser and so provides +- * a permanent reliable place to store the binding information. +- * @example +- <example> +- <file name="index.html"> +- Check me to make text readonly: <input type="checkbox" ng-model="checked"><br/> +- <input type="text" ng-readonly="checked" value="I'm Angular"/> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should toggle readonly attr', function() { +- expect(element(by.css('[type="text"]')).getAttribute('readonly')).toBeFalsy(); +- element(by.model('checked')).click(); +- expect(element(by.css('[type="text"]')).getAttribute('readonly')).toBeTruthy(); +- }); +- </file> +- </example> +- * +- * @element INPUT +- * @param {expression} ngReadonly If the {@link guide/expression expression} is truthy, +- * then special attribute "readonly" will be set on the element +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngSelected +- * @restrict A +- * @priority 100 +- * +- * @description +- * The HTML specification does not require browsers to preserve the values of boolean attributes +- * such as selected. (Their presence means true and their absence means false.) +- * If we put an Angular interpolation expression into such an attribute then the +- * binding information would be lost when the browser removes the attribute. +- * The `ngSelected` directive solves this problem for the `selected` attribute. +- * This complementary directive is not removed by the browser and so provides +- * a permanent reliable place to store the binding information. +- * +- * @example +- <example> +- <file name="index.html"> +- Check me to select: <input type="checkbox" ng-model="selected"><br/> +- <select> +- <option>Hello!</option> +- <option id="greet" ng-selected="selected">Greetings!</option> +- </select> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should select Greetings!', function() { +- expect(element(by.id('greet')).getAttribute('selected')).toBeFalsy(); +- element(by.model('selected')).click(); +- expect(element(by.id('greet')).getAttribute('selected')).toBeTruthy(); +- }); +- </file> +- </example> +- * +- * @element OPTION +- * @param {expression} ngSelected If the {@link guide/expression expression} is truthy, +- * then special attribute "selected" will be set on the element +- */ +- +-/** +- * @ngdoc directive +- * @name ngOpen +- * @restrict A +- * @priority 100 +- * +- * @description +- * The HTML specification does not require browsers to preserve the values of boolean attributes +- * such as open. (Their presence means true and their absence means false.) +- * If we put an Angular interpolation expression into such an attribute then the +- * binding information would be lost when the browser removes the attribute. +- * The `ngOpen` directive solves this problem for the `open` attribute. +- * This complementary directive is not removed by the browser and so provides +- * a permanent reliable place to store the binding information. +- * @example +- <example> +- <file name="index.html"> +- Check me check multiple: <input type="checkbox" ng-model="open"><br/> +- <details id="details" ng-open="open"> +- <summary>Show/Hide me</summary> +- </details> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should toggle open', function() { +- expect(element(by.id('details')).getAttribute('open')).toBeFalsy(); +- element(by.model('open')).click(); +- expect(element(by.id('details')).getAttribute('open')).toBeTruthy(); +- }); +- </file> +- </example> +- * +- * @element DETAILS +- * @param {expression} ngOpen If the {@link guide/expression expression} is truthy, +- * then special attribute "open" will be set on the element +- */ +- +-var ngAttributeAliasDirectives = {}; +- +- +-// boolean attrs are evaluated +-forEach(BOOLEAN_ATTR, function(propName, attrName) { +- // binding to multiple is not supported +- if (propName == "multiple") return; +- +- var normalized = directiveNormalize('ng-' + attrName); +- ngAttributeAliasDirectives[normalized] = function() { +- return { +- restrict: 'A', +- priority: 100, +- link: function(scope, element, attr) { +- scope.$watch(attr[normalized], function ngBooleanAttrWatchAction(value) { +- attr.$set(attrName, !!value); +- }); +- } +- }; +- }; +-}); +- +-// aliased input attrs are evaluated +-forEach(ALIASED_ATTR, function(htmlAttr, ngAttr) { +- ngAttributeAliasDirectives[ngAttr] = function() { +- return { +- priority: 100, +- link: function(scope, element, attr) { +- //special case ngPattern when a literal regular expression value +- //is used as the expression (this way we don't have to watch anything). +- if (ngAttr === "ngPattern" && attr.ngPattern.charAt(0) == "/") { +- var match = attr.ngPattern.match(REGEX_STRING_REGEXP); +- if (match) { +- attr.$set("ngPattern", new RegExp(match[1], match[2])); +- return; +- } +- } +- +- scope.$watch(attr[ngAttr], function ngAttrAliasWatchAction(value) { +- attr.$set(ngAttr, value); +- }); +- } +- }; +- }; +-}); +- +-// ng-src, ng-srcset, ng-href are interpolated +-forEach(['src', 'srcset', 'href'], function(attrName) { +- var normalized = directiveNormalize('ng-' + attrName); +- ngAttributeAliasDirectives[normalized] = function() { +- return { +- priority: 99, // it needs to run after the attributes are interpolated +- link: function(scope, element, attr) { +- var propName = attrName, +- name = attrName; +- +- if (attrName === 'href' && +- toString.call(element.prop('href')) === '[object SVGAnimatedString]') { +- name = 'xlinkHref'; +- attr.$attr[name] = 'xlink:href'; +- propName = null; +- } +- +- attr.$observe(normalized, function(value) { +- if (!value) { +- if (attrName === 'href') { +- attr.$set(name, null); +- } +- return; +- } +- +- attr.$set(name, value); +- +- // on IE, if "ng:src" directive declaration is used and "src" attribute doesn't exist +- // then calling element.setAttribute('src', 'foo') doesn't do anything, so we need +- // to set the property as well to achieve the desired effect. +- // we use attr[attrName] value since $set can sanitize the url. +- if (msie && propName) element.prop(propName, attr[name]); +- }); +- } +- }; +- }; +-}); +- +-/* global -nullFormCtrl, -SUBMITTED_CLASS, addSetValidityMethod: true +- */ +-var nullFormCtrl = { +- $addControl: noop, +- $$renameControl: nullFormRenameControl, +- $removeControl: noop, +- $setValidity: noop, +- $setDirty: noop, +- $setPristine: noop, +- $setSubmitted: noop +-}, +-SUBMITTED_CLASS = 'ng-submitted'; +- +-function nullFormRenameControl(control, name) { +- control.$name = name; +-} +- +-/** +- * @ngdoc type +- * @name form.FormController +- * +- * @property {boolean} $pristine True if user has not interacted with the form yet. +- * @property {boolean} $dirty True if user has already interacted with the form. +- * @property {boolean} $valid True if all of the containing forms and controls are valid. +- * @property {boolean} $invalid True if at least one containing control or form is invalid. +- * @property {boolean} $submitted True if user has submitted the form even if its invalid. +- * +- * @property {Object} $error Is an object hash, containing references to controls or +- * forms with failing validators, where: +- * +- * - keys are validation tokens (error names), +- * - values are arrays of controls or forms that have a failing validator for given error name. +- * +- * Built-in validation tokens: +- * +- * - `email` +- * - `max` +- * - `maxlength` +- * - `min` +- * - `minlength` +- * - `number` +- * - `pattern` +- * - `required` +- * - `url` +- * - `date` +- * - `datetimelocal` +- * - `time` +- * - `week` +- * - `month` +- * +- * @description +- * `FormController` keeps track of all its controls and nested forms as well as the state of them, +- * such as being valid/invalid or dirty/pristine. +- * +- * Each {@link ng.directive:form form} directive creates an instance +- * of `FormController`. +- * +- */ +-//asks for $scope to fool the BC controller module +-FormController.$inject = ['$element', '$attrs', '$scope', '$animate', '$interpolate']; +-function FormController(element, attrs, $scope, $animate, $interpolate) { +- var form = this, +- controls = []; +- +- var parentForm = form.$$parentForm = element.parent().controller('form') || nullFormCtrl; +- +- // init state +- form.$error = {}; +- form.$$success = {}; +- form.$pending = undefined; +- form.$name = $interpolate(attrs.name || attrs.ngForm || '')($scope); +- form.$dirty = false; +- form.$pristine = true; +- form.$valid = true; +- form.$invalid = false; +- form.$submitted = false; +- +- parentForm.$addControl(form); +- +- /** +- * @ngdoc method +- * @name form.FormController#$rollbackViewValue +- * +- * @description +- * Rollback all form controls pending updates to the `$modelValue`. +- * +- * Updates may be pending by a debounced event or because the input is waiting for a some future +- * event defined in `ng-model-options`. This method is typically needed by the reset button of +- * a form that uses `ng-model-options` to pend updates. +- */ +- form.$rollbackViewValue = function() { +- forEach(controls, function(control) { +- control.$rollbackViewValue(); +- }); +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$commitViewValue +- * +- * @description +- * Commit all form controls pending updates to the `$modelValue`. +- * +- * Updates may be pending by a debounced event or because the input is waiting for a some future +- * event defined in `ng-model-options`. This method is rarely needed as `NgModelController` +- * usually handles calling this in response to input events. +- */ +- form.$commitViewValue = function() { +- forEach(controls, function(control) { +- control.$commitViewValue(); +- }); +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$addControl +- * +- * @description +- * Register a control with the form. +- * +- * Input elements using ngModelController do this automatically when they are linked. +- */ +- form.$addControl = function(control) { +- // Breaking change - before, inputs whose name was "hasOwnProperty" were quietly ignored +- // and not added to the scope. Now we throw an error. +- assertNotHasOwnProperty(control.$name, 'input'); +- controls.push(control); +- +- if (control.$name) { +- form[control.$name] = control; +- } +- }; +- +- // Private API: rename a form control +- form.$$renameControl = function(control, newName) { +- var oldName = control.$name; +- +- if (form[oldName] === control) { +- delete form[oldName]; +- } +- form[newName] = control; +- control.$name = newName; +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$removeControl +- * +- * @description +- * Deregister a control from the form. +- * +- * Input elements using ngModelController do this automatically when they are destroyed. +- */ +- form.$removeControl = function(control) { +- if (control.$name && form[control.$name] === control) { +- delete form[control.$name]; +- } +- forEach(form.$pending, function(value, name) { +- form.$setValidity(name, null, control); +- }); +- forEach(form.$error, function(value, name) { +- form.$setValidity(name, null, control); +- }); +- forEach(form.$$success, function(value, name) { +- form.$setValidity(name, null, control); +- }); +- +- arrayRemove(controls, control); +- }; +- +- +- /** +- * @ngdoc method +- * @name form.FormController#$setValidity +- * +- * @description +- * Sets the validity of a form control. +- * +- * This method will also propagate to parent forms. +- */ +- addSetValidityMethod({ +- ctrl: this, +- $element: element, +- set: function(object, property, controller) { +- var list = object[property]; +- if (!list) { +- object[property] = [controller]; +- } else { +- var index = list.indexOf(controller); +- if (index === -1) { +- list.push(controller); +- } +- } +- }, +- unset: function(object, property, controller) { +- var list = object[property]; +- if (!list) { +- return; +- } +- arrayRemove(list, controller); +- if (list.length === 0) { +- delete object[property]; +- } +- }, +- parentForm: parentForm, +- $animate: $animate +- }); +- +- /** +- * @ngdoc method +- * @name form.FormController#$setDirty +- * +- * @description +- * Sets the form to a dirty state. +- * +- * This method can be called to add the 'ng-dirty' class and set the form to a dirty +- * state (ng-dirty class). This method will also propagate to parent forms. +- */ +- form.$setDirty = function() { +- $animate.removeClass(element, PRISTINE_CLASS); +- $animate.addClass(element, DIRTY_CLASS); +- form.$dirty = true; +- form.$pristine = false; +- parentForm.$setDirty(); +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$setPristine +- * +- * @description +- * Sets the form to its pristine state. +- * +- * This method can be called to remove the 'ng-dirty' class and set the form to its pristine +- * state (ng-pristine class). This method will also propagate to all the controls contained +- * in this form. +- * +- * Setting a form back to a pristine state is often useful when we want to 'reuse' a form after +- * saving or resetting it. +- */ +- form.$setPristine = function() { +- $animate.setClass(element, PRISTINE_CLASS, DIRTY_CLASS + ' ' + SUBMITTED_CLASS); +- form.$dirty = false; +- form.$pristine = true; +- form.$submitted = false; +- forEach(controls, function(control) { +- control.$setPristine(); +- }); +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$setUntouched +- * +- * @description +- * Sets the form to its untouched state. +- * +- * This method can be called to remove the 'ng-touched' class and set the form controls to their +- * untouched state (ng-untouched class). +- * +- * Setting a form controls back to their untouched state is often useful when setting the form +- * back to its pristine state. +- */ +- form.$setUntouched = function() { +- forEach(controls, function(control) { +- control.$setUntouched(); +- }); +- }; +- +- /** +- * @ngdoc method +- * @name form.FormController#$setSubmitted +- * +- * @description +- * Sets the form to its submitted state. +- */ +- form.$setSubmitted = function() { +- $animate.addClass(element, SUBMITTED_CLASS); +- form.$submitted = true; +- parentForm.$setSubmitted(); +- }; +-} +- +-/** +- * @ngdoc directive +- * @name ngForm +- * @restrict EAC +- * +- * @description +- * Nestable alias of {@link ng.directive:form `form`} directive. HTML +- * does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a +- * sub-group of controls needs to be determined. +- * +- * Note: the purpose of `ngForm` is to group controls, +- * but not to be a replacement for the `<form>` tag with all of its capabilities +- * (e.g. posting to the server, ...). +- * +- * @param {string=} ngForm|name Name of the form. If specified, the form controller will be published into +- * related scope, under this name. +- * +- */ +- +- /** +- * @ngdoc directive +- * @name form +- * @restrict E +- * +- * @description +- * Directive that instantiates +- * {@link form.FormController FormController}. +- * +- * If the `name` attribute is specified, the form controller is published onto the current scope under +- * this name. +- * +- * # Alias: {@link ng.directive:ngForm `ngForm`} +- * +- * In Angular, forms can be nested. This means that the outer form is valid when all of the child +- * forms are valid as well. However, browsers do not allow nesting of `<form>` elements, so +- * Angular provides the {@link ng.directive:ngForm `ngForm`} directive which behaves identically to +- * `<form>` but can be nested. This allows you to have nested forms, which is very useful when +- * using Angular validation directives in forms that are dynamically generated using the +- * {@link ng.directive:ngRepeat `ngRepeat`} directive. Since you cannot dynamically generate the `name` +- * attribute of input elements using interpolation, you have to wrap each set of repeated inputs in an +- * `ngForm` directive and nest these in an outer `form` element. +- * +- * +- * # CSS classes +- * - `ng-valid` is set if the form is valid. +- * - `ng-invalid` is set if the form is invalid. +- * - `ng-pristine` is set if the form is pristine. +- * - `ng-dirty` is set if the form is dirty. +- * - `ng-submitted` is set if the form was submitted. +- * +- * Keep in mind that ngAnimate can detect each of these classes when added and removed. +- * +- * +- * # Submitting a form and preventing the default action +- * +- * Since the role of forms in client-side Angular applications is different than in classical +- * roundtrip apps, it is desirable for the browser not to translate the form submission into a full +- * page reload that sends the data to the server. Instead some javascript logic should be triggered +- * to handle the form submission in an application-specific way. +- * +- * For this reason, Angular prevents the default action (form submission to the server) unless the +- * `<form>` element has an `action` attribute specified. +- * +- * You can use one of the following two ways to specify what javascript method should be called when +- * a form is submitted: +- * +- * - {@link ng.directive:ngSubmit ngSubmit} directive on the form element +- * - {@link ng.directive:ngClick ngClick} directive on the first +- * button or input field of type submit (input[type=submit]) +- * +- * To prevent double execution of the handler, use only one of the {@link ng.directive:ngSubmit ngSubmit} +- * or {@link ng.directive:ngClick ngClick} directives. +- * This is because of the following form submission rules in the HTML specification: +- * +- * - If a form has only one input field then hitting enter in this field triggers form submit +- * (`ngSubmit`) +- * - if a form has 2+ input fields and no buttons or input[type=submit] then hitting enter +- * doesn't trigger submit +- * - if a form has one or more input fields and one or more buttons or input[type=submit] then +- * hitting enter in any of the input fields will trigger the click handler on the *first* button or +- * input[type=submit] (`ngClick`) *and* a submit handler on the enclosing form (`ngSubmit`) +- * +- * Any pending `ngModelOptions` changes will take place immediately when an enclosing form is +- * submitted. Note that `ngClick` events will occur before the model is updated. Use `ngSubmit` +- * to have access to the updated model. +- * +- * ## Animation Hooks +- * +- * Animations in ngForm are triggered when any of the associated CSS classes are added and removed. +- * These classes are: `.ng-pristine`, `.ng-dirty`, `.ng-invalid` and `.ng-valid` as well as any +- * other validations that are performed within the form. Animations in ngForm are similar to how +- * they work in ngClass and animations can be hooked into using CSS transitions, keyframes as well +- * as JS animations. +- * +- * The following example shows a simple way to utilize CSS transitions to style a form element +- * that has been rendered as invalid after it has been validated: +- * +- * <pre> +- * //be sure to include ngAnimate as a module to hook into more +- * //advanced animations +- * .my-form { +- * transition:0.5s linear all; +- * background: white; +- * } +- * .my-form.ng-invalid { +- * background: red; +- * color:white; +- * } +- * </pre> +- * +- * @example +- <example deps="angular-animate.js" animations="true" fixBase="true" module="formExample"> +- <file name="index.html"> +- <script> +- angular.module('formExample', []) +- .controller('FormController', ['$scope', function($scope) { +- $scope.userType = 'guest'; +- }]); +- </script> +- <style> +- .my-form { +- -webkit-transition:all linear 0.5s; +- transition:all linear 0.5s; +- background: transparent; +- } +- .my-form.ng-invalid { +- background: red; +- } +- </style> +- <form name="myForm" ng-controller="FormController" class="my-form"> +- userType: <input name="input" ng-model="userType" required> +- <span class="error" ng-show="myForm.input.$error.required">Required!</span><br> +- <tt>userType = {{userType}}</tt><br> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should initialize to model', function() { +- var userType = element(by.binding('userType')); +- var valid = element(by.binding('myForm.input.$valid')); +- +- expect(userType.getText()).toContain('guest'); +- expect(valid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty', function() { +- var userType = element(by.binding('userType')); +- var valid = element(by.binding('myForm.input.$valid')); +- var userInput = element(by.model('userType')); +- +- userInput.clear(); +- userInput.sendKeys(''); +- +- expect(userType.getText()).toEqual('userType ='); +- expect(valid.getText()).toContain('false'); +- }); +- </file> +- </example> +- * +- * @param {string=} name Name of the form. If specified, the form controller will be published into +- * related scope, under this name. +- */ +-var formDirectiveFactory = function(isNgForm) { +- return ['$timeout', function($timeout) { +- var formDirective = { +- name: 'form', +- restrict: isNgForm ? 'EAC' : 'E', +- controller: FormController, +- compile: function ngFormCompile(formElement, attr) { +- // Setup initial state of the control +- formElement.addClass(PRISTINE_CLASS).addClass(VALID_CLASS); +- +- var nameAttr = attr.name ? 'name' : (isNgForm && attr.ngForm ? 'ngForm' : false); +- +- return { +- pre: function ngFormPreLink(scope, formElement, attr, controller) { +- // if `action` attr is not present on the form, prevent the default action (submission) +- if (!('action' in attr)) { +- // we can't use jq events because if a form is destroyed during submission the default +- // action is not prevented. see #1238 +- // +- // IE 9 is not affected because it doesn't fire a submit event and try to do a full +- // page reload if the form was destroyed by submission of the form via a click handler +- // on a button in the form. Looks like an IE9 specific bug. +- var handleFormSubmission = function(event) { +- scope.$apply(function() { +- controller.$commitViewValue(); +- controller.$setSubmitted(); +- }); +- +- event.preventDefault(); +- }; +- +- addEventListenerFn(formElement[0], 'submit', handleFormSubmission); +- +- // unregister the preventDefault listener so that we don't not leak memory but in a +- // way that will achieve the prevention of the default action. +- formElement.on('$destroy', function() { +- $timeout(function() { +- removeEventListenerFn(formElement[0], 'submit', handleFormSubmission); +- }, 0, false); +- }); +- } +- +- var parentFormCtrl = controller.$$parentForm; +- +- if (nameAttr) { +- setter(scope, null, controller.$name, controller, controller.$name); +- attr.$observe(nameAttr, function(newValue) { +- if (controller.$name === newValue) return; +- setter(scope, null, controller.$name, undefined, controller.$name); +- parentFormCtrl.$$renameControl(controller, newValue); +- setter(scope, null, controller.$name, controller, controller.$name); +- }); +- } +- formElement.on('$destroy', function() { +- parentFormCtrl.$removeControl(controller); +- if (nameAttr) { +- setter(scope, null, attr[nameAttr], undefined, controller.$name); +- } +- extend(controller, nullFormCtrl); //stop propagating child destruction handlers upwards +- }); +- } +- }; +- } +- }; +- +- return formDirective; +- }]; +-}; +- +-var formDirective = formDirectiveFactory(); +-var ngFormDirective = formDirectiveFactory(true); +- +-/* global VALID_CLASS: false, +- INVALID_CLASS: false, +- PRISTINE_CLASS: false, +- DIRTY_CLASS: false, +- UNTOUCHED_CLASS: false, +- TOUCHED_CLASS: false, +- $ngModelMinErr: false, +-*/ +- +-// Regex code is obtained from SO: https://stackoverflow.com/questions/3143070/javascript-regex-iso-datetime#answer-3143231 +-var ISO_DATE_REGEXP = /\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/; +-var URL_REGEXP = /^(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/; +-var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; +-var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))\s*$/; +-var DATE_REGEXP = /^(\d{4})-(\d{2})-(\d{2})$/; +-var DATETIMELOCAL_REGEXP = /^(\d{4})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; +-var WEEK_REGEXP = /^(\d{4})-W(\d\d)$/; +-var MONTH_REGEXP = /^(\d{4})-(\d\d)$/; +-var TIME_REGEXP = /^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; +- +-var inputType = { +- +- /** +- * @ngdoc input +- * @name input[text] +- * +- * @description +- * Standard HTML text input with angular data binding, inherited by most of the `input` elements. +- * +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required Adds `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of +- * any length. +- * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string +- * that contains the regular expression body that will be converted to a regular expression +- * as in the ngPattern directive. +- * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match +- * a RegExp found by evaluating the Angular expression given in the attribute value. +- * If the expression evaluates to a RegExp object then this is used directly. +- * If the expression is a string then it will be converted to a RegExp after wrapping it in `^` and `$` +- * characters. For instance, `"abc"` will be converted to `new RegExp('^abc$')`. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input. +- * This parameter is ignored for input[type=password] controls, which will never trim the +- * input. +- * +- * @example +- <example name="text-input-directive" module="textInputExample"> +- <file name="index.html"> +- <script> +- angular.module('textInputExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.example = { +- text: 'guest', +- word: /^\s*\w*\s*$/ +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- Single word: <input type="text" name="input" ng-model="example.text" +- ng-pattern="example.word" required ng-trim="false"> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.pattern"> +- Single word only!</span> +- +- <tt>text = {{example.text}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var text = element(by.binding('example.text')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.text')); +- +- it('should initialize to model', function() { +- expect(text.getText()).toContain('guest'); +- expect(valid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty', function() { +- input.clear(); +- input.sendKeys(''); +- +- expect(text.getText()).toEqual('text ='); +- expect(valid.getText()).toContain('false'); +- }); +- +- it('should be invalid if multi word', function() { +- input.clear(); +- input.sendKeys('hello world'); +- +- expect(valid.getText()).toContain('false'); +- }); +- </file> +- </example> +- */ +- 'text': textInputType, +- +- /** +- * @ngdoc input +- * @name input[date] +- * +- * @description +- * Input with date validation and transformation. In browsers that do not yet support +- * the HTML5 date input, a text element will be used. In that case, text must be entered in a valid ISO-8601 +- * date format (yyyy-MM-dd), for example: `2009-01-06`. Since many +- * modern browsers do not yet support this input type, it is important to provide cues to users on the +- * expected input format via a placeholder or label. +- * +- * The model must always be a Date object, otherwise Angular will throw an error. +- * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string. +- * +- * The timezone to be used to read/write the `Date` instance in the model can be defined using +- * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be a +- * valid ISO date string (yyyy-MM-dd). +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must be +- * a valid ISO date string (yyyy-MM-dd). +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="date-input-directive" module="dateInputExample"> +- <file name="index.html"> +- <script> +- angular.module('dateInputExample', []) +- .controller('DateController', ['$scope', function($scope) { +- $scope.example = { +- value: new Date(2013, 9, 22) +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="DateController as dateCtrl"> +- Pick a date in 2013: +- <input type="date" id="exampleInput" name="input" ng-model="example.value" +- placeholder="yyyy-MM-dd" min="2013-01-01" max="2013-12-31" required /> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.date"> +- Not a valid date!</span> +- <tt>value = {{example.value | date: "yyyy-MM-dd"}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value | date: "yyyy-MM-dd"')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- // currently protractor/webdriver does not support +- // sending keys to all known HTML5 input controls +- // for various browsers (see https://github.com/angular/protractor/issues/562). +- function setInput(val) { +- // set the value of the element and force validation. +- var scr = "var ipt = document.getElementById('exampleInput'); " + +- "ipt.value = '" + val + "';" + +- "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });"; +- browser.executeScript(scr); +- } +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('2013-10-22'); +- expect(valid.getText()).toContain('myForm.input.$valid = true'); +- }); +- +- it('should be invalid if empty', function() { +- setInput(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- +- it('should be invalid if over max', function() { +- setInput('2015-01-01'); +- expect(value.getText()).toContain(''); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- </file> +- </example> +- */ +- 'date': createDateInputType('date', DATE_REGEXP, +- createDateParser(DATE_REGEXP, ['yyyy', 'MM', 'dd']), +- 'yyyy-MM-dd'), +- +- /** +- * @ngdoc input +- * @name input[datetime-local] +- * +- * @description +- * Input with datetime validation and transformation. In browsers that do not yet support +- * the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 +- * local datetime format (yyyy-MM-ddTHH:mm:ss), for example: `2010-12-28T14:57:00`. +- * +- * The model must always be a Date object, otherwise Angular will throw an error. +- * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string. +- * +- * The timezone to be used to read/write the `Date` instance in the model can be defined using +- * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be a +- * valid ISO datetime format (yyyy-MM-ddTHH:mm:ss). +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must be +- * a valid ISO datetime format (yyyy-MM-ddTHH:mm:ss). +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="datetimelocal-input-directive" module="dateExample"> +- <file name="index.html"> +- <script> +- angular.module('dateExample', []) +- .controller('DateController', ['$scope', function($scope) { +- $scope.example = { +- value: new Date(2010, 11, 28, 14, 57) +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="DateController as dateCtrl"> +- Pick a date between in 2013: +- <input type="datetime-local" id="exampleInput" name="input" ng-model="example.value" +- placeholder="yyyy-MM-ddTHH:mm:ss" min="2001-01-01T00:00:00" max="2013-12-31T00:00:00" required /> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.datetimelocal"> +- Not a valid date!</span> +- <tt>value = {{example.value | date: "yyyy-MM-ddTHH:mm:ss"}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value | date: "yyyy-MM-ddTHH:mm:ss"')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- // currently protractor/webdriver does not support +- // sending keys to all known HTML5 input controls +- // for various browsers (https://github.com/angular/protractor/issues/562). +- function setInput(val) { +- // set the value of the element and force validation. +- var scr = "var ipt = document.getElementById('exampleInput'); " + +- "ipt.value = '" + val + "';" + +- "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });"; +- browser.executeScript(scr); +- } +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('2010-12-28T14:57:00'); +- expect(valid.getText()).toContain('myForm.input.$valid = true'); +- }); +- +- it('should be invalid if empty', function() { +- setInput(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- +- it('should be invalid if over max', function() { +- setInput('2015-01-01T23:59:00'); +- expect(value.getText()).toContain(''); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- </file> +- </example> +- */ +- 'datetime-local': createDateInputType('datetimelocal', DATETIMELOCAL_REGEXP, +- createDateParser(DATETIMELOCAL_REGEXP, ['yyyy', 'MM', 'dd', 'HH', 'mm', 'ss', 'sss']), +- 'yyyy-MM-ddTHH:mm:ss.sss'), +- +- /** +- * @ngdoc input +- * @name input[time] +- * +- * @description +- * Input with time validation and transformation. In browsers that do not yet support +- * the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 +- * local time format (HH:mm:ss), for example: `14:57:00`. Model must be a Date object. This binding will always output a +- * Date object to the model of January 1, 1970, or local date `new Date(1970, 0, 1, HH, mm, ss)`. +- * +- * The model must always be a Date object, otherwise Angular will throw an error. +- * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string. +- * +- * The timezone to be used to read/write the `Date` instance in the model can be defined using +- * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be a +- * valid ISO time format (HH:mm:ss). +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must be a +- * valid ISO time format (HH:mm:ss). +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="time-input-directive" module="timeExample"> +- <file name="index.html"> +- <script> +- angular.module('timeExample', []) +- .controller('DateController', ['$scope', function($scope) { +- $scope.example = { +- value: new Date(1970, 0, 1, 14, 57, 0) +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="DateController as dateCtrl"> +- Pick a between 8am and 5pm: +- <input type="time" id="exampleInput" name="input" ng-model="example.value" +- placeholder="HH:mm:ss" min="08:00:00" max="17:00:00" required /> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.time"> +- Not a valid date!</span> +- <tt>value = {{example.value | date: "HH:mm:ss"}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value | date: "HH:mm:ss"')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- // currently protractor/webdriver does not support +- // sending keys to all known HTML5 input controls +- // for various browsers (https://github.com/angular/protractor/issues/562). +- function setInput(val) { +- // set the value of the element and force validation. +- var scr = "var ipt = document.getElementById('exampleInput'); " + +- "ipt.value = '" + val + "';" + +- "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });"; +- browser.executeScript(scr); +- } +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('14:57:00'); +- expect(valid.getText()).toContain('myForm.input.$valid = true'); +- }); +- +- it('should be invalid if empty', function() { +- setInput(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- +- it('should be invalid if over max', function() { +- setInput('23:59:00'); +- expect(value.getText()).toContain(''); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- </file> +- </example> +- */ +- 'time': createDateInputType('time', TIME_REGEXP, +- createDateParser(TIME_REGEXP, ['HH', 'mm', 'ss', 'sss']), +- 'HH:mm:ss.sss'), +- +- /** +- * @ngdoc input +- * @name input[week] +- * +- * @description +- * Input with week-of-the-year validation and transformation to Date. In browsers that do not yet support +- * the HTML5 week input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 +- * week format (yyyy-W##), for example: `2013-W02`. +- * +- * The model must always be a Date object, otherwise Angular will throw an error. +- * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string. +- * +- * The timezone to be used to read/write the `Date` instance in the model can be defined using +- * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be a +- * valid ISO week format (yyyy-W##). +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must be +- * a valid ISO week format (yyyy-W##). +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="week-input-directive" module="weekExample"> +- <file name="index.html"> +- <script> +- angular.module('weekExample', []) +- .controller('DateController', ['$scope', function($scope) { +- $scope.example = { +- value: new Date(2013, 0, 3) +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="DateController as dateCtrl"> +- Pick a date between in 2013: +- <input id="exampleInput" type="week" name="input" ng-model="example.value" +- placeholder="YYYY-W##" min="2012-W32" max="2013-W52" required /> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.week"> +- Not a valid date!</span> +- <tt>value = {{example.value | date: "yyyy-Www"}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value | date: "yyyy-Www"')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- // currently protractor/webdriver does not support +- // sending keys to all known HTML5 input controls +- // for various browsers (https://github.com/angular/protractor/issues/562). +- function setInput(val) { +- // set the value of the element and force validation. +- var scr = "var ipt = document.getElementById('exampleInput'); " + +- "ipt.value = '" + val + "';" + +- "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });"; +- browser.executeScript(scr); +- } +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('2013-W01'); +- expect(valid.getText()).toContain('myForm.input.$valid = true'); +- }); +- +- it('should be invalid if empty', function() { +- setInput(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- +- it('should be invalid if over max', function() { +- setInput('2015-W01'); +- expect(value.getText()).toContain(''); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- </file> +- </example> +- */ +- 'week': createDateInputType('week', WEEK_REGEXP, weekParser, 'yyyy-Www'), +- +- /** +- * @ngdoc input +- * @name input[month] +- * +- * @description +- * Input with month validation and transformation. In browsers that do not yet support +- * the HTML5 month input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 +- * month format (yyyy-MM), for example: `2009-01`. +- * +- * The model must always be a Date object, otherwise Angular will throw an error. +- * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string. +- * If the model is not set to the first of the month, the next view to model update will set it +- * to the first of the month. +- * +- * The timezone to be used to read/write the `Date` instance in the model can be defined using +- * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be +- * a valid ISO month format (yyyy-MM). +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must +- * be a valid ISO month format (yyyy-MM). +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="month-input-directive" module="monthExample"> +- <file name="index.html"> +- <script> +- angular.module('monthExample', []) +- .controller('DateController', ['$scope', function($scope) { +- $scope.example = { +- value: new Date(2013, 9, 1) +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="DateController as dateCtrl"> +- Pick a month in 2013: +- <input id="exampleInput" type="month" name="input" ng-model="example.value" +- placeholder="yyyy-MM" min="2013-01" max="2013-12" required /> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.month"> +- Not a valid month!</span> +- <tt>value = {{example.value | date: "yyyy-MM"}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value | date: "yyyy-MM"')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- // currently protractor/webdriver does not support +- // sending keys to all known HTML5 input controls +- // for various browsers (https://github.com/angular/protractor/issues/562). +- function setInput(val) { +- // set the value of the element and force validation. +- var scr = "var ipt = document.getElementById('exampleInput'); " + +- "ipt.value = '" + val + "';" + +- "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });"; +- browser.executeScript(scr); +- } +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('2013-10'); +- expect(valid.getText()).toContain('myForm.input.$valid = true'); +- }); +- +- it('should be invalid if empty', function() { +- setInput(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- +- it('should be invalid if over max', function() { +- setInput('2015-01'); +- expect(value.getText()).toContain(''); +- expect(valid.getText()).toContain('myForm.input.$valid = false'); +- }); +- </file> +- </example> +- */ +- 'month': createDateInputType('month', MONTH_REGEXP, +- createDateParser(MONTH_REGEXP, ['yyyy', 'MM']), +- 'yyyy-MM'), +- +- /** +- * @ngdoc input +- * @name input[number] +- * +- * @description +- * Text input with number validation and transformation. Sets the `number` validation +- * error if not a valid number. +- * +- * The model must always be a number, otherwise Angular will throw an error. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. +- * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of +- * any length. +- * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string +- * that contains the regular expression body that will be converted to a regular expression +- * as in the ngPattern directive. +- * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match +- * a RegExp found by evaluating the Angular expression given in the attribute value. +- * If the expression evaluates to a RegExp object then this is used directly. +- * If the expression is a string then it will be converted to a RegExp after wrapping it in `^` and `$` +- * characters. For instance, `"abc"` will be converted to `new RegExp('^abc$')`. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="number-input-directive" module="numberExample"> +- <file name="index.html"> +- <script> +- angular.module('numberExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.example = { +- value: 12 +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- Number: <input type="number" name="input" ng-model="example.value" +- min="0" max="99" required> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.number"> +- Not valid number!</span> +- <tt>value = {{example.value}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var value = element(by.binding('example.value')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('example.value')); +- +- it('should initialize to model', function() { +- expect(value.getText()).toContain('12'); +- expect(valid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty', function() { +- input.clear(); +- input.sendKeys(''); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('false'); +- }); +- +- it('should be invalid if over max', function() { +- input.clear(); +- input.sendKeys('123'); +- expect(value.getText()).toEqual('value ='); +- expect(valid.getText()).toContain('false'); +- }); +- </file> +- </example> +- */ +- 'number': numberInputType, +- +- +- /** +- * @ngdoc input +- * @name input[url] +- * +- * @description +- * Text input with URL validation. Sets the `url` validation error key if the content is not a +- * valid URL. +- * +- * <div class="alert alert-warning"> +- * **Note:** `input[url]` uses a regex to validate urls that is derived from the regex +- * used in Chromium. If you need stricter validation, you can use `ng-pattern` or modify +- * the built-in validators (see the {@link guide/forms Forms guide}) +- * </div> +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of +- * any length. +- * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string +- * that contains the regular expression body that will be converted to a regular expression +- * as in the ngPattern directive. +- * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match +- * a RegExp found by evaluating the Angular expression given in the attribute value. +- * If the expression evaluates to a RegExp object then this is used directly. +- * If the expression is a string then it will be converted to a RegExp after wrapping it in `^` and `$` +- * characters. For instance, `"abc"` will be converted to `new RegExp('^abc$')`. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="url-input-directive" module="urlExample"> +- <file name="index.html"> +- <script> +- angular.module('urlExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.url = { +- text: 'http://google.com' +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- URL: <input type="url" name="input" ng-model="url.text" required> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.url"> +- Not valid url!</span> +- <tt>text = {{url.text}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- <tt>myForm.$error.url = {{!!myForm.$error.url}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var text = element(by.binding('url.text')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('url.text')); +- +- it('should initialize to model', function() { +- expect(text.getText()).toContain('http://google.com'); +- expect(valid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty', function() { +- input.clear(); +- input.sendKeys(''); +- +- expect(text.getText()).toEqual('text ='); +- expect(valid.getText()).toContain('false'); +- }); +- +- it('should be invalid if not url', function() { +- input.clear(); +- input.sendKeys('box'); +- +- expect(valid.getText()).toContain('false'); +- }); +- </file> +- </example> +- */ +- 'url': urlInputType, +- +- +- /** +- * @ngdoc input +- * @name input[email] +- * +- * @description +- * Text input with email validation. Sets the `email` validation error key if not a valid email +- * address. +- * +- * <div class="alert alert-warning"> +- * **Note:** `input[email]` uses a regex to validate email addresses that is derived from the regex +- * used in Chromium. If you need stricter validation (e.g. requiring a top-level domain), you can +- * use `ng-pattern` or modify the built-in validators (see the {@link guide/forms Forms guide}) +- * </div> +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of +- * any length. +- * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string +- * that contains the regular expression body that will be converted to a regular expression +- * as in the ngPattern directive. +- * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match +- * a RegExp found by evaluating the Angular expression given in the attribute value. +- * If the expression evaluates to a RegExp object then this is used directly. +- * If the expression is a string then it will be converted to a RegExp after wrapping it in `^` and `$` +- * characters. For instance, `"abc"` will be converted to `new RegExp('^abc$')`. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="email-input-directive" module="emailExample"> +- <file name="index.html"> +- <script> +- angular.module('emailExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.email = { +- text: 'me@example.com' +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- Email: <input type="email" name="input" ng-model="email.text" required> +- <span class="error" ng-show="myForm.input.$error.required"> +- Required!</span> +- <span class="error" ng-show="myForm.input.$error.email"> +- Not valid email!</span> +- <tt>text = {{email.text}}</tt><br/> +- <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/> +- <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- <tt>myForm.$error.email = {{!!myForm.$error.email}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var text = element(by.binding('email.text')); +- var valid = element(by.binding('myForm.input.$valid')); +- var input = element(by.model('email.text')); +- +- it('should initialize to model', function() { +- expect(text.getText()).toContain('me@example.com'); +- expect(valid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty', function() { +- input.clear(); +- input.sendKeys(''); +- expect(text.getText()).toEqual('text ='); +- expect(valid.getText()).toContain('false'); +- }); +- +- it('should be invalid if not email', function() { +- input.clear(); +- input.sendKeys('xxx'); +- +- expect(valid.getText()).toContain('false'); +- }); +- </file> +- </example> +- */ +- 'email': emailInputType, +- +- +- /** +- * @ngdoc input +- * @name input[radio] +- * +- * @description +- * HTML radio button. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string} value The value to which the expression should be set when selected. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * @param {string} ngValue Angular expression which sets the value to which the expression should +- * be set when selected. +- * +- * @example +- <example name="radio-input-directive" module="radioExample"> +- <file name="index.html"> +- <script> +- angular.module('radioExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.color = { +- name: 'blue' +- }; +- $scope.specialValue = { +- "id": "12345", +- "value": "green" +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- <input type="radio" ng-model="color.name" value="red"> Red <br/> +- <input type="radio" ng-model="color.name" ng-value="specialValue"> Green <br/> +- <input type="radio" ng-model="color.name" value="blue"> Blue <br/> +- <tt>color = {{color.name | json}}</tt><br/> +- </form> +- Note that `ng-value="specialValue"` sets radio item's value to be the value of `$scope.specialValue`. +- </file> +- <file name="protractor.js" type="protractor"> +- it('should change state', function() { +- var color = element(by.binding('color.name')); +- +- expect(color.getText()).toContain('blue'); +- +- element.all(by.model('color.name')).get(0).click(); +- +- expect(color.getText()).toContain('red'); +- }); +- </file> +- </example> +- */ +- 'radio': radioInputType, +- +- +- /** +- * @ngdoc input +- * @name input[checkbox] +- * +- * @description +- * HTML checkbox. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {expression=} ngTrueValue The value to which the expression should be set when selected. +- * @param {expression=} ngFalseValue The value to which the expression should be set when not selected. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * +- * @example +- <example name="checkbox-input-directive" module="checkboxExample"> +- <file name="index.html"> +- <script> +- angular.module('checkboxExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.checkboxModel = { +- value1 : true, +- value2 : 'YES' +- }; +- }]); +- </script> +- <form name="myForm" ng-controller="ExampleController"> +- Value1: <input type="checkbox" ng-model="checkboxModel.value1"> <br/> +- Value2: <input type="checkbox" ng-model="checkboxModel.value2" +- ng-true-value="'YES'" ng-false-value="'NO'"> <br/> +- <tt>value1 = {{checkboxModel.value1}}</tt><br/> +- <tt>value2 = {{checkboxModel.value2}}</tt><br/> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should change state', function() { +- var value1 = element(by.binding('checkboxModel.value1')); +- var value2 = element(by.binding('checkboxModel.value2')); +- +- expect(value1.getText()).toContain('true'); +- expect(value2.getText()).toContain('YES'); +- +- element(by.model('checkboxModel.value1')).click(); +- element(by.model('checkboxModel.value2')).click(); +- +- expect(value1.getText()).toContain('false'); +- expect(value2.getText()).toContain('NO'); +- }); +- </file> +- </example> +- */ +- 'checkbox': checkboxInputType, +- +- 'hidden': noop, +- 'button': noop, +- 'submit': noop, +- 'reset': noop, +- 'file': noop +-}; +- +-function stringBasedInputType(ctrl) { +- ctrl.$formatters.push(function(value) { +- return ctrl.$isEmpty(value) ? value : value.toString(); +- }); +-} +- +-function textInputType(scope, element, attr, ctrl, $sniffer, $browser) { +- baseInputType(scope, element, attr, ctrl, $sniffer, $browser); +- stringBasedInputType(ctrl); +-} +- +-function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) { +- var type = lowercase(element[0].type); +- +- // In composition mode, users are still inputing intermediate text buffer, +- // hold the listener until composition is done. +- // More about composition events: https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent +- if (!$sniffer.android) { +- var composing = false; +- +- element.on('compositionstart', function(data) { +- composing = true; +- }); +- +- element.on('compositionend', function() { +- composing = false; +- listener(); +- }); +- } +- +- var listener = function(ev) { +- if (timeout) { +- $browser.defer.cancel(timeout); +- timeout = null; +- } +- if (composing) return; +- var value = element.val(), +- event = ev && ev.type; +- +- // By default we will trim the value +- // If the attribute ng-trim exists we will avoid trimming +- // If input type is 'password', the value is never trimmed +- if (type !== 'password' && (!attr.ngTrim || attr.ngTrim !== 'false')) { +- value = trim(value); +- } +- +- // If a control is suffering from bad input (due to native validators), browsers discard its +- // value, so it may be necessary to revalidate (by calling $setViewValue again) even if the +- // control's value is the same empty value twice in a row. +- if (ctrl.$viewValue !== value || (value === '' && ctrl.$$hasNativeValidators)) { +- ctrl.$setViewValue(value, event); +- } +- }; +- +- // if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the +- // input event on backspace, delete or cut +- if ($sniffer.hasEvent('input')) { +- element.on('input', listener); +- } else { +- var timeout; +- +- var deferListener = function(ev, input, origValue) { +- if (!timeout) { +- timeout = $browser.defer(function() { +- timeout = null; +- if (!input || input.value !== origValue) { +- listener(ev); +- } +- }); +- } +- }; +- +- element.on('keydown', function(event) { +- var key = event.keyCode; +- +- // ignore +- // command modifiers arrows +- if (key === 91 || (15 < key && key < 19) || (37 <= key && key <= 40)) return; +- +- deferListener(event, this, this.value); +- }); +- +- // if user modifies input value using context menu in IE, we need "paste" and "cut" events to catch it +- if ($sniffer.hasEvent('paste')) { +- element.on('paste cut', deferListener); +- } +- } +- +- // if user paste into input using mouse on older browser +- // or form autocomplete on newer browser, we need "change" event to catch it +- element.on('change', listener); +- +- ctrl.$render = function() { +- element.val(ctrl.$isEmpty(ctrl.$viewValue) ? '' : ctrl.$viewValue); +- }; +-} +- +-function weekParser(isoWeek, existingDate) { +- if (isDate(isoWeek)) { +- return isoWeek; +- } +- +- if (isString(isoWeek)) { +- WEEK_REGEXP.lastIndex = 0; +- var parts = WEEK_REGEXP.exec(isoWeek); +- if (parts) { +- var year = +parts[1], +- week = +parts[2], +- hours = 0, +- minutes = 0, +- seconds = 0, +- milliseconds = 0, +- firstThurs = getFirstThursdayOfYear(year), +- addDays = (week - 1) * 7; +- +- if (existingDate) { +- hours = existingDate.getHours(); +- minutes = existingDate.getMinutes(); +- seconds = existingDate.getSeconds(); +- milliseconds = existingDate.getMilliseconds(); +- } +- +- return new Date(year, 0, firstThurs.getDate() + addDays, hours, minutes, seconds, milliseconds); +- } +- } +- +- return NaN; +-} +- +-function createDateParser(regexp, mapping) { +- return function(iso, date) { +- var parts, map; +- +- if (isDate(iso)) { +- return iso; +- } +- +- if (isString(iso)) { +- // When a date is JSON'ified to wraps itself inside of an extra +- // set of double quotes. This makes the date parsing code unable +- // to match the date string and parse it as a date. +- if (iso.charAt(0) == '"' && iso.charAt(iso.length - 1) == '"') { +- iso = iso.substring(1, iso.length - 1); +- } +- if (ISO_DATE_REGEXP.test(iso)) { +- return new Date(iso); +- } +- regexp.lastIndex = 0; +- parts = regexp.exec(iso); +- +- if (parts) { +- parts.shift(); +- if (date) { +- map = { +- yyyy: date.getFullYear(), +- MM: date.getMonth() + 1, +- dd: date.getDate(), +- HH: date.getHours(), +- mm: date.getMinutes(), +- ss: date.getSeconds(), +- sss: date.getMilliseconds() / 1000 +- }; +- } else { +- map = { yyyy: 1970, MM: 1, dd: 1, HH: 0, mm: 0, ss: 0, sss: 0 }; +- } +- +- forEach(parts, function(part, index) { +- if (index < mapping.length) { +- map[mapping[index]] = +part; +- } +- }); +- return new Date(map.yyyy, map.MM - 1, map.dd, map.HH, map.mm, map.ss || 0, map.sss * 1000 || 0); +- } +- } +- +- return NaN; +- }; +-} +- +-function createDateInputType(type, regexp, parseDate, format) { +- return function dynamicDateInputType(scope, element, attr, ctrl, $sniffer, $browser, $filter) { +- badInputChecker(scope, element, attr, ctrl); +- baseInputType(scope, element, attr, ctrl, $sniffer, $browser); +- var timezone = ctrl && ctrl.$options && ctrl.$options.timezone; +- var previousDate; +- +- ctrl.$$parserName = type; +- ctrl.$parsers.push(function(value) { +- if (ctrl.$isEmpty(value)) return null; +- if (regexp.test(value)) { +- // Note: We cannot read ctrl.$modelValue, as there might be a different +- // parser/formatter in the processing chain so that the model +- // contains some different data format! +- var parsedDate = parseDate(value, previousDate); +- if (timezone === 'UTC') { +- parsedDate.setMinutes(parsedDate.getMinutes() - parsedDate.getTimezoneOffset()); +- } +- return parsedDate; +- } +- return undefined; +- }); +- +- ctrl.$formatters.push(function(value) { +- if (value && !isDate(value)) { +- throw $ngModelMinErr('datefmt', 'Expected `{0}` to be a date', value); +- } +- if (isValidDate(value)) { +- previousDate = value; +- if (previousDate && timezone === 'UTC') { +- var timezoneOffset = 60000 * previousDate.getTimezoneOffset(); +- previousDate = new Date(previousDate.getTime() + timezoneOffset); +- } +- return $filter('date')(value, format, timezone); +- } else { +- previousDate = null; +- return ''; +- } +- }); +- +- if (isDefined(attr.min) || attr.ngMin) { +- var minVal; +- ctrl.$validators.min = function(value) { +- return !isValidDate(value) || isUndefined(minVal) || parseDate(value) >= minVal; +- }; +- attr.$observe('min', function(val) { +- minVal = parseObservedDateValue(val); +- ctrl.$validate(); +- }); +- } +- +- if (isDefined(attr.max) || attr.ngMax) { +- var maxVal; +- ctrl.$validators.max = function(value) { +- return !isValidDate(value) || isUndefined(maxVal) || parseDate(value) <= maxVal; +- }; +- attr.$observe('max', function(val) { +- maxVal = parseObservedDateValue(val); +- ctrl.$validate(); +- }); +- } +- +- function isValidDate(value) { +- // Invalid Date: getTime() returns NaN +- return value && !(value.getTime && value.getTime() !== value.getTime()); +- } +- +- function parseObservedDateValue(val) { +- return isDefined(val) ? (isDate(val) ? val : parseDate(val)) : undefined; +- } +- }; +-} +- +-function badInputChecker(scope, element, attr, ctrl) { +- var node = element[0]; +- var nativeValidation = ctrl.$$hasNativeValidators = isObject(node.validity); +- if (nativeValidation) { +- ctrl.$parsers.push(function(value) { +- var validity = element.prop(VALIDITY_STATE_PROPERTY) || {}; +- // Detect bug in FF35 for input[email] (https://bugzilla.mozilla.org/show_bug.cgi?id=1064430): +- // - also sets validity.badInput (should only be validity.typeMismatch). +- // - see http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#e-mail-state-(type=email) +- // - can ignore this case as we can still read out the erroneous email... +- return validity.badInput && !validity.typeMismatch ? undefined : value; +- }); +- } +-} +- +-function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { +- badInputChecker(scope, element, attr, ctrl); +- baseInputType(scope, element, attr, ctrl, $sniffer, $browser); +- +- ctrl.$$parserName = 'number'; +- ctrl.$parsers.push(function(value) { +- if (ctrl.$isEmpty(value)) return null; +- if (NUMBER_REGEXP.test(value)) return parseFloat(value); +- return undefined; +- }); +- +- ctrl.$formatters.push(function(value) { +- if (!ctrl.$isEmpty(value)) { +- if (!isNumber(value)) { +- throw $ngModelMinErr('numfmt', 'Expected `{0}` to be a number', value); +- } +- value = value.toString(); +- } +- return value; +- }); +- +- if (isDefined(attr.min) || attr.ngMin) { +- var minVal; +- ctrl.$validators.min = function(value) { +- return ctrl.$isEmpty(value) || isUndefined(minVal) || value >= minVal; +- }; +- +- attr.$observe('min', function(val) { +- if (isDefined(val) && !isNumber(val)) { +- val = parseFloat(val, 10); +- } +- minVal = isNumber(val) && !isNaN(val) ? val : undefined; +- // TODO(matsko): implement validateLater to reduce number of validations +- ctrl.$validate(); +- }); +- } +- +- if (isDefined(attr.max) || attr.ngMax) { +- var maxVal; +- ctrl.$validators.max = function(value) { +- return ctrl.$isEmpty(value) || isUndefined(maxVal) || value <= maxVal; +- }; +- +- attr.$observe('max', function(val) { +- if (isDefined(val) && !isNumber(val)) { +- val = parseFloat(val, 10); +- } +- maxVal = isNumber(val) && !isNaN(val) ? val : undefined; +- // TODO(matsko): implement validateLater to reduce number of validations +- ctrl.$validate(); +- }); +- } +-} +- +-function urlInputType(scope, element, attr, ctrl, $sniffer, $browser) { +- // Note: no badInputChecker here by purpose as `url` is only a validation +- // in browsers, i.e. we can always read out input.value even if it is not valid! +- baseInputType(scope, element, attr, ctrl, $sniffer, $browser); +- stringBasedInputType(ctrl); +- +- ctrl.$$parserName = 'url'; +- ctrl.$validators.url = function(modelValue, viewValue) { +- var value = modelValue || viewValue; +- return ctrl.$isEmpty(value) || URL_REGEXP.test(value); +- }; +-} +- +-function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) { +- // Note: no badInputChecker here by purpose as `url` is only a validation +- // in browsers, i.e. we can always read out input.value even if it is not valid! +- baseInputType(scope, element, attr, ctrl, $sniffer, $browser); +- stringBasedInputType(ctrl); +- +- ctrl.$$parserName = 'email'; +- ctrl.$validators.email = function(modelValue, viewValue) { +- var value = modelValue || viewValue; +- return ctrl.$isEmpty(value) || EMAIL_REGEXP.test(value); +- }; +-} +- +-function radioInputType(scope, element, attr, ctrl) { +- // make the name unique, if not defined +- if (isUndefined(attr.name)) { +- element.attr('name', nextUid()); +- } +- +- var listener = function(ev) { +- if (element[0].checked) { +- ctrl.$setViewValue(attr.value, ev && ev.type); +- } +- }; +- +- element.on('click', listener); +- +- ctrl.$render = function() { +- var value = attr.value; +- element[0].checked = (value == ctrl.$viewValue); +- }; +- +- attr.$observe('value', ctrl.$render); +-} +- +-function parseConstantExpr($parse, context, name, expression, fallback) { +- var parseFn; +- if (isDefined(expression)) { +- parseFn = $parse(expression); +- if (!parseFn.constant) { +- throw minErr('ngModel')('constexpr', 'Expected constant expression for `{0}`, but saw ' + +- '`{1}`.', name, expression); +- } +- return parseFn(context); +- } +- return fallback; +-} +- +-function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filter, $parse) { +- var trueValue = parseConstantExpr($parse, scope, 'ngTrueValue', attr.ngTrueValue, true); +- var falseValue = parseConstantExpr($parse, scope, 'ngFalseValue', attr.ngFalseValue, false); +- +- var listener = function(ev) { +- ctrl.$setViewValue(element[0].checked, ev && ev.type); +- }; +- +- element.on('click', listener); +- +- ctrl.$render = function() { +- element[0].checked = ctrl.$viewValue; +- }; +- +- // Override the standard `$isEmpty` because the $viewValue of an empty checkbox is always set to `false` +- // This is because of the parser below, which compares the `$modelValue` with `trueValue` to convert +- // it to a boolean. +- ctrl.$isEmpty = function(value) { +- return value === false; +- }; +- +- ctrl.$formatters.push(function(value) { +- return equals(value, trueValue); +- }); +- +- ctrl.$parsers.push(function(value) { +- return value ? trueValue : falseValue; +- }); +-} +- +- +-/** +- * @ngdoc directive +- * @name textarea +- * @restrict E +- * +- * @description +- * HTML textarea element control with angular data-binding. The data-binding and validation +- * properties of this element are exactly the same as those of the +- * {@link ng.directive:input input element}. +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any +- * length. +- * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the +- * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for +- * patterns defined as scope expressions. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input. +- */ +- +- +-/** +- * @ngdoc directive +- * @name input +- * @restrict E +- * +- * @description +- * HTML input element control. When used together with {@link ngModel `ngModel`}, it provides data-binding, +- * input state control, and validation. +- * Input control follows HTML5 input types and polyfills the HTML5 validation behavior for older browsers. +- * +- * <div class="alert alert-warning"> +- * **Note:** Not every feature offered is available for all input types. +- * Specifically, data binding and event handling via `ng-model` is unsupported for `input[file]`. +- * </div> +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required Sets `required` validation error key if the value is not entered. +- * @param {boolean=} ngRequired Sets `required` attribute if set to true +- * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than +- * minlength. +- * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than +- * maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any +- * length. +- * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the +- * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for +- * patterns defined as scope expressions. +- * @param {string=} ngChange Angular expression to be executed when input changes due to user +- * interaction with the input element. +- * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input. +- * This parameter is ignored for input[type=password] controls, which will never trim the +- * input. +- * +- * @example +- <example name="input-directive" module="inputExample"> +- <file name="index.html"> +- <script> +- angular.module('inputExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.user = {name: 'guest', last: 'visitor'}; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <form name="myForm"> +- User name: <input type="text" name="userName" ng-model="user.name" required> +- <span class="error" ng-show="myForm.userName.$error.required"> +- Required!</span><br> +- Last name: <input type="text" name="lastName" ng-model="user.last" +- ng-minlength="3" ng-maxlength="10"> +- <span class="error" ng-show="myForm.lastName.$error.minlength"> +- Too short!</span> +- <span class="error" ng-show="myForm.lastName.$error.maxlength"> +- Too long!</span><br> +- </form> +- <hr> +- <tt>user = {{user}}</tt><br/> +- <tt>myForm.userName.$valid = {{myForm.userName.$valid}}</tt><br> +- <tt>myForm.userName.$error = {{myForm.userName.$error}}</tt><br> +- <tt>myForm.lastName.$valid = {{myForm.lastName.$valid}}</tt><br> +- <tt>myForm.lastName.$error = {{myForm.lastName.$error}}</tt><br> +- <tt>myForm.$valid = {{myForm.$valid}}</tt><br> +- <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br> +- <tt>myForm.$error.minlength = {{!!myForm.$error.minlength}}</tt><br> +- <tt>myForm.$error.maxlength = {{!!myForm.$error.maxlength}}</tt><br> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- var user = element(by.exactBinding('user')); +- var userNameValid = element(by.binding('myForm.userName.$valid')); +- var lastNameValid = element(by.binding('myForm.lastName.$valid')); +- var lastNameError = element(by.binding('myForm.lastName.$error')); +- var formValid = element(by.binding('myForm.$valid')); +- var userNameInput = element(by.model('user.name')); +- var userLastInput = element(by.model('user.last')); +- +- it('should initialize to model', function() { +- expect(user.getText()).toContain('{"name":"guest","last":"visitor"}'); +- expect(userNameValid.getText()).toContain('true'); +- expect(formValid.getText()).toContain('true'); +- }); +- +- it('should be invalid if empty when required', function() { +- userNameInput.clear(); +- userNameInput.sendKeys(''); +- +- expect(user.getText()).toContain('{"last":"visitor"}'); +- expect(userNameValid.getText()).toContain('false'); +- expect(formValid.getText()).toContain('false'); +- }); +- +- it('should be valid if empty when min length is set', function() { +- userLastInput.clear(); +- userLastInput.sendKeys(''); +- +- expect(user.getText()).toContain('{"name":"guest","last":""}'); +- expect(lastNameValid.getText()).toContain('true'); +- expect(formValid.getText()).toContain('true'); +- }); +- +- it('should be invalid if less than required min length', function() { +- userLastInput.clear(); +- userLastInput.sendKeys('xx'); +- +- expect(user.getText()).toContain('{"name":"guest"}'); +- expect(lastNameValid.getText()).toContain('false'); +- expect(lastNameError.getText()).toContain('minlength'); +- expect(formValid.getText()).toContain('false'); +- }); +- +- it('should be invalid if longer than max length', function() { +- userLastInput.clear(); +- userLastInput.sendKeys('some ridiculously long name'); +- +- expect(user.getText()).toContain('{"name":"guest"}'); +- expect(lastNameValid.getText()).toContain('false'); +- expect(lastNameError.getText()).toContain('maxlength'); +- expect(formValid.getText()).toContain('false'); +- }); +- </file> +- </example> +- */ +-var inputDirective = ['$browser', '$sniffer', '$filter', '$parse', +- function($browser, $sniffer, $filter, $parse) { +- return { +- restrict: 'E', +- require: ['?ngModel'], +- link: { +- pre: function(scope, element, attr, ctrls) { +- if (ctrls[0]) { +- (inputType[lowercase(attr.type)] || inputType.text)(scope, element, attr, ctrls[0], $sniffer, +- $browser, $filter, $parse); +- } +- } +- } +- }; +-}]; +- +- +- +-var CONSTANT_VALUE_REGEXP = /^(true|false|\d+)$/; +-/** +- * @ngdoc directive +- * @name ngValue +- * +- * @description +- * Binds the given expression to the value of `<option>` or {@link input[radio] `input[radio]`}, +- * so that when the element is selected, the {@link ngModel `ngModel`} of that element is set to +- * the bound value. +- * +- * `ngValue` is useful when dynamically generating lists of radio buttons using +- * {@link ngRepeat `ngRepeat`}, as shown below. +- * +- * Likewise, `ngValue` can be used to generate `<option>` elements for +- * the {@link select `select`} element. In that case however, only strings are supported +- * for the `value `attribute, so the resulting `ngModel` will always be a string. +- * Support for `select` models with non-string values is available via `ngOptions`. +- * +- * @element input +- * @param {string=} ngValue angular expression, whose value will be bound to the `value` attribute +- * of the `input` element +- * +- * @example +- <example name="ngValue-directive" module="valueExample"> +- <file name="index.html"> +- <script> +- angular.module('valueExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.names = ['pizza', 'unicorns', 'robots']; +- $scope.my = { favorite: 'unicorns' }; +- }]); +- </script> +- <form ng-controller="ExampleController"> +- <h2>Which is your favorite?</h2> +- <label ng-repeat="name in names" for="{{name}}"> +- {{name}} +- <input type="radio" +- ng-model="my.favorite" +- ng-value="name" +- id="{{name}}" +- name="favorite"> +- </label> +- <div>You chose {{my.favorite}}</div> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- var favorite = element(by.binding('my.favorite')); +- +- it('should initialize to model', function() { +- expect(favorite.getText()).toContain('unicorns'); +- }); +- it('should bind the values to the inputs', function() { +- element.all(by.model('my.favorite')).get(0).click(); +- expect(favorite.getText()).toContain('pizza'); +- }); +- </file> +- </example> +- */ +-var ngValueDirective = function() { +- return { +- restrict: 'A', +- priority: 100, +- compile: function(tpl, tplAttr) { +- if (CONSTANT_VALUE_REGEXP.test(tplAttr.ngValue)) { +- return function ngValueConstantLink(scope, elm, attr) { +- attr.$set('value', scope.$eval(attr.ngValue)); +- }; +- } else { +- return function ngValueLink(scope, elm, attr) { +- scope.$watch(attr.ngValue, function valueWatchAction(value) { +- attr.$set('value', value); +- }); +- }; +- } +- } +- }; +-}; +- +-/** +- * @ngdoc directive +- * @name ngBind +- * @restrict AC +- * +- * @description +- * The `ngBind` attribute tells Angular to replace the text content of the specified HTML element +- * with the value of a given expression, and to update the text content when the value of that +- * expression changes. +- * +- * Typically, you don't use `ngBind` directly, but instead you use the double curly markup like +- * `{{ expression }}` which is similar but less verbose. +- * +- * It is preferable to use `ngBind` instead of `{{ expression }}` if a template is momentarily +- * displayed by the browser in its raw state before Angular compiles it. Since `ngBind` is an +- * element attribute, it makes the bindings invisible to the user while the page is loading. +- * +- * An alternative solution to this problem would be using the +- * {@link ng.directive:ngCloak ngCloak} directive. +- * +- * +- * @element ANY +- * @param {expression} ngBind {@link guide/expression Expression} to evaluate. +- * +- * @example +- * Enter a name in the Live Preview text box; the greeting below the text box changes instantly. +- <example module="bindExample"> +- <file name="index.html"> +- <script> +- angular.module('bindExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.name = 'Whirled'; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- Enter name: <input type="text" ng-model="name"><br> +- Hello <span ng-bind="name"></span>! +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-bind', function() { +- var nameInput = element(by.model('name')); +- +- expect(element(by.binding('name')).getText()).toBe('Whirled'); +- nameInput.clear(); +- nameInput.sendKeys('world'); +- expect(element(by.binding('name')).getText()).toBe('world'); +- }); +- </file> +- </example> +- */ +-var ngBindDirective = ['$compile', function($compile) { +- return { +- restrict: 'AC', +- compile: function ngBindCompile(templateElement) { +- $compile.$$addBindingClass(templateElement); +- return function ngBindLink(scope, element, attr) { +- $compile.$$addBindingInfo(element, attr.ngBind); +- element = element[0]; +- scope.$watch(attr.ngBind, function ngBindWatchAction(value) { +- element.textContent = value === undefined ? '' : value; +- }); +- }; +- } +- }; +-}]; +- +- +-/** +- * @ngdoc directive +- * @name ngBindTemplate +- * +- * @description +- * The `ngBindTemplate` directive specifies that the element +- * text content should be replaced with the interpolation of the template +- * in the `ngBindTemplate` attribute. +- * Unlike `ngBind`, the `ngBindTemplate` can contain multiple `{{` `}}` +- * expressions. This directive is needed since some HTML elements +- * (such as TITLE and OPTION) cannot contain SPAN elements. +- * +- * @element ANY +- * @param {string} ngBindTemplate template of form +- * <tt>{{</tt> <tt>expression</tt> <tt>}}</tt> to eval. +- * +- * @example +- * Try it here: enter text in text box and watch the greeting change. +- <example module="bindExample"> +- <file name="index.html"> +- <script> +- angular.module('bindExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.salutation = 'Hello'; +- $scope.name = 'World'; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- Salutation: <input type="text" ng-model="salutation"><br> +- Name: <input type="text" ng-model="name"><br> +- <pre ng-bind-template="{{salutation}} {{name}}!"></pre> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-bind', function() { +- var salutationElem = element(by.binding('salutation')); +- var salutationInput = element(by.model('salutation')); +- var nameInput = element(by.model('name')); +- +- expect(salutationElem.getText()).toBe('Hello World!'); +- +- salutationInput.clear(); +- salutationInput.sendKeys('Greetings'); +- nameInput.clear(); +- nameInput.sendKeys('user'); +- +- expect(salutationElem.getText()).toBe('Greetings user!'); +- }); +- </file> +- </example> +- */ +-var ngBindTemplateDirective = ['$interpolate', '$compile', function($interpolate, $compile) { +- return { +- compile: function ngBindTemplateCompile(templateElement) { +- $compile.$$addBindingClass(templateElement); +- return function ngBindTemplateLink(scope, element, attr) { +- var interpolateFn = $interpolate(element.attr(attr.$attr.ngBindTemplate)); +- $compile.$$addBindingInfo(element, interpolateFn.expressions); +- element = element[0]; +- attr.$observe('ngBindTemplate', function(value) { +- element.textContent = value === undefined ? '' : value; +- }); +- }; +- } +- }; +-}]; +- +- +-/** +- * @ngdoc directive +- * @name ngBindHtml +- * +- * @description +- * Evaluates the expression and inserts the resulting HTML into the element in a secure way. By default, +- * the resulting HTML content will be sanitized using the {@link ngSanitize.$sanitize $sanitize} service. +- * To utilize this functionality, ensure that `$sanitize` is available, for example, by including {@link +- * ngSanitize} in your module's dependencies (not in core Angular). In order to use {@link ngSanitize} +- * in your module's dependencies, you need to include "angular-sanitize.js" in your application. +- * +- * You may also bypass sanitization for values you know are safe. To do so, bind to +- * an explicitly trusted value via {@link ng.$sce#trustAsHtml $sce.trustAsHtml}. See the example +- * under {@link ng.$sce#show-me-an-example-using-sce- Strict Contextual Escaping (SCE)}. +- * +- * Note: If a `$sanitize` service is unavailable and the bound value isn't explicitly trusted, you +- * will have an exception (instead of an exploit.) +- * +- * @element ANY +- * @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate. +- * +- * @example +- +- <example module="bindHtmlExample" deps="angular-sanitize.js"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <p ng-bind-html="myHTML"></p> +- </div> +- </file> +- +- <file name="script.js"> +- angular.module('bindHtmlExample', ['ngSanitize']) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.myHTML = +- 'I am an <code>HTML</code>string with ' + +- '<a href="#">links!</a> and other <em>stuff</em>'; +- }]); +- </file> +- +- <file name="protractor.js" type="protractor"> +- it('should check ng-bind-html', function() { +- expect(element(by.binding('myHTML')).getText()).toBe( +- 'I am an HTMLstring with links! and other stuff'); +- }); +- </file> +- </example> +- */ +-var ngBindHtmlDirective = ['$sce', '$parse', '$compile', function($sce, $parse, $compile) { +- return { +- restrict: 'A', +- compile: function ngBindHtmlCompile(tElement, tAttrs) { +- var ngBindHtmlGetter = $parse(tAttrs.ngBindHtml); +- var ngBindHtmlWatch = $parse(tAttrs.ngBindHtml, function getStringValue(value) { +- return (value || '').toString(); +- }); +- $compile.$$addBindingClass(tElement); +- +- return function ngBindHtmlLink(scope, element, attr) { +- $compile.$$addBindingInfo(element, attr.ngBindHtml); +- +- scope.$watch(ngBindHtmlWatch, function ngBindHtmlWatchAction() { +- // we re-evaluate the expr because we want a TrustedValueHolderType +- // for $sce, not a string +- element.html($sce.getTrustedHtml(ngBindHtmlGetter(scope)) || ''); +- }); +- }; +- } +- }; +-}]; +- +-/** +- * @ngdoc directive +- * @name ngChange +- * +- * @description +- * Evaluate the given expression when the user changes the input. +- * The expression is evaluated immediately, unlike the JavaScript onchange event +- * which only triggers at the end of a change (usually, when the user leaves the +- * form element or presses the return key). +- * +- * The `ngChange` expression is only evaluated when a change in the input value causes +- * a new value to be committed to the model. +- * +- * It will not be evaluated: +- * * if the value returned from the `$parsers` transformation pipeline has not changed +- * * if the input has continued to be invalid since the model will stay `null` +- * * if the model is changed programmatically and not by a change to the input value +- * +- * +- * Note, this directive requires `ngModel` to be present. +- * +- * @element input +- * @param {expression} ngChange {@link guide/expression Expression} to evaluate upon change +- * in input value. +- * +- * @example +- * <example name="ngChange-directive" module="changeExample"> +- * <file name="index.html"> +- * <script> +- * angular.module('changeExample', []) +- * .controller('ExampleController', ['$scope', function($scope) { +- * $scope.counter = 0; +- * $scope.change = function() { +- * $scope.counter++; +- * }; +- * }]); +- * </script> +- * <div ng-controller="ExampleController"> +- * <input type="checkbox" ng-model="confirmed" ng-change="change()" id="ng-change-example1" /> +- * <input type="checkbox" ng-model="confirmed" id="ng-change-example2" /> +- * <label for="ng-change-example2">Confirmed</label><br /> +- * <tt>debug = {{confirmed}}</tt><br/> +- * <tt>counter = {{counter}}</tt><br/> +- * </div> +- * </file> +- * <file name="protractor.js" type="protractor"> +- * var counter = element(by.binding('counter')); +- * var debug = element(by.binding('confirmed')); +- * +- * it('should evaluate the expression if changing from view', function() { +- * expect(counter.getText()).toContain('0'); +- * +- * element(by.id('ng-change-example1')).click(); +- * +- * expect(counter.getText()).toContain('1'); +- * expect(debug.getText()).toContain('true'); +- * }); +- * +- * it('should not evaluate the expression if changing from model', function() { +- * element(by.id('ng-change-example2')).click(); +- +- * expect(counter.getText()).toContain('0'); +- * expect(debug.getText()).toContain('true'); +- * }); +- * </file> +- * </example> +- */ +-var ngChangeDirective = valueFn({ +- restrict: 'A', +- require: 'ngModel', +- link: function(scope, element, attr, ctrl) { +- ctrl.$viewChangeListeners.push(function() { +- scope.$eval(attr.ngChange); +- }); +- } +-}); +- +-function classDirective(name, selector) { +- name = 'ngClass' + name; +- return ['$animate', function($animate) { +- return { +- restrict: 'AC', +- link: function(scope, element, attr) { +- var oldVal; +- +- scope.$watch(attr[name], ngClassWatchAction, true); +- +- attr.$observe('class', function(value) { +- ngClassWatchAction(scope.$eval(attr[name])); +- }); +- +- +- if (name !== 'ngClass') { +- scope.$watch('$index', function($index, old$index) { +- // jshint bitwise: false +- var mod = $index & 1; +- if (mod !== (old$index & 1)) { +- var classes = arrayClasses(scope.$eval(attr[name])); +- mod === selector ? +- addClasses(classes) : +- removeClasses(classes); +- } +- }); +- } +- +- function addClasses(classes) { +- var newClasses = digestClassCounts(classes, 1); +- attr.$addClass(newClasses); +- } +- +- function removeClasses(classes) { +- var newClasses = digestClassCounts(classes, -1); +- attr.$removeClass(newClasses); +- } +- +- function digestClassCounts(classes, count) { +- var classCounts = element.data('$classCounts') || {}; +- var classesToUpdate = []; +- forEach(classes, function(className) { +- if (count > 0 || classCounts[className]) { +- classCounts[className] = (classCounts[className] || 0) + count; +- if (classCounts[className] === +(count > 0)) { +- classesToUpdate.push(className); +- } +- } +- }); +- element.data('$classCounts', classCounts); +- return classesToUpdate.join(' '); +- } +- +- function updateClasses(oldClasses, newClasses) { +- var toAdd = arrayDifference(newClasses, oldClasses); +- var toRemove = arrayDifference(oldClasses, newClasses); +- toAdd = digestClassCounts(toAdd, 1); +- toRemove = digestClassCounts(toRemove, -1); +- if (toAdd && toAdd.length) { +- $animate.addClass(element, toAdd); +- } +- if (toRemove && toRemove.length) { +- $animate.removeClass(element, toRemove); +- } +- } +- +- function ngClassWatchAction(newVal) { +- if (selector === true || scope.$index % 2 === selector) { +- var newClasses = arrayClasses(newVal || []); +- if (!oldVal) { +- addClasses(newClasses); +- } else if (!equals(newVal,oldVal)) { +- var oldClasses = arrayClasses(oldVal); +- updateClasses(oldClasses, newClasses); +- } +- } +- oldVal = shallowCopy(newVal); +- } +- } +- }; +- +- function arrayDifference(tokens1, tokens2) { +- var values = []; +- +- outer: +- for (var i = 0; i < tokens1.length; i++) { +- var token = tokens1[i]; +- for (var j = 0; j < tokens2.length; j++) { +- if (token == tokens2[j]) continue outer; +- } +- values.push(token); +- } +- return values; +- } +- +- function arrayClasses(classVal) { +- if (isArray(classVal)) { +- return classVal; +- } else if (isString(classVal)) { +- return classVal.split(' '); +- } else if (isObject(classVal)) { +- var classes = []; +- forEach(classVal, function(v, k) { +- if (v) { +- classes = classes.concat(k.split(' ')); +- } +- }); +- return classes; +- } +- return classVal; +- } +- }]; +-} +- +-/** +- * @ngdoc directive +- * @name ngClass +- * @restrict AC +- * +- * @description +- * The `ngClass` directive allows you to dynamically set CSS classes on an HTML element by databinding +- * an expression that represents all classes to be added. +- * +- * The directive operates in three different ways, depending on which of three types the expression +- * evaluates to: +- * +- * 1. If the expression evaluates to a string, the string should be one or more space-delimited class +- * names. +- * +- * 2. If the expression evaluates to an array, each element of the array should be a string that is +- * one or more space-delimited class names. +- * +- * 3. If the expression evaluates to an object, then for each key-value pair of the +- * object with a truthy value the corresponding key is used as a class name. +- * +- * The directive won't add duplicate classes if a particular class was already set. +- * +- * When the expression changes, the previously added classes are removed and only then the +- * new classes are added. +- * +- * @animations +- * **add** - happens just before the class is applied to the elements +- * +- * **remove** - happens just before the class is removed from the element +- * +- * @element ANY +- * @param {expression} ngClass {@link guide/expression Expression} to eval. The result +- * of the evaluation can be a string representing space delimited class +- * names, an array, or a map of class names to boolean values. In the case of a map, the +- * names of the properties whose values are truthy will be added as css classes to the +- * element. +- * +- * @example Example that demonstrates basic bindings via ngClass directive. +- <example> +- <file name="index.html"> +- <p ng-class="{strike: deleted, bold: important, red: error}">Map Syntax Example</p> +- <input type="checkbox" ng-model="deleted"> deleted (apply "strike" class)<br> +- <input type="checkbox" ng-model="important"> important (apply "bold" class)<br> +- <input type="checkbox" ng-model="error"> error (apply "red" class) +- <hr> +- <p ng-class="style">Using String Syntax</p> +- <input type="text" ng-model="style" placeholder="Type: bold strike red"> +- <hr> +- <p ng-class="[style1, style2, style3]">Using Array Syntax</p> +- <input ng-model="style1" placeholder="Type: bold, strike or red"><br> +- <input ng-model="style2" placeholder="Type: bold, strike or red"><br> +- <input ng-model="style3" placeholder="Type: bold, strike or red"><br> +- </file> +- <file name="style.css"> +- .strike { +- text-decoration: line-through; +- } +- .bold { +- font-weight: bold; +- } +- .red { +- color: red; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var ps = element.all(by.css('p')); +- +- it('should let you toggle the class', function() { +- +- expect(ps.first().getAttribute('class')).not.toMatch(/bold/); +- expect(ps.first().getAttribute('class')).not.toMatch(/red/); +- +- element(by.model('important')).click(); +- expect(ps.first().getAttribute('class')).toMatch(/bold/); +- +- element(by.model('error')).click(); +- expect(ps.first().getAttribute('class')).toMatch(/red/); +- }); +- +- it('should let you toggle string example', function() { +- expect(ps.get(1).getAttribute('class')).toBe(''); +- element(by.model('style')).clear(); +- element(by.model('style')).sendKeys('red'); +- expect(ps.get(1).getAttribute('class')).toBe('red'); +- }); +- +- it('array example should have 3 classes', function() { +- expect(ps.last().getAttribute('class')).toBe(''); +- element(by.model('style1')).sendKeys('bold'); +- element(by.model('style2')).sendKeys('strike'); +- element(by.model('style3')).sendKeys('red'); +- expect(ps.last().getAttribute('class')).toBe('bold strike red'); +- }); +- </file> +- </example> +- +- ## Animations +- +- The example below demonstrates how to perform animations using ngClass. +- +- <example module="ngAnimate" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- <input id="setbtn" type="button" value="set" ng-click="myVar='my-class'"> +- <input id="clearbtn" type="button" value="clear" ng-click="myVar=''"> +- <br> +- <span class="base-class" ng-class="myVar">Sample Text</span> +- </file> +- <file name="style.css"> +- .base-class { +- -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- } +- +- .base-class.my-class { +- color: red; +- font-size:3em; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-class', function() { +- expect(element(by.css('.base-class')).getAttribute('class')).not. +- toMatch(/my-class/); +- +- element(by.id('setbtn')).click(); +- +- expect(element(by.css('.base-class')).getAttribute('class')). +- toMatch(/my-class/); +- +- element(by.id('clearbtn')).click(); +- +- expect(element(by.css('.base-class')).getAttribute('class')).not. +- toMatch(/my-class/); +- }); +- </file> +- </example> +- +- +- ## ngClass and pre-existing CSS3 Transitions/Animations +- The ngClass directive still supports CSS3 Transitions/Animations even if they do not follow the ngAnimate CSS naming structure. +- Upon animation ngAnimate will apply supplementary CSS classes to track the start and end of an animation, but this will not hinder +- any pre-existing CSS transitions already on the element. To get an idea of what happens during a class-based animation, be sure +- to view the step by step details of {@link ng.$animate#addClass $animate.addClass} and +- {@link ng.$animate#removeClass $animate.removeClass}. +- */ +-var ngClassDirective = classDirective('', true); +- +-/** +- * @ngdoc directive +- * @name ngClassOdd +- * @restrict AC +- * +- * @description +- * The `ngClassOdd` and `ngClassEven` directives work exactly as +- * {@link ng.directive:ngClass ngClass}, except they work in +- * conjunction with `ngRepeat` and take effect only on odd (even) rows. +- * +- * This directive can be applied only within the scope of an +- * {@link ng.directive:ngRepeat ngRepeat}. +- * +- * @element ANY +- * @param {expression} ngClassOdd {@link guide/expression Expression} to eval. The result +- * of the evaluation can be a string representing space delimited class names or an array. +- * +- * @example +- <example> +- <file name="index.html"> +- <ol ng-init="names=['John', 'Mary', 'Cate', 'Suz']"> +- <li ng-repeat="name in names"> +- <span ng-class-odd="'odd'" ng-class-even="'even'"> +- {{name}} +- </span> +- </li> +- </ol> +- </file> +- <file name="style.css"> +- .odd { +- color: red; +- } +- .even { +- color: blue; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-class-odd and ng-class-even', function() { +- expect(element(by.repeater('name in names').row(0).column('name')).getAttribute('class')). +- toMatch(/odd/); +- expect(element(by.repeater('name in names').row(1).column('name')).getAttribute('class')). +- toMatch(/even/); +- }); +- </file> +- </example> +- */ +-var ngClassOddDirective = classDirective('Odd', 0); +- +-/** +- * @ngdoc directive +- * @name ngClassEven +- * @restrict AC +- * +- * @description +- * The `ngClassOdd` and `ngClassEven` directives work exactly as +- * {@link ng.directive:ngClass ngClass}, except they work in +- * conjunction with `ngRepeat` and take effect only on odd (even) rows. +- * +- * This directive can be applied only within the scope of an +- * {@link ng.directive:ngRepeat ngRepeat}. +- * +- * @element ANY +- * @param {expression} ngClassEven {@link guide/expression Expression} to eval. The +- * result of the evaluation can be a string representing space delimited class names or an array. +- * +- * @example +- <example> +- <file name="index.html"> +- <ol ng-init="names=['John', 'Mary', 'Cate', 'Suz']"> +- <li ng-repeat="name in names"> +- <span ng-class-odd="'odd'" ng-class-even="'even'"> +- {{name}} +- </span> +- </li> +- </ol> +- </file> +- <file name="style.css"> +- .odd { +- color: red; +- } +- .even { +- color: blue; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-class-odd and ng-class-even', function() { +- expect(element(by.repeater('name in names').row(0).column('name')).getAttribute('class')). +- toMatch(/odd/); +- expect(element(by.repeater('name in names').row(1).column('name')).getAttribute('class')). +- toMatch(/even/); +- }); +- </file> +- </example> +- */ +-var ngClassEvenDirective = classDirective('Even', 1); +- +-/** +- * @ngdoc directive +- * @name ngCloak +- * @restrict AC +- * +- * @description +- * The `ngCloak` directive is used to prevent the Angular html template from being briefly +- * displayed by the browser in its raw (uncompiled) form while your application is loading. Use this +- * directive to avoid the undesirable flicker effect caused by the html template display. +- * +- * The directive can be applied to the `<body>` element, but the preferred usage is to apply +- * multiple `ngCloak` directives to small portions of the page to permit progressive rendering +- * of the browser view. +- * +- * `ngCloak` works in cooperation with the following css rule embedded within `angular.js` and +- * `angular.min.js`. +- * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). +- * +- * ```css +- * [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { +- * display: none !important; +- * } +- * ``` +- * +- * When this css rule is loaded by the browser, all html elements (including their children) that +- * are tagged with the `ngCloak` directive are hidden. When Angular encounters this directive +- * during the compilation of the template it deletes the `ngCloak` element attribute, making +- * the compiled element visible. +- * +- * For the best result, the `angular.js` script must be loaded in the head section of the html +- * document; alternatively, the css rule above must be included in the external stylesheet of the +- * application. +- * +- * Legacy browsers, like IE7, do not provide attribute selector support (added in CSS 2.1) so they +- * cannot match the `[ng\:cloak]` selector. To work around this limitation, you must add the css +- * class `ng-cloak` in addition to the `ngCloak` directive as shown in the example below. +- * +- * @element ANY +- * +- * @example +- <example> +- <file name="index.html"> +- <div id="template1" ng-cloak>{{ 'hello' }}</div> +- <div id="template2" ng-cloak class="ng-cloak">{{ 'hello IE7' }}</div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should remove the template directive and css class', function() { +- expect($('#template1').getAttribute('ng-cloak')). +- toBeNull(); +- expect($('#template2').getAttribute('ng-cloak')). +- toBeNull(); +- }); +- </file> +- </example> +- * +- */ +-var ngCloakDirective = ngDirective({ +- compile: function(element, attr) { +- attr.$set('ngCloak', undefined); +- element.removeClass('ng-cloak'); +- } +-}); +- +-/** +- * @ngdoc directive +- * @name ngController +- * +- * @description +- * The `ngController` directive attaches a controller class to the view. This is a key aspect of how angular +- * supports the principles behind the Model-View-Controller design pattern. +- * +- * MVC components in angular: +- * +- * * Model — Models are the properties of a scope; scopes are attached to the DOM where scope properties +- * are accessed through bindings. +- * * View — The template (HTML with data bindings) that is rendered into the View. +- * * Controller — The `ngController` directive specifies a Controller class; the class contains business +- * logic behind the application to decorate the scope with functions and values +- * +- * Note that you can also attach controllers to the DOM by declaring it in a route definition +- * via the {@link ngRoute.$route $route} service. A common mistake is to declare the controller +- * again using `ng-controller` in the template itself. This will cause the controller to be attached +- * and executed twice. +- * +- * @element ANY +- * @scope +- * @priority 500 +- * @param {expression} ngController Name of a constructor function registered with the current +- * {@link ng.$controllerProvider $controllerProvider} or an {@link guide/expression expression} +- * that on the current scope evaluates to a constructor function. +- * +- * The controller instance can be published into a scope property by specifying +- * `ng-controller="as propertyName"`. +- * +- * If the current `$controllerProvider` is configured to use globals (via +- * {@link ng.$controllerProvider#allowGlobals `$controllerProvider.allowGlobals()` }), this may +- * also be the name of a globally accessible constructor function (not recommended). +- * +- * @example +- * Here is a simple form for editing user contact information. Adding, removing, clearing, and +- * greeting are methods declared on the controller (see source tab). These methods can +- * easily be called from the angular markup. Any changes to the data are automatically reflected +- * in the View without the need for a manual update. +- * +- * Two different declaration styles are included below: +- * +- * * one binds methods and properties directly onto the controller using `this`: +- * `ng-controller="SettingsController1 as settings"` +- * * one injects `$scope` into the controller: +- * `ng-controller="SettingsController2"` +- * +- * The second option is more common in the Angular community, and is generally used in boilerplates +- * and in this guide. However, there are advantages to binding properties directly to the controller +- * and avoiding scope. +- * +- * * Using `controller as` makes it obvious which controller you are accessing in the template when +- * multiple controllers apply to an element. +- * * If you are writing your controllers as classes you have easier access to the properties and +- * methods, which will appear on the scope, from inside the controller code. +- * * Since there is always a `.` in the bindings, you don't have to worry about prototypal +- * inheritance masking primitives. +- * +- * This example demonstrates the `controller as` syntax. +- * +- * <example name="ngControllerAs" module="controllerAsExample"> +- * <file name="index.html"> +- * <div id="ctrl-as-exmpl" ng-controller="SettingsController1 as settings"> +- * Name: <input type="text" ng-model="settings.name"/> +- * [ <a href="" ng-click="settings.greet()">greet</a> ]<br/> +- * Contact: +- * <ul> +- * <li ng-repeat="contact in settings.contacts"> +- * <select ng-model="contact.type"> +- * <option>phone</option> +- * <option>email</option> +- * </select> +- * <input type="text" ng-model="contact.value"/> +- * [ <a href="" ng-click="settings.clearContact(contact)">clear</a> +- * | <a href="" ng-click="settings.removeContact(contact)">X</a> ] +- * </li> +- * <li>[ <a href="" ng-click="settings.addContact()">add</a> ]</li> +- * </ul> +- * </div> +- * </file> +- * <file name="app.js"> +- * angular.module('controllerAsExample', []) +- * .controller('SettingsController1', SettingsController1); +- * +- * function SettingsController1() { +- * this.name = "John Smith"; +- * this.contacts = [ +- * {type: 'phone', value: '408 555 1212'}, +- * {type: 'email', value: 'john.smith@example.org'} ]; +- * } +- * +- * SettingsController1.prototype.greet = function() { +- * alert(this.name); +- * }; +- * +- * SettingsController1.prototype.addContact = function() { +- * this.contacts.push({type: 'email', value: 'yourname@example.org'}); +- * }; +- * +- * SettingsController1.prototype.removeContact = function(contactToRemove) { +- * var index = this.contacts.indexOf(contactToRemove); +- * this.contacts.splice(index, 1); +- * }; +- * +- * SettingsController1.prototype.clearContact = function(contact) { +- * contact.type = 'phone'; +- * contact.value = ''; +- * }; +- * </file> +- * <file name="protractor.js" type="protractor"> +- * it('should check controller as', function() { +- * var container = element(by.id('ctrl-as-exmpl')); +- * expect(container.element(by.model('settings.name')) +- * .getAttribute('value')).toBe('John Smith'); +- * +- * var firstRepeat = +- * container.element(by.repeater('contact in settings.contacts').row(0)); +- * var secondRepeat = +- * container.element(by.repeater('contact in settings.contacts').row(1)); +- * +- * expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe('408 555 1212'); +- * +- * expect(secondRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe('john.smith@example.org'); +- * +- * firstRepeat.element(by.linkText('clear')).click(); +- * +- * expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe(''); +- * +- * container.element(by.linkText('add')).click(); +- * +- * expect(container.element(by.repeater('contact in settings.contacts').row(2)) +- * .element(by.model('contact.value')) +- * .getAttribute('value')) +- * .toBe('yourname@example.org'); +- * }); +- * </file> +- * </example> +- * +- * This example demonstrates the "attach to `$scope`" style of controller. +- * +- * <example name="ngController" module="controllerExample"> +- * <file name="index.html"> +- * <div id="ctrl-exmpl" ng-controller="SettingsController2"> +- * Name: <input type="text" ng-model="name"/> +- * [ <a href="" ng-click="greet()">greet</a> ]<br/> +- * Contact: +- * <ul> +- * <li ng-repeat="contact in contacts"> +- * <select ng-model="contact.type"> +- * <option>phone</option> +- * <option>email</option> +- * </select> +- * <input type="text" ng-model="contact.value"/> +- * [ <a href="" ng-click="clearContact(contact)">clear</a> +- * | <a href="" ng-click="removeContact(contact)">X</a> ] +- * </li> +- * <li>[ <a href="" ng-click="addContact()">add</a> ]</li> +- * </ul> +- * </div> +- * </file> +- * <file name="app.js"> +- * angular.module('controllerExample', []) +- * .controller('SettingsController2', ['$scope', SettingsController2]); +- * +- * function SettingsController2($scope) { +- * $scope.name = "John Smith"; +- * $scope.contacts = [ +- * {type:'phone', value:'408 555 1212'}, +- * {type:'email', value:'john.smith@example.org'} ]; +- * +- * $scope.greet = function() { +- * alert($scope.name); +- * }; +- * +- * $scope.addContact = function() { +- * $scope.contacts.push({type:'email', value:'yourname@example.org'}); +- * }; +- * +- * $scope.removeContact = function(contactToRemove) { +- * var index = $scope.contacts.indexOf(contactToRemove); +- * $scope.contacts.splice(index, 1); +- * }; +- * +- * $scope.clearContact = function(contact) { +- * contact.type = 'phone'; +- * contact.value = ''; +- * }; +- * } +- * </file> +- * <file name="protractor.js" type="protractor"> +- * it('should check controller', function() { +- * var container = element(by.id('ctrl-exmpl')); +- * +- * expect(container.element(by.model('name')) +- * .getAttribute('value')).toBe('John Smith'); +- * +- * var firstRepeat = +- * container.element(by.repeater('contact in contacts').row(0)); +- * var secondRepeat = +- * container.element(by.repeater('contact in contacts').row(1)); +- * +- * expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe('408 555 1212'); +- * expect(secondRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe('john.smith@example.org'); +- * +- * firstRepeat.element(by.linkText('clear')).click(); +- * +- * expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) +- * .toBe(''); +- * +- * container.element(by.linkText('add')).click(); +- * +- * expect(container.element(by.repeater('contact in contacts').row(2)) +- * .element(by.model('contact.value')) +- * .getAttribute('value')) +- * .toBe('yourname@example.org'); +- * }); +- * </file> +- *</example> +- +- */ +-var ngControllerDirective = [function() { +- return { +- restrict: 'A', +- scope: true, +- controller: '@', +- priority: 500 +- }; +-}]; +- +-/** +- * @ngdoc directive +- * @name ngCsp +- * +- * @element html +- * @description +- * Enables [CSP (Content Security Policy)](https://developer.mozilla.org/en/Security/CSP) support. +- * +- * This is necessary when developing things like Google Chrome Extensions or Universal Windows Apps. +- * +- * CSP forbids apps to use `eval` or `Function(string)` generated functions (among other things). +- * For Angular to be CSP compatible there are only two things that we need to do differently: +- * +- * - don't use `Function` constructor to generate optimized value getters +- * - don't inject custom stylesheet into the document +- * +- * AngularJS uses `Function(string)` generated functions as a speed optimization. Applying the `ngCsp` +- * directive will cause Angular to use CSP compatibility mode. When this mode is on AngularJS will +- * evaluate all expressions up to 30% slower than in non-CSP mode, but no security violations will +- * be raised. +- * +- * CSP forbids JavaScript to inline stylesheet rules. In non CSP mode Angular automatically +- * includes some CSS rules (e.g. {@link ng.directive:ngCloak ngCloak}). +- * To make those directives work in CSP mode, include the `angular-csp.css` manually. +- * +- * Angular tries to autodetect if CSP is active and automatically turn on the CSP-safe mode. This +- * autodetection however triggers a CSP error to be logged in the console: +- * +- * ``` +- * Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of +- * script in the following Content Security Policy directive: "default-src 'self'". Note that +- * 'script-src' was not explicitly set, so 'default-src' is used as a fallback. +- * ``` +- * +- * This error is harmless but annoying. To prevent the error from showing up, put the `ngCsp` +- * directive on the root element of the application or on the `angular.js` script tag, whichever +- * appears first in the html document. +- * +- * *Note: This directive is only available in the `ng-csp` and `data-ng-csp` attribute form.* +- * +- * @example +- * This example shows how to apply the `ngCsp` directive to the `html` tag. +- ```html +- <!doctype html> +- <html ng-app ng-csp> +- ... +- ... +- </html> +- ``` +- * @example +- // Note: the suffix `.csp` in the example name triggers +- // csp mode in our http server! +- <example name="example.csp" module="cspExample" ng-csp="true"> +- <file name="index.html"> +- <div ng-controller="MainController as ctrl"> +- <div> +- <button ng-click="ctrl.inc()" id="inc">Increment</button> +- <span id="counter"> +- {{ctrl.counter}} +- </span> +- </div> +- +- <div> +- <button ng-click="ctrl.evil()" id="evil">Evil</button> +- <span id="evilError"> +- {{ctrl.evilError}} +- </span> +- </div> +- </div> +- </file> +- <file name="script.js"> +- angular.module('cspExample', []) +- .controller('MainController', function() { +- this.counter = 0; +- this.inc = function() { +- this.counter++; +- }; +- this.evil = function() { +- // jshint evil:true +- try { +- eval('1+2'); +- } catch (e) { +- this.evilError = e.message; +- } +- }; +- }); +- </file> +- <file name="protractor.js" type="protractor"> +- var util, webdriver; +- +- var incBtn = element(by.id('inc')); +- var counter = element(by.id('counter')); +- var evilBtn = element(by.id('evil')); +- var evilError = element(by.id('evilError')); +- +- function getAndClearSevereErrors() { +- return browser.manage().logs().get('browser').then(function(browserLog) { +- return browserLog.filter(function(logEntry) { +- return logEntry.level.value > webdriver.logging.Level.WARNING.value; +- }); +- }); +- } +- +- function clearErrors() { +- getAndClearSevereErrors(); +- } +- +- function expectNoErrors() { +- getAndClearSevereErrors().then(function(filteredLog) { +- expect(filteredLog.length).toEqual(0); +- if (filteredLog.length) { +- console.log('browser console errors: ' + util.inspect(filteredLog)); +- } +- }); +- } +- +- function expectError(regex) { +- getAndClearSevereErrors().then(function(filteredLog) { +- var found = false; +- filteredLog.forEach(function(log) { +- if (log.message.match(regex)) { +- found = true; +- } +- }); +- if (!found) { +- throw new Error('expected an error that matches ' + regex); +- } +- }); +- } +- +- beforeEach(function() { +- util = require('util'); +- webdriver = require('protractor/node_modules/selenium-webdriver'); +- }); +- +- // For now, we only test on Chrome, +- // as Safari does not load the page with Protractor's injected scripts, +- // and Firefox webdriver always disables content security policy (#6358) +- if (browser.params.browser !== 'chrome') { +- return; +- } +- +- it('should not report errors when the page is loaded', function() { +- // clear errors so we are not dependent on previous tests +- clearErrors(); +- // Need to reload the page as the page is already loaded when +- // we come here +- browser.driver.getCurrentUrl().then(function(url) { +- browser.get(url); +- }); +- expectNoErrors(); +- }); +- +- it('should evaluate expressions', function() { +- expect(counter.getText()).toEqual('0'); +- incBtn.click(); +- expect(counter.getText()).toEqual('1'); +- expectNoErrors(); +- }); +- +- it('should throw and report an error when using "eval"', function() { +- evilBtn.click(); +- expect(evilError.getText()).toMatch(/Content Security Policy/); +- expectError(/Content Security Policy/); +- }); +- </file> +- </example> +- */ +- +-// ngCsp is not implemented as a proper directive any more, because we need it be processed while we +-// bootstrap the system (before $parse is instantiated), for this reason we just have +-// the csp.isActive() fn that looks for ng-csp attribute anywhere in the current doc +- +-/** +- * @ngdoc directive +- * @name ngClick +- * +- * @description +- * The ngClick directive allows you to specify custom behavior when +- * an element is clicked. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngClick {@link guide/expression Expression} to evaluate upon +- * click. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-click="count = count + 1" ng-init="count=0"> +- Increment +- </button> +- <span> +- count: {{count}} +- </span> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-click', function() { +- expect(element(by.binding('count')).getText()).toMatch('0'); +- element(by.css('button')).click(); +- expect(element(by.binding('count')).getText()).toMatch('1'); +- }); +- </file> +- </example> +- */ +-/* +- * A collection of directives that allows creation of custom event handlers that are defined as +- * angular expressions and are compiled and executed within the current scope. +- */ +-var ngEventDirectives = {}; +- +-// For events that might fire synchronously during DOM manipulation +-// we need to execute their event handlers asynchronously using $evalAsync, +-// so that they are not executed in an inconsistent state. +-var forceAsyncEvents = { +- 'blur': true, +- 'focus': true +-}; +-forEach( +- 'click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste'.split(' '), +- function(eventName) { +- var directiveName = directiveNormalize('ng-' + eventName); +- ngEventDirectives[directiveName] = ['$parse', '$rootScope', function($parse, $rootScope) { +- return { +- restrict: 'A', +- compile: function($element, attr) { +- // We expose the powerful $event object on the scope that provides access to the Window, +- // etc. that isn't protected by the fast paths in $parse. We explicitly request better +- // checks at the cost of speed since event handler expressions are not executed as +- // frequently as regular change detection. +- var fn = $parse(attr[directiveName], /* interceptorFn */ null, /* expensiveChecks */ true); +- return function ngEventHandler(scope, element) { +- element.on(eventName, function(event) { +- var callback = function() { +- fn(scope, {$event:event}); +- }; +- if (forceAsyncEvents[eventName] && $rootScope.$$phase) { +- scope.$evalAsync(callback); +- } else { +- scope.$apply(callback); +- } +- }); +- }; +- } +- }; +- }]; +- } +-); +- +-/** +- * @ngdoc directive +- * @name ngDblclick +- * +- * @description +- * The `ngDblclick` directive allows you to specify custom behavior on a dblclick event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngDblclick {@link guide/expression Expression} to evaluate upon +- * a dblclick. (The Event object is available as `$event`) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-dblclick="count = count + 1" ng-init="count=0"> +- Increment (on double click) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngMousedown +- * +- * @description +- * The ngMousedown directive allows you to specify custom behavior on mousedown event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMousedown {@link guide/expression Expression} to evaluate upon +- * mousedown. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mousedown="count = count + 1" ng-init="count=0"> +- Increment (on mouse down) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngMouseup +- * +- * @description +- * Specify custom behavior on mouseup event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMouseup {@link guide/expression Expression} to evaluate upon +- * mouseup. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mouseup="count = count + 1" ng-init="count=0"> +- Increment (on mouse up) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngMouseover +- * +- * @description +- * Specify custom behavior on mouseover event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMouseover {@link guide/expression Expression} to evaluate upon +- * mouseover. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mouseover="count = count + 1" ng-init="count=0"> +- Increment (when mouse is over) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngMouseenter +- * +- * @description +- * Specify custom behavior on mouseenter event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMouseenter {@link guide/expression Expression} to evaluate upon +- * mouseenter. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mouseenter="count = count + 1" ng-init="count=0"> +- Increment (when mouse enters) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngMouseleave +- * +- * @description +- * Specify custom behavior on mouseleave event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMouseleave {@link guide/expression Expression} to evaluate upon +- * mouseleave. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mouseleave="count = count + 1" ng-init="count=0"> +- Increment (when mouse leaves) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngMousemove +- * +- * @description +- * Specify custom behavior on mousemove event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngMousemove {@link guide/expression Expression} to evaluate upon +- * mousemove. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <button ng-mousemove="count = count + 1" ng-init="count=0"> +- Increment (when mouse moves) +- </button> +- count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngKeydown +- * +- * @description +- * Specify custom behavior on keydown event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngKeydown {@link guide/expression Expression} to evaluate upon +- * keydown. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.) +- * +- * @example +- <example> +- <file name="index.html"> +- <input ng-keydown="count = count + 1" ng-init="count=0"> +- key down count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngKeyup +- * +- * @description +- * Specify custom behavior on keyup event. +- * +- * @element ANY +- * @priority 0 +- * @param {expression} ngKeyup {@link guide/expression Expression} to evaluate upon +- * keyup. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.) +- * +- * @example +- <example> +- <file name="index.html"> +- <p>Typing in the input box below updates the key count</p> +- <input ng-keyup="count = count + 1" ng-init="count=0"> key up count: {{count}} +- +- <p>Typing in the input box below updates the keycode</p> +- <input ng-keyup="event=$event"> +- <p>event keyCode: {{ event.keyCode }}</p> +- <p>event altKey: {{ event.altKey }}</p> +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngKeypress +- * +- * @description +- * Specify custom behavior on keypress event. +- * +- * @element ANY +- * @param {expression} ngKeypress {@link guide/expression Expression} to evaluate upon +- * keypress. ({@link guide/expression#-event- Event object is available as `$event`} +- * and can be interrogated for keyCode, altKey, etc.) +- * +- * @example +- <example> +- <file name="index.html"> +- <input ng-keypress="count = count + 1" ng-init="count=0"> +- key press count: {{count}} +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc directive +- * @name ngSubmit +- * +- * @description +- * Enables binding angular expressions to onsubmit events. +- * +- * Additionally it prevents the default action (which for form means sending the request to the +- * server and reloading the current page), but only if the form does not contain `action`, +- * `data-action`, or `x-action` attributes. +- * +- * <div class="alert alert-warning"> +- * **Warning:** Be careful not to cause "double-submission" by using both the `ngClick` and +- * `ngSubmit` handlers together. See the +- * {@link form#submitting-a-form-and-preventing-the-default-action `form` directive documentation} +- * for a detailed discussion of when `ngSubmit` may be triggered. +- * </div> +- * +- * @element form +- * @priority 0 +- * @param {expression} ngSubmit {@link guide/expression Expression} to eval. +- * ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example module="submitExample"> +- <file name="index.html"> +- <script> +- angular.module('submitExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.list = []; +- $scope.text = 'hello'; +- $scope.submit = function() { +- if ($scope.text) { +- $scope.list.push(this.text); +- $scope.text = ''; +- } +- }; +- }]); +- </script> +- <form ng-submit="submit()" ng-controller="ExampleController"> +- Enter text and hit enter: +- <input type="text" ng-model="text" name="text" /> +- <input type="submit" id="submit" value="Submit" /> +- <pre>list={{list}}</pre> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-submit', function() { +- expect(element(by.binding('list')).getText()).toBe('list=[]'); +- element(by.css('#submit')).click(); +- expect(element(by.binding('list')).getText()).toContain('hello'); +- expect(element(by.model('text')).getAttribute('value')).toBe(''); +- }); +- it('should ignore empty strings', function() { +- expect(element(by.binding('list')).getText()).toBe('list=[]'); +- element(by.css('#submit')).click(); +- element(by.css('#submit')).click(); +- expect(element(by.binding('list')).getText()).toContain('hello'); +- }); +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngFocus +- * +- * @description +- * Specify custom behavior on focus event. +- * +- * Note: As the `focus` event is executed synchronously when calling `input.focus()` +- * AngularJS executes the expression using `scope.$evalAsync` if the event is fired +- * during an `$apply` to ensure a consistent state. +- * +- * @element window, input, select, textarea, a +- * @priority 0 +- * @param {expression} ngFocus {@link guide/expression Expression} to evaluate upon +- * focus. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- * See {@link ng.directive:ngClick ngClick} +- */ +- +-/** +- * @ngdoc directive +- * @name ngBlur +- * +- * @description +- * Specify custom behavior on blur event. +- * +- * A [blur event](https://developer.mozilla.org/en-US/docs/Web/Events/blur) fires when +- * an element has lost focus. +- * +- * Note: As the `blur` event is executed synchronously also during DOM manipulations +- * (e.g. removing a focussed input), +- * AngularJS executes the expression using `scope.$evalAsync` if the event is fired +- * during an `$apply` to ensure a consistent state. +- * +- * @element window, input, select, textarea, a +- * @priority 0 +- * @param {expression} ngBlur {@link guide/expression Expression} to evaluate upon +- * blur. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- * See {@link ng.directive:ngClick ngClick} +- */ +- +-/** +- * @ngdoc directive +- * @name ngCopy +- * +- * @description +- * Specify custom behavior on copy event. +- * +- * @element window, input, select, textarea, a +- * @priority 0 +- * @param {expression} ngCopy {@link guide/expression Expression} to evaluate upon +- * copy. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <input ng-copy="copied=true" ng-init="copied=false; value='copy me'" ng-model="value"> +- copied: {{copied}} +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngCut +- * +- * @description +- * Specify custom behavior on cut event. +- * +- * @element window, input, select, textarea, a +- * @priority 0 +- * @param {expression} ngCut {@link guide/expression Expression} to evaluate upon +- * cut. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <input ng-cut="cut=true" ng-init="cut=false; value='cut me'" ng-model="value"> +- cut: {{cut}} +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngPaste +- * +- * @description +- * Specify custom behavior on paste event. +- * +- * @element window, input, select, textarea, a +- * @priority 0 +- * @param {expression} ngPaste {@link guide/expression Expression} to evaluate upon +- * paste. ({@link guide/expression#-event- Event object is available as `$event`}) +- * +- * @example +- <example> +- <file name="index.html"> +- <input ng-paste="paste=true" ng-init="paste=false" placeholder='paste here'> +- pasted: {{paste}} +- </file> +- </example> +- */ +- +-/** +- * @ngdoc directive +- * @name ngIf +- * @restrict A +- * +- * @description +- * The `ngIf` directive removes or recreates a portion of the DOM tree based on an +- * {expression}. If the expression assigned to `ngIf` evaluates to a false +- * value then the element is removed from the DOM, otherwise a clone of the +- * element is reinserted into the DOM. +- * +- * `ngIf` differs from `ngShow` and `ngHide` in that `ngIf` completely removes and recreates the +- * element in the DOM rather than changing its visibility via the `display` css property. A common +- * case when this difference is significant is when using css selectors that rely on an element's +- * position within the DOM, such as the `:first-child` or `:last-child` pseudo-classes. +- * +- * Note that when an element is removed using `ngIf` its scope is destroyed and a new scope +- * is created when the element is restored. The scope created within `ngIf` inherits from +- * its parent scope using +- * [prototypal inheritance](https://github.com/angular/angular.js/wiki/Understanding-Scopes#javascript-prototypal-inheritance). +- * An important implication of this is if `ngModel` is used within `ngIf` to bind to +- * a javascript primitive defined in the parent scope. In this case any modifications made to the +- * variable within the child scope will override (hide) the value in the parent scope. +- * +- * Also, `ngIf` recreates elements using their compiled state. An example of this behavior +- * is if an element's class attribute is directly modified after it's compiled, using something like +- * jQuery's `.addClass()` method, and the element is later removed. When `ngIf` recreates the element +- * the added class will be lost because the original compiled state is used to regenerate the element. +- * +- * Additionally, you can provide animations via the `ngAnimate` module to animate the `enter` +- * and `leave` effects. +- * +- * @animations +- * enter - happens just after the `ngIf` contents change and a new DOM element is created and injected into the `ngIf` container +- * leave - happens just before the `ngIf` contents are removed from the DOM +- * +- * @element ANY +- * @scope +- * @priority 600 +- * @param {expression} ngIf If the {@link guide/expression expression} is falsy then +- * the element is removed from the DOM tree. If it is truthy a copy of the compiled +- * element is added to the DOM tree. +- * +- * @example +- <example module="ngAnimate" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- Click me: <input type="checkbox" ng-model="checked" ng-init="checked=true" /><br/> +- Show when checked: +- <span ng-if="checked" class="animate-if"> +- This is removed when the checkbox is unchecked. +- </span> +- </file> +- <file name="animations.css"> +- .animate-if { +- background:white; +- border:1px solid black; +- padding:10px; +- } +- +- .animate-if.ng-enter, .animate-if.ng-leave { +- -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- } +- +- .animate-if.ng-enter, +- .animate-if.ng-leave.ng-leave-active { +- opacity:0; +- } +- +- .animate-if.ng-leave, +- .animate-if.ng-enter.ng-enter-active { +- opacity:1; +- } +- </file> +- </example> +- */ +-var ngIfDirective = ['$animate', function($animate) { +- return { +- multiElement: true, +- transclude: 'element', +- priority: 600, +- terminal: true, +- restrict: 'A', +- $$tlb: true, +- link: function($scope, $element, $attr, ctrl, $transclude) { +- var block, childScope, previousElements; +- $scope.$watch($attr.ngIf, function ngIfWatchAction(value) { +- +- if (value) { +- if (!childScope) { +- $transclude(function(clone, newScope) { +- childScope = newScope; +- clone[clone.length++] = document.createComment(' end ngIf: ' + $attr.ngIf + ' '); +- // Note: We only need the first/last node of the cloned nodes. +- // However, we need to keep the reference to the jqlite wrapper as it might be changed later +- // by a directive with templateUrl when its template arrives. +- block = { +- clone: clone +- }; +- $animate.enter(clone, $element.parent(), $element); +- }); +- } +- } else { +- if (previousElements) { +- previousElements.remove(); +- previousElements = null; +- } +- if (childScope) { +- childScope.$destroy(); +- childScope = null; +- } +- if (block) { +- previousElements = getBlockNodes(block.clone); +- $animate.leave(previousElements).then(function() { +- previousElements = null; +- }); +- block = null; +- } +- } +- }); +- } +- }; +-}]; +- +-/** +- * @ngdoc directive +- * @name ngInclude +- * @restrict ECA +- * +- * @description +- * Fetches, compiles and includes an external HTML fragment. +- * +- * By default, the template URL is restricted to the same domain and protocol as the +- * application document. This is done by calling {@link $sce#getTrustedResourceUrl +- * $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols +- * you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist them} or +- * {@link $sce#trustAsResourceUrl wrap them} as trusted values. Refer to Angular's {@link +- * ng.$sce Strict Contextual Escaping}. +- * +- * In addition, the browser's +- * [Same Origin Policy](https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest) +- * and [Cross-Origin Resource Sharing (CORS)](http://www.w3.org/TR/cors/) +- * policy may further restrict whether the template is successfully loaded. +- * For example, `ngInclude` won't work for cross-domain requests on all browsers and for `file://` +- * access on some browsers. +- * +- * @animations +- * enter - animation is used to bring new content into the browser. +- * leave - animation is used to animate existing content away. +- * +- * The enter and leave animation occur concurrently. +- * +- * @scope +- * @priority 400 +- * +- * @param {string} ngInclude|src angular expression evaluating to URL. If the source is a string constant, +- * make sure you wrap it in **single** quotes, e.g. `src="'myPartialTemplate.html'"`. +- * @param {string=} onload Expression to evaluate when a new partial is loaded. +- * +- * @param {string=} autoscroll Whether `ngInclude` should call {@link ng.$anchorScroll +- * $anchorScroll} to scroll the viewport after the content is loaded. +- * +- * - If the attribute is not set, disable scrolling. +- * - If the attribute is set without value, enable scrolling. +- * - Otherwise enable scrolling only if the expression evaluates to truthy value. +- * +- * @example +- <example module="includeExample" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <select ng-model="template" ng-options="t.name for t in templates"> +- <option value="">(blank)</option> +- </select> +- url of the template: <code>{{template.url}}</code> +- <hr/> +- <div class="slide-animate-container"> +- <div class="slide-animate" ng-include="template.url"></div> +- </div> +- </div> +- </file> +- <file name="script.js"> +- angular.module('includeExample', ['ngAnimate']) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.templates = +- [ { name: 'template1.html', url: 'template1.html'}, +- { name: 'template2.html', url: 'template2.html'} ]; +- $scope.template = $scope.templates[0]; +- }]); +- </file> +- <file name="template1.html"> +- Content of template1.html +- </file> +- <file name="template2.html"> +- Content of template2.html +- </file> +- <file name="animations.css"> +- .slide-animate-container { +- position:relative; +- background:white; +- border:1px solid black; +- height:40px; +- overflow:hidden; +- } +- +- .slide-animate { +- padding:10px; +- } +- +- .slide-animate.ng-enter, .slide-animate.ng-leave { +- -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- +- position:absolute; +- top:0; +- left:0; +- right:0; +- bottom:0; +- display:block; +- padding:10px; +- } +- +- .slide-animate.ng-enter { +- top:-50px; +- } +- .slide-animate.ng-enter.ng-enter-active { +- top:0; +- } +- +- .slide-animate.ng-leave { +- top:0; +- } +- .slide-animate.ng-leave.ng-leave-active { +- top:50px; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var templateSelect = element(by.model('template')); +- var includeElem = element(by.css('[ng-include]')); +- +- it('should load template1.html', function() { +- expect(includeElem.getText()).toMatch(/Content of template1.html/); +- }); +- +- it('should load template2.html', function() { +- if (browser.params.browser == 'firefox') { +- // Firefox can't handle using selects +- // See https://github.com/angular/protractor/issues/480 +- return; +- } +- templateSelect.click(); +- templateSelect.all(by.css('option')).get(2).click(); +- expect(includeElem.getText()).toMatch(/Content of template2.html/); +- }); +- +- it('should change to blank', function() { +- if (browser.params.browser == 'firefox') { +- // Firefox can't handle using selects +- return; +- } +- templateSelect.click(); +- templateSelect.all(by.css('option')).get(0).click(); +- expect(includeElem.isPresent()).toBe(false); +- }); +- </file> +- </example> +- */ +- +- +-/** +- * @ngdoc event +- * @name ngInclude#$includeContentRequested +- * @eventType emit on the scope ngInclude was declared in +- * @description +- * Emitted every time the ngInclude content is requested. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {String} src URL of content to load. +- */ +- +- +-/** +- * @ngdoc event +- * @name ngInclude#$includeContentLoaded +- * @eventType emit on the current ngInclude scope +- * @description +- * Emitted every time the ngInclude content is reloaded. +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {String} src URL of content to load. +- */ +- +- +-/** +- * @ngdoc event +- * @name ngInclude#$includeContentError +- * @eventType emit on the scope ngInclude was declared in +- * @description +- * Emitted when a template HTTP request yields an erroneous response (status < 200 || status > 299) +- * +- * @param {Object} angularEvent Synthetic event object. +- * @param {String} src URL of content to load. +- */ +-var ngIncludeDirective = ['$templateRequest', '$anchorScroll', '$animate', '$sce', +- function($templateRequest, $anchorScroll, $animate, $sce) { +- return { +- restrict: 'ECA', +- priority: 400, +- terminal: true, +- transclude: 'element', +- controller: angular.noop, +- compile: function(element, attr) { +- var srcExp = attr.ngInclude || attr.src, +- onloadExp = attr.onload || '', +- autoScrollExp = attr.autoscroll; +- +- return function(scope, $element, $attr, ctrl, $transclude) { +- var changeCounter = 0, +- currentScope, +- previousElement, +- currentElement; +- +- var cleanupLastIncludeContent = function() { +- if (previousElement) { +- previousElement.remove(); +- previousElement = null; +- } +- if (currentScope) { +- currentScope.$destroy(); +- currentScope = null; +- } +- if (currentElement) { +- $animate.leave(currentElement).then(function() { +- previousElement = null; +- }); +- previousElement = currentElement; +- currentElement = null; +- } +- }; +- +- scope.$watch($sce.parseAsResourceUrl(srcExp), function ngIncludeWatchAction(src) { +- var afterAnimation = function() { +- if (isDefined(autoScrollExp) && (!autoScrollExp || scope.$eval(autoScrollExp))) { +- $anchorScroll(); +- } +- }; +- var thisChangeId = ++changeCounter; +- +- if (src) { +- //set the 2nd param to true to ignore the template request error so that the inner +- //contents and scope can be cleaned up. +- $templateRequest(src, true).then(function(response) { +- if (thisChangeId !== changeCounter) return; +- var newScope = scope.$new(); +- ctrl.template = response; +- +- // Note: This will also link all children of ng-include that were contained in the original +- // html. If that content contains controllers, ... they could pollute/change the scope. +- // However, using ng-include on an element with additional content does not make sense... +- // Note: We can't remove them in the cloneAttchFn of $transclude as that +- // function is called before linking the content, which would apply child +- // directives to non existing elements. +- var clone = $transclude(newScope, function(clone) { +- cleanupLastIncludeContent(); +- $animate.enter(clone, null, $element).then(afterAnimation); +- }); +- +- currentScope = newScope; +- currentElement = clone; +- +- currentScope.$emit('$includeContentLoaded', src); +- scope.$eval(onloadExp); +- }, function() { +- if (thisChangeId === changeCounter) { +- cleanupLastIncludeContent(); +- scope.$emit('$includeContentError', src); +- } +- }); +- scope.$emit('$includeContentRequested', src); +- } else { +- cleanupLastIncludeContent(); +- ctrl.template = null; +- } +- }); +- }; +- } +- }; +-}]; +- +-// This directive is called during the $transclude call of the first `ngInclude` directive. +-// It will replace and compile the content of the element with the loaded template. +-// We need this directive so that the element content is already filled when +-// the link function of another directive on the same element as ngInclude +-// is called. +-var ngIncludeFillContentDirective = ['$compile', +- function($compile) { +- return { +- restrict: 'ECA', +- priority: -400, +- require: 'ngInclude', +- link: function(scope, $element, $attr, ctrl) { +- if (/SVG/.test($element[0].toString())) { +- // WebKit: https://bugs.webkit.org/show_bug.cgi?id=135698 --- SVG elements do not +- // support innerHTML, so detect this here and try to generate the contents +- // specially. +- $element.empty(); +- $compile(jqLiteBuildFragment(ctrl.template, document).childNodes)(scope, +- function namespaceAdaptedClone(clone) { +- $element.append(clone); +- }, {futureParentElement: $element}); +- return; +- } +- +- $element.html(ctrl.template); +- $compile($element.contents())(scope); +- } +- }; +- }]; +- +-/** +- * @ngdoc directive +- * @name ngInit +- * @restrict AC +- * +- * @description +- * The `ngInit` directive allows you to evaluate an expression in the +- * current scope. +- * +- * <div class="alert alert-error"> +- * The only appropriate use of `ngInit` is for aliasing special properties of +- * {@link ng.directive:ngRepeat `ngRepeat`}, as seen in the demo below. Besides this case, you +- * should use {@link guide/controller controllers} rather than `ngInit` +- * to initialize values on a scope. +- * </div> +- * <div class="alert alert-warning"> +- * **Note**: If you have assignment in `ngInit` along with {@link ng.$filter `$filter`}, make +- * sure you have parenthesis for correct precedence: +- * <pre class="prettyprint"> +- * `<div ng-init="test1 = (data | orderBy:'name')"></div>` +- * </pre> +- * </div> +- * +- * @priority 450 +- * +- * @element ANY +- * @param {expression} ngInit {@link guide/expression Expression} to eval. +- * +- * @example +- <example module="initExample"> +- <file name="index.html"> +- <script> +- angular.module('initExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.list = [['a', 'b'], ['c', 'd']]; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <div ng-repeat="innerList in list" ng-init="outerIndex = $index"> +- <div ng-repeat="value in innerList" ng-init="innerIndex = $index"> +- <span class="example-init">list[ {{outerIndex}} ][ {{innerIndex}} ] = {{value}};</span> +- </div> +- </div> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should alias index positions', function() { +- var elements = element.all(by.css('.example-init')); +- expect(elements.get(0).getText()).toBe('list[ 0 ][ 0 ] = a;'); +- expect(elements.get(1).getText()).toBe('list[ 0 ][ 1 ] = b;'); +- expect(elements.get(2).getText()).toBe('list[ 1 ][ 0 ] = c;'); +- expect(elements.get(3).getText()).toBe('list[ 1 ][ 1 ] = d;'); +- }); +- </file> +- </example> +- */ +-var ngInitDirective = ngDirective({ +- priority: 450, +- compile: function() { +- return { +- pre: function(scope, element, attrs) { +- scope.$eval(attrs.ngInit); +- } +- }; +- } +-}); +- +-/** +- * @ngdoc directive +- * @name ngList +- * +- * @description +- * Text input that converts between a delimited string and an array of strings. The default +- * delimiter is a comma followed by a space - equivalent to `ng-list=", "`. You can specify a custom +- * delimiter as the value of the `ngList` attribute - for example, `ng-list=" | "`. +- * +- * The behaviour of the directive is affected by the use of the `ngTrim` attribute. +- * * If `ngTrim` is set to `"false"` then whitespace around both the separator and each +- * list item is respected. This implies that the user of the directive is responsible for +- * dealing with whitespace but also allows you to use whitespace as a delimiter, such as a +- * tab or newline character. +- * * Otherwise whitespace around the delimiter is ignored when splitting (although it is respected +- * when joining the list items back together) and whitespace around each list item is stripped +- * before it is added to the model. +- * +- * ### Example with Validation +- * +- * <example name="ngList-directive" module="listExample"> +- * <file name="app.js"> +- * angular.module('listExample', []) +- * .controller('ExampleController', ['$scope', function($scope) { +- * $scope.names = ['morpheus', 'neo', 'trinity']; +- * }]); +- * </file> +- * <file name="index.html"> +- * <form name="myForm" ng-controller="ExampleController"> +- * List: <input name="namesInput" ng-model="names" ng-list required> +- * <span class="error" ng-show="myForm.namesInput.$error.required"> +- * Required!</span> +- * <br> +- * <tt>names = {{names}}</tt><br/> +- * <tt>myForm.namesInput.$valid = {{myForm.namesInput.$valid}}</tt><br/> +- * <tt>myForm.namesInput.$error = {{myForm.namesInput.$error}}</tt><br/> +- * <tt>myForm.$valid = {{myForm.$valid}}</tt><br/> +- * <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/> +- * </form> +- * </file> +- * <file name="protractor.js" type="protractor"> +- * var listInput = element(by.model('names')); +- * var names = element(by.exactBinding('names')); +- * var valid = element(by.binding('myForm.namesInput.$valid')); +- * var error = element(by.css('span.error')); +- * +- * it('should initialize to model', function() { +- * expect(names.getText()).toContain('["morpheus","neo","trinity"]'); +- * expect(valid.getText()).toContain('true'); +- * expect(error.getCssValue('display')).toBe('none'); +- * }); +- * +- * it('should be invalid if empty', function() { +- * listInput.clear(); +- * listInput.sendKeys(''); +- * +- * expect(names.getText()).toContain(''); +- * expect(valid.getText()).toContain('false'); +- * expect(error.getCssValue('display')).not.toBe('none'); +- * }); +- * </file> +- * </example> +- * +- * ### Example - splitting on whitespace +- * <example name="ngList-directive-newlines"> +- * <file name="index.html"> +- * <textarea ng-model="list" ng-list=" " ng-trim="false"></textarea> +- * <pre>{{ list | json }}</pre> +- * </file> +- * <file name="protractor.js" type="protractor"> +- * it("should split the text by newlines", function() { +- * var listInput = element(by.model('list')); +- * var output = element(by.binding('list | json')); +- * listInput.sendKeys('abc\ndef\nghi'); +- * expect(output.getText()).toContain('[\n "abc",\n "def",\n "ghi"\n]'); +- * }); +- * </file> +- * </example> +- * +- * @element input +- * @param {string=} ngList optional delimiter that should be used to split the value. +- */ +-var ngListDirective = function() { +- return { +- restrict: 'A', +- priority: 100, +- require: 'ngModel', +- link: function(scope, element, attr, ctrl) { +- // We want to control whitespace trimming so we use this convoluted approach +- // to access the ngList attribute, which doesn't pre-trim the attribute +- var ngList = element.attr(attr.$attr.ngList) || ', '; +- var trimValues = attr.ngTrim !== 'false'; +- var separator = trimValues ? trim(ngList) : ngList; +- +- var parse = function(viewValue) { +- // If the viewValue is invalid (say required but empty) it will be `undefined` +- if (isUndefined(viewValue)) return; +- +- var list = []; +- +- if (viewValue) { +- forEach(viewValue.split(separator), function(value) { +- if (value) list.push(trimValues ? trim(value) : value); +- }); +- } +- +- return list; +- }; +- +- ctrl.$parsers.push(parse); +- ctrl.$formatters.push(function(value) { +- if (isArray(value)) { +- return value.join(ngList); +- } +- +- return undefined; +- }); +- +- // Override the standard $isEmpty because an empty array means the input is empty. +- ctrl.$isEmpty = function(value) { +- return !value || !value.length; +- }; +- } +- }; +-}; +- +-/* global VALID_CLASS: true, +- INVALID_CLASS: true, +- PRISTINE_CLASS: true, +- DIRTY_CLASS: true, +- UNTOUCHED_CLASS: true, +- TOUCHED_CLASS: true, +-*/ +- +-var VALID_CLASS = 'ng-valid', +- INVALID_CLASS = 'ng-invalid', +- PRISTINE_CLASS = 'ng-pristine', +- DIRTY_CLASS = 'ng-dirty', +- UNTOUCHED_CLASS = 'ng-untouched', +- TOUCHED_CLASS = 'ng-touched', +- PENDING_CLASS = 'ng-pending'; +- +- +-var $ngModelMinErr = new minErr('ngModel'); +- +-/** +- * @ngdoc type +- * @name ngModel.NgModelController +- * +- * @property {string} $viewValue Actual string value in the view. +- * @property {*} $modelValue The value in the model that the control is bound to. +- * @property {Array.<Function>} $parsers Array of functions to execute, as a pipeline, whenever +- the control reads value from the DOM. The functions are called in array order, each passing +- its return value through to the next. The last return value is forwarded to the +- {@link ngModel.NgModelController#$validators `$validators`} collection. +- +-Parsers are used to sanitize / convert the {@link ngModel.NgModelController#$viewValue +-`$viewValue`}. +- +-Returning `undefined` from a parser means a parse error occurred. In that case, +-no {@link ngModel.NgModelController#$validators `$validators`} will run and the `ngModel` +-will be set to `undefined` unless {@link ngModelOptions `ngModelOptions.allowInvalid`} +-is set to `true`. The parse error is stored in `ngModel.$error.parse`. +- +- * +- * @property {Array.<Function>} $formatters Array of functions to execute, as a pipeline, whenever +- the model value changes. The functions are called in reverse array order, each passing the value through to the +- next. The last return value is used as the actual DOM value. +- Used to format / convert values for display in the control. +- * ```js +- * function formatter(value) { +- * if (value) { +- * return value.toUpperCase(); +- * } +- * } +- * ngModel.$formatters.push(formatter); +- * ``` +- * +- * @property {Object.<string, function>} $validators A collection of validators that are applied +- * whenever the model value changes. The key value within the object refers to the name of the +- * validator while the function refers to the validation operation. The validation operation is +- * provided with the model value as an argument and must return a true or false value depending +- * on the response of that validation. +- * +- * ```js +- * ngModel.$validators.validCharacters = function(modelValue, viewValue) { +- * var value = modelValue || viewValue; +- * return /[0-9]+/.test(value) && +- * /[a-z]+/.test(value) && +- * /[A-Z]+/.test(value) && +- * /\W+/.test(value); +- * }; +- * ``` +- * +- * @property {Object.<string, function>} $asyncValidators A collection of validations that are expected to +- * perform an asynchronous validation (e.g. an HTTP request). The validation function that is provided +- * is expected to return a promise when it is run during the model validation process. Once the promise +- * is delivered then the validation status will be set to true when fulfilled and false when rejected. +- * When the asynchronous validators are triggered, each of the validators will run in parallel and the model +- * value will only be updated once all validators have been fulfilled. As long as an asynchronous validator +- * is unfulfilled, its key will be added to the controllers `$pending` property. Also, all asynchronous validators +- * will only run once all synchronous validators have passed. +- * +- * Please note that if $http is used then it is important that the server returns a success HTTP response code +- * in order to fulfill the validation and a status level of `4xx` in order to reject the validation. +- * +- * ```js +- * ngModel.$asyncValidators.uniqueUsername = function(modelValue, viewValue) { +- * var value = modelValue || viewValue; +- * +- * // Lookup user by username +- * return $http.get('/api/users/' + value). +- * then(function resolved() { +- * //username exists, this means validation fails +- * return $q.reject('exists'); +- * }, function rejected() { +- * //username does not exist, therefore this validation passes +- * return true; +- * }); +- * }; +- * ``` +- * +- * @property {Array.<Function>} $viewChangeListeners Array of functions to execute whenever the +- * view value has changed. It is called with no arguments, and its return value is ignored. +- * This can be used in place of additional $watches against the model value. +- * +- * @property {Object} $error An object hash with all failing validator ids as keys. +- * @property {Object} $pending An object hash with all pending validator ids as keys. +- * +- * @property {boolean} $untouched True if control has not lost focus yet. +- * @property {boolean} $touched True if control has lost focus. +- * @property {boolean} $pristine True if user has not interacted with the control yet. +- * @property {boolean} $dirty True if user has already interacted with the control. +- * @property {boolean} $valid True if there is no error. +- * @property {boolean} $invalid True if at least one error on the control. +- * @property {string} $name The name attribute of the control. +- * +- * @description +- * +- * `NgModelController` provides API for the {@link ngModel `ngModel`} directive. +- * The controller contains services for data-binding, validation, CSS updates, and value formatting +- * and parsing. It purposefully does not contain any logic which deals with DOM rendering or +- * listening to DOM events. +- * Such DOM related logic should be provided by other directives which make use of +- * `NgModelController` for data-binding to control elements. +- * Angular provides this DOM logic for most {@link input `input`} elements. +- * At the end of this page you can find a {@link ngModel.NgModelController#custom-control-example +- * custom control example} that uses `ngModelController` to bind to `contenteditable` elements. +- * +- * @example +- * ### Custom Control Example +- * This example shows how to use `NgModelController` with a custom control to achieve +- * data-binding. Notice how different directives (`contenteditable`, `ng-model`, and `required`) +- * collaborate together to achieve the desired result. +- * +- * `contenteditable` is an HTML5 attribute, which tells the browser to let the element +- * contents be edited in place by the user. +- * +- * We are using the {@link ng.service:$sce $sce} service here and include the {@link ngSanitize $sanitize} +- * module to automatically remove "bad" content like inline event listener (e.g. `<span onclick="...">`). +- * However, as we are using `$sce` the model can still decide to provide unsafe content if it marks +- * that content using the `$sce` service. +- * +- * <example name="NgModelController" module="customControl" deps="angular-sanitize.js"> +- <file name="style.css"> +- [contenteditable] { +- border: 1px solid black; +- background-color: white; +- min-height: 20px; +- } +- +- .ng-invalid { +- border: 1px solid red; +- } +- +- </file> +- <file name="script.js"> +- angular.module('customControl', ['ngSanitize']). +- directive('contenteditable', ['$sce', function($sce) { +- return { +- restrict: 'A', // only activate on element attribute +- require: '?ngModel', // get a hold of NgModelController +- link: function(scope, element, attrs, ngModel) { +- if (!ngModel) return; // do nothing if no ng-model +- +- // Specify how UI should be updated +- ngModel.$render = function() { +- element.html($sce.getTrustedHtml(ngModel.$viewValue || '')); +- }; +- +- // Listen for change events to enable binding +- element.on('blur keyup change', function() { +- scope.$evalAsync(read); +- }); +- read(); // initialize +- +- // Write data to the model +- function read() { +- var html = element.html(); +- // When we clear the content editable the browser leaves a <br> behind +- // If strip-br attribute is provided then we strip this out +- if ( attrs.stripBr && html == '<br>' ) { +- html = ''; +- } +- ngModel.$setViewValue(html); +- } +- } +- }; +- }]); +- </file> +- <file name="index.html"> +- <form name="myForm"> +- <div contenteditable +- name="myWidget" ng-model="userContent" +- strip-br="true" +- required>Change me!</div> +- <span ng-show="myForm.myWidget.$error.required">Required!</span> +- <hr> +- <textarea ng-model="userContent"></textarea> +- </form> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should data-bind and become invalid', function() { +- if (browser.params.browser == 'safari' || browser.params.browser == 'firefox') { +- // SafariDriver can't handle contenteditable +- // and Firefox driver can't clear contenteditables very well +- return; +- } +- var contentEditable = element(by.css('[contenteditable]')); +- var content = 'Change me!'; +- +- expect(contentEditable.getText()).toEqual(content); +- +- contentEditable.clear(); +- contentEditable.sendKeys(protractor.Key.BACK_SPACE); +- expect(contentEditable.getText()).toEqual(''); +- expect(contentEditable.getAttribute('class')).toMatch(/ng-invalid-required/); +- }); +- </file> +- * </example> +- * +- * +- */ +-var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$parse', '$animate', '$timeout', '$rootScope', '$q', '$interpolate', +- function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout, $rootScope, $q, $interpolate) { +- this.$viewValue = Number.NaN; +- this.$modelValue = Number.NaN; +- this.$$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity. +- this.$validators = {}; +- this.$asyncValidators = {}; +- this.$parsers = []; +- this.$formatters = []; +- this.$viewChangeListeners = []; +- this.$untouched = true; +- this.$touched = false; +- this.$pristine = true; +- this.$dirty = false; +- this.$valid = true; +- this.$invalid = false; +- this.$error = {}; // keep invalid keys here +- this.$$success = {}; // keep valid keys here +- this.$pending = undefined; // keep pending keys here +- this.$name = $interpolate($attr.name || '', false)($scope); +- +- +- var parsedNgModel = $parse($attr.ngModel), +- parsedNgModelAssign = parsedNgModel.assign, +- ngModelGet = parsedNgModel, +- ngModelSet = parsedNgModelAssign, +- pendingDebounce = null, +- parserValid, +- ctrl = this; +- +- this.$$setOptions = function(options) { +- ctrl.$options = options; +- if (options && options.getterSetter) { +- var invokeModelGetter = $parse($attr.ngModel + '()'), +- invokeModelSetter = $parse($attr.ngModel + '($$$p)'); +- +- ngModelGet = function($scope) { +- var modelValue = parsedNgModel($scope); +- if (isFunction(modelValue)) { +- modelValue = invokeModelGetter($scope); +- } +- return modelValue; +- }; +- ngModelSet = function($scope, newValue) { +- if (isFunction(parsedNgModel($scope))) { +- invokeModelSetter($scope, {$$$p: ctrl.$modelValue}); +- } else { +- parsedNgModelAssign($scope, ctrl.$modelValue); +- } +- }; +- } else if (!parsedNgModel.assign) { +- throw $ngModelMinErr('nonassign', "Expression '{0}' is non-assignable. Element: {1}", +- $attr.ngModel, startingTag($element)); +- } +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$render +- * +- * @description +- * Called when the view needs to be updated. It is expected that the user of the ng-model +- * directive will implement this method. +- * +- * The `$render()` method is invoked in the following situations: +- * +- * * `$rollbackViewValue()` is called. If we are rolling back the view value to the last +- * committed value then `$render()` is called to update the input control. +- * * The value referenced by `ng-model` is changed programmatically and both the `$modelValue` and +- * the `$viewValue` are different to last time. +- * +- * Since `ng-model` does not do a deep watch, `$render()` is only invoked if the values of +- * `$modelValue` and `$viewValue` are actually different to their previous value. If `$modelValue` +- * or `$viewValue` are objects (rather than a string or number) then `$render()` will not be +- * invoked if you only change a property on the objects. +- */ +- this.$render = noop; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$isEmpty +- * +- * @description +- * This is called when we need to determine if the value of an input is empty. +- * +- * For instance, the required directive does this to work out if the input has data or not. +- * +- * The default `$isEmpty` function checks whether the value is `undefined`, `''`, `null` or `NaN`. +- * +- * You can override this for input directives whose concept of being empty is different to the +- * default. The `checkboxInputType` directive does this because in its case a value of `false` +- * implies empty. +- * +- * @param {*} value The value of the input to check for emptiness. +- * @returns {boolean} True if `value` is "empty". +- */ +- this.$isEmpty = function(value) { +- return isUndefined(value) || value === '' || value === null || value !== value; +- }; +- +- var parentForm = $element.inheritedData('$formController') || nullFormCtrl, +- currentValidationRunId = 0; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setValidity +- * +- * @description +- * Change the validity state, and notify the form. +- * +- * This method can be called within $parsers/$formatters or a custom validation implementation. +- * However, in most cases it should be sufficient to use the `ngModel.$validators` and +- * `ngModel.$asyncValidators` collections which will call `$setValidity` automatically. +- * +- * @param {string} validationErrorKey Name of the validator. The `validationErrorKey` will be assigned +- * to either `$error[validationErrorKey]` or `$pending[validationErrorKey]` +- * (for unfulfilled `$asyncValidators`), so that it is available for data-binding. +- * The `validationErrorKey` should be in camelCase and will get converted into dash-case +- * for class name. Example: `myError` will result in `ng-valid-my-error` and `ng-invalid-my-error` +- * class and can be bound to as `{{someForm.someControl.$error.myError}}` . +- * @param {boolean} isValid Whether the current state is valid (true), invalid (false), pending (undefined), +- * or skipped (null). Pending is used for unfulfilled `$asyncValidators`. +- * Skipped is used by Angular when validators do not run because of parse errors and +- * when `$asyncValidators` do not run because any of the `$validators` failed. +- */ +- addSetValidityMethod({ +- ctrl: this, +- $element: $element, +- set: function(object, property) { +- object[property] = true; +- }, +- unset: function(object, property) { +- delete object[property]; +- }, +- parentForm: parentForm, +- $animate: $animate +- }); +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setPristine +- * +- * @description +- * Sets the control to its pristine state. +- * +- * This method can be called to remove the `ng-dirty` class and set the control to its pristine +- * state (`ng-pristine` class). A model is considered to be pristine when the control +- * has not been changed from when first compiled. +- */ +- this.$setPristine = function() { +- ctrl.$dirty = false; +- ctrl.$pristine = true; +- $animate.removeClass($element, DIRTY_CLASS); +- $animate.addClass($element, PRISTINE_CLASS); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setDirty +- * +- * @description +- * Sets the control to its dirty state. +- * +- * This method can be called to remove the `ng-pristine` class and set the control to its dirty +- * state (`ng-dirty` class). A model is considered to be dirty when the control has been changed +- * from when first compiled. +- */ +- this.$setDirty = function() { +- ctrl.$dirty = true; +- ctrl.$pristine = false; +- $animate.removeClass($element, PRISTINE_CLASS); +- $animate.addClass($element, DIRTY_CLASS); +- parentForm.$setDirty(); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setUntouched +- * +- * @description +- * Sets the control to its untouched state. +- * +- * This method can be called to remove the `ng-touched` class and set the control to its +- * untouched state (`ng-untouched` class). Upon compilation, a model is set as untouched +- * by default, however this function can be used to restore that state if the model has +- * already been touched by the user. +- */ +- this.$setUntouched = function() { +- ctrl.$touched = false; +- ctrl.$untouched = true; +- $animate.setClass($element, UNTOUCHED_CLASS, TOUCHED_CLASS); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setTouched +- * +- * @description +- * Sets the control to its touched state. +- * +- * This method can be called to remove the `ng-untouched` class and set the control to its +- * touched state (`ng-touched` class). A model is considered to be touched when the user has +- * first focused the control element and then shifted focus away from the control (blur event). +- */ +- this.$setTouched = function() { +- ctrl.$touched = true; +- ctrl.$untouched = false; +- $animate.setClass($element, TOUCHED_CLASS, UNTOUCHED_CLASS); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$rollbackViewValue +- * +- * @description +- * Cancel an update and reset the input element's value to prevent an update to the `$modelValue`, +- * which may be caused by a pending debounced event or because the input is waiting for a some +- * future event. +- * +- * If you have an input that uses `ng-model-options` to set up debounced events or events such +- * as blur you can have a situation where there is a period when the `$viewValue` +- * is out of synch with the ngModel's `$modelValue`. +- * +- * In this case, you can run into difficulties if you try to update the ngModel's `$modelValue` +- * programmatically before these debounced/future events have resolved/occurred, because Angular's +- * dirty checking mechanism is not able to tell whether the model has actually changed or not. +- * +- * The `$rollbackViewValue()` method should be called before programmatically changing the model of an +- * input which may have such events pending. This is important in order to make sure that the +- * input field will be updated with the new model value and any pending operations are cancelled. +- * +- * <example name="ng-model-cancel-update" module="cancel-update-example"> +- * <file name="app.js"> +- * angular.module('cancel-update-example', []) +- * +- * .controller('CancelUpdateController', ['$scope', function($scope) { +- * $scope.resetWithCancel = function(e) { +- * if (e.keyCode == 27) { +- * $scope.myForm.myInput1.$rollbackViewValue(); +- * $scope.myValue = ''; +- * } +- * }; +- * $scope.resetWithoutCancel = function(e) { +- * if (e.keyCode == 27) { +- * $scope.myValue = ''; +- * } +- * }; +- * }]); +- * </file> +- * <file name="index.html"> +- * <div ng-controller="CancelUpdateController"> +- * <p>Try typing something in each input. See that the model only updates when you +- * blur off the input. +- * </p> +- * <p>Now see what happens if you start typing then press the Escape key</p> +- * +- * <form name="myForm" ng-model-options="{ updateOn: 'blur' }"> +- * <p>With $rollbackViewValue()</p> +- * <input name="myInput1" ng-model="myValue" ng-keydown="resetWithCancel($event)"><br/> +- * myValue: "{{ myValue }}" +- * +- * <p>Without $rollbackViewValue()</p> +- * <input name="myInput2" ng-model="myValue" ng-keydown="resetWithoutCancel($event)"><br/> +- * myValue: "{{ myValue }}" +- * </form> +- * </div> +- * </file> +- * </example> +- */ +- this.$rollbackViewValue = function() { +- $timeout.cancel(pendingDebounce); +- ctrl.$viewValue = ctrl.$$lastCommittedViewValue; +- ctrl.$render(); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$validate +- * +- * @description +- * Runs each of the registered validators (first synchronous validators and then +- * asynchronous validators). +- * If the validity changes to invalid, the model will be set to `undefined`, +- * unless {@link ngModelOptions `ngModelOptions.allowInvalid`} is `true`. +- * If the validity changes to valid, it will set the model to the last available valid +- * modelValue, i.e. either the last parsed value or the last value set from the scope. +- */ +- this.$validate = function() { +- // ignore $validate before model is initialized +- if (isNumber(ctrl.$modelValue) && isNaN(ctrl.$modelValue)) { +- return; +- } +- +- var viewValue = ctrl.$$lastCommittedViewValue; +- // Note: we use the $$rawModelValue as $modelValue might have been +- // set to undefined during a view -> model update that found validation +- // errors. We can't parse the view here, since that could change +- // the model although neither viewValue nor the model on the scope changed +- var modelValue = ctrl.$$rawModelValue; +- +- var prevValid = ctrl.$valid; +- var prevModelValue = ctrl.$modelValue; +- +- var allowInvalid = ctrl.$options && ctrl.$options.allowInvalid; +- +- ctrl.$$runValidators(modelValue, viewValue, function(allValid) { +- // If there was no change in validity, don't update the model +- // This prevents changing an invalid modelValue to undefined +- if (!allowInvalid && prevValid !== allValid) { +- // Note: Don't check ctrl.$valid here, as we could have +- // external validators (e.g. calculated on the server), +- // that just call $setValidity and need the model value +- // to calculate their validity. +- ctrl.$modelValue = allValid ? modelValue : undefined; +- +- if (ctrl.$modelValue !== prevModelValue) { +- ctrl.$$writeModelToScope(); +- } +- } +- }); +- +- }; +- +- this.$$runValidators = function(modelValue, viewValue, doneCallback) { +- currentValidationRunId++; +- var localValidationRunId = currentValidationRunId; +- +- // check parser error +- if (!processParseErrors()) { +- validationDone(false); +- return; +- } +- if (!processSyncValidators()) { +- validationDone(false); +- return; +- } +- processAsyncValidators(); +- +- function processParseErrors() { +- var errorKey = ctrl.$$parserName || 'parse'; +- if (parserValid === undefined) { +- setValidity(errorKey, null); +- } else { +- if (!parserValid) { +- forEach(ctrl.$validators, function(v, name) { +- setValidity(name, null); +- }); +- forEach(ctrl.$asyncValidators, function(v, name) { +- setValidity(name, null); +- }); +- } +- // Set the parse error last, to prevent unsetting it, should a $validators key == parserName +- setValidity(errorKey, parserValid); +- return parserValid; +- } +- return true; +- } +- +- function processSyncValidators() { +- var syncValidatorsValid = true; +- forEach(ctrl.$validators, function(validator, name) { +- var result = validator(modelValue, viewValue); +- syncValidatorsValid = syncValidatorsValid && result; +- setValidity(name, result); +- }); +- if (!syncValidatorsValid) { +- forEach(ctrl.$asyncValidators, function(v, name) { +- setValidity(name, null); +- }); +- return false; +- } +- return true; +- } +- +- function processAsyncValidators() { +- var validatorPromises = []; +- var allValid = true; +- forEach(ctrl.$asyncValidators, function(validator, name) { +- var promise = validator(modelValue, viewValue); +- if (!isPromiseLike(promise)) { +- throw $ngModelMinErr("$asyncValidators", +- "Expected asynchronous validator to return a promise but got '{0}' instead.", promise); +- } +- setValidity(name, undefined); +- validatorPromises.push(promise.then(function() { +- setValidity(name, true); +- }, function(error) { +- allValid = false; +- setValidity(name, false); +- })); +- }); +- if (!validatorPromises.length) { +- validationDone(true); +- } else { +- $q.all(validatorPromises).then(function() { +- validationDone(allValid); +- }, noop); +- } +- } +- +- function setValidity(name, isValid) { +- if (localValidationRunId === currentValidationRunId) { +- ctrl.$setValidity(name, isValid); +- } +- } +- +- function validationDone(allValid) { +- if (localValidationRunId === currentValidationRunId) { +- +- doneCallback(allValid); +- } +- } +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$commitViewValue +- * +- * @description +- * Commit a pending update to the `$modelValue`. +- * +- * Updates may be pending by a debounced event or because the input is waiting for a some future +- * event defined in `ng-model-options`. this method is rarely needed as `NgModelController` +- * usually handles calling this in response to input events. +- */ +- this.$commitViewValue = function() { +- var viewValue = ctrl.$viewValue; +- +- $timeout.cancel(pendingDebounce); +- +- // If the view value has not changed then we should just exit, except in the case where there is +- // a native validator on the element. In this case the validation state may have changed even though +- // the viewValue has stayed empty. +- if (ctrl.$$lastCommittedViewValue === viewValue && (viewValue !== '' || !ctrl.$$hasNativeValidators)) { +- return; +- } +- ctrl.$$lastCommittedViewValue = viewValue; +- +- // change to dirty +- if (ctrl.$pristine) { +- this.$setDirty(); +- } +- this.$$parseAndValidate(); +- }; +- +- this.$$parseAndValidate = function() { +- var viewValue = ctrl.$$lastCommittedViewValue; +- var modelValue = viewValue; +- parserValid = isUndefined(modelValue) ? undefined : true; +- +- if (parserValid) { +- for (var i = 0; i < ctrl.$parsers.length; i++) { +- modelValue = ctrl.$parsers[i](modelValue); +- if (isUndefined(modelValue)) { +- parserValid = false; +- break; +- } +- } +- } +- if (isNumber(ctrl.$modelValue) && isNaN(ctrl.$modelValue)) { +- // ctrl.$modelValue has not been touched yet... +- ctrl.$modelValue = ngModelGet($scope); +- } +- var prevModelValue = ctrl.$modelValue; +- var allowInvalid = ctrl.$options && ctrl.$options.allowInvalid; +- ctrl.$$rawModelValue = modelValue; +- +- if (allowInvalid) { +- ctrl.$modelValue = modelValue; +- writeToModelIfNeeded(); +- } +- +- // Pass the $$lastCommittedViewValue here, because the cached viewValue might be out of date. +- // This can happen if e.g. $setViewValue is called from inside a parser +- ctrl.$$runValidators(modelValue, ctrl.$$lastCommittedViewValue, function(allValid) { +- if (!allowInvalid) { +- // Note: Don't check ctrl.$valid here, as we could have +- // external validators (e.g. calculated on the server), +- // that just call $setValidity and need the model value +- // to calculate their validity. +- ctrl.$modelValue = allValid ? modelValue : undefined; +- writeToModelIfNeeded(); +- } +- }); +- +- function writeToModelIfNeeded() { +- if (ctrl.$modelValue !== prevModelValue) { +- ctrl.$$writeModelToScope(); +- } +- } +- }; +- +- this.$$writeModelToScope = function() { +- ngModelSet($scope, ctrl.$modelValue); +- forEach(ctrl.$viewChangeListeners, function(listener) { +- try { +- listener(); +- } catch (e) { +- $exceptionHandler(e); +- } +- }); +- }; +- +- /** +- * @ngdoc method +- * @name ngModel.NgModelController#$setViewValue +- * +- * @description +- * Update the view value. +- * +- * This method should be called when an input directive want to change the view value; typically, +- * this is done from within a DOM event handler. +- * +- * For example {@link ng.directive:input input} calls it when the value of the input changes and +- * {@link ng.directive:select select} calls it when an option is selected. +- * +- * If the new `value` is an object (rather than a string or a number), we should make a copy of the +- * object before passing it to `$setViewValue`. This is because `ngModel` does not perform a deep +- * watch of objects, it only looks for a change of identity. If you only change the property of +- * the object then ngModel will not realise that the object has changed and will not invoke the +- * `$parsers` and `$validators` pipelines. +- * +- * For this reason, you should not change properties of the copy once it has been passed to +- * `$setViewValue`. Otherwise you may cause the model value on the scope to change incorrectly. +- * +- * When this method is called, the new `value` will be staged for committing through the `$parsers` +- * and `$validators` pipelines. If there are no special {@link ngModelOptions} specified then the staged +- * value sent directly for processing, finally to be applied to `$modelValue` and then the +- * **expression** specified in the `ng-model` attribute. +- * +- * Lastly, all the registered change listeners, in the `$viewChangeListeners` list, are called. +- * +- * In case the {@link ng.directive:ngModelOptions ngModelOptions} directive is used with `updateOn` +- * and the `default` trigger is not listed, all those actions will remain pending until one of the +- * `updateOn` events is triggered on the DOM element. +- * All these actions will be debounced if the {@link ng.directive:ngModelOptions ngModelOptions} +- * directive is used with a custom debounce for this particular event. +- * +- * Note that calling this function does not trigger a `$digest`. +- * +- * @param {string} value Value from the view. +- * @param {string} trigger Event that triggered the update. +- */ +- this.$setViewValue = function(value, trigger) { +- ctrl.$viewValue = value; +- if (!ctrl.$options || ctrl.$options.updateOnDefault) { +- ctrl.$$debounceViewValueCommit(trigger); +- } +- }; +- +- this.$$debounceViewValueCommit = function(trigger) { +- var debounceDelay = 0, +- options = ctrl.$options, +- debounce; +- +- if (options && isDefined(options.debounce)) { +- debounce = options.debounce; +- if (isNumber(debounce)) { +- debounceDelay = debounce; +- } else if (isNumber(debounce[trigger])) { +- debounceDelay = debounce[trigger]; +- } else if (isNumber(debounce['default'])) { +- debounceDelay = debounce['default']; +- } +- } +- +- $timeout.cancel(pendingDebounce); +- if (debounceDelay) { +- pendingDebounce = $timeout(function() { +- ctrl.$commitViewValue(); +- }, debounceDelay); +- } else if ($rootScope.$$phase) { +- ctrl.$commitViewValue(); +- } else { +- $scope.$apply(function() { +- ctrl.$commitViewValue(); +- }); +- } +- }; +- +- // model -> value +- // Note: we cannot use a normal scope.$watch as we want to detect the following: +- // 1. scope value is 'a' +- // 2. user enters 'b' +- // 3. ng-change kicks in and reverts scope value to 'a' +- // -> scope value did not change since the last digest as +- // ng-change executes in apply phase +- // 4. view should be changed back to 'a' +- $scope.$watch(function ngModelWatch() { +- var modelValue = ngModelGet($scope); +- +- // if scope model value and ngModel value are out of sync +- // TODO(perf): why not move this to the action fn? +- if (modelValue !== ctrl.$modelValue) { +- ctrl.$modelValue = ctrl.$$rawModelValue = modelValue; +- parserValid = undefined; +- +- var formatters = ctrl.$formatters, +- idx = formatters.length; +- +- var viewValue = modelValue; +- while (idx--) { +- viewValue = formatters[idx](viewValue); +- } +- if (ctrl.$viewValue !== viewValue) { +- ctrl.$viewValue = ctrl.$$lastCommittedViewValue = viewValue; +- ctrl.$render(); +- +- ctrl.$$runValidators(modelValue, viewValue, noop); +- } +- } +- +- return modelValue; +- }); +-}]; +- +- +-/** +- * @ngdoc directive +- * @name ngModel +- * +- * @element input +- * @priority 1 +- * +- * @description +- * The `ngModel` directive binds an `input`,`select`, `textarea` (or custom form control) to a +- * property on the scope using {@link ngModel.NgModelController NgModelController}, +- * which is created and exposed by this directive. +- * +- * `ngModel` is responsible for: +- * +- * - Binding the view into the model, which other directives such as `input`, `textarea` or `select` +- * require. +- * - Providing validation behavior (i.e. required, number, email, url). +- * - Keeping the state of the control (valid/invalid, dirty/pristine, touched/untouched, validation errors). +- * - Setting related css classes on the element (`ng-valid`, `ng-invalid`, `ng-dirty`, `ng-pristine`, `ng-touched`, `ng-untouched`) including animations. +- * - Registering the control with its parent {@link ng.directive:form form}. +- * +- * Note: `ngModel` will try to bind to the property given by evaluating the expression on the +- * current scope. If the property doesn't already exist on this scope, it will be created +- * implicitly and added to the scope. +- * +- * For best practices on using `ngModel`, see: +- * +- * - [Understanding Scopes](https://github.com/angular/angular.js/wiki/Understanding-Scopes) +- * +- * For basic examples, how to use `ngModel`, see: +- * +- * - {@link ng.directive:input input} +- * - {@link input[text] text} +- * - {@link input[checkbox] checkbox} +- * - {@link input[radio] radio} +- * - {@link input[number] number} +- * - {@link input[email] email} +- * - {@link input[url] url} +- * - {@link input[date] date} +- * - {@link input[datetime-local] datetime-local} +- * - {@link input[time] time} +- * - {@link input[month] month} +- * - {@link input[week] week} +- * - {@link ng.directive:select select} +- * - {@link ng.directive:textarea textarea} +- * +- * # CSS classes +- * The following CSS classes are added and removed on the associated input/select/textarea element +- * depending on the validity of the model. +- * +- * - `ng-valid`: the model is valid +- * - `ng-invalid`: the model is invalid +- * - `ng-valid-[key]`: for each valid key added by `$setValidity` +- * - `ng-invalid-[key]`: for each invalid key added by `$setValidity` +- * - `ng-pristine`: the control hasn't been interacted with yet +- * - `ng-dirty`: the control has been interacted with +- * - `ng-touched`: the control has been blurred +- * - `ng-untouched`: the control hasn't been blurred +- * - `ng-pending`: any `$asyncValidators` are unfulfilled +- * +- * Keep in mind that ngAnimate can detect each of these classes when added and removed. +- * +- * ## Animation Hooks +- * +- * Animations within models are triggered when any of the associated CSS classes are added and removed +- * on the input element which is attached to the model. These classes are: `.ng-pristine`, `.ng-dirty`, +- * `.ng-invalid` and `.ng-valid` as well as any other validations that are performed on the model itself. +- * The animations that are triggered within ngModel are similar to how they work in ngClass and +- * animations can be hooked into using CSS transitions, keyframes as well as JS animations. +- * +- * The following example shows a simple way to utilize CSS transitions to style an input element +- * that has been rendered as invalid after it has been validated: +- * +- * <pre> +- * //be sure to include ngAnimate as a module to hook into more +- * //advanced animations +- * .my-input { +- * transition:0.5s linear all; +- * background: white; +- * } +- * .my-input.ng-invalid { +- * background: red; +- * color:white; +- * } +- * </pre> +- * +- * @example +- * <example deps="angular-animate.js" animations="true" fixBase="true" module="inputExample"> +- <file name="index.html"> +- <script> +- angular.module('inputExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.val = '1'; +- }]); +- </script> +- <style> +- .my-input { +- -webkit-transition:all linear 0.5s; +- transition:all linear 0.5s; +- background: transparent; +- } +- .my-input.ng-invalid { +- color:white; +- background: red; +- } +- </style> +- Update input to see transitions when valid/invalid. +- Integer is a valid value. +- <form name="testForm" ng-controller="ExampleController"> +- <input ng-model="val" ng-pattern="/^\d+$/" name="anim" class="my-input" /> +- </form> +- </file> +- * </example> +- * +- * ## Binding to a getter/setter +- * +- * Sometimes it's helpful to bind `ngModel` to a getter/setter function. A getter/setter is a +- * function that returns a representation of the model when called with zero arguments, and sets +- * the internal state of a model when called with an argument. It's sometimes useful to use this +- * for models that have an internal representation that's different than what the model exposes +- * to the view. +- * +- * <div class="alert alert-success"> +- * **Best Practice:** It's best to keep getters fast because Angular is likely to call them more +- * frequently than other parts of your code. +- * </div> +- * +- * You use this behavior by adding `ng-model-options="{ getterSetter: true }"` to an element that +- * has `ng-model` attached to it. You can also add `ng-model-options="{ getterSetter: true }"` to +- * a `<form>`, which will enable this behavior for all `<input>`s within it. See +- * {@link ng.directive:ngModelOptions `ngModelOptions`} for more. +- * +- * The following example shows how to use `ngModel` with a getter/setter: +- * +- * @example +- * <example name="ngModel-getter-setter" module="getterSetterExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <form name="userForm"> +- Name: +- <input type="text" name="userName" +- ng-model="user.name" +- ng-model-options="{ getterSetter: true }" /> +- </form> +- <pre>user.name = <span ng-bind="user.name()"></span></pre> +- </div> +- </file> +- <file name="app.js"> +- angular.module('getterSetterExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- var _name = 'Brian'; +- $scope.user = { +- name: function(newName) { +- if (angular.isDefined(newName)) { +- _name = newName; +- } +- return _name; +- } +- }; +- }]); +- </file> +- * </example> +- */ +-var ngModelDirective = ['$rootScope', function($rootScope) { +- return { +- restrict: 'A', +- require: ['ngModel', '^?form', '^?ngModelOptions'], +- controller: NgModelController, +- // Prelink needs to run before any input directive +- // so that we can set the NgModelOptions in NgModelController +- // before anyone else uses it. +- priority: 1, +- compile: function ngModelCompile(element) { +- // Setup initial state of the control +- element.addClass(PRISTINE_CLASS).addClass(UNTOUCHED_CLASS).addClass(VALID_CLASS); +- +- return { +- pre: function ngModelPreLink(scope, element, attr, ctrls) { +- var modelCtrl = ctrls[0], +- formCtrl = ctrls[1] || nullFormCtrl; +- +- modelCtrl.$$setOptions(ctrls[2] && ctrls[2].$options); +- +- // notify others, especially parent forms +- formCtrl.$addControl(modelCtrl); +- +- attr.$observe('name', function(newValue) { +- if (modelCtrl.$name !== newValue) { +- formCtrl.$$renameControl(modelCtrl, newValue); +- } +- }); +- +- scope.$on('$destroy', function() { +- formCtrl.$removeControl(modelCtrl); +- }); +- }, +- post: function ngModelPostLink(scope, element, attr, ctrls) { +- var modelCtrl = ctrls[0]; +- if (modelCtrl.$options && modelCtrl.$options.updateOn) { +- element.on(modelCtrl.$options.updateOn, function(ev) { +- modelCtrl.$$debounceViewValueCommit(ev && ev.type); +- }); +- } +- +- element.on('blur', function(ev) { +- if (modelCtrl.$touched) return; +- +- if ($rootScope.$$phase) { +- scope.$evalAsync(modelCtrl.$setTouched); +- } else { +- scope.$apply(modelCtrl.$setTouched); +- } +- }); +- } +- }; +- } +- }; +-}]; +- +-var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/; +- +-/** +- * @ngdoc directive +- * @name ngModelOptions +- * +- * @description +- * Allows tuning how model updates are done. Using `ngModelOptions` you can specify a custom list of +- * events that will trigger a model update and/or a debouncing delay so that the actual update only +- * takes place when a timer expires; this timer will be reset after another change takes place. +- * +- * Given the nature of `ngModelOptions`, the value displayed inside input fields in the view might +- * be different than the value in the actual model. This means that if you update the model you +- * should also invoke {@link ngModel.NgModelController `$rollbackViewValue`} on the relevant input field in +- * order to make sure it is synchronized with the model and that any debounced action is canceled. +- * +- * The easiest way to reference the control's {@link ngModel.NgModelController `$rollbackViewValue`} +- * method is by making sure the input is placed inside a form that has a `name` attribute. This is +- * important because `form` controllers are published to the related scope under the name in their +- * `name` attribute. +- * +- * Any pending changes will take place immediately when an enclosing form is submitted via the +- * `submit` event. Note that `ngClick` events will occur before the model is updated. Use `ngSubmit` +- * to have access to the updated model. +- * +- * `ngModelOptions` has an effect on the element it's declared on and its descendants. +- * +- * @param {Object} ngModelOptions options to apply to the current model. Valid keys are: +- * - `updateOn`: string specifying which event should the input be bound to. You can set several +- * events using an space delimited list. There is a special event called `default` that +- * matches the default events belonging of the control. +- * - `debounce`: integer value which contains the debounce model update value in milliseconds. A +- * value of 0 triggers an immediate update. If an object is supplied instead, you can specify a +- * custom value for each event. For example: +- * `ng-model-options="{ updateOn: 'default blur', debounce: {'default': 500, 'blur': 0} }"` +- * - `allowInvalid`: boolean value which indicates that the model can be set with values that did +- * not validate correctly instead of the default behavior of setting the model to undefined. +- * - `getterSetter`: boolean value which determines whether or not to treat functions bound to +- `ngModel` as getters/setters. +- * - `timezone`: Defines the timezone to be used to read/write the `Date` instance in the model for +- * `<input type="date">`, `<input type="time">`, ... . Right now, the only supported value is `'UTC'`, +- * otherwise the default timezone of the browser will be used. +- * +- * @example +- +- The following example shows how to override immediate updates. Changes on the inputs within the +- form will update the model only when the control loses focus (blur event). If `escape` key is +- pressed while the input field is focused, the value is reset to the value in the current model. +- +- <example name="ngModelOptions-directive-blur" module="optionsExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <form name="userForm"> +- Name: +- <input type="text" name="userName" +- ng-model="user.name" +- ng-model-options="{ updateOn: 'blur' }" +- ng-keyup="cancel($event)" /><br /> +- +- Other data: +- <input type="text" ng-model="user.data" /><br /> +- </form> +- <pre>user.name = <span ng-bind="user.name"></span></pre> +- </div> +- </file> +- <file name="app.js"> +- angular.module('optionsExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.user = { name: 'say', data: '' }; +- +- $scope.cancel = function(e) { +- if (e.keyCode == 27) { +- $scope.userForm.userName.$rollbackViewValue(); +- } +- }; +- }]); +- </file> +- <file name="protractor.js" type="protractor"> +- var model = element(by.binding('user.name')); +- var input = element(by.model('user.name')); +- var other = element(by.model('user.data')); +- +- it('should allow custom events', function() { +- input.sendKeys(' hello'); +- input.click(); +- expect(model.getText()).toEqual('say'); +- other.click(); +- expect(model.getText()).toEqual('say hello'); +- }); +- +- it('should $rollbackViewValue when model changes', function() { +- input.sendKeys(' hello'); +- expect(input.getAttribute('value')).toEqual('say hello'); +- input.sendKeys(protractor.Key.ESCAPE); +- expect(input.getAttribute('value')).toEqual('say'); +- other.click(); +- expect(model.getText()).toEqual('say'); +- }); +- </file> +- </example> +- +- This one shows how to debounce model changes. Model will be updated only 1 sec after last change. +- If the `Clear` button is pressed, any debounced action is canceled and the value becomes empty. +- +- <example name="ngModelOptions-directive-debounce" module="optionsExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <form name="userForm"> +- Name: +- <input type="text" name="userName" +- ng-model="user.name" +- ng-model-options="{ debounce: 1000 }" /> +- <button ng-click="userForm.userName.$rollbackViewValue(); user.name=''">Clear</button><br /> +- </form> +- <pre>user.name = <span ng-bind="user.name"></span></pre> +- </div> +- </file> +- <file name="app.js"> +- angular.module('optionsExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.user = { name: 'say' }; +- }]); +- </file> +- </example> +- +- This one shows how to bind to getter/setters: +- +- <example name="ngModelOptions-directive-getter-setter" module="getterSetterExample"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <form name="userForm"> +- Name: +- <input type="text" name="userName" +- ng-model="user.name" +- ng-model-options="{ getterSetter: true }" /> +- </form> +- <pre>user.name = <span ng-bind="user.name()"></span></pre> +- </div> +- </file> +- <file name="app.js"> +- angular.module('getterSetterExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- var _name = 'Brian'; +- $scope.user = { +- name: function(newName) { +- return angular.isDefined(newName) ? (_name = newName) : _name; +- } +- }; +- }]); +- </file> +- </example> +- */ +-var ngModelOptionsDirective = function() { +- return { +- restrict: 'A', +- controller: ['$scope', '$attrs', function($scope, $attrs) { +- var that = this; +- this.$options = $scope.$eval($attrs.ngModelOptions); +- // Allow adding/overriding bound events +- if (this.$options.updateOn !== undefined) { +- this.$options.updateOnDefault = false; +- // extract "default" pseudo-event from list of events that can trigger a model update +- this.$options.updateOn = trim(this.$options.updateOn.replace(DEFAULT_REGEXP, function() { +- that.$options.updateOnDefault = true; +- return ' '; +- })); +- } else { +- this.$options.updateOnDefault = true; +- } +- }] +- }; +-}; +- +- +- +-// helper methods +-function addSetValidityMethod(context) { +- var ctrl = context.ctrl, +- $element = context.$element, +- classCache = {}, +- set = context.set, +- unset = context.unset, +- parentForm = context.parentForm, +- $animate = context.$animate; +- +- classCache[INVALID_CLASS] = !(classCache[VALID_CLASS] = $element.hasClass(VALID_CLASS)); +- +- ctrl.$setValidity = setValidity; +- +- function setValidity(validationErrorKey, state, controller) { +- if (state === undefined) { +- createAndSet('$pending', validationErrorKey, controller); +- } else { +- unsetAndCleanup('$pending', validationErrorKey, controller); +- } +- if (!isBoolean(state)) { +- unset(ctrl.$error, validationErrorKey, controller); +- unset(ctrl.$$success, validationErrorKey, controller); +- } else { +- if (state) { +- unset(ctrl.$error, validationErrorKey, controller); +- set(ctrl.$$success, validationErrorKey, controller); +- } else { +- set(ctrl.$error, validationErrorKey, controller); +- unset(ctrl.$$success, validationErrorKey, controller); +- } +- } +- if (ctrl.$pending) { +- cachedToggleClass(PENDING_CLASS, true); +- ctrl.$valid = ctrl.$invalid = undefined; +- toggleValidationCss('', null); +- } else { +- cachedToggleClass(PENDING_CLASS, false); +- ctrl.$valid = isObjectEmpty(ctrl.$error); +- ctrl.$invalid = !ctrl.$valid; +- toggleValidationCss('', ctrl.$valid); +- } +- +- // re-read the state as the set/unset methods could have +- // combined state in ctrl.$error[validationError] (used for forms), +- // where setting/unsetting only increments/decrements the value, +- // and does not replace it. +- var combinedState; +- if (ctrl.$pending && ctrl.$pending[validationErrorKey]) { +- combinedState = undefined; +- } else if (ctrl.$error[validationErrorKey]) { +- combinedState = false; +- } else if (ctrl.$$success[validationErrorKey]) { +- combinedState = true; +- } else { +- combinedState = null; +- } +- +- toggleValidationCss(validationErrorKey, combinedState); +- parentForm.$setValidity(validationErrorKey, combinedState, ctrl); +- } +- +- function createAndSet(name, value, controller) { +- if (!ctrl[name]) { +- ctrl[name] = {}; +- } +- set(ctrl[name], value, controller); +- } +- +- function unsetAndCleanup(name, value, controller) { +- if (ctrl[name]) { +- unset(ctrl[name], value, controller); +- } +- if (isObjectEmpty(ctrl[name])) { +- ctrl[name] = undefined; +- } +- } +- +- function cachedToggleClass(className, switchValue) { +- if (switchValue && !classCache[className]) { +- $animate.addClass($element, className); +- classCache[className] = true; +- } else if (!switchValue && classCache[className]) { +- $animate.removeClass($element, className); +- classCache[className] = false; +- } +- } +- +- function toggleValidationCss(validationErrorKey, isValid) { +- validationErrorKey = validationErrorKey ? '-' + snake_case(validationErrorKey, '-') : ''; +- +- cachedToggleClass(VALID_CLASS + validationErrorKey, isValid === true); +- cachedToggleClass(INVALID_CLASS + validationErrorKey, isValid === false); +- } +-} +- +-function isObjectEmpty(obj) { +- if (obj) { +- for (var prop in obj) { +- return false; +- } +- } +- return true; +-} +- +-/** +- * @ngdoc directive +- * @name ngNonBindable +- * @restrict AC +- * @priority 1000 +- * +- * @description +- * The `ngNonBindable` directive tells Angular not to compile or bind the contents of the current +- * DOM element. This is useful if the element contains what appears to be Angular directives and +- * bindings but which should be ignored by Angular. This could be the case if you have a site that +- * displays snippets of code, for instance. +- * +- * @element ANY +- * +- * @example +- * In this example there are two locations where a simple interpolation binding (`{{}}`) is present, +- * but the one wrapped in `ngNonBindable` is left alone. +- * +- * @example +- <example> +- <file name="index.html"> +- <div>Normal: {{1 + 2}}</div> +- <div ng-non-bindable>Ignored: {{1 + 2}}</div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-non-bindable', function() { +- expect(element(by.binding('1 + 2')).getText()).toContain('3'); +- expect(element.all(by.css('div')).last().getText()).toMatch(/1 \+ 2/); +- }); +- </file> +- </example> +- */ +-var ngNonBindableDirective = ngDirective({ terminal: true, priority: 1000 }); +- +-/** +- * @ngdoc directive +- * @name ngPluralize +- * @restrict EA +- * +- * @description +- * `ngPluralize` is a directive that displays messages according to en-US localization rules. +- * These rules are bundled with angular.js, but can be overridden +- * (see {@link guide/i18n Angular i18n} dev guide). You configure ngPluralize directive +- * by specifying the mappings between +- * [plural categories](http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html) +- * and the strings to be displayed. +- * +- * # Plural categories and explicit number rules +- * There are two +- * [plural categories](http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html) +- * in Angular's default en-US locale: "one" and "other". +- * +- * While a plural category may match many numbers (for example, in en-US locale, "other" can match +- * any number that is not 1), an explicit number rule can only match one number. For example, the +- * explicit number rule for "3" matches the number 3. There are examples of plural categories +- * and explicit number rules throughout the rest of this documentation. +- * +- * # Configuring ngPluralize +- * You configure ngPluralize by providing 2 attributes: `count` and `when`. +- * You can also provide an optional attribute, `offset`. +- * +- * The value of the `count` attribute can be either a string or an {@link guide/expression +- * Angular expression}; these are evaluated on the current scope for its bound value. +- * +- * The `when` attribute specifies the mappings between plural categories and the actual +- * string to be displayed. The value of the attribute should be a JSON object. +- * +- * The following example shows how to configure ngPluralize: +- * +- * ```html +- * <ng-pluralize count="personCount" +- when="{'0': 'Nobody is viewing.', +- * 'one': '1 person is viewing.', +- * 'other': '{} people are viewing.'}"> +- * </ng-pluralize> +- *``` +- * +- * In the example, `"0: Nobody is viewing."` is an explicit number rule. If you did not +- * specify this rule, 0 would be matched to the "other" category and "0 people are viewing" +- * would be shown instead of "Nobody is viewing". You can specify an explicit number rule for +- * other numbers, for example 12, so that instead of showing "12 people are viewing", you can +- * show "a dozen people are viewing". +- * +- * You can use a set of closed braces (`{}`) as a placeholder for the number that you want substituted +- * into pluralized strings. In the previous example, Angular will replace `{}` with +- * <span ng-non-bindable>`{{personCount}}`</span>. The closed braces `{}` is a placeholder +- * for <span ng-non-bindable>{{numberExpression}}</span>. +- * +- * # Configuring ngPluralize with offset +- * The `offset` attribute allows further customization of pluralized text, which can result in +- * a better user experience. For example, instead of the message "4 people are viewing this document", +- * you might display "John, Kate and 2 others are viewing this document". +- * The offset attribute allows you to offset a number by any desired value. +- * Let's take a look at an example: +- * +- * ```html +- * <ng-pluralize count="personCount" offset=2 +- * when="{'0': 'Nobody is viewing.', +- * '1': '{{person1}} is viewing.', +- * '2': '{{person1}} and {{person2}} are viewing.', +- * 'one': '{{person1}}, {{person2}} and one other person are viewing.', +- * 'other': '{{person1}}, {{person2}} and {} other people are viewing.'}"> +- * </ng-pluralize> +- * ``` +- * +- * Notice that we are still using two plural categories(one, other), but we added +- * three explicit number rules 0, 1 and 2. +- * When one person, perhaps John, views the document, "John is viewing" will be shown. +- * When three people view the document, no explicit number rule is found, so +- * an offset of 2 is taken off 3, and Angular uses 1 to decide the plural category. +- * In this case, plural category 'one' is matched and "John, Mary and one other person are viewing" +- * is shown. +- * +- * Note that when you specify offsets, you must provide explicit number rules for +- * numbers from 0 up to and including the offset. If you use an offset of 3, for example, +- * you must provide explicit number rules for 0, 1, 2 and 3. You must also provide plural strings for +- * plural categories "one" and "other". +- * +- * @param {string|expression} count The variable to be bound to. +- * @param {string} when The mapping between plural category to its corresponding strings. +- * @param {number=} offset Offset to deduct from the total number. +- * +- * @example +- <example module="pluralizeExample"> +- <file name="index.html"> +- <script> +- angular.module('pluralizeExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.person1 = 'Igor'; +- $scope.person2 = 'Misko'; +- $scope.personCount = 1; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- Person 1:<input type="text" ng-model="person1" value="Igor" /><br/> +- Person 2:<input type="text" ng-model="person2" value="Misko" /><br/> +- Number of People:<input type="text" ng-model="personCount" value="1" /><br/> +- +- <!--- Example with simple pluralization rules for en locale ---> +- Without Offset: +- <ng-pluralize count="personCount" +- when="{'0': 'Nobody is viewing.', +- 'one': '1 person is viewing.', +- 'other': '{} people are viewing.'}"> +- </ng-pluralize><br> +- +- <!--- Example with offset ---> +- With Offset(2): +- <ng-pluralize count="personCount" offset=2 +- when="{'0': 'Nobody is viewing.', +- '1': '{{person1}} is viewing.', +- '2': '{{person1}} and {{person2}} are viewing.', +- 'one': '{{person1}}, {{person2}} and one other person are viewing.', +- 'other': '{{person1}}, {{person2}} and {} other people are viewing.'}"> +- </ng-pluralize> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should show correct pluralized string', function() { +- var withoutOffset = element.all(by.css('ng-pluralize')).get(0); +- var withOffset = element.all(by.css('ng-pluralize')).get(1); +- var countInput = element(by.model('personCount')); +- +- expect(withoutOffset.getText()).toEqual('1 person is viewing.'); +- expect(withOffset.getText()).toEqual('Igor is viewing.'); +- +- countInput.clear(); +- countInput.sendKeys('0'); +- +- expect(withoutOffset.getText()).toEqual('Nobody is viewing.'); +- expect(withOffset.getText()).toEqual('Nobody is viewing.'); +- +- countInput.clear(); +- countInput.sendKeys('2'); +- +- expect(withoutOffset.getText()).toEqual('2 people are viewing.'); +- expect(withOffset.getText()).toEqual('Igor and Misko are viewing.'); +- +- countInput.clear(); +- countInput.sendKeys('3'); +- +- expect(withoutOffset.getText()).toEqual('3 people are viewing.'); +- expect(withOffset.getText()).toEqual('Igor, Misko and one other person are viewing.'); +- +- countInput.clear(); +- countInput.sendKeys('4'); +- +- expect(withoutOffset.getText()).toEqual('4 people are viewing.'); +- expect(withOffset.getText()).toEqual('Igor, Misko and 2 other people are viewing.'); +- }); +- it('should show data-bound names', function() { +- var withOffset = element.all(by.css('ng-pluralize')).get(1); +- var personCount = element(by.model('personCount')); +- var person1 = element(by.model('person1')); +- var person2 = element(by.model('person2')); +- personCount.clear(); +- personCount.sendKeys('4'); +- person1.clear(); +- person1.sendKeys('Di'); +- person2.clear(); +- person2.sendKeys('Vojta'); +- expect(withOffset.getText()).toEqual('Di, Vojta and 2 other people are viewing.'); +- }); +- </file> +- </example> +- */ +-var ngPluralizeDirective = ['$locale', '$interpolate', function($locale, $interpolate) { +- var BRACE = /{}/g, +- IS_WHEN = /^when(Minus)?(.+)$/; +- +- return { +- restrict: 'EA', +- link: function(scope, element, attr) { +- var numberExp = attr.count, +- whenExp = attr.$attr.when && element.attr(attr.$attr.when), // we have {{}} in attrs +- offset = attr.offset || 0, +- whens = scope.$eval(whenExp) || {}, +- whensExpFns = {}, +- startSymbol = $interpolate.startSymbol(), +- endSymbol = $interpolate.endSymbol(), +- braceReplacement = startSymbol + numberExp + '-' + offset + endSymbol, +- watchRemover = angular.noop, +- lastCount; +- +- forEach(attr, function(expression, attributeName) { +- var tmpMatch = IS_WHEN.exec(attributeName); +- if (tmpMatch) { +- var whenKey = (tmpMatch[1] ? '-' : '') + lowercase(tmpMatch[2]); +- whens[whenKey] = element.attr(attr.$attr[attributeName]); +- } +- }); +- forEach(whens, function(expression, key) { +- whensExpFns[key] = $interpolate(expression.replace(BRACE, braceReplacement)); +- +- }); +- +- scope.$watch(numberExp, function ngPluralizeWatchAction(newVal) { +- var count = parseFloat(newVal); +- var countIsNaN = isNaN(count); +- +- if (!countIsNaN && !(count in whens)) { +- // If an explicit number rule such as 1, 2, 3... is defined, just use it. +- // Otherwise, check it against pluralization rules in $locale service. +- count = $locale.pluralCat(count - offset); +- } +- +- // If both `count` and `lastCount` are NaN, we don't need to re-register a watch. +- // In JS `NaN !== NaN`, so we have to exlicitly check. +- if ((count !== lastCount) && !(countIsNaN && isNaN(lastCount))) { +- watchRemover(); +- watchRemover = scope.$watch(whensExpFns[count], updateElementText); +- lastCount = count; +- } +- }); +- +- function updateElementText(newText) { +- element.text(newText || ''); +- } +- } +- }; +-}]; +- +-/** +- * @ngdoc directive +- * @name ngRepeat +- * +- * @description +- * The `ngRepeat` directive instantiates a template once per item from a collection. Each template +- * instance gets its own scope, where the given loop variable is set to the current collection item, +- * and `$index` is set to the item index or key. +- * +- * Special properties are exposed on the local scope of each template instance, including: +- * +- * | Variable | Type | Details | +- * |-----------|-----------------|-----------------------------------------------------------------------------| +- * | `$index` | {@type number} | iterator offset of the repeated element (0..length-1) | +- * | `$first` | {@type boolean} | true if the repeated element is first in the iterator. | +- * | `$middle` | {@type boolean} | true if the repeated element is between the first and last in the iterator. | +- * | `$last` | {@type boolean} | true if the repeated element is last in the iterator. | +- * | `$even` | {@type boolean} | true if the iterator position `$index` is even (otherwise false). | +- * | `$odd` | {@type boolean} | true if the iterator position `$index` is odd (otherwise false). | +- * +- * Creating aliases for these properties is possible with {@link ng.directive:ngInit `ngInit`}. +- * This may be useful when, for instance, nesting ngRepeats. +- * +- * # Iterating over object properties +- * +- * It is possible to get `ngRepeat` to iterate over the properties of an object using the following +- * syntax: +- * +- * ```js +- * <div ng-repeat="(key, value) in myObj"> ... </div> +- * ``` +- * +- * You need to be aware that the JavaScript specification does not define what order +- * it will return the keys for an object. In order to have a guaranteed deterministic order +- * for the keys, Angular versions up to and including 1.3 **sort the keys alphabetically**. +- * +- * If this is not desired, the recommended workaround is to convert your object into an array +- * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could +- * do this with a filter such as [toArrayFilter](http://ngmodules.org/modules/angular-toArrayFilter) +- * or implement a `$watch` on the object yourself. +- * +- * In version 1.4 we will remove the sorting, since it seems that browsers generally follow the +- * strategy of providing keys in the order in which they were defined, although there are exceptions +- * when keys are deleted and reinstated. +- * +- * +- * # Tracking and Duplicates +- * +- * When the contents of the collection change, `ngRepeat` makes the corresponding changes to the DOM: +- * +- * * When an item is added, a new instance of the template is added to the DOM. +- * * When an item is removed, its template instance is removed from the DOM. +- * * When items are reordered, their respective templates are reordered in the DOM. +- * +- * By default, `ngRepeat` does not allow duplicate items in arrays. This is because when +- * there are duplicates, it is not possible to maintain a one-to-one mapping between collection +- * items and DOM elements. +- * +- * If you do need to repeat duplicate items, you can substitute the default tracking behavior +- * with your own using the `track by` expression. +- * +- * For example, you may track items by the index of each item in the collection, using the +- * special scope property `$index`: +- * ```html +- * <div ng-repeat="n in [42, 42, 43, 43] track by $index"> +- * {{n}} +- * </div> +- * ``` +- * +- * You may use arbitrary expressions in `track by`, including references to custom functions +- * on the scope: +- * ```html +- * <div ng-repeat="n in [42, 42, 43, 43] track by myTrackingFunction(n)"> +- * {{n}} +- * </div> +- * ``` +- * +- * If you are working with objects that have an identifier property, you can track +- * by the identifier instead of the whole object. Should you reload your data later, `ngRepeat` +- * will not have to rebuild the DOM elements for items it has already rendered, even if the +- * JavaScript objects in the collection have been substituted for new ones: +- * ```html +- * <div ng-repeat="model in collection track by model.id"> +- * {{model.name}} +- * </div> +- * ``` +- * +- * When no `track by` expression is provided, it is equivalent to tracking by the built-in +- * `$id` function, which tracks items by their identity: +- * ```html +- * <div ng-repeat="obj in collection track by $id(obj)"> +- * {{obj.prop}} +- * </div> +- * ``` +- * +- * # Special repeat start and end points +- * To repeat a series of elements instead of just one parent element, ngRepeat (as well as other ng directives) supports extending +- * the range of the repeater by defining explicit start and end points by using **ng-repeat-start** and **ng-repeat-end** respectively. +- * The **ng-repeat-start** directive works the same as **ng-repeat**, but will repeat all the HTML code (including the tag it's defined on) +- * up to and including the ending HTML tag where **ng-repeat-end** is placed. +- * +- * The example below makes use of this feature: +- * ```html +- * <header ng-repeat-start="item in items"> +- * Header {{ item }} +- * </header> +- * <div class="body"> +- * Body {{ item }} +- * </div> +- * <footer ng-repeat-end> +- * Footer {{ item }} +- * </footer> +- * ``` +- * +- * And with an input of {@type ['A','B']} for the items variable in the example above, the output will evaluate to: +- * ```html +- * <header> +- * Header A +- * </header> +- * <div class="body"> +- * Body A +- * </div> +- * <footer> +- * Footer A +- * </footer> +- * <header> +- * Header B +- * </header> +- * <div class="body"> +- * Body B +- * </div> +- * <footer> +- * Footer B +- * </footer> +- * ``` +- * +- * The custom start and end points for ngRepeat also support all other HTML directive syntax flavors provided in AngularJS (such +- * as **data-ng-repeat-start**, **x-ng-repeat-start** and **ng:repeat-start**). +- * +- * @animations +- * **.enter** - when a new item is added to the list or when an item is revealed after a filter +- * +- * **.leave** - when an item is removed from the list or when an item is filtered out +- * +- * **.move** - when an adjacent item is filtered out causing a reorder or when the item contents are reordered +- * +- * @element ANY +- * @scope +- * @priority 1000 +- * @param {repeat_expression} ngRepeat The expression indicating how to enumerate a collection. These +- * formats are currently supported: +- * +- * * `variable in expression` – where variable is the user defined loop variable and `expression` +- * is a scope expression giving the collection to enumerate. +- * +- * For example: `album in artist.albums`. +- * +- * * `(key, value) in expression` – where `key` and `value` can be any user defined identifiers, +- * and `expression` is the scope expression giving the collection to enumerate. +- * +- * For example: `(name, age) in {'adam':10, 'amalie':12}`. +- * +- * * `variable in expression track by tracking_expression` – You can also provide an optional tracking expression +- * which can be used to associate the objects in the collection with the DOM elements. If no tracking expression +- * is specified, ng-repeat associates elements by identity. It is an error to have +- * more than one tracking expression value resolve to the same key. (This would mean that two distinct objects are +- * mapped to the same DOM element, which is not possible.) If filters are used in the expression, they should be +- * applied before the tracking expression. +- * +- * For example: `item in items` is equivalent to `item in items track by $id(item)`. This implies that the DOM elements +- * will be associated by item identity in the array. +- * +- * For example: `item in items track by $id(item)`. A built in `$id()` function can be used to assign a unique +- * `$$hashKey` property to each item in the array. This property is then used as a key to associated DOM elements +- * with the corresponding item in the array by identity. Moving the same object in array would move the DOM +- * element in the same way in the DOM. +- * +- * For example: `item in items track by item.id` is a typical pattern when the items come from the database. In this +- * case the object identity does not matter. Two objects are considered equivalent as long as their `id` +- * property is same. +- * +- * For example: `item in items | filter:searchText track by item.id` is a pattern that might be used to apply a filter +- * to items in conjunction with a tracking expression. +- * +- * * `variable in expression as alias_expression` – You can also provide an optional alias expression which will then store the +- * intermediate results of the repeater after the filters have been applied. Typically this is used to render a special message +- * when a filter is active on the repeater, but the filtered result set is empty. +- * +- * For example: `item in items | filter:x as results` will store the fragment of the repeated items as `results`, but only after +- * the items have been processed through the filter. +- * +- * @example +- * This example initializes the scope to a list of names and +- * then uses `ngRepeat` to display every person: +- <example module="ngAnimate" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- <div ng-init="friends = [ +- {name:'John', age:25, gender:'boy'}, +- {name:'Jessie', age:30, gender:'girl'}, +- {name:'Johanna', age:28, gender:'girl'}, +- {name:'Joy', age:15, gender:'girl'}, +- {name:'Mary', age:28, gender:'girl'}, +- {name:'Peter', age:95, gender:'boy'}, +- {name:'Sebastian', age:50, gender:'boy'}, +- {name:'Erika', age:27, gender:'girl'}, +- {name:'Patrick', age:40, gender:'boy'}, +- {name:'Samantha', age:60, gender:'girl'} +- ]"> +- I have {{friends.length}} friends. They are: +- <input type="search" ng-model="q" placeholder="filter friends..." /> +- <ul class="example-animate-container"> +- <li class="animate-repeat" ng-repeat="friend in friends | filter:q as results"> +- [{{$index + 1}}] {{friend.name}} who is {{friend.age}} years old. +- </li> +- <li class="animate-repeat" ng-if="results.length == 0"> +- <strong>No results found...</strong> +- </li> +- </ul> +- </div> +- </file> +- <file name="animations.css"> +- .example-animate-container { +- background:white; +- border:1px solid black; +- list-style:none; +- margin:0; +- padding:0 10px; +- } +- +- .animate-repeat { +- line-height:40px; +- list-style:none; +- box-sizing:border-box; +- } +- +- .animate-repeat.ng-move, +- .animate-repeat.ng-enter, +- .animate-repeat.ng-leave { +- -webkit-transition:all linear 0.5s; +- transition:all linear 0.5s; +- } +- +- .animate-repeat.ng-leave.ng-leave-active, +- .animate-repeat.ng-move, +- .animate-repeat.ng-enter { +- opacity:0; +- max-height:0; +- } +- +- .animate-repeat.ng-leave, +- .animate-repeat.ng-move.ng-move-active, +- .animate-repeat.ng-enter.ng-enter-active { +- opacity:1; +- max-height:40px; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var friends = element.all(by.repeater('friend in friends')); +- +- it('should render initial data set', function() { +- expect(friends.count()).toBe(10); +- expect(friends.get(0).getText()).toEqual('[1] John who is 25 years old.'); +- expect(friends.get(1).getText()).toEqual('[2] Jessie who is 30 years old.'); +- expect(friends.last().getText()).toEqual('[10] Samantha who is 60 years old.'); +- expect(element(by.binding('friends.length')).getText()) +- .toMatch("I have 10 friends. They are:"); +- }); +- +- it('should update repeater when filter predicate changes', function() { +- expect(friends.count()).toBe(10); +- +- element(by.model('q')).sendKeys('ma'); +- +- expect(friends.count()).toBe(2); +- expect(friends.get(0).getText()).toEqual('[1] Mary who is 28 years old.'); +- expect(friends.last().getText()).toEqual('[2] Samantha who is 60 years old.'); +- }); +- </file> +- </example> +- */ +-var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) { +- var NG_REMOVED = '$$NG_REMOVED'; +- var ngRepeatMinErr = minErr('ngRepeat'); +- +- var updateScope = function(scope, index, valueIdentifier, value, keyIdentifier, key, arrayLength) { +- // TODO(perf): generate setters to shave off ~40ms or 1-1.5% +- scope[valueIdentifier] = value; +- if (keyIdentifier) scope[keyIdentifier] = key; +- scope.$index = index; +- scope.$first = (index === 0); +- scope.$last = (index === (arrayLength - 1)); +- scope.$middle = !(scope.$first || scope.$last); +- // jshint bitwise: false +- scope.$odd = !(scope.$even = (index&1) === 0); +- // jshint bitwise: true +- }; +- +- var getBlockStart = function(block) { +- return block.clone[0]; +- }; +- +- var getBlockEnd = function(block) { +- return block.clone[block.clone.length - 1]; +- }; +- +- +- return { +- restrict: 'A', +- multiElement: true, +- transclude: 'element', +- priority: 1000, +- terminal: true, +- $$tlb: true, +- compile: function ngRepeatCompile($element, $attr) { +- var expression = $attr.ngRepeat; +- var ngRepeatEndComment = document.createComment(' end ngRepeat: ' + expression + ' '); +- +- var match = expression.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+track\s+by\s+([\s\S]+?))?\s*$/); +- +- if (!match) { +- throw ngRepeatMinErr('iexp', "Expected expression in form of '_item_ in _collection_[ track by _id_]' but got '{0}'.", +- expression); +- } +- +- var lhs = match[1]; +- var rhs = match[2]; +- var aliasAs = match[3]; +- var trackByExp = match[4]; +- +- match = lhs.match(/^(?:(\s*[\$\w]+)|\(\s*([\$\w]+)\s*,\s*([\$\w]+)\s*\))$/); +- +- if (!match) { +- throw ngRepeatMinErr('iidexp', "'_item_' in '_item_ in _collection_' should be an identifier or '(_key_, _value_)' expression, but got '{0}'.", +- lhs); +- } +- var valueIdentifier = match[3] || match[1]; +- var keyIdentifier = match[2]; +- +- if (aliasAs && (!/^[$a-zA-Z_][$a-zA-Z0-9_]*$/.test(aliasAs) || +- /^(null|undefined|this|\$index|\$first|\$middle|\$last|\$even|\$odd|\$parent|\$root|\$id)$/.test(aliasAs))) { +- throw ngRepeatMinErr('badident', "alias '{0}' is invalid --- must be a valid JS identifier which is not a reserved name.", +- aliasAs); +- } +- +- var trackByExpGetter, trackByIdExpFn, trackByIdArrayFn, trackByIdObjFn; +- var hashFnLocals = {$id: hashKey}; +- +- if (trackByExp) { +- trackByExpGetter = $parse(trackByExp); +- } else { +- trackByIdArrayFn = function(key, value) { +- return hashKey(value); +- }; +- trackByIdObjFn = function(key) { +- return key; +- }; +- } +- +- return function ngRepeatLink($scope, $element, $attr, ctrl, $transclude) { +- +- if (trackByExpGetter) { +- trackByIdExpFn = function(key, value, index) { +- // assign key, value, and $index to the locals so that they can be used in hash functions +- if (keyIdentifier) hashFnLocals[keyIdentifier] = key; +- hashFnLocals[valueIdentifier] = value; +- hashFnLocals.$index = index; +- return trackByExpGetter($scope, hashFnLocals); +- }; +- } +- +- // Store a list of elements from previous run. This is a hash where key is the item from the +- // iterator, and the value is objects with following properties. +- // - scope: bound scope +- // - element: previous element. +- // - index: position +- // +- // We are using no-proto object so that we don't need to guard against inherited props via +- // hasOwnProperty. +- var lastBlockMap = createMap(); +- +- //watch props +- $scope.$watchCollection(rhs, function ngRepeatAction(collection) { +- var index, length, +- previousNode = $element[0], // node that cloned nodes should be inserted after +- // initialized to the comment node anchor +- nextNode, +- // Same as lastBlockMap but it has the current state. It will become the +- // lastBlockMap on the next iteration. +- nextBlockMap = createMap(), +- collectionLength, +- key, value, // key/value of iteration +- trackById, +- trackByIdFn, +- collectionKeys, +- block, // last object information {scope, element, id} +- nextBlockOrder, +- elementsToRemove; +- +- if (aliasAs) { +- $scope[aliasAs] = collection; +- } +- +- if (isArrayLike(collection)) { +- collectionKeys = collection; +- trackByIdFn = trackByIdExpFn || trackByIdArrayFn; +- } else { +- trackByIdFn = trackByIdExpFn || trackByIdObjFn; +- // if object, extract keys, sort them and use to determine order of iteration over obj props +- collectionKeys = []; +- for (var itemKey in collection) { +- if (collection.hasOwnProperty(itemKey) && itemKey.charAt(0) != '$') { +- collectionKeys.push(itemKey); +- } +- } +- collectionKeys.sort(); +- } +- +- collectionLength = collectionKeys.length; +- nextBlockOrder = new Array(collectionLength); +- +- // locate existing items +- for (index = 0; index < collectionLength; index++) { +- key = (collection === collectionKeys) ? index : collectionKeys[index]; +- value = collection[key]; +- trackById = trackByIdFn(key, value, index); +- if (lastBlockMap[trackById]) { +- // found previously seen block +- block = lastBlockMap[trackById]; +- delete lastBlockMap[trackById]; +- nextBlockMap[trackById] = block; +- nextBlockOrder[index] = block; +- } else if (nextBlockMap[trackById]) { +- // if collision detected. restore lastBlockMap and throw an error +- forEach(nextBlockOrder, function(block) { +- if (block && block.scope) lastBlockMap[block.id] = block; +- }); +- throw ngRepeatMinErr('dupes', +- "Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: {0}, Duplicate key: {1}, Duplicate value: {2}", +- expression, trackById, value); +- } else { +- // new never before seen block +- nextBlockOrder[index] = {id: trackById, scope: undefined, clone: undefined}; +- nextBlockMap[trackById] = true; +- } +- } +- +- // remove leftover items +- for (var blockKey in lastBlockMap) { +- block = lastBlockMap[blockKey]; +- elementsToRemove = getBlockNodes(block.clone); +- $animate.leave(elementsToRemove); +- if (elementsToRemove[0].parentNode) { +- // if the element was not removed yet because of pending animation, mark it as deleted +- // so that we can ignore it later +- for (index = 0, length = elementsToRemove.length; index < length; index++) { +- elementsToRemove[index][NG_REMOVED] = true; +- } +- } +- block.scope.$destroy(); +- } +- +- // we are not using forEach for perf reasons (trying to avoid #call) +- for (index = 0; index < collectionLength; index++) { +- key = (collection === collectionKeys) ? index : collectionKeys[index]; +- value = collection[key]; +- block = nextBlockOrder[index]; +- +- if (block.scope) { +- // if we have already seen this object, then we need to reuse the +- // associated scope/element +- +- nextNode = previousNode; +- +- // skip nodes that are already pending removal via leave animation +- do { +- nextNode = nextNode.nextSibling; +- } while (nextNode && nextNode[NG_REMOVED]); +- +- if (getBlockStart(block) != nextNode) { +- // existing item which got moved +- $animate.move(getBlockNodes(block.clone), null, jqLite(previousNode)); +- } +- previousNode = getBlockEnd(block); +- updateScope(block.scope, index, valueIdentifier, value, keyIdentifier, key, collectionLength); +- } else { +- // new item which we don't know about +- $transclude(function ngRepeatTransclude(clone, scope) { +- block.scope = scope; +- // http://jsperf.com/clone-vs-createcomment +- var endNode = ngRepeatEndComment.cloneNode(false); +- clone[clone.length++] = endNode; +- +- // TODO(perf): support naked previousNode in `enter` to avoid creation of jqLite wrapper? +- $animate.enter(clone, null, jqLite(previousNode)); +- previousNode = endNode; +- // Note: We only need the first/last node of the cloned nodes. +- // However, we need to keep the reference to the jqlite wrapper as it might be changed later +- // by a directive with templateUrl when its template arrives. +- block.clone = clone; +- nextBlockMap[block.id] = block; +- updateScope(block.scope, index, valueIdentifier, value, keyIdentifier, key, collectionLength); +- }); +- } +- } +- lastBlockMap = nextBlockMap; +- }); +- }; +- } +- }; +-}]; +- +-var NG_HIDE_CLASS = 'ng-hide'; +-var NG_HIDE_IN_PROGRESS_CLASS = 'ng-hide-animate'; +-/** +- * @ngdoc directive +- * @name ngShow +- * +- * @description +- * The `ngShow` directive shows or hides the given HTML element based on the expression +- * provided to the `ngShow` attribute. The element is shown or hidden by removing or adding +- * the `.ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined +- * in AngularJS and sets the display style to none (using an !important flag). +- * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). +- * +- * ```html +- * <!-- when $scope.myValue is truthy (element is visible) --> +- * <div ng-show="myValue"></div> +- * +- * <!-- when $scope.myValue is falsy (element is hidden) --> +- * <div ng-show="myValue" class="ng-hide"></div> +- * ``` +- * +- * When the `ngShow` expression evaluates to a falsy value then the `.ng-hide` CSS class is added to the class +- * attribute on the element causing it to become hidden. When truthy, the `.ng-hide` CSS class is removed +- * from the element causing the element not to appear hidden. +- * +- * ## Why is !important used? +- * +- * You may be wondering why !important is used for the `.ng-hide` CSS class. This is because the `.ng-hide` selector +- * can be easily overridden by heavier selectors. For example, something as simple +- * as changing the display style on a HTML list item would make hidden elements appear visible. +- * This also becomes a bigger issue when dealing with CSS frameworks. +- * +- * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector +- * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the +- * styling to change how to hide an element then it is just a matter of using !important in their own CSS code. +- * +- * ### Overriding `.ng-hide` +- * +- * By default, the `.ng-hide` class will style the element with `display: none!important`. If you wish to change +- * the hide behavior with ngShow/ngHide then this can be achieved by restating the styles for the `.ng-hide` +- * class CSS. Note that the selector that needs to be used is actually `.ng-hide:not(.ng-hide-animate)` to cope +- * with extra animation classes that can be added. +- * +- * ```css +- * .ng-hide:not(.ng-hide-animate) { +- * /* this is just another form of hiding an element */ +- * display: block!important; +- * position: absolute; +- * top: -9999px; +- * left: -9999px; +- * } +- * ``` +- * +- * By default you don't need to override in CSS anything and the animations will work around the display style. +- * +- * ## A note about animations with `ngShow` +- * +- * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression +- * is true and false. This system works like the animation system present with ngClass except that +- * you must also include the !important flag to override the display property +- * so that you can perform an animation when the element is hidden during the time of the animation. +- * +- * ```css +- * // +- * //a working example can be found at the bottom of this page +- * // +- * .my-element.ng-hide-add, .my-element.ng-hide-remove { +- * /* this is required as of 1.3x to properly +- * apply all styling in a show/hide animation */ +- * transition: 0s linear all; +- * } +- * +- * .my-element.ng-hide-add-active, +- * .my-element.ng-hide-remove-active { +- * /* the transition is defined in the active class */ +- * transition: 1s linear all; +- * } +- * +- * .my-element.ng-hide-add { ... } +- * .my-element.ng-hide-add.ng-hide-add-active { ... } +- * .my-element.ng-hide-remove { ... } +- * .my-element.ng-hide-remove.ng-hide-remove-active { ... } +- * ``` +- * +- * Keep in mind that, as of AngularJS version 1.3.0-beta.11, there is no need to change the display +- * property to block during animation states--ngAnimate will handle the style toggling automatically for you. +- * +- * @animations +- * addClass: `.ng-hide` - happens after the `ngShow` expression evaluates to a truthy value and the just before contents are set to visible +- * removeClass: `.ng-hide` - happens after the `ngShow` expression evaluates to a non truthy value and just before the contents are set to hidden +- * +- * @element ANY +- * @param {expression} ngShow If the {@link guide/expression expression} is truthy +- * then the element is shown or hidden respectively. +- * +- * @example +- <example module="ngAnimate" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- Click me: <input type="checkbox" ng-model="checked"><br/> +- <div> +- Show: +- <div class="check-element animate-show" ng-show="checked"> +- <span class="glyphicon glyphicon-thumbs-up"></span> I show up when your checkbox is checked. +- </div> +- </div> +- <div> +- Hide: +- <div class="check-element animate-show" ng-hide="checked"> +- <span class="glyphicon glyphicon-thumbs-down"></span> I hide when your checkbox is checked. +- </div> +- </div> +- </file> +- <file name="glyphicons.css"> +- @import url(../../components/bootstrap-3.1.1/css/bootstrap.css); +- </file> +- <file name="animations.css"> +- .animate-show { +- line-height: 20px; +- opacity: 1; +- padding: 10px; +- border: 1px solid black; +- background: white; +- } +- +- .animate-show.ng-hide-add.ng-hide-add-active, +- .animate-show.ng-hide-remove.ng-hide-remove-active { +- -webkit-transition: all linear 0.5s; +- transition: all linear 0.5s; +- } +- +- .animate-show.ng-hide { +- line-height: 0; +- opacity: 0; +- padding: 0 10px; +- } +- +- .check-element { +- padding: 10px; +- border: 1px solid black; +- background: white; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var thumbsUp = element(by.css('span.glyphicon-thumbs-up')); +- var thumbsDown = element(by.css('span.glyphicon-thumbs-down')); +- +- it('should check ng-show / ng-hide', function() { +- expect(thumbsUp.isDisplayed()).toBeFalsy(); +- expect(thumbsDown.isDisplayed()).toBeTruthy(); +- +- element(by.model('checked')).click(); +- +- expect(thumbsUp.isDisplayed()).toBeTruthy(); +- expect(thumbsDown.isDisplayed()).toBeFalsy(); +- }); +- </file> +- </example> +- */ +-var ngShowDirective = ['$animate', function($animate) { +- return { +- restrict: 'A', +- multiElement: true, +- link: function(scope, element, attr) { +- scope.$watch(attr.ngShow, function ngShowWatchAction(value) { +- // we're adding a temporary, animation-specific class for ng-hide since this way +- // we can control when the element is actually displayed on screen without having +- // to have a global/greedy CSS selector that breaks when other animations are run. +- // Read: https://github.com/angular/angular.js/issues/9103#issuecomment-58335845 +- $animate[value ? 'removeClass' : 'addClass'](element, NG_HIDE_CLASS, { +- tempClasses: NG_HIDE_IN_PROGRESS_CLASS +- }); +- }); +- } +- }; +-}]; +- +- +-/** +- * @ngdoc directive +- * @name ngHide +- * +- * @description +- * The `ngHide` directive shows or hides the given HTML element based on the expression +- * provided to the `ngHide` attribute. The element is shown or hidden by removing or adding +- * the `ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined +- * in AngularJS and sets the display style to none (using an !important flag). +- * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). +- * +- * ```html +- * <!-- when $scope.myValue is truthy (element is hidden) --> +- * <div ng-hide="myValue" class="ng-hide"></div> +- * +- * <!-- when $scope.myValue is falsy (element is visible) --> +- * <div ng-hide="myValue"></div> +- * ``` +- * +- * When the `ngHide` expression evaluates to a truthy value then the `.ng-hide` CSS class is added to the class +- * attribute on the element causing it to become hidden. When falsy, the `.ng-hide` CSS class is removed +- * from the element causing the element not to appear hidden. +- * +- * ## Why is !important used? +- * +- * You may be wondering why !important is used for the `.ng-hide` CSS class. This is because the `.ng-hide` selector +- * can be easily overridden by heavier selectors. For example, something as simple +- * as changing the display style on a HTML list item would make hidden elements appear visible. +- * This also becomes a bigger issue when dealing with CSS frameworks. +- * +- * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector +- * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the +- * styling to change how to hide an element then it is just a matter of using !important in their own CSS code. +- * +- * ### Overriding `.ng-hide` +- * +- * By default, the `.ng-hide` class will style the element with `display: none!important`. If you wish to change +- * the hide behavior with ngShow/ngHide then this can be achieved by restating the styles for the `.ng-hide` +- * class in CSS: +- * +- * ```css +- * .ng-hide { +- * /* this is just another form of hiding an element */ +- * display: block!important; +- * position: absolute; +- * top: -9999px; +- * left: -9999px; +- * } +- * ``` +- * +- * By default you don't need to override in CSS anything and the animations will work around the display style. +- * +- * ## A note about animations with `ngHide` +- * +- * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression +- * is true and false. This system works like the animation system present with ngClass, except that the `.ng-hide` +- * CSS class is added and removed for you instead of your own CSS class. +- * +- * ```css +- * // +- * //a working example can be found at the bottom of this page +- * // +- * .my-element.ng-hide-add, .my-element.ng-hide-remove { +- * transition: 0.5s linear all; +- * } +- * +- * .my-element.ng-hide-add { ... } +- * .my-element.ng-hide-add.ng-hide-add-active { ... } +- * .my-element.ng-hide-remove { ... } +- * .my-element.ng-hide-remove.ng-hide-remove-active { ... } +- * ``` +- * +- * Keep in mind that, as of AngularJS version 1.3.0-beta.11, there is no need to change the display +- * property to block during animation states--ngAnimate will handle the style toggling automatically for you. +- * +- * @animations +- * removeClass: `.ng-hide` - happens after the `ngHide` expression evaluates to a truthy value and just before the contents are set to hidden +- * addClass: `.ng-hide` - happens after the `ngHide` expression evaluates to a non truthy value and just before the contents are set to visible +- * +- * @element ANY +- * @param {expression} ngHide If the {@link guide/expression expression} is truthy then +- * the element is shown or hidden respectively. +- * +- * @example +- <example module="ngAnimate" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- Click me: <input type="checkbox" ng-model="checked"><br/> +- <div> +- Show: +- <div class="check-element animate-hide" ng-show="checked"> +- <span class="glyphicon glyphicon-thumbs-up"></span> I show up when your checkbox is checked. +- </div> +- </div> +- <div> +- Hide: +- <div class="check-element animate-hide" ng-hide="checked"> +- <span class="glyphicon glyphicon-thumbs-down"></span> I hide when your checkbox is checked. +- </div> +- </div> +- </file> +- <file name="glyphicons.css"> +- @import url(../../components/bootstrap-3.1.1/css/bootstrap.css); +- </file> +- <file name="animations.css"> +- .animate-hide { +- -webkit-transition: all linear 0.5s; +- transition: all linear 0.5s; +- line-height: 20px; +- opacity: 1; +- padding: 10px; +- border: 1px solid black; +- background: white; +- } +- +- .animate-hide.ng-hide { +- line-height: 0; +- opacity: 0; +- padding: 0 10px; +- } +- +- .check-element { +- padding: 10px; +- border: 1px solid black; +- background: white; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var thumbsUp = element(by.css('span.glyphicon-thumbs-up')); +- var thumbsDown = element(by.css('span.glyphicon-thumbs-down')); +- +- it('should check ng-show / ng-hide', function() { +- expect(thumbsUp.isDisplayed()).toBeFalsy(); +- expect(thumbsDown.isDisplayed()).toBeTruthy(); +- +- element(by.model('checked')).click(); +- +- expect(thumbsUp.isDisplayed()).toBeTruthy(); +- expect(thumbsDown.isDisplayed()).toBeFalsy(); +- }); +- </file> +- </example> +- */ +-var ngHideDirective = ['$animate', function($animate) { +- return { +- restrict: 'A', +- multiElement: true, +- link: function(scope, element, attr) { +- scope.$watch(attr.ngHide, function ngHideWatchAction(value) { +- // The comment inside of the ngShowDirective explains why we add and +- // remove a temporary class for the show/hide animation +- $animate[value ? 'addClass' : 'removeClass'](element,NG_HIDE_CLASS, { +- tempClasses: NG_HIDE_IN_PROGRESS_CLASS +- }); +- }); +- } +- }; +-}]; +- +-/** +- * @ngdoc directive +- * @name ngStyle +- * @restrict AC +- * +- * @description +- * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. +- * +- * @element ANY +- * @param {expression} ngStyle +- * +- * {@link guide/expression Expression} which evals to an +- * object whose keys are CSS style names and values are corresponding values for those CSS +- * keys. +- * +- * Since some CSS style names are not valid keys for an object, they must be quoted. +- * See the 'background-color' style in the example below. +- * +- * @example +- <example> +- <file name="index.html"> +- <input type="button" value="set color" ng-click="myStyle={color:'red'}"> +- <input type="button" value="set background" ng-click="myStyle={'background-color':'blue'}"> +- <input type="button" value="clear" ng-click="myStyle={}"> +- <br/> +- <span ng-style="myStyle">Sample Text</span> +- <pre>myStyle={{myStyle}}</pre> +- </file> +- <file name="style.css"> +- span { +- color: black; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var colorSpan = element(by.css('span')); +- +- it('should check ng-style', function() { +- expect(colorSpan.getCssValue('color')).toBe('rgba(0, 0, 0, 1)'); +- element(by.css('input[value=\'set color\']')).click(); +- expect(colorSpan.getCssValue('color')).toBe('rgba(255, 0, 0, 1)'); +- element(by.css('input[value=clear]')).click(); +- expect(colorSpan.getCssValue('color')).toBe('rgba(0, 0, 0, 1)'); +- }); +- </file> +- </example> +- */ +-var ngStyleDirective = ngDirective(function(scope, element, attr) { +- scope.$watchCollection(attr.ngStyle, function ngStyleWatchAction(newStyles, oldStyles) { +- if (oldStyles && (newStyles !== oldStyles)) { +- forEach(oldStyles, function(val, style) { element.css(style, '');}); +- } +- if (newStyles) element.css(newStyles); +- }); +-}); +- +-/** +- * @ngdoc directive +- * @name ngSwitch +- * @restrict EA +- * +- * @description +- * The `ngSwitch` directive is used to conditionally swap DOM structure on your template based on a scope expression. +- * Elements within `ngSwitch` but without `ngSwitchWhen` or `ngSwitchDefault` directives will be preserved at the location +- * as specified in the template. +- * +- * The directive itself works similar to ngInclude, however, instead of downloading template code (or loading it +- * from the template cache), `ngSwitch` simply chooses one of the nested elements and makes it visible based on which element +- * matches the value obtained from the evaluated expression. In other words, you define a container element +- * (where you place the directive), place an expression on the **`on="..."` attribute** +- * (or the **`ng-switch="..."` attribute**), define any inner elements inside of the directive and place +- * a when attribute per element. The when attribute is used to inform ngSwitch which element to display when the on +- * expression is evaluated. If a matching expression is not found via a when attribute then an element with the default +- * attribute is displayed. +- * +- * <div class="alert alert-info"> +- * Be aware that the attribute values to match against cannot be expressions. They are interpreted +- * as literal string values to match against. +- * For example, **`ng-switch-when="someVal"`** will match against the string `"someVal"` not against the +- * value of the expression `$scope.someVal`. +- * </div> +- +- * @animations +- * enter - happens after the ngSwitch contents change and the matched child element is placed inside the container +- * leave - happens just after the ngSwitch contents change and just before the former contents are removed from the DOM +- * +- * @usage +- * +- * ``` +- * <ANY ng-switch="expression"> +- * <ANY ng-switch-when="matchValue1">...</ANY> +- * <ANY ng-switch-when="matchValue2">...</ANY> +- * <ANY ng-switch-default>...</ANY> +- * </ANY> +- * ``` +- * +- * +- * @scope +- * @priority 1200 +- * @param {*} ngSwitch|on expression to match against <tt>ng-switch-when</tt>. +- * On child elements add: +- * +- * * `ngSwitchWhen`: the case statement to match against. If match then this +- * case will be displayed. If the same match appears multiple times, all the +- * elements will be displayed. +- * * `ngSwitchDefault`: the default case when no other case match. If there +- * are multiple default cases, all of them will be displayed when no other +- * case match. +- * +- * +- * @example +- <example module="switchExample" deps="angular-animate.js" animations="true"> +- <file name="index.html"> +- <div ng-controller="ExampleController"> +- <select ng-model="selection" ng-options="item for item in items"> +- </select> +- <tt>selection={{selection}}</tt> +- <hr/> +- <div class="animate-switch-container" +- ng-switch on="selection"> +- <div class="animate-switch" ng-switch-when="settings">Settings Div</div> +- <div class="animate-switch" ng-switch-when="home">Home Span</div> +- <div class="animate-switch" ng-switch-default>default</div> +- </div> +- </div> +- </file> +- <file name="script.js"> +- angular.module('switchExample', ['ngAnimate']) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.items = ['settings', 'home', 'other']; +- $scope.selection = $scope.items[0]; +- }]); +- </file> +- <file name="animations.css"> +- .animate-switch-container { +- position:relative; +- background:white; +- border:1px solid black; +- height:40px; +- overflow:hidden; +- } +- +- .animate-switch { +- padding:10px; +- } +- +- .animate-switch.ng-animate { +- -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; +- +- position:absolute; +- top:0; +- left:0; +- right:0; +- bottom:0; +- } +- +- .animate-switch.ng-leave.ng-leave-active, +- .animate-switch.ng-enter { +- top:-50px; +- } +- .animate-switch.ng-leave, +- .animate-switch.ng-enter.ng-enter-active { +- top:0; +- } +- </file> +- <file name="protractor.js" type="protractor"> +- var switchElem = element(by.css('[ng-switch]')); +- var select = element(by.model('selection')); +- +- it('should start in settings', function() { +- expect(switchElem.getText()).toMatch(/Settings Div/); +- }); +- it('should change to home', function() { +- select.all(by.css('option')).get(1).click(); +- expect(switchElem.getText()).toMatch(/Home Span/); +- }); +- it('should select default', function() { +- select.all(by.css('option')).get(2).click(); +- expect(switchElem.getText()).toMatch(/default/); +- }); +- </file> +- </example> +- */ +-var ngSwitchDirective = ['$animate', function($animate) { +- return { +- restrict: 'EA', +- require: 'ngSwitch', +- +- // asks for $scope to fool the BC controller module +- controller: ['$scope', function ngSwitchController() { +- this.cases = {}; +- }], +- link: function(scope, element, attr, ngSwitchController) { +- var watchExpr = attr.ngSwitch || attr.on, +- selectedTranscludes = [], +- selectedElements = [], +- previousLeaveAnimations = [], +- selectedScopes = []; +- +- var spliceFactory = function(array, index) { +- return function() { array.splice(index, 1); }; +- }; +- +- scope.$watch(watchExpr, function ngSwitchWatchAction(value) { +- var i, ii; +- for (i = 0, ii = previousLeaveAnimations.length; i < ii; ++i) { +- $animate.cancel(previousLeaveAnimations[i]); +- } +- previousLeaveAnimations.length = 0; +- +- for (i = 0, ii = selectedScopes.length; i < ii; ++i) { +- var selected = getBlockNodes(selectedElements[i].clone); +- selectedScopes[i].$destroy(); +- var promise = previousLeaveAnimations[i] = $animate.leave(selected); +- promise.then(spliceFactory(previousLeaveAnimations, i)); +- } +- +- selectedElements.length = 0; +- selectedScopes.length = 0; +- +- if ((selectedTranscludes = ngSwitchController.cases['!' + value] || ngSwitchController.cases['?'])) { +- forEach(selectedTranscludes, function(selectedTransclude) { +- selectedTransclude.transclude(function(caseElement, selectedScope) { +- selectedScopes.push(selectedScope); +- var anchor = selectedTransclude.element; +- caseElement[caseElement.length++] = document.createComment(' end ngSwitchWhen: '); +- var block = { clone: caseElement }; +- +- selectedElements.push(block); +- $animate.enter(caseElement, anchor.parent(), anchor); +- }); +- }); +- } +- }); +- } +- }; +-}]; +- +-var ngSwitchWhenDirective = ngDirective({ +- transclude: 'element', +- priority: 1200, +- require: '^ngSwitch', +- multiElement: true, +- link: function(scope, element, attrs, ctrl, $transclude) { +- ctrl.cases['!' + attrs.ngSwitchWhen] = (ctrl.cases['!' + attrs.ngSwitchWhen] || []); +- ctrl.cases['!' + attrs.ngSwitchWhen].push({ transclude: $transclude, element: element }); +- } +-}); +- +-var ngSwitchDefaultDirective = ngDirective({ +- transclude: 'element', +- priority: 1200, +- require: '^ngSwitch', +- multiElement: true, +- link: function(scope, element, attr, ctrl, $transclude) { +- ctrl.cases['?'] = (ctrl.cases['?'] || []); +- ctrl.cases['?'].push({ transclude: $transclude, element: element }); +- } +-}); +- +-/** +- * @ngdoc directive +- * @name ngTransclude +- * @restrict EAC +- * +- * @description +- * Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion. +- * +- * Any existing content of the element that this directive is placed on will be removed before the transcluded content is inserted. +- * +- * @element ANY +- * +- * @example +- <example module="transcludeExample"> +- <file name="index.html"> +- <script> +- angular.module('transcludeExample', []) +- .directive('pane', function(){ +- return { +- restrict: 'E', +- transclude: true, +- scope: { title:'@' }, +- template: '<div style="border: 1px solid black;">' + +- '<div style="background-color: gray">{{title}}</div>' + +- '<ng-transclude></ng-transclude>' + +- '</div>' +- }; +- }) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.title = 'Lorem Ipsum'; +- $scope.text = 'Neque porro quisquam est qui dolorem ipsum quia dolor...'; +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <input ng-model="title"> <br/> +- <textarea ng-model="text"></textarea> <br/> +- <pane title="{{title}}">{{text}}</pane> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should have transcluded', function() { +- var titleElement = element(by.model('title')); +- titleElement.clear(); +- titleElement.sendKeys('TITLE'); +- var textElement = element(by.model('text')); +- textElement.clear(); +- textElement.sendKeys('TEXT'); +- expect(element(by.binding('title')).getText()).toEqual('TITLE'); +- expect(element(by.binding('text')).getText()).toEqual('TEXT'); +- }); +- </file> +- </example> +- * +- */ +-var ngTranscludeDirective = ngDirective({ +- restrict: 'EAC', +- link: function($scope, $element, $attrs, controller, $transclude) { +- if (!$transclude) { +- throw minErr('ngTransclude')('orphan', +- 'Illegal use of ngTransclude directive in the template! ' + +- 'No parent directive that requires a transclusion found. ' + +- 'Element: {0}', +- startingTag($element)); +- } +- +- $transclude(function(clone) { +- $element.empty(); +- $element.append(clone); +- }); +- } +-}); +- +-/** +- * @ngdoc directive +- * @name script +- * @restrict E +- * +- * @description +- * Load the content of a `<script>` element into {@link ng.$templateCache `$templateCache`}, so that the +- * template can be used by {@link ng.directive:ngInclude `ngInclude`}, +- * {@link ngRoute.directive:ngView `ngView`}, or {@link guide/directive directives}. The type of the +- * `<script>` element must be specified as `text/ng-template`, and a cache name for the template must be +- * assigned through the element's `id`, which can then be used as a directive's `templateUrl`. +- * +- * @param {string} type Must be set to `'text/ng-template'`. +- * @param {string} id Cache name of the template. +- * +- * @example +- <example> +- <file name="index.html"> +- <script type="text/ng-template" id="/tpl.html"> +- Content of the template. +- </script> +- +- <a ng-click="currentTpl='/tpl.html'" id="tpl-link">Load inlined template</a> +- <div id="tpl-content" ng-include src="currentTpl"></div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should load template defined inside script tag', function() { +- element(by.css('#tpl-link')).click(); +- expect(element(by.css('#tpl-content')).getText()).toMatch(/Content of the template/); +- }); +- </file> +- </example> +- */ +-var scriptDirective = ['$templateCache', function($templateCache) { +- return { +- restrict: 'E', +- terminal: true, +- compile: function(element, attr) { +- if (attr.type == 'text/ng-template') { +- var templateUrl = attr.id, +- text = element[0].text; +- +- $templateCache.put(templateUrl, text); +- } +- } +- }; +-}]; +- +-var ngOptionsMinErr = minErr('ngOptions'); +-/** +- * @ngdoc directive +- * @name select +- * @restrict E +- * +- * @description +- * HTML `SELECT` element with angular data-binding. +- * +- * # `ngOptions` +- * +- * The `ngOptions` attribute can be used to dynamically generate a list of `<option>` +- * elements for the `<select>` element using the array or object obtained by evaluating the +- * `ngOptions` comprehension expression. +- * +- * In many cases, `ngRepeat` can be used on `<option>` elements instead of `ngOptions` to achieve a +- * similar result. However, `ngOptions` provides some benefits such as reducing memory and +- * increasing speed by not creating a new scope for each repeated instance, as well as providing +- * more flexibility in how the `<select>`'s model is assigned via the `select` **`as`** part of the +- * comprehension expression. `ngOptions` should be used when the `<select>` model needs to be bound +- * to a non-string value. This is because an option element can only be bound to string values at +- * present. +- * +- * When an item in the `<select>` menu is selected, the array element or object property +- * represented by the selected option will be bound to the model identified by the `ngModel` +- * directive. +- * +- * Optionally, a single hard-coded `<option>` element, with the value set to an empty string, can +- * be nested into the `<select>` element. This element will then represent the `null` or "not selected" +- * option. See example below for demonstration. +- * +- * <div class="alert alert-warning"> +- * **Note:** `ngModel` compares by reference, not value. This is important when binding to an +- * array of objects. See an example [in this jsfiddle](http://jsfiddle.net/qWzTb/). +- * </div> +- * +- * ## `select` **`as`** +- * +- * Using `select` **`as`** will bind the result of the `select` expression to the model, but +- * the value of the `<select>` and `<option>` html elements will be either the index (for array data sources) +- * or property name (for object data sources) of the value within the collection. If a **`track by`** expression +- * is used, the result of that expression will be set as the value of the `option` and `select` elements. +- * +- * +- * ### `select` **`as`** and **`track by`** +- * +- * <div class="alert alert-warning"> +- * Do not use `select` **`as`** and **`track by`** in the same expression. They are not designed to work together. +- * </div> +- * +- * Consider the following example: +- * +- * ```html +- * <select ng-options="item.subItem as item.label for item in values track by item.id" ng-model="selected"> +- * ``` +- * +- * ```js +- * $scope.values = [{ +- * id: 1, +- * label: 'aLabel', +- * subItem: { name: 'aSubItem' } +- * }, { +- * id: 2, +- * label: 'bLabel', +- * subItem: { name: 'bSubItem' } +- * }]; +- * +- * $scope.selected = { name: 'aSubItem' }; +- * ``` +- * +- * With the purpose of preserving the selection, the **`track by`** expression is always applied to the element +- * of the data source (to `item` in this example). To calculate whether an element is selected, we do the +- * following: +- * +- * 1. Apply **`track by`** to the elements in the array. In the example: `[1, 2]` +- * 2. Apply **`track by`** to the already selected value in `ngModel`. +- * In the example: this is not possible as **`track by`** refers to `item.id`, but the selected +- * value from `ngModel` is `{name: 'aSubItem'}`, so the **`track by`** expression is applied to +- * a wrong object, the selected element can't be found, `<select>` is always reset to the "not +- * selected" option. +- * +- * +- * @param {string} ngModel Assignable angular expression to data-bind to. +- * @param {string=} name Property name of the form under which the control is published. +- * @param {string=} required The control is considered valid only if value is entered. +- * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to +- * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of +- * `required` when you want to data-bind to the `required` attribute. +- * @param {comprehension_expression=} ngOptions in one of the following forms: +- * +- * * for array data sources: +- * * `label` **`for`** `value` **`in`** `array` +- * * `select` **`as`** `label` **`for`** `value` **`in`** `array` +- * * `label` **`group by`** `group` **`for`** `value` **`in`** `array` +- * * `label` **`group by`** `group` **`for`** `value` **`in`** `array` **`track by`** `trackexpr` +- * * `label` **`for`** `value` **`in`** `array` | orderBy:`orderexpr` **`track by`** `trackexpr` +- * (for including a filter with `track by`) +- * * for object data sources: +- * * `label` **`for (`**`key` **`,`** `value`**`) in`** `object` +- * * `select` **`as`** `label` **`for (`**`key` **`,`** `value`**`) in`** `object` +- * * `label` **`group by`** `group` **`for (`**`key`**`,`** `value`**`) in`** `object` +- * * `select` **`as`** `label` **`group by`** `group` +- * **`for` `(`**`key`**`,`** `value`**`) in`** `object` +- * +- * Where: +- * +- * * `array` / `object`: an expression which evaluates to an array / object to iterate over. +- * * `value`: local variable which will refer to each item in the `array` or each property value +- * of `object` during iteration. +- * * `key`: local variable which will refer to a property name in `object` during iteration. +- * * `label`: The result of this expression will be the label for `<option>` element. The +- * `expression` will most likely refer to the `value` variable (e.g. `value.propertyName`). +- * * `select`: The result of this expression will be bound to the model of the parent `<select>` +- * element. If not specified, `select` expression will default to `value`. +- * * `group`: The result of this expression will be used to group options using the `<optgroup>` +- * DOM element. +- * * `trackexpr`: Used when working with an array of objects. The result of this expression will be +- * used to identify the objects in the array. The `trackexpr` will most likely refer to the +- * `value` variable (e.g. `value.propertyName`). With this the selection is preserved +- * even when the options are recreated (e.g. reloaded from the server). +- * +- * @example +- <example module="selectExample"> +- <file name="index.html"> +- <script> +- angular.module('selectExample', []) +- .controller('ExampleController', ['$scope', function($scope) { +- $scope.colors = [ +- {name:'black', shade:'dark'}, +- {name:'white', shade:'light'}, +- {name:'red', shade:'dark'}, +- {name:'blue', shade:'dark'}, +- {name:'yellow', shade:'light'} +- ]; +- $scope.myColor = $scope.colors[2]; // red +- }]); +- </script> +- <div ng-controller="ExampleController"> +- <ul> +- <li ng-repeat="color in colors"> +- Name: <input ng-model="color.name"> +- [<a href ng-click="colors.splice($index, 1)">X</a>] +- </li> +- <li> +- [<a href ng-click="colors.push({})">add</a>] +- </li> +- </ul> +- <hr/> +- Color (null not allowed): +- <select ng-model="myColor" ng-options="color.name for color in colors"></select><br> +- +- Color (null allowed): +- <span class="nullable"> +- <select ng-model="myColor" ng-options="color.name for color in colors"> +- <option value="">-- choose color --</option> +- </select> +- </span><br/> +- +- Color grouped by shade: +- <select ng-model="myColor" ng-options="color.name group by color.shade for color in colors"> +- </select><br/> +- +- +- Select <a href ng-click="myColor = { name:'not in list', shade: 'other' }">bogus</a>.<br> +- <hr/> +- Currently selected: {{ {selected_color:myColor} }} +- <div style="border:solid 1px black; height:20px" +- ng-style="{'background-color':myColor.name}"> +- </div> +- </div> +- </file> +- <file name="protractor.js" type="protractor"> +- it('should check ng-options', function() { +- expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('red'); +- element.all(by.model('myColor')).first().click(); +- element.all(by.css('select[ng-model="myColor"] option')).first().click(); +- expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('black'); +- element(by.css('.nullable select[ng-model="myColor"]')).click(); +- element.all(by.css('.nullable select[ng-model="myColor"] option')).first().click(); +- expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('null'); +- }); +- </file> +- </example> +- */ +- +-var ngOptionsDirective = valueFn({ +- restrict: 'A', +- terminal: true +-}); +- +-// jshint maxlen: false +-var selectDirective = ['$compile', '$parse', function($compile, $parse) { +- //000011111111110000000000022222222220000000000000000000003333333333000000000000004444444444444440000000005555555555555550000000666666666666666000000000000000777777777700000000000000000008888888888 +- var NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/, +- nullModelCtrl = {$setViewValue: noop}; +-// jshint maxlen: 100 +- +- return { +- restrict: 'E', +- require: ['select', '?ngModel'], +- controller: ['$element', '$scope', '$attrs', function($element, $scope, $attrs) { +- var self = this, +- optionsMap = {}, +- ngModelCtrl = nullModelCtrl, +- nullOption, +- unknownOption; +- +- +- self.databound = $attrs.ngModel; +- +- +- self.init = function(ngModelCtrl_, nullOption_, unknownOption_) { +- ngModelCtrl = ngModelCtrl_; +- nullOption = nullOption_; +- unknownOption = unknownOption_; +- }; +- +- +- self.addOption = function(value, element) { +- assertNotHasOwnProperty(value, '"option value"'); +- optionsMap[value] = true; +- +- if (ngModelCtrl.$viewValue == value) { +- $element.val(value); +- if (unknownOption.parent()) unknownOption.remove(); +- } +- // Workaround for https://code.google.com/p/chromium/issues/detail?id=381459 +- // Adding an <option selected="selected"> element to a <select required="required"> should +- // automatically select the new element +- if (element && element[0].hasAttribute('selected')) { +- element[0].selected = true; +- } +- }; +- +- +- self.removeOption = function(value) { +- if (this.hasOption(value)) { +- delete optionsMap[value]; +- if (ngModelCtrl.$viewValue === value) { +- this.renderUnknownOption(value); +- } +- } +- }; +- +- +- self.renderUnknownOption = function(val) { +- var unknownVal = '? ' + hashKey(val) + ' ?'; +- unknownOption.val(unknownVal); +- $element.prepend(unknownOption); +- $element.val(unknownVal); +- unknownOption.prop('selected', true); // needed for IE +- }; +- +- +- self.hasOption = function(value) { +- return optionsMap.hasOwnProperty(value); +- }; +- +- $scope.$on('$destroy', function() { +- // disable unknown option so that we don't do work when the whole select is being destroyed +- self.renderUnknownOption = noop; +- }); +- }], +- +- link: function(scope, element, attr, ctrls) { +- // if ngModel is not defined, we don't need to do anything +- if (!ctrls[1]) return; +- +- var selectCtrl = ctrls[0], +- ngModelCtrl = ctrls[1], +- multiple = attr.multiple, +- optionsExp = attr.ngOptions, +- nullOption = false, // if false, user will not be able to select it (used by ngOptions) +- emptyOption, +- renderScheduled = false, +- // we can't just jqLite('<option>') since jqLite is not smart enough +- // to create it in <select> and IE barfs otherwise. +- optionTemplate = jqLite(document.createElement('option')), +- optGroupTemplate =jqLite(document.createElement('optgroup')), +- unknownOption = optionTemplate.clone(); +- +- // find "null" option +- for (var i = 0, children = element.children(), ii = children.length; i < ii; i++) { +- if (children[i].value === '') { +- emptyOption = nullOption = children.eq(i); +- break; +- } +- } +- +- selectCtrl.init(ngModelCtrl, nullOption, unknownOption); +- +- // required validator +- if (multiple) { +- ngModelCtrl.$isEmpty = function(value) { +- return !value || value.length === 0; +- }; +- } +- +- if (optionsExp) setupAsOptions(scope, element, ngModelCtrl); +- else if (multiple) setupAsMultiple(scope, element, ngModelCtrl); +- else setupAsSingle(scope, element, ngModelCtrl, selectCtrl); +- +- +- //////////////////////////// +- +- +- +- function setupAsSingle(scope, selectElement, ngModelCtrl, selectCtrl) { +- ngModelCtrl.$render = function() { +- var viewValue = ngModelCtrl.$viewValue; +- +- if (selectCtrl.hasOption(viewValue)) { +- if (unknownOption.parent()) unknownOption.remove(); +- selectElement.val(viewValue); +- if (viewValue === '') emptyOption.prop('selected', true); // to make IE9 happy +- } else { +- if (isUndefined(viewValue) && emptyOption) { +- selectElement.val(''); +- } else { +- selectCtrl.renderUnknownOption(viewValue); +- } +- } +- }; +- +- selectElement.on('change', function() { +- scope.$apply(function() { +- if (unknownOption.parent()) unknownOption.remove(); +- ngModelCtrl.$setViewValue(selectElement.val()); +- }); +- }); +- } +- +- function setupAsMultiple(scope, selectElement, ctrl) { +- var lastView; +- ctrl.$render = function() { +- var items = new HashMap(ctrl.$viewValue); +- forEach(selectElement.find('option'), function(option) { +- option.selected = isDefined(items.get(option.value)); +- }); +- }; +- +- // we have to do it on each watch since ngModel watches reference, but +- // we need to work of an array, so we need to see if anything was inserted/removed +- scope.$watch(function selectMultipleWatch() { +- if (!equals(lastView, ctrl.$viewValue)) { +- lastView = shallowCopy(ctrl.$viewValue); +- ctrl.$render(); +- } +- }); +- +- selectElement.on('change', function() { +- scope.$apply(function() { +- var array = []; +- forEach(selectElement.find('option'), function(option) { +- if (option.selected) { +- array.push(option.value); +- } +- }); +- ctrl.$setViewValue(array); +- }); +- }); +- } +- +- function setupAsOptions(scope, selectElement, ctrl) { +- var match; +- +- if (!(match = optionsExp.match(NG_OPTIONS_REGEXP))) { +- throw ngOptionsMinErr('iexp', +- "Expected expression in form of " + +- "'_select_ (as _label_)? for (_key_,)?_value_ in _collection_'" + +- " but got '{0}'. Element: {1}", +- optionsExp, startingTag(selectElement)); +- } +- +- var displayFn = $parse(match[2] || match[1]), +- valueName = match[4] || match[6], +- selectAs = / as /.test(match[0]) && match[1], +- selectAsFn = selectAs ? $parse(selectAs) : null, +- keyName = match[5], +- groupByFn = $parse(match[3] || ''), +- valueFn = $parse(match[2] ? match[1] : valueName), +- valuesFn = $parse(match[7]), +- track = match[8], +- trackFn = track ? $parse(match[8]) : null, +- trackKeysCache = {}, +- // This is an array of array of existing option groups in DOM. +- // We try to reuse these if possible +- // - optionGroupsCache[0] is the options with no option group +- // - optionGroupsCache[?][0] is the parent: either the SELECT or OPTGROUP element +- optionGroupsCache = [[{element: selectElement, label:''}]], +- //re-usable object to represent option's locals +- locals = {}; +- +- if (nullOption) { +- // compile the element since there might be bindings in it +- $compile(nullOption)(scope); +- +- // remove the class, which is added automatically because we recompile the element and it +- // becomes the compilation root +- nullOption.removeClass('ng-scope'); +- +- // we need to remove it before calling selectElement.empty() because otherwise IE will +- // remove the label from the element. wtf? +- nullOption.remove(); +- } +- +- // clear contents, we'll add what's needed based on the model +- selectElement.empty(); +- +- selectElement.on('change', selectionChanged); +- +- ctrl.$render = render; +- +- scope.$watchCollection(valuesFn, scheduleRendering); +- scope.$watchCollection(getLabels, scheduleRendering); +- +- if (multiple) { +- scope.$watchCollection(function() { return ctrl.$modelValue; }, scheduleRendering); +- } +- +- // ------------------------------------------------------------------ // +- +- function callExpression(exprFn, key, value) { +- locals[valueName] = value; +- if (keyName) locals[keyName] = key; +- return exprFn(scope, locals); +- } +- +- function selectionChanged() { +- scope.$apply(function() { +- var collection = valuesFn(scope) || []; +- var viewValue; +- if (multiple) { +- viewValue = []; +- forEach(selectElement.val(), function(selectedKey) { +- selectedKey = trackFn ? trackKeysCache[selectedKey] : selectedKey; +- viewValue.push(getViewValue(selectedKey, collection[selectedKey])); +- }); +- } else { +- var selectedKey = trackFn ? trackKeysCache[selectElement.val()] : selectElement.val(); +- viewValue = getViewValue(selectedKey, collection[selectedKey]); +- } +- ctrl.$setViewValue(viewValue); +- render(); +- }); +- } +- +- function getViewValue(key, value) { +- if (key === '?') { +- return undefined; +- } else if (key === '') { +- return null; +- } else { +- var viewValueFn = selectAsFn ? selectAsFn : valueFn; +- return callExpression(viewValueFn, key, value); +- } +- } +- +- function getLabels() { +- var values = valuesFn(scope); +- var toDisplay; +- if (values && isArray(values)) { +- toDisplay = new Array(values.length); +- for (var i = 0, ii = values.length; i < ii; i++) { +- toDisplay[i] = callExpression(displayFn, i, values[i]); +- } +- return toDisplay; +- } else if (values) { +- // TODO: Add a test for this case +- toDisplay = {}; +- for (var prop in values) { +- if (values.hasOwnProperty(prop)) { +- toDisplay[prop] = callExpression(displayFn, prop, values[prop]); +- } +- } +- } +- return toDisplay; +- } +- +- function createIsSelectedFn(viewValue) { +- var selectedSet; +- if (multiple) { +- if (trackFn && isArray(viewValue)) { +- +- selectedSet = new HashMap([]); +- for (var trackIndex = 0; trackIndex < viewValue.length; trackIndex++) { +- // tracking by key +- selectedSet.put(callExpression(trackFn, null, viewValue[trackIndex]), true); +- } +- } else { +- selectedSet = new HashMap(viewValue); +- } +- } else if (trackFn) { +- viewValue = callExpression(trackFn, null, viewValue); +- } +- +- return function isSelected(key, value) { +- var compareValueFn; +- if (trackFn) { +- compareValueFn = trackFn; +- } else if (selectAsFn) { +- compareValueFn = selectAsFn; +- } else { +- compareValueFn = valueFn; +- } +- +- if (multiple) { +- return isDefined(selectedSet.remove(callExpression(compareValueFn, key, value))); +- } else { +- return viewValue === callExpression(compareValueFn, key, value); +- } +- }; +- } +- +- function scheduleRendering() { +- if (!renderScheduled) { +- scope.$$postDigest(render); +- renderScheduled = true; +- } +- } +- +- /** +- * A new labelMap is created with each render. +- * This function is called for each existing option with added=false, +- * and each new option with added=true. +- * - Labels that are passed to this method twice, +- * (once with added=true and once with added=false) will end up with a value of 0, and +- * will cause no change to happen to the corresponding option. +- * - Labels that are passed to this method only once with added=false will end up with a +- * value of -1 and will eventually be passed to selectCtrl.removeOption() +- * - Labels that are passed to this method only once with added=true will end up with a +- * value of 1 and will eventually be passed to selectCtrl.addOption() +- */ +- function updateLabelMap(labelMap, label, added) { +- labelMap[label] = labelMap[label] || 0; +- labelMap[label] += (added ? 1 : -1); +- } +- +- function render() { +- renderScheduled = false; +- +- // Temporary location for the option groups before we render them +- var optionGroups = {'':[]}, +- optionGroupNames = [''], +- optionGroupName, +- optionGroup, +- option, +- existingParent, existingOptions, existingOption, +- viewValue = ctrl.$viewValue, +- values = valuesFn(scope) || [], +- keys = keyName ? sortedKeys(values) : values, +- key, +- value, +- groupLength, length, +- groupIndex, index, +- labelMap = {}, +- selected, +- isSelected = createIsSelectedFn(viewValue), +- anySelected = false, +- lastElement, +- element, +- label, +- optionId; +- +- trackKeysCache = {}; +- +- // We now build up the list of options we need (we merge later) +- for (index = 0; length = keys.length, index < length; index++) { +- key = index; +- if (keyName) { +- key = keys[index]; +- if (key.charAt(0) === '$') continue; +- } +- value = values[key]; +- +- optionGroupName = callExpression(groupByFn, key, value) || ''; +- if (!(optionGroup = optionGroups[optionGroupName])) { +- optionGroup = optionGroups[optionGroupName] = []; +- optionGroupNames.push(optionGroupName); +- } +- +- selected = isSelected(key, value); +- anySelected = anySelected || selected; +- +- label = callExpression(displayFn, key, value); // what will be seen by the user +- +- // doing displayFn(scope, locals) || '' overwrites zero values +- label = isDefined(label) ? label : ''; +- optionId = trackFn ? trackFn(scope, locals) : (keyName ? keys[index] : index); +- if (trackFn) { +- trackKeysCache[optionId] = key; +- } +- +- optionGroup.push({ +- // either the index into array or key from object +- id: optionId, +- label: label, +- selected: selected // determine if we should be selected +- }); +- } +- if (!multiple) { +- if (nullOption || viewValue === null) { +- // insert null option if we have a placeholder, or the model is null +- optionGroups[''].unshift({id:'', label:'', selected:!anySelected}); +- } else if (!anySelected) { +- // option could not be found, we have to insert the undefined item +- optionGroups[''].unshift({id:'?', label:'', selected:true}); +- } +- } +- +- // Now we need to update the list of DOM nodes to match the optionGroups we computed above +- for (groupIndex = 0, groupLength = optionGroupNames.length; +- groupIndex < groupLength; +- groupIndex++) { +- // current option group name or '' if no group +- optionGroupName = optionGroupNames[groupIndex]; +- +- // list of options for that group. (first item has the parent) +- optionGroup = optionGroups[optionGroupName]; +- +- if (optionGroupsCache.length <= groupIndex) { +- // we need to grow the optionGroups +- existingParent = { +- element: optGroupTemplate.clone().attr('label', optionGroupName), +- label: optionGroup.label +- }; +- existingOptions = [existingParent]; +- optionGroupsCache.push(existingOptions); +- selectElement.append(existingParent.element); +- } else { +- existingOptions = optionGroupsCache[groupIndex]; +- existingParent = existingOptions[0]; // either SELECT (no group) or OPTGROUP element +- +- // update the OPTGROUP label if not the same. +- if (existingParent.label != optionGroupName) { +- existingParent.element.attr('label', existingParent.label = optionGroupName); +- } +- } +- +- lastElement = null; // start at the beginning +- for (index = 0, length = optionGroup.length; index < length; index++) { +- option = optionGroup[index]; +- if ((existingOption = existingOptions[index + 1])) { +- // reuse elements +- lastElement = existingOption.element; +- if (existingOption.label !== option.label) { +- updateLabelMap(labelMap, existingOption.label, false); +- updateLabelMap(labelMap, option.label, true); +- lastElement.text(existingOption.label = option.label); +- lastElement.prop('label', existingOption.label); +- } +- if (existingOption.id !== option.id) { +- lastElement.val(existingOption.id = option.id); +- } +- // lastElement.prop('selected') provided by jQuery has side-effects +- if (lastElement[0].selected !== option.selected) { +- lastElement.prop('selected', (existingOption.selected = option.selected)); +- if (msie) { +- // See #7692 +- // The selected item wouldn't visually update on IE without this. +- // Tested on Win7: IE9, IE10 and IE11. Future IEs should be tested as well +- lastElement.prop('selected', existingOption.selected); +- } +- } +- } else { +- // grow elements +- +- // if it's a null option +- if (option.id === '' && nullOption) { +- // put back the pre-compiled element +- element = nullOption; +- } else { +- // jQuery(v1.4.2) Bug: We should be able to chain the method calls, but +- // in this version of jQuery on some browser the .text() returns a string +- // rather then the element. +- (element = optionTemplate.clone()) +- .val(option.id) +- .prop('selected', option.selected) +- .attr('selected', option.selected) +- .prop('label', option.label) +- .text(option.label); +- } +- +- existingOptions.push(existingOption = { +- element: element, +- label: option.label, +- id: option.id, +- selected: option.selected +- }); +- updateLabelMap(labelMap, option.label, true); +- if (lastElement) { +- lastElement.after(element); +- } else { +- existingParent.element.append(element); +- } +- lastElement = element; +- } +- } +- // remove any excessive OPTIONs in a group +- index++; // increment since the existingOptions[0] is parent element not OPTION +- while (existingOptions.length > index) { +- option = existingOptions.pop(); +- updateLabelMap(labelMap, option.label, false); +- option.element.remove(); +- } +- } +- // remove any excessive OPTGROUPs from select +- while (optionGroupsCache.length > groupIndex) { +- // remove all the labels in the option group +- optionGroup = optionGroupsCache.pop(); +- for (index = 1; index < optionGroup.length; ++index) { +- updateLabelMap(labelMap, optionGroup[index].label, false); +- } +- optionGroup[0].element.remove(); +- } +- forEach(labelMap, function(count, label) { +- if (count > 0) { +- selectCtrl.addOption(label); +- } else if (count < 0) { +- selectCtrl.removeOption(label); +- } +- }); +- } +- } +- } +- }; +-}]; +- +-var optionDirective = ['$interpolate', function($interpolate) { +- var nullSelectCtrl = { +- addOption: noop, +- removeOption: noop +- }; +- +- return { +- restrict: 'E', +- priority: 100, +- compile: function(element, attr) { +- if (isUndefined(attr.value)) { +- var interpolateFn = $interpolate(element.text(), true); +- if (!interpolateFn) { +- attr.$set('value', element.text()); +- } +- } +- +- return function(scope, element, attr) { +- var selectCtrlName = '$selectController', +- parent = element.parent(), +- selectCtrl = parent.data(selectCtrlName) || +- parent.parent().data(selectCtrlName); // in case we are in optgroup +- +- if (!selectCtrl || !selectCtrl.databound) { +- selectCtrl = nullSelectCtrl; +- } +- +- if (interpolateFn) { +- scope.$watch(interpolateFn, function interpolateWatchAction(newVal, oldVal) { +- attr.$set('value', newVal); +- if (oldVal !== newVal) { +- selectCtrl.removeOption(oldVal); +- } +- selectCtrl.addOption(newVal, element); +- }); +- } else { +- selectCtrl.addOption(attr.value, element); +- } +- +- element.on('$destroy', function() { +- selectCtrl.removeOption(attr.value); +- }); +- }; +- } +- }; +-}]; +- +-var styleDirective = valueFn({ +- restrict: 'E', +- terminal: false +-}); +- +-var requiredDirective = function() { +- return { +- restrict: 'A', +- require: '?ngModel', +- link: function(scope, elm, attr, ctrl) { +- if (!ctrl) return; +- attr.required = true; // force truthy in case we are on non input element +- +- ctrl.$validators.required = function(modelValue, viewValue) { +- return !attr.required || !ctrl.$isEmpty(viewValue); +- }; +- +- attr.$observe('required', function() { +- ctrl.$validate(); +- }); +- } +- }; +-}; +- +- +-var patternDirective = function() { +- return { +- restrict: 'A', +- require: '?ngModel', +- link: function(scope, elm, attr, ctrl) { +- if (!ctrl) return; +- +- var regexp, patternExp = attr.ngPattern || attr.pattern; +- attr.$observe('pattern', function(regex) { +- if (isString(regex) && regex.length > 0) { +- regex = new RegExp('^' + regex + '$'); +- } +- +- if (regex && !regex.test) { +- throw minErr('ngPattern')('noregexp', +- 'Expected {0} to be a RegExp but was {1}. Element: {2}', patternExp, +- regex, startingTag(elm)); +- } +- +- regexp = regex || undefined; +- ctrl.$validate(); +- }); +- +- ctrl.$validators.pattern = function(value) { +- return ctrl.$isEmpty(value) || isUndefined(regexp) || regexp.test(value); +- }; +- } +- }; +-}; +- +- +-var maxlengthDirective = function() { +- return { +- restrict: 'A', +- require: '?ngModel', +- link: function(scope, elm, attr, ctrl) { +- if (!ctrl) return; +- +- var maxlength = -1; +- attr.$observe('maxlength', function(value) { +- var intVal = int(value); +- maxlength = isNaN(intVal) ? -1 : intVal; +- ctrl.$validate(); +- }); +- ctrl.$validators.maxlength = function(modelValue, viewValue) { +- return (maxlength < 0) || ctrl.$isEmpty(viewValue) || (viewValue.length <= maxlength); +- }; +- } +- }; +-}; +- +-var minlengthDirective = function() { +- return { +- restrict: 'A', +- require: '?ngModel', +- link: function(scope, elm, attr, ctrl) { +- if (!ctrl) return; +- +- var minlength = 0; +- attr.$observe('minlength', function(value) { +- minlength = int(value) || 0; +- ctrl.$validate(); +- }); +- ctrl.$validators.minlength = function(modelValue, viewValue) { +- return ctrl.$isEmpty(viewValue) || viewValue.length >= minlength; +- }; +- } +- }; +-}; +- +- if (window.angular.bootstrap) { +- //AngularJS is already loaded, so we can return here... +- console.log('WARNING: Tried to load angular more than once.'); +- return; +- } +- +- //try to bind to jquery now so that one can write jqLite(document).ready() +- //but we will rebind on bootstrap again. +- bindJQuery(); +- +- publishExternalAPI(angular); +- +- jqLite(document).ready(function() { +- angularInit(document, bootstrap); +- }); +- +-})(window, document); +- +-!window.angular.$$csp() && window.angular.element(document).find('head').prepend('<style type="text/css">@charset "UTF-8";[ng\\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\\:form{display:block;}</style>'); +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/bootstrap.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/bootstrap.js +deleted file mode 100755 +index 1c88b71e8..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/bootstrap.js ++++ /dev/null +@@ -1,2317 +0,0 @@ +-/*! +- * Bootstrap v3.3.4 (http://getbootstrap.com) +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- */ +- +-if (typeof jQuery === 'undefined') { +- throw new Error('Bootstrap\'s JavaScript requires jQuery') +-} +- +-+function ($) { +- 'use strict'; +- var version = $.fn.jquery.split(' ')[0].split('.') +- if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) { +- throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher') +- } +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: transition.js v3.3.4 +- * http://getbootstrap.com/javascript/#transitions +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) +- // ============================================================ +- +- function transitionEnd() { +- var el = document.createElement('bootstrap') +- +- var transEndEventNames = { +- WebkitTransition : 'webkitTransitionEnd', +- MozTransition : 'transitionend', +- OTransition : 'oTransitionEnd otransitionend', +- transition : 'transitionend' +- } +- +- for (var name in transEndEventNames) { +- if (el.style[name] !== undefined) { +- return { end: transEndEventNames[name] } +- } +- } +- +- return false // explicit for ie8 ( ._.) +- } +- +- // http://blog.alexmaccaw.com/css-transitions +- $.fn.emulateTransitionEnd = function (duration) { +- var called = false +- var $el = this +- $(this).one('bsTransitionEnd', function () { called = true }) +- var callback = function () { if (!called) $($el).trigger($.support.transition.end) } +- setTimeout(callback, duration) +- return this +- } +- +- $(function () { +- $.support.transition = transitionEnd() +- +- if (!$.support.transition) return +- +- $.event.special.bsTransitionEnd = { +- bindType: $.support.transition.end, +- delegateType: $.support.transition.end, +- handle: function (e) { +- if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) +- } +- } +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: alert.js v3.3.4 +- * http://getbootstrap.com/javascript/#alerts +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // ALERT CLASS DEFINITION +- // ====================== +- +- var dismiss = '[data-dismiss="alert"]' +- var Alert = function (el) { +- $(el).on('click', dismiss, this.close) +- } +- +- Alert.VERSION = '3.3.4' +- +- Alert.TRANSITION_DURATION = 150 +- +- Alert.prototype.close = function (e) { +- var $this = $(this) +- var selector = $this.attr('data-target') +- +- if (!selector) { +- selector = $this.attr('href') +- selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 +- } +- +- var $parent = $(selector) +- +- if (e) e.preventDefault() +- +- if (!$parent.length) { +- $parent = $this.closest('.alert') +- } +- +- $parent.trigger(e = $.Event('close.bs.alert')) +- +- if (e.isDefaultPrevented()) return +- +- $parent.removeClass('in') +- +- function removeElement() { +- // detach from parent, fire event then clean up data +- $parent.detach().trigger('closed.bs.alert').remove() +- } +- +- $.support.transition && $parent.hasClass('fade') ? +- $parent +- .one('bsTransitionEnd', removeElement) +- .emulateTransitionEnd(Alert.TRANSITION_DURATION) : +- removeElement() +- } +- +- +- // ALERT PLUGIN DEFINITION +- // ======================= +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.alert') +- +- if (!data) $this.data('bs.alert', (data = new Alert(this))) +- if (typeof option == 'string') data[option].call($this) +- }) +- } +- +- var old = $.fn.alert +- +- $.fn.alert = Plugin +- $.fn.alert.Constructor = Alert +- +- +- // ALERT NO CONFLICT +- // ================= +- +- $.fn.alert.noConflict = function () { +- $.fn.alert = old +- return this +- } +- +- +- // ALERT DATA-API +- // ============== +- +- $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: button.js v3.3.4 +- * http://getbootstrap.com/javascript/#buttons +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // BUTTON PUBLIC CLASS DEFINITION +- // ============================== +- +- var Button = function (element, options) { +- this.$element = $(element) +- this.options = $.extend({}, Button.DEFAULTS, options) +- this.isLoading = false +- } +- +- Button.VERSION = '3.3.4' +- +- Button.DEFAULTS = { +- loadingText: 'loading...' +- } +- +- Button.prototype.setState = function (state) { +- var d = 'disabled' +- var $el = this.$element +- var val = $el.is('input') ? 'val' : 'html' +- var data = $el.data() +- +- state = state + 'Text' +- +- if (data.resetText == null) $el.data('resetText', $el[val]()) +- +- // push to event loop to allow forms to submit +- setTimeout($.proxy(function () { +- $el[val](data[state] == null ? this.options[state] : data[state]) +- +- if (state == 'loadingText') { +- this.isLoading = true +- $el.addClass(d).attr(d, d) +- } else if (this.isLoading) { +- this.isLoading = false +- $el.removeClass(d).removeAttr(d) +- } +- }, this), 0) +- } +- +- Button.prototype.toggle = function () { +- var changed = true +- var $parent = this.$element.closest('[data-toggle="buttons"]') +- +- if ($parent.length) { +- var $input = this.$element.find('input') +- if ($input.prop('type') == 'radio') { +- if ($input.prop('checked') && this.$element.hasClass('active')) changed = false +- else $parent.find('.active').removeClass('active') +- } +- if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') +- } else { +- this.$element.attr('aria-pressed', !this.$element.hasClass('active')) +- } +- +- if (changed) this.$element.toggleClass('active') +- } +- +- +- // BUTTON PLUGIN DEFINITION +- // ======================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.button') +- var options = typeof option == 'object' && option +- +- if (!data) $this.data('bs.button', (data = new Button(this, options))) +- +- if (option == 'toggle') data.toggle() +- else if (option) data.setState(option) +- }) +- } +- +- var old = $.fn.button +- +- $.fn.button = Plugin +- $.fn.button.Constructor = Button +- +- +- // BUTTON NO CONFLICT +- // ================== +- +- $.fn.button.noConflict = function () { +- $.fn.button = old +- return this +- } +- +- +- // BUTTON DATA-API +- // =============== +- +- $(document) +- .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { +- var $btn = $(e.target) +- if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') +- Plugin.call($btn, 'toggle') +- e.preventDefault() +- }) +- .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { +- $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: carousel.js v3.3.4 +- * http://getbootstrap.com/javascript/#carousel +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // CAROUSEL CLASS DEFINITION +- // ========================= +- +- var Carousel = function (element, options) { +- this.$element = $(element) +- this.$indicators = this.$element.find('.carousel-indicators') +- this.options = options +- this.paused = null +- this.sliding = null +- this.interval = null +- this.$active = null +- this.$items = null +- +- this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) +- +- this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element +- .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) +- .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) +- } +- +- Carousel.VERSION = '3.3.4' +- +- Carousel.TRANSITION_DURATION = 600 +- +- Carousel.DEFAULTS = { +- interval: 5000, +- pause: 'hover', +- wrap: true, +- keyboard: true +- } +- +- Carousel.prototype.keydown = function (e) { +- if (/input|textarea/i.test(e.target.tagName)) return +- switch (e.which) { +- case 37: this.prev(); break +- case 39: this.next(); break +- default: return +- } +- +- e.preventDefault() +- } +- +- Carousel.prototype.cycle = function (e) { +- e || (this.paused = false) +- +- this.interval && clearInterval(this.interval) +- +- this.options.interval +- && !this.paused +- && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) +- +- return this +- } +- +- Carousel.prototype.getItemIndex = function (item) { +- this.$items = item.parent().children('.item') +- return this.$items.index(item || this.$active) +- } +- +- Carousel.prototype.getItemForDirection = function (direction, active) { +- var activeIndex = this.getItemIndex(active) +- var willWrap = (direction == 'prev' && activeIndex === 0) +- || (direction == 'next' && activeIndex == (this.$items.length - 1)) +- if (willWrap && !this.options.wrap) return active +- var delta = direction == 'prev' ? -1 : 1 +- var itemIndex = (activeIndex + delta) % this.$items.length +- return this.$items.eq(itemIndex) +- } +- +- Carousel.prototype.to = function (pos) { +- var that = this +- var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) +- +- if (pos > (this.$items.length - 1) || pos < 0) return +- +- if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" +- if (activeIndex == pos) return this.pause().cycle() +- +- return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) +- } +- +- Carousel.prototype.pause = function (e) { +- e || (this.paused = true) +- +- if (this.$element.find('.next, .prev').length && $.support.transition) { +- this.$element.trigger($.support.transition.end) +- this.cycle(true) +- } +- +- this.interval = clearInterval(this.interval) +- +- return this +- } +- +- Carousel.prototype.next = function () { +- if (this.sliding) return +- return this.slide('next') +- } +- +- Carousel.prototype.prev = function () { +- if (this.sliding) return +- return this.slide('prev') +- } +- +- Carousel.prototype.slide = function (type, next) { +- var $active = this.$element.find('.item.active') +- var $next = next || this.getItemForDirection(type, $active) +- var isCycling = this.interval +- var direction = type == 'next' ? 'left' : 'right' +- var that = this +- +- if ($next.hasClass('active')) return (this.sliding = false) +- +- var relatedTarget = $next[0] +- var slideEvent = $.Event('slide.bs.carousel', { +- relatedTarget: relatedTarget, +- direction: direction +- }) +- this.$element.trigger(slideEvent) +- if (slideEvent.isDefaultPrevented()) return +- +- this.sliding = true +- +- isCycling && this.pause() +- +- if (this.$indicators.length) { +- this.$indicators.find('.active').removeClass('active') +- var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) +- $nextIndicator && $nextIndicator.addClass('active') +- } +- +- var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" +- if ($.support.transition && this.$element.hasClass('slide')) { +- $next.addClass(type) +- $next[0].offsetWidth // force reflow +- $active.addClass(direction) +- $next.addClass(direction) +- $active +- .one('bsTransitionEnd', function () { +- $next.removeClass([type, direction].join(' ')).addClass('active') +- $active.removeClass(['active', direction].join(' ')) +- that.sliding = false +- setTimeout(function () { +- that.$element.trigger(slidEvent) +- }, 0) +- }) +- .emulateTransitionEnd(Carousel.TRANSITION_DURATION) +- } else { +- $active.removeClass('active') +- $next.addClass('active') +- this.sliding = false +- this.$element.trigger(slidEvent) +- } +- +- isCycling && this.cycle() +- +- return this +- } +- +- +- // CAROUSEL PLUGIN DEFINITION +- // ========================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.carousel') +- var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) +- var action = typeof option == 'string' ? option : options.slide +- +- if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) +- if (typeof option == 'number') data.to(option) +- else if (action) data[action]() +- else if (options.interval) data.pause().cycle() +- }) +- } +- +- var old = $.fn.carousel +- +- $.fn.carousel = Plugin +- $.fn.carousel.Constructor = Carousel +- +- +- // CAROUSEL NO CONFLICT +- // ==================== +- +- $.fn.carousel.noConflict = function () { +- $.fn.carousel = old +- return this +- } +- +- +- // CAROUSEL DATA-API +- // ================= +- +- var clickHandler = function (e) { +- var href +- var $this = $(this) +- var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 +- if (!$target.hasClass('carousel')) return +- var options = $.extend({}, $target.data(), $this.data()) +- var slideIndex = $this.attr('data-slide-to') +- if (slideIndex) options.interval = false +- +- Plugin.call($target, options) +- +- if (slideIndex) { +- $target.data('bs.carousel').to(slideIndex) +- } +- +- e.preventDefault() +- } +- +- $(document) +- .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) +- .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) +- +- $(window).on('load', function () { +- $('[data-ride="carousel"]').each(function () { +- var $carousel = $(this) +- Plugin.call($carousel, $carousel.data()) +- }) +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: collapse.js v3.3.4 +- * http://getbootstrap.com/javascript/#collapse +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // COLLAPSE PUBLIC CLASS DEFINITION +- // ================================ +- +- var Collapse = function (element, options) { +- this.$element = $(element) +- this.options = $.extend({}, Collapse.DEFAULTS, options) +- this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + +- '[data-toggle="collapse"][data-target="#' + element.id + '"]') +- this.transitioning = null +- +- if (this.options.parent) { +- this.$parent = this.getParent() +- } else { +- this.addAriaAndCollapsedClass(this.$element, this.$trigger) +- } +- +- if (this.options.toggle) this.toggle() +- } +- +- Collapse.VERSION = '3.3.4' +- +- Collapse.TRANSITION_DURATION = 350 +- +- Collapse.DEFAULTS = { +- toggle: true +- } +- +- Collapse.prototype.dimension = function () { +- var hasWidth = this.$element.hasClass('width') +- return hasWidth ? 'width' : 'height' +- } +- +- Collapse.prototype.show = function () { +- if (this.transitioning || this.$element.hasClass('in')) return +- +- var activesData +- var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing') +- +- if (actives && actives.length) { +- activesData = actives.data('bs.collapse') +- if (activesData && activesData.transitioning) return +- } +- +- var startEvent = $.Event('show.bs.collapse') +- this.$element.trigger(startEvent) +- if (startEvent.isDefaultPrevented()) return +- +- if (actives && actives.length) { +- Plugin.call(actives, 'hide') +- activesData || actives.data('bs.collapse', null) +- } +- +- var dimension = this.dimension() +- +- this.$element +- .removeClass('collapse') +- .addClass('collapsing')[dimension](0) +- .attr('aria-expanded', true) +- +- this.$trigger +- .removeClass('collapsed') +- .attr('aria-expanded', true) +- +- this.transitioning = 1 +- +- var complete = function () { +- this.$element +- .removeClass('collapsing') +- .addClass('collapse in')[dimension]('') +- this.transitioning = 0 +- this.$element +- .trigger('shown.bs.collapse') +- } +- +- if (!$.support.transition) return complete.call(this) +- +- var scrollSize = $.camelCase(['scroll', dimension].join('-')) +- +- this.$element +- .one('bsTransitionEnd', $.proxy(complete, this)) +- .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) +- } +- +- Collapse.prototype.hide = function () { +- if (this.transitioning || !this.$element.hasClass('in')) return +- +- var startEvent = $.Event('hide.bs.collapse') +- this.$element.trigger(startEvent) +- if (startEvent.isDefaultPrevented()) return +- +- var dimension = this.dimension() +- +- this.$element[dimension](this.$element[dimension]())[0].offsetHeight +- +- this.$element +- .addClass('collapsing') +- .removeClass('collapse in') +- .attr('aria-expanded', false) +- +- this.$trigger +- .addClass('collapsed') +- .attr('aria-expanded', false) +- +- this.transitioning = 1 +- +- var complete = function () { +- this.transitioning = 0 +- this.$element +- .removeClass('collapsing') +- .addClass('collapse') +- .trigger('hidden.bs.collapse') +- } +- +- if (!$.support.transition) return complete.call(this) +- +- this.$element +- [dimension](0) +- .one('bsTransitionEnd', $.proxy(complete, this)) +- .emulateTransitionEnd(Collapse.TRANSITION_DURATION) +- } +- +- Collapse.prototype.toggle = function () { +- this[this.$element.hasClass('in') ? 'hide' : 'show']() +- } +- +- Collapse.prototype.getParent = function () { +- return $(this.options.parent) +- .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') +- .each($.proxy(function (i, element) { +- var $element = $(element) +- this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) +- }, this)) +- .end() +- } +- +- Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { +- var isOpen = $element.hasClass('in') +- +- $element.attr('aria-expanded', isOpen) +- $trigger +- .toggleClass('collapsed', !isOpen) +- .attr('aria-expanded', isOpen) +- } +- +- function getTargetFromTrigger($trigger) { +- var href +- var target = $trigger.attr('data-target') +- || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 +- +- return $(target) +- } +- +- +- // COLLAPSE PLUGIN DEFINITION +- // ========================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.collapse') +- var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) +- +- if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false +- if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.collapse +- +- $.fn.collapse = Plugin +- $.fn.collapse.Constructor = Collapse +- +- +- // COLLAPSE NO CONFLICT +- // ==================== +- +- $.fn.collapse.noConflict = function () { +- $.fn.collapse = old +- return this +- } +- +- +- // COLLAPSE DATA-API +- // ================= +- +- $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { +- var $this = $(this) +- +- if (!$this.attr('data-target')) e.preventDefault() +- +- var $target = getTargetFromTrigger($this) +- var data = $target.data('bs.collapse') +- var option = data ? 'toggle' : $this.data() +- +- Plugin.call($target, option) +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: dropdown.js v3.3.4 +- * http://getbootstrap.com/javascript/#dropdowns +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // DROPDOWN CLASS DEFINITION +- // ========================= +- +- var backdrop = '.dropdown-backdrop' +- var toggle = '[data-toggle="dropdown"]' +- var Dropdown = function (element) { +- $(element).on('click.bs.dropdown', this.toggle) +- } +- +- Dropdown.VERSION = '3.3.4' +- +- Dropdown.prototype.toggle = function (e) { +- var $this = $(this) +- +- if ($this.is('.disabled, :disabled')) return +- +- var $parent = getParent($this) +- var isActive = $parent.hasClass('open') +- +- clearMenus() +- +- if (!isActive) { +- if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { +- // if mobile we use a backdrop because click events don't delegate +- $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) +- } +- +- var relatedTarget = { relatedTarget: this } +- $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) +- +- if (e.isDefaultPrevented()) return +- +- $this +- .trigger('focus') +- .attr('aria-expanded', 'true') +- +- $parent +- .toggleClass('open') +- .trigger('shown.bs.dropdown', relatedTarget) +- } +- +- return false +- } +- +- Dropdown.prototype.keydown = function (e) { +- if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return +- +- var $this = $(this) +- +- e.preventDefault() +- e.stopPropagation() +- +- if ($this.is('.disabled, :disabled')) return +- +- var $parent = getParent($this) +- var isActive = $parent.hasClass('open') +- +- if ((!isActive && e.which != 27) || (isActive && e.which == 27)) { +- if (e.which == 27) $parent.find(toggle).trigger('focus') +- return $this.trigger('click') +- } +- +- var desc = ' li:not(.disabled):visible a' +- var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc) +- +- if (!$items.length) return +- +- var index = $items.index(e.target) +- +- if (e.which == 38 && index > 0) index-- // up +- if (e.which == 40 && index < $items.length - 1) index++ // down +- if (!~index) index = 0 +- +- $items.eq(index).trigger('focus') +- } +- +- function clearMenus(e) { +- if (e && e.which === 3) return +- $(backdrop).remove() +- $(toggle).each(function () { +- var $this = $(this) +- var $parent = getParent($this) +- var relatedTarget = { relatedTarget: this } +- +- if (!$parent.hasClass('open')) return +- +- $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) +- +- if (e.isDefaultPrevented()) return +- +- $this.attr('aria-expanded', 'false') +- $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget) +- }) +- } +- +- function getParent($this) { +- var selector = $this.attr('data-target') +- +- if (!selector) { +- selector = $this.attr('href') +- selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 +- } +- +- var $parent = selector && $(selector) +- +- return $parent && $parent.length ? $parent : $this.parent() +- } +- +- +- // DROPDOWN PLUGIN DEFINITION +- // ========================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.dropdown') +- +- if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) +- if (typeof option == 'string') data[option].call($this) +- }) +- } +- +- var old = $.fn.dropdown +- +- $.fn.dropdown = Plugin +- $.fn.dropdown.Constructor = Dropdown +- +- +- // DROPDOWN NO CONFLICT +- // ==================== +- +- $.fn.dropdown.noConflict = function () { +- $.fn.dropdown = old +- return this +- } +- +- +- // APPLY TO STANDARD DROPDOWN ELEMENTS +- // =================================== +- +- $(document) +- .on('click.bs.dropdown.data-api', clearMenus) +- .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) +- .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) +- .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown) +- .on('keydown.bs.dropdown.data-api', '[role="menu"]', Dropdown.prototype.keydown) +- .on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: modal.js v3.3.4 +- * http://getbootstrap.com/javascript/#modals +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // MODAL CLASS DEFINITION +- // ====================== +- +- var Modal = function (element, options) { +- this.options = options +- this.$body = $(document.body) +- this.$element = $(element) +- this.$dialog = this.$element.find('.modal-dialog') +- this.$backdrop = null +- this.isShown = null +- this.originalBodyPad = null +- this.scrollbarWidth = 0 +- this.ignoreBackdropClick = false +- +- if (this.options.remote) { +- this.$element +- .find('.modal-content') +- .load(this.options.remote, $.proxy(function () { +- this.$element.trigger('loaded.bs.modal') +- }, this)) +- } +- } +- +- Modal.VERSION = '3.3.4' +- +- Modal.TRANSITION_DURATION = 300 +- Modal.BACKDROP_TRANSITION_DURATION = 150 +- +- Modal.DEFAULTS = { +- backdrop: true, +- keyboard: true, +- show: true +- } +- +- Modal.prototype.toggle = function (_relatedTarget) { +- return this.isShown ? this.hide() : this.show(_relatedTarget) +- } +- +- Modal.prototype.show = function (_relatedTarget) { +- var that = this +- var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) +- +- this.$element.trigger(e) +- +- if (this.isShown || e.isDefaultPrevented()) return +- +- this.isShown = true +- +- this.checkScrollbar() +- this.setScrollbar() +- this.$body.addClass('modal-open') +- +- this.escape() +- this.resize() +- +- this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) +- +- this.$dialog.on('mousedown.dismiss.bs.modal', function () { +- that.$element.one('mouseup.dismiss.bs.modal', function (e) { +- if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true +- }) +- }) +- +- this.backdrop(function () { +- var transition = $.support.transition && that.$element.hasClass('fade') +- +- if (!that.$element.parent().length) { +- that.$element.appendTo(that.$body) // don't move modals dom position +- } +- +- that.$element +- .show() +- .scrollTop(0) +- +- that.adjustDialog() +- +- if (transition) { +- that.$element[0].offsetWidth // force reflow +- } +- +- that.$element +- .addClass('in') +- .attr('aria-hidden', false) +- +- that.enforceFocus() +- +- var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) +- +- transition ? +- that.$dialog // wait for modal to slide in +- .one('bsTransitionEnd', function () { +- that.$element.trigger('focus').trigger(e) +- }) +- .emulateTransitionEnd(Modal.TRANSITION_DURATION) : +- that.$element.trigger('focus').trigger(e) +- }) +- } +- +- Modal.prototype.hide = function (e) { +- if (e) e.preventDefault() +- +- e = $.Event('hide.bs.modal') +- +- this.$element.trigger(e) +- +- if (!this.isShown || e.isDefaultPrevented()) return +- +- this.isShown = false +- +- this.escape() +- this.resize() +- +- $(document).off('focusin.bs.modal') +- +- this.$element +- .removeClass('in') +- .attr('aria-hidden', true) +- .off('click.dismiss.bs.modal') +- .off('mouseup.dismiss.bs.modal') +- +- this.$dialog.off('mousedown.dismiss.bs.modal') +- +- $.support.transition && this.$element.hasClass('fade') ? +- this.$element +- .one('bsTransitionEnd', $.proxy(this.hideModal, this)) +- .emulateTransitionEnd(Modal.TRANSITION_DURATION) : +- this.hideModal() +- } +- +- Modal.prototype.enforceFocus = function () { +- $(document) +- .off('focusin.bs.modal') // guard against infinite focus loop +- .on('focusin.bs.modal', $.proxy(function (e) { +- if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { +- this.$element.trigger('focus') +- } +- }, this)) +- } +- +- Modal.prototype.escape = function () { +- if (this.isShown && this.options.keyboard) { +- this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { +- e.which == 27 && this.hide() +- }, this)) +- } else if (!this.isShown) { +- this.$element.off('keydown.dismiss.bs.modal') +- } +- } +- +- Modal.prototype.resize = function () { +- if (this.isShown) { +- $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this)) +- } else { +- $(window).off('resize.bs.modal') +- } +- } +- +- Modal.prototype.hideModal = function () { +- var that = this +- this.$element.hide() +- this.backdrop(function () { +- that.$body.removeClass('modal-open') +- that.resetAdjustments() +- that.resetScrollbar() +- that.$element.trigger('hidden.bs.modal') +- }) +- } +- +- Modal.prototype.removeBackdrop = function () { +- this.$backdrop && this.$backdrop.remove() +- this.$backdrop = null +- } +- +- Modal.prototype.backdrop = function (callback) { +- var that = this +- var animate = this.$element.hasClass('fade') ? 'fade' : '' +- +- if (this.isShown && this.options.backdrop) { +- var doAnimate = $.support.transition && animate +- +- this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') +- .appendTo(this.$body) +- +- this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { +- if (this.ignoreBackdropClick) { +- this.ignoreBackdropClick = false +- return +- } +- if (e.target !== e.currentTarget) return +- this.options.backdrop == 'static' +- ? this.$element[0].focus() +- : this.hide() +- }, this)) +- +- if (doAnimate) this.$backdrop[0].offsetWidth // force reflow +- +- this.$backdrop.addClass('in') +- +- if (!callback) return +- +- doAnimate ? +- this.$backdrop +- .one('bsTransitionEnd', callback) +- .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : +- callback() +- +- } else if (!this.isShown && this.$backdrop) { +- this.$backdrop.removeClass('in') +- +- var callbackRemove = function () { +- that.removeBackdrop() +- callback && callback() +- } +- $.support.transition && this.$element.hasClass('fade') ? +- this.$backdrop +- .one('bsTransitionEnd', callbackRemove) +- .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : +- callbackRemove() +- +- } else if (callback) { +- callback() +- } +- } +- +- // these following methods are used to handle overflowing modals +- +- Modal.prototype.handleUpdate = function () { +- this.adjustDialog() +- } +- +- Modal.prototype.adjustDialog = function () { +- var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight +- +- this.$element.css({ +- paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', +- paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' +- }) +- } +- +- Modal.prototype.resetAdjustments = function () { +- this.$element.css({ +- paddingLeft: '', +- paddingRight: '' +- }) +- } +- +- Modal.prototype.checkScrollbar = function () { +- var fullWindowWidth = window.innerWidth +- if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8 +- var documentElementRect = document.documentElement.getBoundingClientRect() +- fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left) +- } +- this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth +- this.scrollbarWidth = this.measureScrollbar() +- } +- +- Modal.prototype.setScrollbar = function () { +- var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) +- this.originalBodyPad = document.body.style.paddingRight || '' +- if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) +- } +- +- Modal.prototype.resetScrollbar = function () { +- this.$body.css('padding-right', this.originalBodyPad) +- } +- +- Modal.prototype.measureScrollbar = function () { // thx walsh +- var scrollDiv = document.createElement('div') +- scrollDiv.className = 'modal-scrollbar-measure' +- this.$body.append(scrollDiv) +- var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth +- this.$body[0].removeChild(scrollDiv) +- return scrollbarWidth +- } +- +- +- // MODAL PLUGIN DEFINITION +- // ======================= +- +- function Plugin(option, _relatedTarget) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.modal') +- var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) +- +- if (!data) $this.data('bs.modal', (data = new Modal(this, options))) +- if (typeof option == 'string') data[option](_relatedTarget) +- else if (options.show) data.show(_relatedTarget) +- }) +- } +- +- var old = $.fn.modal +- +- $.fn.modal = Plugin +- $.fn.modal.Constructor = Modal +- +- +- // MODAL NO CONFLICT +- // ================= +- +- $.fn.modal.noConflict = function () { +- $.fn.modal = old +- return this +- } +- +- +- // MODAL DATA-API +- // ============== +- +- $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { +- var $this = $(this) +- var href = $this.attr('href') +- var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 +- var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) +- +- if ($this.is('a')) e.preventDefault() +- +- $target.one('show.bs.modal', function (showEvent) { +- if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown +- $target.one('hidden.bs.modal', function () { +- $this.is(':visible') && $this.trigger('focus') +- }) +- }) +- Plugin.call($target, option, this) +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: tooltip.js v3.3.4 +- * http://getbootstrap.com/javascript/#tooltip +- * Inspired by the original jQuery.tipsy by Jason Frame +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // TOOLTIP PUBLIC CLASS DEFINITION +- // =============================== +- +- var Tooltip = function (element, options) { +- this.type = null +- this.options = null +- this.enabled = null +- this.timeout = null +- this.hoverState = null +- this.$element = null +- +- this.init('tooltip', element, options) +- } +- +- Tooltip.VERSION = '3.3.4' +- +- Tooltip.TRANSITION_DURATION = 150 +- +- Tooltip.DEFAULTS = { +- animation: true, +- placement: 'top', +- selector: false, +- template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', +- trigger: 'hover focus', +- title: '', +- delay: 0, +- html: false, +- container: false, +- viewport: { +- selector: 'body', +- padding: 0 +- } +- } +- +- Tooltip.prototype.init = function (type, element, options) { +- this.enabled = true +- this.type = type +- this.$element = $(element) +- this.options = this.getOptions(options) +- this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport) +- +- if (this.$element[0] instanceof document.constructor && !this.options.selector) { +- throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') +- } +- +- var triggers = this.options.trigger.split(' ') +- +- for (var i = triggers.length; i--;) { +- var trigger = triggers[i] +- +- if (trigger == 'click') { +- this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) +- } else if (trigger != 'manual') { +- var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' +- var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' +- +- this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) +- this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) +- } +- } +- +- this.options.selector ? +- (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : +- this.fixTitle() +- } +- +- Tooltip.prototype.getDefaults = function () { +- return Tooltip.DEFAULTS +- } +- +- Tooltip.prototype.getOptions = function (options) { +- options = $.extend({}, this.getDefaults(), this.$element.data(), options) +- +- if (options.delay && typeof options.delay == 'number') { +- options.delay = { +- show: options.delay, +- hide: options.delay +- } +- } +- +- return options +- } +- +- Tooltip.prototype.getDelegateOptions = function () { +- var options = {} +- var defaults = this.getDefaults() +- +- this._options && $.each(this._options, function (key, value) { +- if (defaults[key] != value) options[key] = value +- }) +- +- return options +- } +- +- Tooltip.prototype.enter = function (obj) { +- var self = obj instanceof this.constructor ? +- obj : $(obj.currentTarget).data('bs.' + this.type) +- +- if (self && self.$tip && self.$tip.is(':visible')) { +- self.hoverState = 'in' +- return +- } +- +- if (!self) { +- self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) +- $(obj.currentTarget).data('bs.' + this.type, self) +- } +- +- clearTimeout(self.timeout) +- +- self.hoverState = 'in' +- +- if (!self.options.delay || !self.options.delay.show) return self.show() +- +- self.timeout = setTimeout(function () { +- if (self.hoverState == 'in') self.show() +- }, self.options.delay.show) +- } +- +- Tooltip.prototype.leave = function (obj) { +- var self = obj instanceof this.constructor ? +- obj : $(obj.currentTarget).data('bs.' + this.type) +- +- if (!self) { +- self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) +- $(obj.currentTarget).data('bs.' + this.type, self) +- } +- +- clearTimeout(self.timeout) +- +- self.hoverState = 'out' +- +- if (!self.options.delay || !self.options.delay.hide) return self.hide() +- +- self.timeout = setTimeout(function () { +- if (self.hoverState == 'out') self.hide() +- }, self.options.delay.hide) +- } +- +- Tooltip.prototype.show = function () { +- var e = $.Event('show.bs.' + this.type) +- +- if (this.hasContent() && this.enabled) { +- this.$element.trigger(e) +- +- var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) +- if (e.isDefaultPrevented() || !inDom) return +- var that = this +- +- var $tip = this.tip() +- +- var tipId = this.getUID(this.type) +- +- this.setContent() +- $tip.attr('id', tipId) +- this.$element.attr('aria-describedby', tipId) +- +- if (this.options.animation) $tip.addClass('fade') +- +- var placement = typeof this.options.placement == 'function' ? +- this.options.placement.call(this, $tip[0], this.$element[0]) : +- this.options.placement +- +- var autoToken = /\s?auto?\s?/i +- var autoPlace = autoToken.test(placement) +- if (autoPlace) placement = placement.replace(autoToken, '') || 'top' +- +- $tip +- .detach() +- .css({ top: 0, left: 0, display: 'block' }) +- .addClass(placement) +- .data('bs.' + this.type, this) +- +- this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) +- +- var pos = this.getPosition() +- var actualWidth = $tip[0].offsetWidth +- var actualHeight = $tip[0].offsetHeight +- +- if (autoPlace) { +- var orgPlacement = placement +- var $container = this.options.container ? $(this.options.container) : this.$element.parent() +- var containerDim = this.getPosition($container) +- +- placement = placement == 'bottom' && pos.bottom + actualHeight > containerDim.bottom ? 'top' : +- placement == 'top' && pos.top - actualHeight < containerDim.top ? 'bottom' : +- placement == 'right' && pos.right + actualWidth > containerDim.width ? 'left' : +- placement == 'left' && pos.left - actualWidth < containerDim.left ? 'right' : +- placement +- +- $tip +- .removeClass(orgPlacement) +- .addClass(placement) +- } +- +- var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) +- +- this.applyPlacement(calculatedOffset, placement) +- +- var complete = function () { +- var prevHoverState = that.hoverState +- that.$element.trigger('shown.bs.' + that.type) +- that.hoverState = null +- +- if (prevHoverState == 'out') that.leave(that) +- } +- +- $.support.transition && this.$tip.hasClass('fade') ? +- $tip +- .one('bsTransitionEnd', complete) +- .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : +- complete() +- } +- } +- +- Tooltip.prototype.applyPlacement = function (offset, placement) { +- var $tip = this.tip() +- var width = $tip[0].offsetWidth +- var height = $tip[0].offsetHeight +- +- // manually read margins because getBoundingClientRect includes difference +- var marginTop = parseInt($tip.css('margin-top'), 10) +- var marginLeft = parseInt($tip.css('margin-left'), 10) +- +- // we must check for NaN for ie 8/9 +- if (isNaN(marginTop)) marginTop = 0 +- if (isNaN(marginLeft)) marginLeft = 0 +- +- offset.top = offset.top + marginTop +- offset.left = offset.left + marginLeft +- +- // $.fn.offset doesn't round pixel values +- // so we use setOffset directly with our own function B-0 +- $.offset.setOffset($tip[0], $.extend({ +- using: function (props) { +- $tip.css({ +- top: Math.round(props.top), +- left: Math.round(props.left) +- }) +- } +- }, offset), 0) +- +- $tip.addClass('in') +- +- // check to see if placing tip in new offset caused the tip to resize itself +- var actualWidth = $tip[0].offsetWidth +- var actualHeight = $tip[0].offsetHeight +- +- if (placement == 'top' && actualHeight != height) { +- offset.top = offset.top + height - actualHeight +- } +- +- var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) +- +- if (delta.left) offset.left += delta.left +- else offset.top += delta.top +- +- var isVertical = /top|bottom/.test(placement) +- var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight +- var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' +- +- $tip.offset(offset) +- this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) +- } +- +- Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { +- this.arrow() +- .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') +- .css(isVertical ? 'top' : 'left', '') +- } +- +- Tooltip.prototype.setContent = function () { +- var $tip = this.tip() +- var title = this.getTitle() +- +- $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) +- $tip.removeClass('fade in top bottom left right') +- } +- +- Tooltip.prototype.hide = function (callback) { +- var that = this +- var $tip = $(this.$tip) +- var e = $.Event('hide.bs.' + this.type) +- +- function complete() { +- if (that.hoverState != 'in') $tip.detach() +- that.$element +- .removeAttr('aria-describedby') +- .trigger('hidden.bs.' + that.type) +- callback && callback() +- } +- +- this.$element.trigger(e) +- +- if (e.isDefaultPrevented()) return +- +- $tip.removeClass('in') +- +- $.support.transition && $tip.hasClass('fade') ? +- $tip +- .one('bsTransitionEnd', complete) +- .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : +- complete() +- +- this.hoverState = null +- +- return this +- } +- +- Tooltip.prototype.fixTitle = function () { +- var $e = this.$element +- if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') { +- $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') +- } +- } +- +- Tooltip.prototype.hasContent = function () { +- return this.getTitle() +- } +- +- Tooltip.prototype.getPosition = function ($element) { +- $element = $element || this.$element +- +- var el = $element[0] +- var isBody = el.tagName == 'BODY' +- +- var elRect = el.getBoundingClientRect() +- if (elRect.width == null) { +- // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 +- elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) +- } +- var elOffset = isBody ? { top: 0, left: 0 } : $element.offset() +- var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } +- var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null +- +- return $.extend({}, elRect, scroll, outerDims, elOffset) +- } +- +- Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { +- return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : +- placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : +- placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : +- /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } +- +- } +- +- Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { +- var delta = { top: 0, left: 0 } +- if (!this.$viewport) return delta +- +- var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 +- var viewportDimensions = this.getPosition(this.$viewport) +- +- if (/right|left/.test(placement)) { +- var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll +- var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight +- if (topEdgeOffset < viewportDimensions.top) { // top overflow +- delta.top = viewportDimensions.top - topEdgeOffset +- } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow +- delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset +- } +- } else { +- var leftEdgeOffset = pos.left - viewportPadding +- var rightEdgeOffset = pos.left + viewportPadding + actualWidth +- if (leftEdgeOffset < viewportDimensions.left) { // left overflow +- delta.left = viewportDimensions.left - leftEdgeOffset +- } else if (rightEdgeOffset > viewportDimensions.width) { // right overflow +- delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset +- } +- } +- +- return delta +- } +- +- Tooltip.prototype.getTitle = function () { +- var title +- var $e = this.$element +- var o = this.options +- +- title = $e.attr('data-original-title') +- || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) +- +- return title +- } +- +- Tooltip.prototype.getUID = function (prefix) { +- do prefix += ~~(Math.random() * 1000000) +- while (document.getElementById(prefix)) +- return prefix +- } +- +- Tooltip.prototype.tip = function () { +- return (this.$tip = this.$tip || $(this.options.template)) +- } +- +- Tooltip.prototype.arrow = function () { +- return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) +- } +- +- Tooltip.prototype.enable = function () { +- this.enabled = true +- } +- +- Tooltip.prototype.disable = function () { +- this.enabled = false +- } +- +- Tooltip.prototype.toggleEnabled = function () { +- this.enabled = !this.enabled +- } +- +- Tooltip.prototype.toggle = function (e) { +- var self = this +- if (e) { +- self = $(e.currentTarget).data('bs.' + this.type) +- if (!self) { +- self = new this.constructor(e.currentTarget, this.getDelegateOptions()) +- $(e.currentTarget).data('bs.' + this.type, self) +- } +- } +- +- self.tip().hasClass('in') ? self.leave(self) : self.enter(self) +- } +- +- Tooltip.prototype.destroy = function () { +- var that = this +- clearTimeout(this.timeout) +- this.hide(function () { +- that.$element.off('.' + that.type).removeData('bs.' + that.type) +- }) +- } +- +- +- // TOOLTIP PLUGIN DEFINITION +- // ========================= +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.tooltip') +- var options = typeof option == 'object' && option +- +- if (!data && /destroy|hide/.test(option)) return +- if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.tooltip +- +- $.fn.tooltip = Plugin +- $.fn.tooltip.Constructor = Tooltip +- +- +- // TOOLTIP NO CONFLICT +- // =================== +- +- $.fn.tooltip.noConflict = function () { +- $.fn.tooltip = old +- return this +- } +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: popover.js v3.3.4 +- * http://getbootstrap.com/javascript/#popovers +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // POPOVER PUBLIC CLASS DEFINITION +- // =============================== +- +- var Popover = function (element, options) { +- this.init('popover', element, options) +- } +- +- if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') +- +- Popover.VERSION = '3.3.4' +- +- Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { +- placement: 'right', +- trigger: 'click', +- content: '', +- template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' +- }) +- +- +- // NOTE: POPOVER EXTENDS tooltip.js +- // ================================ +- +- Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) +- +- Popover.prototype.constructor = Popover +- +- Popover.prototype.getDefaults = function () { +- return Popover.DEFAULTS +- } +- +- Popover.prototype.setContent = function () { +- var $tip = this.tip() +- var title = this.getTitle() +- var content = this.getContent() +- +- $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) +- $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events +- this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' +- ](content) +- +- $tip.removeClass('fade top bottom left right in') +- +- // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do +- // this manually by checking the contents. +- if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() +- } +- +- Popover.prototype.hasContent = function () { +- return this.getTitle() || this.getContent() +- } +- +- Popover.prototype.getContent = function () { +- var $e = this.$element +- var o = this.options +- +- return $e.attr('data-content') +- || (typeof o.content == 'function' ? +- o.content.call($e[0]) : +- o.content) +- } +- +- Popover.prototype.arrow = function () { +- return (this.$arrow = this.$arrow || this.tip().find('.arrow')) +- } +- +- +- // POPOVER PLUGIN DEFINITION +- // ========================= +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.popover') +- var options = typeof option == 'object' && option +- +- if (!data && /destroy|hide/.test(option)) return +- if (!data) $this.data('bs.popover', (data = new Popover(this, options))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.popover +- +- $.fn.popover = Plugin +- $.fn.popover.Constructor = Popover +- +- +- // POPOVER NO CONFLICT +- // =================== +- +- $.fn.popover.noConflict = function () { +- $.fn.popover = old +- return this +- } +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: scrollspy.js v3.3.4 +- * http://getbootstrap.com/javascript/#scrollspy +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // SCROLLSPY CLASS DEFINITION +- // ========================== +- +- function ScrollSpy(element, options) { +- this.$body = $(document.body) +- this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) +- this.options = $.extend({}, ScrollSpy.DEFAULTS, options) +- this.selector = (this.options.target || '') + ' .nav li > a' +- this.offsets = [] +- this.targets = [] +- this.activeTarget = null +- this.scrollHeight = 0 +- +- this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) +- this.refresh() +- this.process() +- } +- +- ScrollSpy.VERSION = '3.3.4' +- +- ScrollSpy.DEFAULTS = { +- offset: 10 +- } +- +- ScrollSpy.prototype.getScrollHeight = function () { +- return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) +- } +- +- ScrollSpy.prototype.refresh = function () { +- var that = this +- var offsetMethod = 'offset' +- var offsetBase = 0 +- +- this.offsets = [] +- this.targets = [] +- this.scrollHeight = this.getScrollHeight() +- +- if (!$.isWindow(this.$scrollElement[0])) { +- offsetMethod = 'position' +- offsetBase = this.$scrollElement.scrollTop() +- } +- +- this.$body +- .find(this.selector) +- .map(function () { +- var $el = $(this) +- var href = $el.data('target') || $el.attr('href') +- var $href = /^#./.test(href) && $(href) +- +- return ($href +- && $href.length +- && $href.is(':visible') +- && [[$href[offsetMethod]().top + offsetBase, href]]) || null +- }) +- .sort(function (a, b) { return a[0] - b[0] }) +- .each(function () { +- that.offsets.push(this[0]) +- that.targets.push(this[1]) +- }) +- } +- +- ScrollSpy.prototype.process = function () { +- var scrollTop = this.$scrollElement.scrollTop() + this.options.offset +- var scrollHeight = this.getScrollHeight() +- var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() +- var offsets = this.offsets +- var targets = this.targets +- var activeTarget = this.activeTarget +- var i +- +- if (this.scrollHeight != scrollHeight) { +- this.refresh() +- } +- +- if (scrollTop >= maxScroll) { +- return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) +- } +- +- if (activeTarget && scrollTop < offsets[0]) { +- this.activeTarget = null +- return this.clear() +- } +- +- for (i = offsets.length; i--;) { +- activeTarget != targets[i] +- && scrollTop >= offsets[i] +- && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) +- && this.activate(targets[i]) +- } +- } +- +- ScrollSpy.prototype.activate = function (target) { +- this.activeTarget = target +- +- this.clear() +- +- var selector = this.selector + +- '[data-target="' + target + '"],' + +- this.selector + '[href="' + target + '"]' +- +- var active = $(selector) +- .parents('li') +- .addClass('active') +- +- if (active.parent('.dropdown-menu').length) { +- active = active +- .closest('li.dropdown') +- .addClass('active') +- } +- +- active.trigger('activate.bs.scrollspy') +- } +- +- ScrollSpy.prototype.clear = function () { +- $(this.selector) +- .parentsUntil(this.options.target, '.active') +- .removeClass('active') +- } +- +- +- // SCROLLSPY PLUGIN DEFINITION +- // =========================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.scrollspy') +- var options = typeof option == 'object' && option +- +- if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.scrollspy +- +- $.fn.scrollspy = Plugin +- $.fn.scrollspy.Constructor = ScrollSpy +- +- +- // SCROLLSPY NO CONFLICT +- // ===================== +- +- $.fn.scrollspy.noConflict = function () { +- $.fn.scrollspy = old +- return this +- } +- +- +- // SCROLLSPY DATA-API +- // ================== +- +- $(window).on('load.bs.scrollspy.data-api', function () { +- $('[data-spy="scroll"]').each(function () { +- var $spy = $(this) +- Plugin.call($spy, $spy.data()) +- }) +- }) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: tab.js v3.3.4 +- * http://getbootstrap.com/javascript/#tabs +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // TAB CLASS DEFINITION +- // ==================== +- +- var Tab = function (element) { +- this.element = $(element) +- } +- +- Tab.VERSION = '3.3.4' +- +- Tab.TRANSITION_DURATION = 150 +- +- Tab.prototype.show = function () { +- var $this = this.element +- var $ul = $this.closest('ul:not(.dropdown-menu)') +- var selector = $this.data('target') +- +- if (!selector) { +- selector = $this.attr('href') +- selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 +- } +- +- if ($this.parent('li').hasClass('active')) return +- +- var $previous = $ul.find('.active:last a') +- var hideEvent = $.Event('hide.bs.tab', { +- relatedTarget: $this[0] +- }) +- var showEvent = $.Event('show.bs.tab', { +- relatedTarget: $previous[0] +- }) +- +- $previous.trigger(hideEvent) +- $this.trigger(showEvent) +- +- if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return +- +- var $target = $(selector) +- +- this.activate($this.closest('li'), $ul) +- this.activate($target, $target.parent(), function () { +- $previous.trigger({ +- type: 'hidden.bs.tab', +- relatedTarget: $this[0] +- }) +- $this.trigger({ +- type: 'shown.bs.tab', +- relatedTarget: $previous[0] +- }) +- }) +- } +- +- Tab.prototype.activate = function (element, container, callback) { +- var $active = container.find('> .active') +- var transition = callback +- && $.support.transition +- && (($active.length && $active.hasClass('fade')) || !!container.find('> .fade').length) +- +- function next() { +- $active +- .removeClass('active') +- .find('> .dropdown-menu > .active') +- .removeClass('active') +- .end() +- .find('[data-toggle="tab"]') +- .attr('aria-expanded', false) +- +- element +- .addClass('active') +- .find('[data-toggle="tab"]') +- .attr('aria-expanded', true) +- +- if (transition) { +- element[0].offsetWidth // reflow for transition +- element.addClass('in') +- } else { +- element.removeClass('fade') +- } +- +- if (element.parent('.dropdown-menu').length) { +- element +- .closest('li.dropdown') +- .addClass('active') +- .end() +- .find('[data-toggle="tab"]') +- .attr('aria-expanded', true) +- } +- +- callback && callback() +- } +- +- $active.length && transition ? +- $active +- .one('bsTransitionEnd', next) +- .emulateTransitionEnd(Tab.TRANSITION_DURATION) : +- next() +- +- $active.removeClass('in') +- } +- +- +- // TAB PLUGIN DEFINITION +- // ===================== +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.tab') +- +- if (!data) $this.data('bs.tab', (data = new Tab(this))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.tab +- +- $.fn.tab = Plugin +- $.fn.tab.Constructor = Tab +- +- +- // TAB NO CONFLICT +- // =============== +- +- $.fn.tab.noConflict = function () { +- $.fn.tab = old +- return this +- } +- +- +- // TAB DATA-API +- // ============ +- +- var clickHandler = function (e) { +- e.preventDefault() +- Plugin.call($(this), 'show') +- } +- +- $(document) +- .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler) +- .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler) +- +-}(jQuery); +- +-/* ======================================================================== +- * Bootstrap: affix.js v3.3.4 +- * http://getbootstrap.com/javascript/#affix +- * ======================================================================== +- * Copyright 2011-2015 Twitter, Inc. +- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) +- * ======================================================================== */ +- +- +-+function ($) { +- 'use strict'; +- +- // AFFIX CLASS DEFINITION +- // ====================== +- +- var Affix = function (element, options) { +- this.options = $.extend({}, Affix.DEFAULTS, options) +- +- this.$target = $(this.options.target) +- .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) +- .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) +- +- this.$element = $(element) +- this.affixed = null +- this.unpin = null +- this.pinnedOffset = null +- +- this.checkPosition() +- } +- +- Affix.VERSION = '3.3.4' +- +- Affix.RESET = 'affix affix-top affix-bottom' +- +- Affix.DEFAULTS = { +- offset: 0, +- target: window +- } +- +- Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { +- var scrollTop = this.$target.scrollTop() +- var position = this.$element.offset() +- var targetHeight = this.$target.height() +- +- if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false +- +- if (this.affixed == 'bottom') { +- if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' +- return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' +- } +- +- var initializing = this.affixed == null +- var colliderTop = initializing ? scrollTop : position.top +- var colliderHeight = initializing ? targetHeight : height +- +- if (offsetTop != null && scrollTop <= offsetTop) return 'top' +- if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' +- +- return false +- } +- +- Affix.prototype.getPinnedOffset = function () { +- if (this.pinnedOffset) return this.pinnedOffset +- this.$element.removeClass(Affix.RESET).addClass('affix') +- var scrollTop = this.$target.scrollTop() +- var position = this.$element.offset() +- return (this.pinnedOffset = position.top - scrollTop) +- } +- +- Affix.prototype.checkPositionWithEventLoop = function () { +- setTimeout($.proxy(this.checkPosition, this), 1) +- } +- +- Affix.prototype.checkPosition = function () { +- if (!this.$element.is(':visible')) return +- +- var height = this.$element.height() +- var offset = this.options.offset +- var offsetTop = offset.top +- var offsetBottom = offset.bottom +- var scrollHeight = $(document.body).height() +- +- if (typeof offset != 'object') offsetBottom = offsetTop = offset +- if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) +- if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) +- +- var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) +- +- if (this.affixed != affix) { +- if (this.unpin != null) this.$element.css('top', '') +- +- var affixType = 'affix' + (affix ? '-' + affix : '') +- var e = $.Event(affixType + '.bs.affix') +- +- this.$element.trigger(e) +- +- if (e.isDefaultPrevented()) return +- +- this.affixed = affix +- this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null +- +- this.$element +- .removeClass(Affix.RESET) +- .addClass(affixType) +- .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') +- } +- +- if (affix == 'bottom') { +- this.$element.offset({ +- top: scrollHeight - height - offsetBottom +- }) +- } +- } +- +- +- // AFFIX PLUGIN DEFINITION +- // ======================= +- +- function Plugin(option) { +- return this.each(function () { +- var $this = $(this) +- var data = $this.data('bs.affix') +- var options = typeof option == 'object' && option +- +- if (!data) $this.data('bs.affix', (data = new Affix(this, options))) +- if (typeof option == 'string') data[option]() +- }) +- } +- +- var old = $.fn.affix +- +- $.fn.affix = Plugin +- $.fn.affix.Constructor = Affix +- +- +- // AFFIX NO CONFLICT +- // ================= +- +- $.fn.affix.noConflict = function () { +- $.fn.affix = old +- return this +- } +- +- +- // AFFIX DATA-API +- // ============== +- +- $(window).on('load', function () { +- $('[data-spy="affix"]').each(function () { +- var $spy = $(this) +- var data = $spy.data() +- +- data.offset = data.offset || {} +- +- if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom +- if (data.offsetTop != null) data.offset.top = data.offsetTop +- +- Plugin.call($spy, data) +- }) +- }) +- +-}(jQuery); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery-3.5.1.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery-3.5.1.js +deleted file mode 100644 +index 50937333b..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery-3.5.1.js ++++ /dev/null +@@ -1,10872 +0,0 @@ +-/*! +- * jQuery JavaScript Library v3.5.1 +- * https://jquery.com/ +- * +- * Includes Sizzle.js +- * https://sizzlejs.com/ +- * +- * Copyright JS Foundation and other contributors +- * Released under the MIT license +- * https://jquery.org/license +- * +- * Date: 2020-05-04T22:49Z +- */ +-( function( global, factory ) { +- +- "use strict"; +- +- if ( typeof module === "object" && typeof module.exports === "object" ) { +- +- // For CommonJS and CommonJS-like environments where a proper `window` +- // is present, execute the factory and get jQuery. +- // For environments that do not have a `window` with a `document` +- // (such as Node.js), expose a factory as module.exports. +- // This accentuates the need for the creation of a real `window`. +- // e.g. var jQuery = require("jquery")(window); +- // See ticket #14549 for more info. +- module.exports = global.document ? +- factory( global, true ) : +- function( w ) { +- if ( !w.document ) { +- throw new Error( "jQuery requires a window with a document" ); +- } +- return factory( w ); +- }; +- } else { +- factory( global ); +- } +- +-// Pass this if window is not defined yet +-} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { +- +-// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +-// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +-// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +-// enough that all such attempts are guarded in a try block. +-"use strict"; +- +-var arr = []; +- +-var getProto = Object.getPrototypeOf; +- +-var slice = arr.slice; +- +-var flat = arr.flat ? function( array ) { +- return arr.flat.call( array ); +-} : function( array ) { +- return arr.concat.apply( [], array ); +-}; +- +- +-var push = arr.push; +- +-var indexOf = arr.indexOf; +- +-var class2type = {}; +- +-var toString = class2type.toString; +- +-var hasOwn = class2type.hasOwnProperty; +- +-var fnToString = hasOwn.toString; +- +-var ObjectFunctionString = fnToString.call( Object ); +- +-var support = {}; +- +-var isFunction = function isFunction( obj ) { +- +- // Support: Chrome <=57, Firefox <=52 +- // In some browsers, typeof returns "function" for HTML <object> elements +- // (i.e., `typeof document.createElement( "object" ) === "function"`). +- // We don't want to classify *any* DOM node as a function. +- return typeof obj === "function" && typeof obj.nodeType !== "number"; +- }; +- +- +-var isWindow = function isWindow( obj ) { +- return obj != null && obj === obj.window; +- }; +- +- +-var document = window.document; +- +- +- +- var preservedScriptAttributes = { +- type: true, +- src: true, +- nonce: true, +- noModule: true +- }; +- +- function DOMEval( code, node, doc ) { +- doc = doc || document; +- +- var i, val, +- script = doc.createElement( "script" ); +- +- script.text = code; +- if ( node ) { +- for ( i in preservedScriptAttributes ) { +- +- // Support: Firefox 64+, Edge 18+ +- // Some browsers don't support the "nonce" property on scripts. +- // On the other hand, just using `getAttribute` is not enough as +- // the `nonce` attribute is reset to an empty string whenever it +- // becomes browsing-context connected. +- // See https://github.com/whatwg/html/issues/2369 +- // See https://html.spec.whatwg.org/#nonce-attributes +- // The `node.getAttribute` check was added for the sake of +- // `jQuery.globalEval` so that it can fake a nonce-containing node +- // via an object. +- val = node[ i ] || node.getAttribute && node.getAttribute( i ); +- if ( val ) { +- script.setAttribute( i, val ); +- } +- } +- } +- doc.head.appendChild( script ).parentNode.removeChild( script ); +- } +- +- +-function toType( obj ) { +- if ( obj == null ) { +- return obj + ""; +- } +- +- // Support: Android <=2.3 only (functionish RegExp) +- return typeof obj === "object" || typeof obj === "function" ? +- class2type[ toString.call( obj ) ] || "object" : +- typeof obj; +-} +-/* global Symbol */ +-// Defining this global in .eslintrc.json would create a danger of using the global +-// unguarded in another place, it seems safer to define global only for this module +- +- +- +-var +- version = "3.5.1", +- +- // Define a local copy of jQuery +- jQuery = function( selector, context ) { +- +- // The jQuery object is actually just the init constructor 'enhanced' +- // Need init if jQuery is called (just allow error to be thrown if not included) +- return new jQuery.fn.init( selector, context ); +- }; +- +-jQuery.fn = jQuery.prototype = { +- +- // The current version of jQuery being used +- jquery: version, +- +- constructor: jQuery, +- +- // The default length of a jQuery object is 0 +- length: 0, +- +- toArray: function() { +- return slice.call( this ); +- }, +- +- // Get the Nth element in the matched element set OR +- // Get the whole matched element set as a clean array +- get: function( num ) { +- +- // Return all the elements in a clean array +- if ( num == null ) { +- return slice.call( this ); +- } +- +- // Return just the one element from the set +- return num < 0 ? this[ num + this.length ] : this[ num ]; +- }, +- +- // Take an array of elements and push it onto the stack +- // (returning the new matched element set) +- pushStack: function( elems ) { +- +- // Build a new jQuery matched element set +- var ret = jQuery.merge( this.constructor(), elems ); +- +- // Add the old object onto the stack (as a reference) +- ret.prevObject = this; +- +- // Return the newly-formed element set +- return ret; +- }, +- +- // Execute a callback for every element in the matched set. +- each: function( callback ) { +- return jQuery.each( this, callback ); +- }, +- +- map: function( callback ) { +- return this.pushStack( jQuery.map( this, function( elem, i ) { +- return callback.call( elem, i, elem ); +- } ) ); +- }, +- +- slice: function() { +- return this.pushStack( slice.apply( this, arguments ) ); +- }, +- +- first: function() { +- return this.eq( 0 ); +- }, +- +- last: function() { +- return this.eq( -1 ); +- }, +- +- even: function() { +- return this.pushStack( jQuery.grep( this, function( _elem, i ) { +- return ( i + 1 ) % 2; +- } ) ); +- }, +- +- odd: function() { +- return this.pushStack( jQuery.grep( this, function( _elem, i ) { +- return i % 2; +- } ) ); +- }, +- +- eq: function( i ) { +- var len = this.length, +- j = +i + ( i < 0 ? len : 0 ); +- return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); +- }, +- +- end: function() { +- return this.prevObject || this.constructor(); +- }, +- +- // For internal use only. +- // Behaves like an Array's method, not like a jQuery method. +- push: push, +- sort: arr.sort, +- splice: arr.splice +-}; +- +-jQuery.extend = jQuery.fn.extend = function() { +- var options, name, src, copy, copyIsArray, clone, +- target = arguments[ 0 ] || {}, +- i = 1, +- length = arguments.length, +- deep = false; +- +- // Handle a deep copy situation +- if ( typeof target === "boolean" ) { +- deep = target; +- +- // Skip the boolean and the target +- target = arguments[ i ] || {}; +- i++; +- } +- +- // Handle case when target is a string or something (possible in deep copy) +- if ( typeof target !== "object" && !isFunction( target ) ) { +- target = {}; +- } +- +- // Extend jQuery itself if only one argument is passed +- if ( i === length ) { +- target = this; +- i--; +- } +- +- for ( ; i < length; i++ ) { +- +- // Only deal with non-null/undefined values +- if ( ( options = arguments[ i ] ) != null ) { +- +- // Extend the base object +- for ( name in options ) { +- copy = options[ name ]; +- +- // Prevent Object.prototype pollution +- // Prevent never-ending loop +- if ( name === "__proto__" || target === copy ) { +- continue; +- } +- +- // Recurse if we're merging plain objects or arrays +- if ( deep && copy && ( jQuery.isPlainObject( copy ) || +- ( copyIsArray = Array.isArray( copy ) ) ) ) { +- src = target[ name ]; +- +- // Ensure proper type for the source value +- if ( copyIsArray && !Array.isArray( src ) ) { +- clone = []; +- } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { +- clone = {}; +- } else { +- clone = src; +- } +- copyIsArray = false; +- +- // Never move original objects, clone them +- target[ name ] = jQuery.extend( deep, clone, copy ); +- +- // Don't bring in undefined values +- } else if ( copy !== undefined ) { +- target[ name ] = copy; +- } +- } +- } +- } +- +- // Return the modified object +- return target; +-}; +- +-jQuery.extend( { +- +- // Unique for each copy of jQuery on the page +- expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), +- +- // Assume jQuery is ready without the ready module +- isReady: true, +- +- error: function( msg ) { +- throw new Error( msg ); +- }, +- +- noop: function() {}, +- +- isPlainObject: function( obj ) { +- var proto, Ctor; +- +- // Detect obvious negatives +- // Use toString instead of jQuery.type to catch host objects +- if ( !obj || toString.call( obj ) !== "[object Object]" ) { +- return false; +- } +- +- proto = getProto( obj ); +- +- // Objects with no prototype (e.g., `Object.create( null )`) are plain +- if ( !proto ) { +- return true; +- } +- +- // Objects with prototype are plain iff they were constructed by a global Object function +- Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; +- return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; +- }, +- +- isEmptyObject: function( obj ) { +- var name; +- +- for ( name in obj ) { +- return false; +- } +- return true; +- }, +- +- // Evaluates a script in a provided context; falls back to the global one +- // if not specified. +- globalEval: function( code, options, doc ) { +- DOMEval( code, { nonce: options && options.nonce }, doc ); +- }, +- +- each: function( obj, callback ) { +- var length, i = 0; +- +- if ( isArrayLike( obj ) ) { +- length = obj.length; +- for ( ; i < length; i++ ) { +- if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { +- break; +- } +- } +- } else { +- for ( i in obj ) { +- if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { +- break; +- } +- } +- } +- +- return obj; +- }, +- +- // results is for internal usage only +- makeArray: function( arr, results ) { +- var ret = results || []; +- +- if ( arr != null ) { +- if ( isArrayLike( Object( arr ) ) ) { +- jQuery.merge( ret, +- typeof arr === "string" ? +- [ arr ] : arr +- ); +- } else { +- push.call( ret, arr ); +- } +- } +- +- return ret; +- }, +- +- inArray: function( elem, arr, i ) { +- return arr == null ? -1 : indexOf.call( arr, elem, i ); +- }, +- +- // Support: Android <=4.0 only, PhantomJS 1 only +- // push.apply(_, arraylike) throws on ancient WebKit +- merge: function( first, second ) { +- var len = +second.length, +- j = 0, +- i = first.length; +- +- for ( ; j < len; j++ ) { +- first[ i++ ] = second[ j ]; +- } +- +- first.length = i; +- +- return first; +- }, +- +- grep: function( elems, callback, invert ) { +- var callbackInverse, +- matches = [], +- i = 0, +- length = elems.length, +- callbackExpect = !invert; +- +- // Go through the array, only saving the items +- // that pass the validator function +- for ( ; i < length; i++ ) { +- callbackInverse = !callback( elems[ i ], i ); +- if ( callbackInverse !== callbackExpect ) { +- matches.push( elems[ i ] ); +- } +- } +- +- return matches; +- }, +- +- // arg is for internal usage only +- map: function( elems, callback, arg ) { +- var length, value, +- i = 0, +- ret = []; +- +- // Go through the array, translating each of the items to their new values +- if ( isArrayLike( elems ) ) { +- length = elems.length; +- for ( ; i < length; i++ ) { +- value = callback( elems[ i ], i, arg ); +- +- if ( value != null ) { +- ret.push( value ); +- } +- } +- +- // Go through every key on the object, +- } else { +- for ( i in elems ) { +- value = callback( elems[ i ], i, arg ); +- +- if ( value != null ) { +- ret.push( value ); +- } +- } +- } +- +- // Flatten any nested arrays +- return flat( ret ); +- }, +- +- // A global GUID counter for objects +- guid: 1, +- +- // jQuery.support is not used in Core but other projects attach their +- // properties to it so it needs to exist. +- support: support +-} ); +- +-if ( typeof Symbol === "function" ) { +- jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +-} +- +-// Populate the class2type map +-jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +-function( _i, name ) { +- class2type[ "[object " + name + "]" ] = name.toLowerCase(); +-} ); +- +-function isArrayLike( obj ) { +- +- // Support: real iOS 8.2 only (not reproducible in simulator) +- // `in` check used to prevent JIT error (gh-2145) +- // hasOwn isn't used here due to false negatives +- // regarding Nodelist length in IE +- var length = !!obj && "length" in obj && obj.length, +- type = toType( obj ); +- +- if ( isFunction( obj ) || isWindow( obj ) ) { +- return false; +- } +- +- return type === "array" || length === 0 || +- typeof length === "number" && length > 0 && ( length - 1 ) in obj; +-} +-var Sizzle = +-/*! +- * Sizzle CSS Selector Engine v2.3.5 +- * https://sizzlejs.com/ +- * +- * Copyright JS Foundation and other contributors +- * Released under the MIT license +- * https://js.foundation/ +- * +- * Date: 2020-03-14 +- */ +-( function( window ) { +-var i, +- support, +- Expr, +- getText, +- isXML, +- tokenize, +- compile, +- select, +- outermostContext, +- sortInput, +- hasDuplicate, +- +- // Local document vars +- setDocument, +- document, +- docElem, +- documentIsHTML, +- rbuggyQSA, +- rbuggyMatches, +- matches, +- contains, +- +- // Instance-specific data +- expando = "sizzle" + 1 * new Date(), +- preferredDoc = window.document, +- dirruns = 0, +- done = 0, +- classCache = createCache(), +- tokenCache = createCache(), +- compilerCache = createCache(), +- nonnativeSelectorCache = createCache(), +- sortOrder = function( a, b ) { +- if ( a === b ) { +- hasDuplicate = true; +- } +- return 0; +- }, +- +- // Instance methods +- hasOwn = ( {} ).hasOwnProperty, +- arr = [], +- pop = arr.pop, +- pushNative = arr.push, +- push = arr.push, +- slice = arr.slice, +- +- // Use a stripped-down indexOf as it's faster than native +- // https://jsperf.com/thor-indexof-vs-for/5 +- indexOf = function( list, elem ) { +- var i = 0, +- len = list.length; +- for ( ; i < len; i++ ) { +- if ( list[ i ] === elem ) { +- return i; +- } +- } +- return -1; +- }, +- +- booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + +- "ismap|loop|multiple|open|readonly|required|scoped", +- +- // Regular expressions +- +- // http://www.w3.org/TR/css3-selectors/#whitespace +- whitespace = "[\\x20\\t\\r\\n\\f]", +- +- // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram +- identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + +- "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", +- +- // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors +- attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + +- +- // Operator (capture 2) +- "*([*^$|!~]?=)" + whitespace + +- +- // "Attribute values must be CSS identifiers [capture 5] +- // or strings [capture 3 or capture 4]" +- "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + +- whitespace + "*\\]", +- +- pseudos = ":(" + identifier + ")(?:\\((" + +- +- // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: +- // 1. quoted (capture 3; capture 4 or capture 5) +- "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + +- +- // 2. simple (capture 6) +- "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + +- +- // 3. anything else (capture 2) +- ".*" + +- ")\\)|)", +- +- // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter +- rwhitespace = new RegExp( whitespace + "+", "g" ), +- rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + +- whitespace + "+$", "g" ), +- +- rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), +- rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + +- "*" ), +- rdescend = new RegExp( whitespace + "|>" ), +- +- rpseudo = new RegExp( pseudos ), +- ridentifier = new RegExp( "^" + identifier + "$" ), +- +- matchExpr = { +- "ID": new RegExp( "^#(" + identifier + ")" ), +- "CLASS": new RegExp( "^\\.(" + identifier + ")" ), +- "TAG": new RegExp( "^(" + identifier + "|[*])" ), +- "ATTR": new RegExp( "^" + attributes ), +- "PSEUDO": new RegExp( "^" + pseudos ), +- "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + +- whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + +- whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), +- "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), +- +- // For use in libraries implementing .is() +- // We use this for POS matching in `select` +- "needsContext": new RegExp( "^" + whitespace + +- "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + +- "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) +- }, +- +- rhtml = /HTML$/i, +- rinputs = /^(?:input|select|textarea|button)$/i, +- rheader = /^h\d$/i, +- +- rnative = /^[^{]+\{\s*\[native \w/, +- +- // Easily-parseable/retrievable ID or TAG or CLASS selectors +- rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, +- +- rsibling = /[+~]/, +- +- // CSS escapes +- // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters +- runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), +- funescape = function( escape, nonHex ) { +- var high = "0x" + escape.slice( 1 ) - 0x10000; +- +- return nonHex ? +- +- // Strip the backslash prefix from a non-hex escape sequence +- nonHex : +- +- // Replace a hexadecimal escape sequence with the encoded Unicode code point +- // Support: IE <=11+ +- // For values outside the Basic Multilingual Plane (BMP), manually construct a +- // surrogate pair +- high < 0 ? +- String.fromCharCode( high + 0x10000 ) : +- String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); +- }, +- +- // CSS string/identifier serialization +- // https://drafts.csswg.org/cssom/#common-serializing-idioms +- rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, +- fcssescape = function( ch, asCodePoint ) { +- if ( asCodePoint ) { +- +- // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER +- if ( ch === "\0" ) { +- return "\uFFFD"; +- } +- +- // Control characters and (dependent upon position) numbers get escaped as code points +- return ch.slice( 0, -1 ) + "\\" + +- ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; +- } +- +- // Other potentially-special ASCII characters get backslash-escaped +- return "\\" + ch; +- }, +- +- // Used for iframes +- // See setDocument() +- // Removing the function wrapper causes a "Permission Denied" +- // error in IE +- unloadHandler = function() { +- setDocument(); +- }, +- +- inDisabledFieldset = addCombinator( +- function( elem ) { +- return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; +- }, +- { dir: "parentNode", next: "legend" } +- ); +- +-// Optimize for push.apply( _, NodeList ) +-try { +- push.apply( +- ( arr = slice.call( preferredDoc.childNodes ) ), +- preferredDoc.childNodes +- ); +- +- // Support: Android<4.0 +- // Detect silently failing push.apply +- // eslint-disable-next-line no-unused-expressions +- arr[ preferredDoc.childNodes.length ].nodeType; +-} catch ( e ) { +- push = { apply: arr.length ? +- +- // Leverage slice if possible +- function( target, els ) { +- pushNative.apply( target, slice.call( els ) ); +- } : +- +- // Support: IE<9 +- // Otherwise append directly +- function( target, els ) { +- var j = target.length, +- i = 0; +- +- // Can't trust NodeList.length +- while ( ( target[ j++ ] = els[ i++ ] ) ) {} +- target.length = j - 1; +- } +- }; +-} +- +-function Sizzle( selector, context, results, seed ) { +- var m, i, elem, nid, match, groups, newSelector, +- newContext = context && context.ownerDocument, +- +- // nodeType defaults to 9, since context defaults to document +- nodeType = context ? context.nodeType : 9; +- +- results = results || []; +- +- // Return early from calls with invalid selector or context +- if ( typeof selector !== "string" || !selector || +- nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { +- +- return results; +- } +- +- // Try to shortcut find operations (as opposed to filters) in HTML documents +- if ( !seed ) { +- setDocument( context ); +- context = context || document; +- +- if ( documentIsHTML ) { +- +- // If the selector is sufficiently simple, try using a "get*By*" DOM method +- // (excepting DocumentFragment context, where the methods don't exist) +- if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { +- +- // ID selector +- if ( ( m = match[ 1 ] ) ) { +- +- // Document context +- if ( nodeType === 9 ) { +- if ( ( elem = context.getElementById( m ) ) ) { +- +- // Support: IE, Opera, Webkit +- // TODO: identify versions +- // getElementById can match elements by name instead of ID +- if ( elem.id === m ) { +- results.push( elem ); +- return results; +- } +- } else { +- return results; +- } +- +- // Element context +- } else { +- +- // Support: IE, Opera, Webkit +- // TODO: identify versions +- // getElementById can match elements by name instead of ID +- if ( newContext && ( elem = newContext.getElementById( m ) ) && +- contains( context, elem ) && +- elem.id === m ) { +- +- results.push( elem ); +- return results; +- } +- } +- +- // Type selector +- } else if ( match[ 2 ] ) { +- push.apply( results, context.getElementsByTagName( selector ) ); +- return results; +- +- // Class selector +- } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && +- context.getElementsByClassName ) { +- +- push.apply( results, context.getElementsByClassName( m ) ); +- return results; +- } +- } +- +- // Take advantage of querySelectorAll +- if ( support.qsa && +- !nonnativeSelectorCache[ selector + " " ] && +- ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && +- +- // Support: IE 8 only +- // Exclude object elements +- ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { +- +- newSelector = selector; +- newContext = context; +- +- // qSA considers elements outside a scoping root when evaluating child or +- // descendant combinators, which is not what we want. +- // In such cases, we work around the behavior by prefixing every selector in the +- // list with an ID selector referencing the scope context. +- // The technique has to be used as well when a leading combinator is used +- // as such selectors are not recognized by querySelectorAll. +- // Thanks to Andrew Dupont for this technique. +- if ( nodeType === 1 && +- ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { +- +- // Expand context for sibling selectors +- newContext = rsibling.test( selector ) && testContext( context.parentNode ) || +- context; +- +- // We can use :scope instead of the ID hack if the browser +- // supports it & if we're not changing the context. +- if ( newContext !== context || !support.scope ) { +- +- // Capture the context ID, setting it first if necessary +- if ( ( nid = context.getAttribute( "id" ) ) ) { +- nid = nid.replace( rcssescape, fcssescape ); +- } else { +- context.setAttribute( "id", ( nid = expando ) ); +- } +- } +- +- // Prefix every selector in the list +- groups = tokenize( selector ); +- i = groups.length; +- while ( i-- ) { +- groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + +- toSelector( groups[ i ] ); +- } +- newSelector = groups.join( "," ); +- } +- +- try { +- push.apply( results, +- newContext.querySelectorAll( newSelector ) +- ); +- return results; +- } catch ( qsaError ) { +- nonnativeSelectorCache( selector, true ); +- } finally { +- if ( nid === expando ) { +- context.removeAttribute( "id" ); +- } +- } +- } +- } +- } +- +- // All others +- return select( selector.replace( rtrim, "$1" ), context, results, seed ); +-} +- +-/** +- * Create key-value caches of limited size +- * @returns {function(string, object)} Returns the Object data after storing it on itself with +- * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) +- * deleting the oldest entry +- */ +-function createCache() { +- var keys = []; +- +- function cache( key, value ) { +- +- // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) +- if ( keys.push( key + " " ) > Expr.cacheLength ) { +- +- // Only keep the most recent entries +- delete cache[ keys.shift() ]; +- } +- return ( cache[ key + " " ] = value ); +- } +- return cache; +-} +- +-/** +- * Mark a function for special use by Sizzle +- * @param {Function} fn The function to mark +- */ +-function markFunction( fn ) { +- fn[ expando ] = true; +- return fn; +-} +- +-/** +- * Support testing using an element +- * @param {Function} fn Passed the created element and returns a boolean result +- */ +-function assert( fn ) { +- var el = document.createElement( "fieldset" ); +- +- try { +- return !!fn( el ); +- } catch ( e ) { +- return false; +- } finally { +- +- // Remove from its parent by default +- if ( el.parentNode ) { +- el.parentNode.removeChild( el ); +- } +- +- // release memory in IE +- el = null; +- } +-} +- +-/** +- * Adds the same handler for all of the specified attrs +- * @param {String} attrs Pipe-separated list of attributes +- * @param {Function} handler The method that will be applied +- */ +-function addHandle( attrs, handler ) { +- var arr = attrs.split( "|" ), +- i = arr.length; +- +- while ( i-- ) { +- Expr.attrHandle[ arr[ i ] ] = handler; +- } +-} +- +-/** +- * Checks document order of two siblings +- * @param {Element} a +- * @param {Element} b +- * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b +- */ +-function siblingCheck( a, b ) { +- var cur = b && a, +- diff = cur && a.nodeType === 1 && b.nodeType === 1 && +- a.sourceIndex - b.sourceIndex; +- +- // Use IE sourceIndex if available on both nodes +- if ( diff ) { +- return diff; +- } +- +- // Check if b follows a +- if ( cur ) { +- while ( ( cur = cur.nextSibling ) ) { +- if ( cur === b ) { +- return -1; +- } +- } +- } +- +- return a ? 1 : -1; +-} +- +-/** +- * Returns a function to use in pseudos for input types +- * @param {String} type +- */ +-function createInputPseudo( type ) { +- return function( elem ) { +- var name = elem.nodeName.toLowerCase(); +- return name === "input" && elem.type === type; +- }; +-} +- +-/** +- * Returns a function to use in pseudos for buttons +- * @param {String} type +- */ +-function createButtonPseudo( type ) { +- return function( elem ) { +- var name = elem.nodeName.toLowerCase(); +- return ( name === "input" || name === "button" ) && elem.type === type; +- }; +-} +- +-/** +- * Returns a function to use in pseudos for :enabled/:disabled +- * @param {Boolean} disabled true for :disabled; false for :enabled +- */ +-function createDisabledPseudo( disabled ) { +- +- // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable +- return function( elem ) { +- +- // Only certain elements can match :enabled or :disabled +- // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled +- // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled +- if ( "form" in elem ) { +- +- // Check for inherited disabledness on relevant non-disabled elements: +- // * listed form-associated elements in a disabled fieldset +- // https://html.spec.whatwg.org/multipage/forms.html#category-listed +- // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled +- // * option elements in a disabled optgroup +- // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled +- // All such elements have a "form" property. +- if ( elem.parentNode && elem.disabled === false ) { +- +- // Option elements defer to a parent optgroup if present +- if ( "label" in elem ) { +- if ( "label" in elem.parentNode ) { +- return elem.parentNode.disabled === disabled; +- } else { +- return elem.disabled === disabled; +- } +- } +- +- // Support: IE 6 - 11 +- // Use the isDisabled shortcut property to check for disabled fieldset ancestors +- return elem.isDisabled === disabled || +- +- // Where there is no isDisabled, check manually +- /* jshint -W018 */ +- elem.isDisabled !== !disabled && +- inDisabledFieldset( elem ) === disabled; +- } +- +- return elem.disabled === disabled; +- +- // Try to winnow out elements that can't be disabled before trusting the disabled property. +- // Some victims get caught in our net (label, legend, menu, track), but it shouldn't +- // even exist on them, let alone have a boolean value. +- } else if ( "label" in elem ) { +- return elem.disabled === disabled; +- } +- +- // Remaining elements are neither :enabled nor :disabled +- return false; +- }; +-} +- +-/** +- * Returns a function to use in pseudos for positionals +- * @param {Function} fn +- */ +-function createPositionalPseudo( fn ) { +- return markFunction( function( argument ) { +- argument = +argument; +- return markFunction( function( seed, matches ) { +- var j, +- matchIndexes = fn( [], seed.length, argument ), +- i = matchIndexes.length; +- +- // Match elements found at the specified indexes +- while ( i-- ) { +- if ( seed[ ( j = matchIndexes[ i ] ) ] ) { +- seed[ j ] = !( matches[ j ] = seed[ j ] ); +- } +- } +- } ); +- } ); +-} +- +-/** +- * Checks a node for validity as a Sizzle context +- * @param {Element|Object=} context +- * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value +- */ +-function testContext( context ) { +- return context && typeof context.getElementsByTagName !== "undefined" && context; +-} +- +-// Expose support vars for convenience +-support = Sizzle.support = {}; +- +-/** +- * Detects XML nodes +- * @param {Element|Object} elem An element or a document +- * @returns {Boolean} True iff elem is a non-HTML XML node +- */ +-isXML = Sizzle.isXML = function( elem ) { +- var namespace = elem.namespaceURI, +- docElem = ( elem.ownerDocument || elem ).documentElement; +- +- // Support: IE <=8 +- // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes +- // https://bugs.jquery.com/ticket/4833 +- return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +-}; +- +-/** +- * Sets document-related variables once based on the current document +- * @param {Element|Object} [doc] An element or document object to use to set the document +- * @returns {Object} Returns the current document +- */ +-setDocument = Sizzle.setDocument = function( node ) { +- var hasCompare, subWindow, +- doc = node ? node.ownerDocument || node : preferredDoc; +- +- // Return early if doc is invalid or already selected +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { +- return document; +- } +- +- // Update global variables +- document = doc; +- docElem = document.documentElement; +- documentIsHTML = !isXML( document ); +- +- // Support: IE 9 - 11+, Edge 12 - 18+ +- // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( preferredDoc != document && +- ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { +- +- // Support: IE 11, Edge +- if ( subWindow.addEventListener ) { +- subWindow.addEventListener( "unload", unloadHandler, false ); +- +- // Support: IE 9 - 10 only +- } else if ( subWindow.attachEvent ) { +- subWindow.attachEvent( "onunload", unloadHandler ); +- } +- } +- +- // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, +- // Safari 4 - 5 only, Opera <=11.6 - 12.x only +- // IE/Edge & older browsers don't support the :scope pseudo-class. +- // Support: Safari 6.0 only +- // Safari 6.0 supports :scope but it's an alias of :root there. +- support.scope = assert( function( el ) { +- docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); +- return typeof el.querySelectorAll !== "undefined" && +- !el.querySelectorAll( ":scope fieldset div" ).length; +- } ); +- +- /* Attributes +- ---------------------------------------------------------------------- */ +- +- // Support: IE<8 +- // Verify that getAttribute really returns attributes and not properties +- // (excepting IE8 booleans) +- support.attributes = assert( function( el ) { +- el.className = "i"; +- return !el.getAttribute( "className" ); +- } ); +- +- /* getElement(s)By* +- ---------------------------------------------------------------------- */ +- +- // Check if getElementsByTagName("*") returns only elements +- support.getElementsByTagName = assert( function( el ) { +- el.appendChild( document.createComment( "" ) ); +- return !el.getElementsByTagName( "*" ).length; +- } ); +- +- // Support: IE<9 +- support.getElementsByClassName = rnative.test( document.getElementsByClassName ); +- +- // Support: IE<10 +- // Check if getElementById returns elements by name +- // The broken getElementById methods don't pick up programmatically-set names, +- // so use a roundabout getElementsByName test +- support.getById = assert( function( el ) { +- docElem.appendChild( el ).id = expando; +- return !document.getElementsByName || !document.getElementsByName( expando ).length; +- } ); +- +- // ID filter and find +- if ( support.getById ) { +- Expr.filter[ "ID" ] = function( id ) { +- var attrId = id.replace( runescape, funescape ); +- return function( elem ) { +- return elem.getAttribute( "id" ) === attrId; +- }; +- }; +- Expr.find[ "ID" ] = function( id, context ) { +- if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { +- var elem = context.getElementById( id ); +- return elem ? [ elem ] : []; +- } +- }; +- } else { +- Expr.filter[ "ID" ] = function( id ) { +- var attrId = id.replace( runescape, funescape ); +- return function( elem ) { +- var node = typeof elem.getAttributeNode !== "undefined" && +- elem.getAttributeNode( "id" ); +- return node && node.value === attrId; +- }; +- }; +- +- // Support: IE 6 - 7 only +- // getElementById is not reliable as a find shortcut +- Expr.find[ "ID" ] = function( id, context ) { +- if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { +- var node, i, elems, +- elem = context.getElementById( id ); +- +- if ( elem ) { +- +- // Verify the id attribute +- node = elem.getAttributeNode( "id" ); +- if ( node && node.value === id ) { +- return [ elem ]; +- } +- +- // Fall back on getElementsByName +- elems = context.getElementsByName( id ); +- i = 0; +- while ( ( elem = elems[ i++ ] ) ) { +- node = elem.getAttributeNode( "id" ); +- if ( node && node.value === id ) { +- return [ elem ]; +- } +- } +- } +- +- return []; +- } +- }; +- } +- +- // Tag +- Expr.find[ "TAG" ] = support.getElementsByTagName ? +- function( tag, context ) { +- if ( typeof context.getElementsByTagName !== "undefined" ) { +- return context.getElementsByTagName( tag ); +- +- // DocumentFragment nodes don't have gEBTN +- } else if ( support.qsa ) { +- return context.querySelectorAll( tag ); +- } +- } : +- +- function( tag, context ) { +- var elem, +- tmp = [], +- i = 0, +- +- // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too +- results = context.getElementsByTagName( tag ); +- +- // Filter out possible comments +- if ( tag === "*" ) { +- while ( ( elem = results[ i++ ] ) ) { +- if ( elem.nodeType === 1 ) { +- tmp.push( elem ); +- } +- } +- +- return tmp; +- } +- return results; +- }; +- +- // Class +- Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { +- if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { +- return context.getElementsByClassName( className ); +- } +- }; +- +- /* QSA/matchesSelector +- ---------------------------------------------------------------------- */ +- +- // QSA and matchesSelector support +- +- // matchesSelector(:active) reports false when true (IE9/Opera 11.5) +- rbuggyMatches = []; +- +- // qSa(:focus) reports false when true (Chrome 21) +- // We allow this because of a bug in IE8/9 that throws an error +- // whenever `document.activeElement` is accessed on an iframe +- // So, we allow :focus to pass through QSA all the time to avoid the IE error +- // See https://bugs.jquery.com/ticket/13378 +- rbuggyQSA = []; +- +- if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { +- +- // Build QSA regex +- // Regex strategy adopted from Diego Perini +- assert( function( el ) { +- +- var input; +- +- // Select is set to empty string on purpose +- // This is to test IE's treatment of not explicitly +- // setting a boolean content attribute, +- // since its presence should be enough +- // https://bugs.jquery.com/ticket/12359 +- docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" + +- "<select id='" + expando + "-\r\\' msallowcapture=''>" + +- "<option selected=''></option></select>"; +- +- // Support: IE8, Opera 11-12.16 +- // Nothing should be selected when empty strings follow ^= or $= or *= +- // The test attribute must be unknown in Opera but "safe" for WinRT +- // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section +- if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { +- rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); +- } +- +- // Support: IE8 +- // Boolean attributes and "value" are not treated correctly +- if ( !el.querySelectorAll( "[selected]" ).length ) { +- rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); +- } +- +- // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ +- if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { +- rbuggyQSA.push( "~=" ); +- } +- +- // Support: IE 11+, Edge 15 - 18+ +- // IE 11/Edge don't find elements on a `[name='']` query in some cases. +- // Adding a temporary attribute to the document before the selection works +- // around the issue. +- // Interestingly, IE 10 & older don't seem to have the issue. +- input = document.createElement( "input" ); +- input.setAttribute( "name", "" ); +- el.appendChild( input ); +- if ( !el.querySelectorAll( "[name='']" ).length ) { +- rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + +- whitespace + "*(?:''|\"\")" ); +- } +- +- // Webkit/Opera - :checked should return selected option elements +- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked +- // IE8 throws error here and will not see later tests +- if ( !el.querySelectorAll( ":checked" ).length ) { +- rbuggyQSA.push( ":checked" ); +- } +- +- // Support: Safari 8+, iOS 8+ +- // https://bugs.webkit.org/show_bug.cgi?id=136851 +- // In-page `selector#id sibling-combinator selector` fails +- if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { +- rbuggyQSA.push( ".#.+[+~]" ); +- } +- +- // Support: Firefox <=3.6 - 5 only +- // Old Firefox doesn't throw on a badly-escaped identifier. +- el.querySelectorAll( "\\\f" ); +- rbuggyQSA.push( "[\\r\\n\\f]" ); +- } ); +- +- assert( function( el ) { +- el.innerHTML = "<a href='' disabled='disabled'></a>" + +- "<select disabled='disabled'><option/></select>"; +- +- // Support: Windows 8 Native Apps +- // The type and name attributes are restricted during .innerHTML assignment +- var input = document.createElement( "input" ); +- input.setAttribute( "type", "hidden" ); +- el.appendChild( input ).setAttribute( "name", "D" ); +- +- // Support: IE8 +- // Enforce case-sensitivity of name attribute +- if ( el.querySelectorAll( "[name=d]" ).length ) { +- rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); +- } +- +- // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) +- // IE8 throws error here and will not see later tests +- if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { +- rbuggyQSA.push( ":enabled", ":disabled" ); +- } +- +- // Support: IE9-11+ +- // IE's :disabled selector does not pick up the children of disabled fieldsets +- docElem.appendChild( el ).disabled = true; +- if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { +- rbuggyQSA.push( ":enabled", ":disabled" ); +- } +- +- // Support: Opera 10 - 11 only +- // Opera 10-11 does not throw on post-comma invalid pseudos +- el.querySelectorAll( "*,:x" ); +- rbuggyQSA.push( ",.*:" ); +- } ); +- } +- +- if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || +- docElem.webkitMatchesSelector || +- docElem.mozMatchesSelector || +- docElem.oMatchesSelector || +- docElem.msMatchesSelector ) ) ) ) { +- +- assert( function( el ) { +- +- // Check to see if it's possible to do matchesSelector +- // on a disconnected node (IE 9) +- support.disconnectedMatch = matches.call( el, "*" ); +- +- // This should fail with an exception +- // Gecko does not error, returns false instead +- matches.call( el, "[s!='']:x" ); +- rbuggyMatches.push( "!=", pseudos ); +- } ); +- } +- +- rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); +- rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); +- +- /* Contains +- ---------------------------------------------------------------------- */ +- hasCompare = rnative.test( docElem.compareDocumentPosition ); +- +- // Element contains another +- // Purposefully self-exclusive +- // As in, an element does not contain itself +- contains = hasCompare || rnative.test( docElem.contains ) ? +- function( a, b ) { +- var adown = a.nodeType === 9 ? a.documentElement : a, +- bup = b && b.parentNode; +- return a === bup || !!( bup && bup.nodeType === 1 && ( +- adown.contains ? +- adown.contains( bup ) : +- a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 +- ) ); +- } : +- function( a, b ) { +- if ( b ) { +- while ( ( b = b.parentNode ) ) { +- if ( b === a ) { +- return true; +- } +- } +- } +- return false; +- }; +- +- /* Sorting +- ---------------------------------------------------------------------- */ +- +- // Document order sorting +- sortOrder = hasCompare ? +- function( a, b ) { +- +- // Flag for duplicate removal +- if ( a === b ) { +- hasDuplicate = true; +- return 0; +- } +- +- // Sort on method existence if only one input has compareDocumentPosition +- var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; +- if ( compare ) { +- return compare; +- } +- +- // Calculate position if both inputs belong to the same document +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? +- a.compareDocumentPosition( b ) : +- +- // Otherwise we know they are disconnected +- 1; +- +- // Disconnected nodes +- if ( compare & 1 || +- ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { +- +- // Choose the first element that is related to our preferred document +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( a == document || a.ownerDocument == preferredDoc && +- contains( preferredDoc, a ) ) { +- return -1; +- } +- +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( b == document || b.ownerDocument == preferredDoc && +- contains( preferredDoc, b ) ) { +- return 1; +- } +- +- // Maintain original order +- return sortInput ? +- ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : +- 0; +- } +- +- return compare & 4 ? -1 : 1; +- } : +- function( a, b ) { +- +- // Exit early if the nodes are identical +- if ( a === b ) { +- hasDuplicate = true; +- return 0; +- } +- +- var cur, +- i = 0, +- aup = a.parentNode, +- bup = b.parentNode, +- ap = [ a ], +- bp = [ b ]; +- +- // Parentless nodes are either documents or disconnected +- if ( !aup || !bup ) { +- +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- /* eslint-disable eqeqeq */ +- return a == document ? -1 : +- b == document ? 1 : +- /* eslint-enable eqeqeq */ +- aup ? -1 : +- bup ? 1 : +- sortInput ? +- ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : +- 0; +- +- // If the nodes are siblings, we can do a quick check +- } else if ( aup === bup ) { +- return siblingCheck( a, b ); +- } +- +- // Otherwise we need full lists of their ancestors for comparison +- cur = a; +- while ( ( cur = cur.parentNode ) ) { +- ap.unshift( cur ); +- } +- cur = b; +- while ( ( cur = cur.parentNode ) ) { +- bp.unshift( cur ); +- } +- +- // Walk down the tree looking for a discrepancy +- while ( ap[ i ] === bp[ i ] ) { +- i++; +- } +- +- return i ? +- +- // Do a sibling check if the nodes have a common ancestor +- siblingCheck( ap[ i ], bp[ i ] ) : +- +- // Otherwise nodes in our document sort first +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- /* eslint-disable eqeqeq */ +- ap[ i ] == preferredDoc ? -1 : +- bp[ i ] == preferredDoc ? 1 : +- /* eslint-enable eqeqeq */ +- 0; +- }; +- +- return document; +-}; +- +-Sizzle.matches = function( expr, elements ) { +- return Sizzle( expr, null, null, elements ); +-}; +- +-Sizzle.matchesSelector = function( elem, expr ) { +- setDocument( elem ); +- +- if ( support.matchesSelector && documentIsHTML && +- !nonnativeSelectorCache[ expr + " " ] && +- ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && +- ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { +- +- try { +- var ret = matches.call( elem, expr ); +- +- // IE 9's matchesSelector returns false on disconnected nodes +- if ( ret || support.disconnectedMatch || +- +- // As well, disconnected nodes are said to be in a document +- // fragment in IE 9 +- elem.document && elem.document.nodeType !== 11 ) { +- return ret; +- } +- } catch ( e ) { +- nonnativeSelectorCache( expr, true ); +- } +- } +- +- return Sizzle( expr, document, null, [ elem ] ).length > 0; +-}; +- +-Sizzle.contains = function( context, elem ) { +- +- // Set document vars if needed +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( ( context.ownerDocument || context ) != document ) { +- setDocument( context ); +- } +- return contains( context, elem ); +-}; +- +-Sizzle.attr = function( elem, name ) { +- +- // Set document vars if needed +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( ( elem.ownerDocument || elem ) != document ) { +- setDocument( elem ); +- } +- +- var fn = Expr.attrHandle[ name.toLowerCase() ], +- +- // Don't get fooled by Object.prototype properties (jQuery #13807) +- val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? +- fn( elem, name, !documentIsHTML ) : +- undefined; +- +- return val !== undefined ? +- val : +- support.attributes || !documentIsHTML ? +- elem.getAttribute( name ) : +- ( val = elem.getAttributeNode( name ) ) && val.specified ? +- val.value : +- null; +-}; +- +-Sizzle.escape = function( sel ) { +- return ( sel + "" ).replace( rcssescape, fcssescape ); +-}; +- +-Sizzle.error = function( msg ) { +- throw new Error( "Syntax error, unrecognized expression: " + msg ); +-}; +- +-/** +- * Document sorting and removing duplicates +- * @param {ArrayLike} results +- */ +-Sizzle.uniqueSort = function( results ) { +- var elem, +- duplicates = [], +- j = 0, +- i = 0; +- +- // Unless we *know* we can detect duplicates, assume their presence +- hasDuplicate = !support.detectDuplicates; +- sortInput = !support.sortStable && results.slice( 0 ); +- results.sort( sortOrder ); +- +- if ( hasDuplicate ) { +- while ( ( elem = results[ i++ ] ) ) { +- if ( elem === results[ i ] ) { +- j = duplicates.push( i ); +- } +- } +- while ( j-- ) { +- results.splice( duplicates[ j ], 1 ); +- } +- } +- +- // Clear input after sorting to release objects +- // See https://github.com/jquery/sizzle/pull/225 +- sortInput = null; +- +- return results; +-}; +- +-/** +- * Utility function for retrieving the text value of an array of DOM nodes +- * @param {Array|Element} elem +- */ +-getText = Sizzle.getText = function( elem ) { +- var node, +- ret = "", +- i = 0, +- nodeType = elem.nodeType; +- +- if ( !nodeType ) { +- +- // If no nodeType, this is expected to be an array +- while ( ( node = elem[ i++ ] ) ) { +- +- // Do not traverse comment nodes +- ret += getText( node ); +- } +- } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { +- +- // Use textContent for elements +- // innerText usage removed for consistency of new lines (jQuery #11153) +- if ( typeof elem.textContent === "string" ) { +- return elem.textContent; +- } else { +- +- // Traverse its children +- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { +- ret += getText( elem ); +- } +- } +- } else if ( nodeType === 3 || nodeType === 4 ) { +- return elem.nodeValue; +- } +- +- // Do not include comment or processing instruction nodes +- +- return ret; +-}; +- +-Expr = Sizzle.selectors = { +- +- // Can be adjusted by the user +- cacheLength: 50, +- +- createPseudo: markFunction, +- +- match: matchExpr, +- +- attrHandle: {}, +- +- find: {}, +- +- relative: { +- ">": { dir: "parentNode", first: true }, +- " ": { dir: "parentNode" }, +- "+": { dir: "previousSibling", first: true }, +- "~": { dir: "previousSibling" } +- }, +- +- preFilter: { +- "ATTR": function( match ) { +- match[ 1 ] = match[ 1 ].replace( runescape, funescape ); +- +- // Move the given value to match[3] whether quoted or unquoted +- match[ 3 ] = ( match[ 3 ] || match[ 4 ] || +- match[ 5 ] || "" ).replace( runescape, funescape ); +- +- if ( match[ 2 ] === "~=" ) { +- match[ 3 ] = " " + match[ 3 ] + " "; +- } +- +- return match.slice( 0, 4 ); +- }, +- +- "CHILD": function( match ) { +- +- /* matches from matchExpr["CHILD"] +- 1 type (only|nth|...) +- 2 what (child|of-type) +- 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) +- 4 xn-component of xn+y argument ([+-]?\d*n|) +- 5 sign of xn-component +- 6 x of xn-component +- 7 sign of y-component +- 8 y of y-component +- */ +- match[ 1 ] = match[ 1 ].toLowerCase(); +- +- if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { +- +- // nth-* requires argument +- if ( !match[ 3 ] ) { +- Sizzle.error( match[ 0 ] ); +- } +- +- // numeric x and y parameters for Expr.filter.CHILD +- // remember that false/true cast respectively to 0/1 +- match[ 4 ] = +( match[ 4 ] ? +- match[ 5 ] + ( match[ 6 ] || 1 ) : +- 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); +- match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); +- +- // other types prohibit arguments +- } else if ( match[ 3 ] ) { +- Sizzle.error( match[ 0 ] ); +- } +- +- return match; +- }, +- +- "PSEUDO": function( match ) { +- var excess, +- unquoted = !match[ 6 ] && match[ 2 ]; +- +- if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { +- return null; +- } +- +- // Accept quoted arguments as-is +- if ( match[ 3 ] ) { +- match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; +- +- // Strip excess characters from unquoted arguments +- } else if ( unquoted && rpseudo.test( unquoted ) && +- +- // Get excess from tokenize (recursively) +- ( excess = tokenize( unquoted, true ) ) && +- +- // advance to the next closing parenthesis +- ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { +- +- // excess is a negative index +- match[ 0 ] = match[ 0 ].slice( 0, excess ); +- match[ 2 ] = unquoted.slice( 0, excess ); +- } +- +- // Return only captures needed by the pseudo filter method (type and argument) +- return match.slice( 0, 3 ); +- } +- }, +- +- filter: { +- +- "TAG": function( nodeNameSelector ) { +- var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); +- return nodeNameSelector === "*" ? +- function() { +- return true; +- } : +- function( elem ) { +- return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; +- }; +- }, +- +- "CLASS": function( className ) { +- var pattern = classCache[ className + " " ]; +- +- return pattern || +- ( pattern = new RegExp( "(^|" + whitespace + +- ")" + className + "(" + whitespace + "|$)" ) ) && classCache( +- className, function( elem ) { +- return pattern.test( +- typeof elem.className === "string" && elem.className || +- typeof elem.getAttribute !== "undefined" && +- elem.getAttribute( "class" ) || +- "" +- ); +- } ); +- }, +- +- "ATTR": function( name, operator, check ) { +- return function( elem ) { +- var result = Sizzle.attr( elem, name ); +- +- if ( result == null ) { +- return operator === "!="; +- } +- if ( !operator ) { +- return true; +- } +- +- result += ""; +- +- /* eslint-disable max-len */ +- +- return operator === "=" ? result === check : +- operator === "!=" ? result !== check : +- operator === "^=" ? check && result.indexOf( check ) === 0 : +- operator === "*=" ? check && result.indexOf( check ) > -1 : +- operator === "$=" ? check && result.slice( -check.length ) === check : +- operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : +- operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : +- false; +- /* eslint-enable max-len */ +- +- }; +- }, +- +- "CHILD": function( type, what, _argument, first, last ) { +- var simple = type.slice( 0, 3 ) !== "nth", +- forward = type.slice( -4 ) !== "last", +- ofType = what === "of-type"; +- +- return first === 1 && last === 0 ? +- +- // Shortcut for :nth-*(n) +- function( elem ) { +- return !!elem.parentNode; +- } : +- +- function( elem, _context, xml ) { +- var cache, uniqueCache, outerCache, node, nodeIndex, start, +- dir = simple !== forward ? "nextSibling" : "previousSibling", +- parent = elem.parentNode, +- name = ofType && elem.nodeName.toLowerCase(), +- useCache = !xml && !ofType, +- diff = false; +- +- if ( parent ) { +- +- // :(first|last|only)-(child|of-type) +- if ( simple ) { +- while ( dir ) { +- node = elem; +- while ( ( node = node[ dir ] ) ) { +- if ( ofType ? +- node.nodeName.toLowerCase() === name : +- node.nodeType === 1 ) { +- +- return false; +- } +- } +- +- // Reverse direction for :only-* (if we haven't yet done so) +- start = dir = type === "only" && !start && "nextSibling"; +- } +- return true; +- } +- +- start = [ forward ? parent.firstChild : parent.lastChild ]; +- +- // non-xml :nth-child(...) stores cache data on `parent` +- if ( forward && useCache ) { +- +- // Seek `elem` from a previously-cached index +- +- // ...in a gzip-friendly way +- node = parent; +- outerCache = node[ expando ] || ( node[ expando ] = {} ); +- +- // Support: IE <9 only +- // Defend against cloned attroperties (jQuery gh-1709) +- uniqueCache = outerCache[ node.uniqueID ] || +- ( outerCache[ node.uniqueID ] = {} ); +- +- cache = uniqueCache[ type ] || []; +- nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; +- diff = nodeIndex && cache[ 2 ]; +- node = nodeIndex && parent.childNodes[ nodeIndex ]; +- +- while ( ( node = ++nodeIndex && node && node[ dir ] || +- +- // Fallback to seeking `elem` from the start +- ( diff = nodeIndex = 0 ) || start.pop() ) ) { +- +- // When found, cache indexes on `parent` and break +- if ( node.nodeType === 1 && ++diff && node === elem ) { +- uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; +- break; +- } +- } +- +- } else { +- +- // Use previously-cached element index if available +- if ( useCache ) { +- +- // ...in a gzip-friendly way +- node = elem; +- outerCache = node[ expando ] || ( node[ expando ] = {} ); +- +- // Support: IE <9 only +- // Defend against cloned attroperties (jQuery gh-1709) +- uniqueCache = outerCache[ node.uniqueID ] || +- ( outerCache[ node.uniqueID ] = {} ); +- +- cache = uniqueCache[ type ] || []; +- nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; +- diff = nodeIndex; +- } +- +- // xml :nth-child(...) +- // or :nth-last-child(...) or :nth(-last)?-of-type(...) +- if ( diff === false ) { +- +- // Use the same loop as above to seek `elem` from the start +- while ( ( node = ++nodeIndex && node && node[ dir ] || +- ( diff = nodeIndex = 0 ) || start.pop() ) ) { +- +- if ( ( ofType ? +- node.nodeName.toLowerCase() === name : +- node.nodeType === 1 ) && +- ++diff ) { +- +- // Cache the index of each encountered element +- if ( useCache ) { +- outerCache = node[ expando ] || +- ( node[ expando ] = {} ); +- +- // Support: IE <9 only +- // Defend against cloned attroperties (jQuery gh-1709) +- uniqueCache = outerCache[ node.uniqueID ] || +- ( outerCache[ node.uniqueID ] = {} ); +- +- uniqueCache[ type ] = [ dirruns, diff ]; +- } +- +- if ( node === elem ) { +- break; +- } +- } +- } +- } +- } +- +- // Incorporate the offset, then check against cycle size +- diff -= last; +- return diff === first || ( diff % first === 0 && diff / first >= 0 ); +- } +- }; +- }, +- +- "PSEUDO": function( pseudo, argument ) { +- +- // pseudo-class names are case-insensitive +- // http://www.w3.org/TR/selectors/#pseudo-classes +- // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters +- // Remember that setFilters inherits from pseudos +- var args, +- fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || +- Sizzle.error( "unsupported pseudo: " + pseudo ); +- +- // The user may use createPseudo to indicate that +- // arguments are needed to create the filter function +- // just as Sizzle does +- if ( fn[ expando ] ) { +- return fn( argument ); +- } +- +- // But maintain support for old signatures +- if ( fn.length > 1 ) { +- args = [ pseudo, pseudo, "", argument ]; +- return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? +- markFunction( function( seed, matches ) { +- var idx, +- matched = fn( seed, argument ), +- i = matched.length; +- while ( i-- ) { +- idx = indexOf( seed, matched[ i ] ); +- seed[ idx ] = !( matches[ idx ] = matched[ i ] ); +- } +- } ) : +- function( elem ) { +- return fn( elem, 0, args ); +- }; +- } +- +- return fn; +- } +- }, +- +- pseudos: { +- +- // Potentially complex pseudos +- "not": markFunction( function( selector ) { +- +- // Trim the selector passed to compile +- // to avoid treating leading and trailing +- // spaces as combinators +- var input = [], +- results = [], +- matcher = compile( selector.replace( rtrim, "$1" ) ); +- +- return matcher[ expando ] ? +- markFunction( function( seed, matches, _context, xml ) { +- var elem, +- unmatched = matcher( seed, null, xml, [] ), +- i = seed.length; +- +- // Match elements unmatched by `matcher` +- while ( i-- ) { +- if ( ( elem = unmatched[ i ] ) ) { +- seed[ i ] = !( matches[ i ] = elem ); +- } +- } +- } ) : +- function( elem, _context, xml ) { +- input[ 0 ] = elem; +- matcher( input, null, xml, results ); +- +- // Don't keep the element (issue #299) +- input[ 0 ] = null; +- return !results.pop(); +- }; +- } ), +- +- "has": markFunction( function( selector ) { +- return function( elem ) { +- return Sizzle( selector, elem ).length > 0; +- }; +- } ), +- +- "contains": markFunction( function( text ) { +- text = text.replace( runescape, funescape ); +- return function( elem ) { +- return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; +- }; +- } ), +- +- // "Whether an element is represented by a :lang() selector +- // is based solely on the element's language value +- // being equal to the identifier C, +- // or beginning with the identifier C immediately followed by "-". +- // The matching of C against the element's language value is performed case-insensitively. +- // The identifier C does not have to be a valid language name." +- // http://www.w3.org/TR/selectors/#lang-pseudo +- "lang": markFunction( function( lang ) { +- +- // lang value must be a valid identifier +- if ( !ridentifier.test( lang || "" ) ) { +- Sizzle.error( "unsupported lang: " + lang ); +- } +- lang = lang.replace( runescape, funescape ).toLowerCase(); +- return function( elem ) { +- var elemLang; +- do { +- if ( ( elemLang = documentIsHTML ? +- elem.lang : +- elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { +- +- elemLang = elemLang.toLowerCase(); +- return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; +- } +- } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); +- return false; +- }; +- } ), +- +- // Miscellaneous +- "target": function( elem ) { +- var hash = window.location && window.location.hash; +- return hash && hash.slice( 1 ) === elem.id; +- }, +- +- "root": function( elem ) { +- return elem === docElem; +- }, +- +- "focus": function( elem ) { +- return elem === document.activeElement && +- ( !document.hasFocus || document.hasFocus() ) && +- !!( elem.type || elem.href || ~elem.tabIndex ); +- }, +- +- // Boolean properties +- "enabled": createDisabledPseudo( false ), +- "disabled": createDisabledPseudo( true ), +- +- "checked": function( elem ) { +- +- // In CSS3, :checked should return both checked and selected elements +- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked +- var nodeName = elem.nodeName.toLowerCase(); +- return ( nodeName === "input" && !!elem.checked ) || +- ( nodeName === "option" && !!elem.selected ); +- }, +- +- "selected": function( elem ) { +- +- // Accessing this property makes selected-by-default +- // options in Safari work properly +- if ( elem.parentNode ) { +- // eslint-disable-next-line no-unused-expressions +- elem.parentNode.selectedIndex; +- } +- +- return elem.selected === true; +- }, +- +- // Contents +- "empty": function( elem ) { +- +- // http://www.w3.org/TR/selectors/#empty-pseudo +- // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), +- // but not by others (comment: 8; processing instruction: 7; etc.) +- // nodeType < 6 works because attributes (2) do not appear as children +- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { +- if ( elem.nodeType < 6 ) { +- return false; +- } +- } +- return true; +- }, +- +- "parent": function( elem ) { +- return !Expr.pseudos[ "empty" ]( elem ); +- }, +- +- // Element/input types +- "header": function( elem ) { +- return rheader.test( elem.nodeName ); +- }, +- +- "input": function( elem ) { +- return rinputs.test( elem.nodeName ); +- }, +- +- "button": function( elem ) { +- var name = elem.nodeName.toLowerCase(); +- return name === "input" && elem.type === "button" || name === "button"; +- }, +- +- "text": function( elem ) { +- var attr; +- return elem.nodeName.toLowerCase() === "input" && +- elem.type === "text" && +- +- // Support: IE<8 +- // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" +- ( ( attr = elem.getAttribute( "type" ) ) == null || +- attr.toLowerCase() === "text" ); +- }, +- +- // Position-in-collection +- "first": createPositionalPseudo( function() { +- return [ 0 ]; +- } ), +- +- "last": createPositionalPseudo( function( _matchIndexes, length ) { +- return [ length - 1 ]; +- } ), +- +- "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { +- return [ argument < 0 ? argument + length : argument ]; +- } ), +- +- "even": createPositionalPseudo( function( matchIndexes, length ) { +- var i = 0; +- for ( ; i < length; i += 2 ) { +- matchIndexes.push( i ); +- } +- return matchIndexes; +- } ), +- +- "odd": createPositionalPseudo( function( matchIndexes, length ) { +- var i = 1; +- for ( ; i < length; i += 2 ) { +- matchIndexes.push( i ); +- } +- return matchIndexes; +- } ), +- +- "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { +- var i = argument < 0 ? +- argument + length : +- argument > length ? +- length : +- argument; +- for ( ; --i >= 0; ) { +- matchIndexes.push( i ); +- } +- return matchIndexes; +- } ), +- +- "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { +- var i = argument < 0 ? argument + length : argument; +- for ( ; ++i < length; ) { +- matchIndexes.push( i ); +- } +- return matchIndexes; +- } ) +- } +-}; +- +-Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; +- +-// Add button/input type pseudos +-for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { +- Expr.pseudos[ i ] = createInputPseudo( i ); +-} +-for ( i in { submit: true, reset: true } ) { +- Expr.pseudos[ i ] = createButtonPseudo( i ); +-} +- +-// Easy API for creating new setFilters +-function setFilters() {} +-setFilters.prototype = Expr.filters = Expr.pseudos; +-Expr.setFilters = new setFilters(); +- +-tokenize = Sizzle.tokenize = function( selector, parseOnly ) { +- var matched, match, tokens, type, +- soFar, groups, preFilters, +- cached = tokenCache[ selector + " " ]; +- +- if ( cached ) { +- return parseOnly ? 0 : cached.slice( 0 ); +- } +- +- soFar = selector; +- groups = []; +- preFilters = Expr.preFilter; +- +- while ( soFar ) { +- +- // Comma and first run +- if ( !matched || ( match = rcomma.exec( soFar ) ) ) { +- if ( match ) { +- +- // Don't consume trailing commas as valid +- soFar = soFar.slice( match[ 0 ].length ) || soFar; +- } +- groups.push( ( tokens = [] ) ); +- } +- +- matched = false; +- +- // Combinators +- if ( ( match = rcombinators.exec( soFar ) ) ) { +- matched = match.shift(); +- tokens.push( { +- value: matched, +- +- // Cast descendant combinators to space +- type: match[ 0 ].replace( rtrim, " " ) +- } ); +- soFar = soFar.slice( matched.length ); +- } +- +- // Filters +- for ( type in Expr.filter ) { +- if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || +- ( match = preFilters[ type ]( match ) ) ) ) { +- matched = match.shift(); +- tokens.push( { +- value: matched, +- type: type, +- matches: match +- } ); +- soFar = soFar.slice( matched.length ); +- } +- } +- +- if ( !matched ) { +- break; +- } +- } +- +- // Return the length of the invalid excess +- // if we're just parsing +- // Otherwise, throw an error or return tokens +- return parseOnly ? +- soFar.length : +- soFar ? +- Sizzle.error( selector ) : +- +- // Cache the tokens +- tokenCache( selector, groups ).slice( 0 ); +-}; +- +-function toSelector( tokens ) { +- var i = 0, +- len = tokens.length, +- selector = ""; +- for ( ; i < len; i++ ) { +- selector += tokens[ i ].value; +- } +- return selector; +-} +- +-function addCombinator( matcher, combinator, base ) { +- var dir = combinator.dir, +- skip = combinator.next, +- key = skip || dir, +- checkNonElements = base && key === "parentNode", +- doneName = done++; +- +- return combinator.first ? +- +- // Check against closest ancestor/preceding element +- function( elem, context, xml ) { +- while ( ( elem = elem[ dir ] ) ) { +- if ( elem.nodeType === 1 || checkNonElements ) { +- return matcher( elem, context, xml ); +- } +- } +- return false; +- } : +- +- // Check against all ancestor/preceding elements +- function( elem, context, xml ) { +- var oldCache, uniqueCache, outerCache, +- newCache = [ dirruns, doneName ]; +- +- // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching +- if ( xml ) { +- while ( ( elem = elem[ dir ] ) ) { +- if ( elem.nodeType === 1 || checkNonElements ) { +- if ( matcher( elem, context, xml ) ) { +- return true; +- } +- } +- } +- } else { +- while ( ( elem = elem[ dir ] ) ) { +- if ( elem.nodeType === 1 || checkNonElements ) { +- outerCache = elem[ expando ] || ( elem[ expando ] = {} ); +- +- // Support: IE <9 only +- // Defend against cloned attroperties (jQuery gh-1709) +- uniqueCache = outerCache[ elem.uniqueID ] || +- ( outerCache[ elem.uniqueID ] = {} ); +- +- if ( skip && skip === elem.nodeName.toLowerCase() ) { +- elem = elem[ dir ] || elem; +- } else if ( ( oldCache = uniqueCache[ key ] ) && +- oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { +- +- // Assign to newCache so results back-propagate to previous elements +- return ( newCache[ 2 ] = oldCache[ 2 ] ); +- } else { +- +- // Reuse newcache so results back-propagate to previous elements +- uniqueCache[ key ] = newCache; +- +- // A match means we're done; a fail means we have to keep checking +- if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { +- return true; +- } +- } +- } +- } +- } +- return false; +- }; +-} +- +-function elementMatcher( matchers ) { +- return matchers.length > 1 ? +- function( elem, context, xml ) { +- var i = matchers.length; +- while ( i-- ) { +- if ( !matchers[ i ]( elem, context, xml ) ) { +- return false; +- } +- } +- return true; +- } : +- matchers[ 0 ]; +-} +- +-function multipleContexts( selector, contexts, results ) { +- var i = 0, +- len = contexts.length; +- for ( ; i < len; i++ ) { +- Sizzle( selector, contexts[ i ], results ); +- } +- return results; +-} +- +-function condense( unmatched, map, filter, context, xml ) { +- var elem, +- newUnmatched = [], +- i = 0, +- len = unmatched.length, +- mapped = map != null; +- +- for ( ; i < len; i++ ) { +- if ( ( elem = unmatched[ i ] ) ) { +- if ( !filter || filter( elem, context, xml ) ) { +- newUnmatched.push( elem ); +- if ( mapped ) { +- map.push( i ); +- } +- } +- } +- } +- +- return newUnmatched; +-} +- +-function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { +- if ( postFilter && !postFilter[ expando ] ) { +- postFilter = setMatcher( postFilter ); +- } +- if ( postFinder && !postFinder[ expando ] ) { +- postFinder = setMatcher( postFinder, postSelector ); +- } +- return markFunction( function( seed, results, context, xml ) { +- var temp, i, elem, +- preMap = [], +- postMap = [], +- preexisting = results.length, +- +- // Get initial elements from seed or context +- elems = seed || multipleContexts( +- selector || "*", +- context.nodeType ? [ context ] : context, +- [] +- ), +- +- // Prefilter to get matcher input, preserving a map for seed-results synchronization +- matcherIn = preFilter && ( seed || !selector ) ? +- condense( elems, preMap, preFilter, context, xml ) : +- elems, +- +- matcherOut = matcher ? +- +- // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, +- postFinder || ( seed ? preFilter : preexisting || postFilter ) ? +- +- // ...intermediate processing is necessary +- [] : +- +- // ...otherwise use results directly +- results : +- matcherIn; +- +- // Find primary matches +- if ( matcher ) { +- matcher( matcherIn, matcherOut, context, xml ); +- } +- +- // Apply postFilter +- if ( postFilter ) { +- temp = condense( matcherOut, postMap ); +- postFilter( temp, [], context, xml ); +- +- // Un-match failing elements by moving them back to matcherIn +- i = temp.length; +- while ( i-- ) { +- if ( ( elem = temp[ i ] ) ) { +- matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); +- } +- } +- } +- +- if ( seed ) { +- if ( postFinder || preFilter ) { +- if ( postFinder ) { +- +- // Get the final matcherOut by condensing this intermediate into postFinder contexts +- temp = []; +- i = matcherOut.length; +- while ( i-- ) { +- if ( ( elem = matcherOut[ i ] ) ) { +- +- // Restore matcherIn since elem is not yet a final match +- temp.push( ( matcherIn[ i ] = elem ) ); +- } +- } +- postFinder( null, ( matcherOut = [] ), temp, xml ); +- } +- +- // Move matched elements from seed to results to keep them synchronized +- i = matcherOut.length; +- while ( i-- ) { +- if ( ( elem = matcherOut[ i ] ) && +- ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { +- +- seed[ temp ] = !( results[ temp ] = elem ); +- } +- } +- } +- +- // Add elements to results, through postFinder if defined +- } else { +- matcherOut = condense( +- matcherOut === results ? +- matcherOut.splice( preexisting, matcherOut.length ) : +- matcherOut +- ); +- if ( postFinder ) { +- postFinder( null, results, matcherOut, xml ); +- } else { +- push.apply( results, matcherOut ); +- } +- } +- } ); +-} +- +-function matcherFromTokens( tokens ) { +- var checkContext, matcher, j, +- len = tokens.length, +- leadingRelative = Expr.relative[ tokens[ 0 ].type ], +- implicitRelative = leadingRelative || Expr.relative[ " " ], +- i = leadingRelative ? 1 : 0, +- +- // The foundational matcher ensures that elements are reachable from top-level context(s) +- matchContext = addCombinator( function( elem ) { +- return elem === checkContext; +- }, implicitRelative, true ), +- matchAnyContext = addCombinator( function( elem ) { +- return indexOf( checkContext, elem ) > -1; +- }, implicitRelative, true ), +- matchers = [ function( elem, context, xml ) { +- var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( +- ( checkContext = context ).nodeType ? +- matchContext( elem, context, xml ) : +- matchAnyContext( elem, context, xml ) ); +- +- // Avoid hanging onto element (issue #299) +- checkContext = null; +- return ret; +- } ]; +- +- for ( ; i < len; i++ ) { +- if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { +- matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; +- } else { +- matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); +- +- // Return special upon seeing a positional matcher +- if ( matcher[ expando ] ) { +- +- // Find the next relative operator (if any) for proper handling +- j = ++i; +- for ( ; j < len; j++ ) { +- if ( Expr.relative[ tokens[ j ].type ] ) { +- break; +- } +- } +- return setMatcher( +- i > 1 && elementMatcher( matchers ), +- i > 1 && toSelector( +- +- // If the preceding token was a descendant combinator, insert an implicit any-element `*` +- tokens +- .slice( 0, i - 1 ) +- .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) +- ).replace( rtrim, "$1" ), +- matcher, +- i < j && matcherFromTokens( tokens.slice( i, j ) ), +- j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), +- j < len && toSelector( tokens ) +- ); +- } +- matchers.push( matcher ); +- } +- } +- +- return elementMatcher( matchers ); +-} +- +-function matcherFromGroupMatchers( elementMatchers, setMatchers ) { +- var bySet = setMatchers.length > 0, +- byElement = elementMatchers.length > 0, +- superMatcher = function( seed, context, xml, results, outermost ) { +- var elem, j, matcher, +- matchedCount = 0, +- i = "0", +- unmatched = seed && [], +- setMatched = [], +- contextBackup = outermostContext, +- +- // We must always have either seed elements or outermost context +- elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), +- +- // Use integer dirruns iff this is the outermost matcher +- dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), +- len = elems.length; +- +- if ( outermost ) { +- +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- outermostContext = context == document || context || outermost; +- } +- +- // Add elements passing elementMatchers directly to results +- // Support: IE<9, Safari +- // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id +- for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { +- if ( byElement && elem ) { +- j = 0; +- +- // Support: IE 11+, Edge 17 - 18+ +- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing +- // two documents; shallow comparisons work. +- // eslint-disable-next-line eqeqeq +- if ( !context && elem.ownerDocument != document ) { +- setDocument( elem ); +- xml = !documentIsHTML; +- } +- while ( ( matcher = elementMatchers[ j++ ] ) ) { +- if ( matcher( elem, context || document, xml ) ) { +- results.push( elem ); +- break; +- } +- } +- if ( outermost ) { +- dirruns = dirrunsUnique; +- } +- } +- +- // Track unmatched elements for set filters +- if ( bySet ) { +- +- // They will have gone through all possible matchers +- if ( ( elem = !matcher && elem ) ) { +- matchedCount--; +- } +- +- // Lengthen the array for every element, matched or not +- if ( seed ) { +- unmatched.push( elem ); +- } +- } +- } +- +- // `i` is now the count of elements visited above, and adding it to `matchedCount` +- // makes the latter nonnegative. +- matchedCount += i; +- +- // Apply set filters to unmatched elements +- // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` +- // equals `i`), unless we didn't visit _any_ elements in the above loop because we have +- // no element matchers and no seed. +- // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that +- // case, which will result in a "00" `matchedCount` that differs from `i` but is also +- // numerically zero. +- if ( bySet && i !== matchedCount ) { +- j = 0; +- while ( ( matcher = setMatchers[ j++ ] ) ) { +- matcher( unmatched, setMatched, context, xml ); +- } +- +- if ( seed ) { +- +- // Reintegrate element matches to eliminate the need for sorting +- if ( matchedCount > 0 ) { +- while ( i-- ) { +- if ( !( unmatched[ i ] || setMatched[ i ] ) ) { +- setMatched[ i ] = pop.call( results ); +- } +- } +- } +- +- // Discard index placeholder values to get only actual matches +- setMatched = condense( setMatched ); +- } +- +- // Add matches to results +- push.apply( results, setMatched ); +- +- // Seedless set matches succeeding multiple successful matchers stipulate sorting +- if ( outermost && !seed && setMatched.length > 0 && +- ( matchedCount + setMatchers.length ) > 1 ) { +- +- Sizzle.uniqueSort( results ); +- } +- } +- +- // Override manipulation of globals by nested matchers +- if ( outermost ) { +- dirruns = dirrunsUnique; +- outermostContext = contextBackup; +- } +- +- return unmatched; +- }; +- +- return bySet ? +- markFunction( superMatcher ) : +- superMatcher; +-} +- +-compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { +- var i, +- setMatchers = [], +- elementMatchers = [], +- cached = compilerCache[ selector + " " ]; +- +- if ( !cached ) { +- +- // Generate a function of recursive functions that can be used to check each element +- if ( !match ) { +- match = tokenize( selector ); +- } +- i = match.length; +- while ( i-- ) { +- cached = matcherFromTokens( match[ i ] ); +- if ( cached[ expando ] ) { +- setMatchers.push( cached ); +- } else { +- elementMatchers.push( cached ); +- } +- } +- +- // Cache the compiled function +- cached = compilerCache( +- selector, +- matcherFromGroupMatchers( elementMatchers, setMatchers ) +- ); +- +- // Save selector and tokenization +- cached.selector = selector; +- } +- return cached; +-}; +- +-/** +- * A low-level selection function that works with Sizzle's compiled +- * selector functions +- * @param {String|Function} selector A selector or a pre-compiled +- * selector function built with Sizzle.compile +- * @param {Element} context +- * @param {Array} [results] +- * @param {Array} [seed] A set of elements to match against +- */ +-select = Sizzle.select = function( selector, context, results, seed ) { +- var i, tokens, token, type, find, +- compiled = typeof selector === "function" && selector, +- match = !seed && tokenize( ( selector = compiled.selector || selector ) ); +- +- results = results || []; +- +- // Try to minimize operations if there is only one selector in the list and no seed +- // (the latter of which guarantees us context) +- if ( match.length === 1 ) { +- +- // Reduce context if the leading compound selector is an ID +- tokens = match[ 0 ] = match[ 0 ].slice( 0 ); +- if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && +- context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { +- +- context = ( Expr.find[ "ID" ]( token.matches[ 0 ] +- .replace( runescape, funescape ), context ) || [] )[ 0 ]; +- if ( !context ) { +- return results; +- +- // Precompiled matchers will still verify ancestry, so step up a level +- } else if ( compiled ) { +- context = context.parentNode; +- } +- +- selector = selector.slice( tokens.shift().value.length ); +- } +- +- // Fetch a seed set for right-to-left matching +- i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; +- while ( i-- ) { +- token = tokens[ i ]; +- +- // Abort if we hit a combinator +- if ( Expr.relative[ ( type = token.type ) ] ) { +- break; +- } +- if ( ( find = Expr.find[ type ] ) ) { +- +- // Search, expanding context for leading sibling combinators +- if ( ( seed = find( +- token.matches[ 0 ].replace( runescape, funescape ), +- rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || +- context +- ) ) ) { +- +- // If seed is empty or no tokens remain, we can return early +- tokens.splice( i, 1 ); +- selector = seed.length && toSelector( tokens ); +- if ( !selector ) { +- push.apply( results, seed ); +- return results; +- } +- +- break; +- } +- } +- } +- } +- +- // Compile and execute a filtering function if one is not provided +- // Provide `match` to avoid retokenization if we modified the selector above +- ( compiled || compile( selector, match ) )( +- seed, +- context, +- !documentIsHTML, +- results, +- !context || rsibling.test( selector ) && testContext( context.parentNode ) || context +- ); +- return results; +-}; +- +-// One-time assignments +- +-// Sort stability +-support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; +- +-// Support: Chrome 14-35+ +-// Always assume duplicates if they aren't passed to the comparison function +-support.detectDuplicates = !!hasDuplicate; +- +-// Initialize against the default document +-setDocument(); +- +-// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +-// Detached nodes confoundingly follow *each other* +-support.sortDetached = assert( function( el ) { +- +- // Should return 1, but returns 4 (following) +- return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +-} ); +- +-// Support: IE<8 +-// Prevent attribute/property "interpolation" +-// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +-if ( !assert( function( el ) { +- el.innerHTML = "<a href='#'></a>"; +- return el.firstChild.getAttribute( "href" ) === "#"; +-} ) ) { +- addHandle( "type|href|height|width", function( elem, name, isXML ) { +- if ( !isXML ) { +- return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); +- } +- } ); +-} +- +-// Support: IE<9 +-// Use defaultValue in place of getAttribute("value") +-if ( !support.attributes || !assert( function( el ) { +- el.innerHTML = "<input/>"; +- el.firstChild.setAttribute( "value", "" ); +- return el.firstChild.getAttribute( "value" ) === ""; +-} ) ) { +- addHandle( "value", function( elem, _name, isXML ) { +- if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { +- return elem.defaultValue; +- } +- } ); +-} +- +-// Support: IE<9 +-// Use getAttributeNode to fetch booleans when getAttribute lies +-if ( !assert( function( el ) { +- return el.getAttribute( "disabled" ) == null; +-} ) ) { +- addHandle( booleans, function( elem, name, isXML ) { +- var val; +- if ( !isXML ) { +- return elem[ name ] === true ? name.toLowerCase() : +- ( val = elem.getAttributeNode( name ) ) && val.specified ? +- val.value : +- null; +- } +- } ); +-} +- +-return Sizzle; +- +-} )( window ); +- +- +- +-jQuery.find = Sizzle; +-jQuery.expr = Sizzle.selectors; +- +-// Deprecated +-jQuery.expr[ ":" ] = jQuery.expr.pseudos; +-jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +-jQuery.text = Sizzle.getText; +-jQuery.isXMLDoc = Sizzle.isXML; +-jQuery.contains = Sizzle.contains; +-jQuery.escapeSelector = Sizzle.escape; +- +- +- +- +-var dir = function( elem, dir, until ) { +- var matched = [], +- truncate = until !== undefined; +- +- while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { +- if ( elem.nodeType === 1 ) { +- if ( truncate && jQuery( elem ).is( until ) ) { +- break; +- } +- matched.push( elem ); +- } +- } +- return matched; +-}; +- +- +-var siblings = function( n, elem ) { +- var matched = []; +- +- for ( ; n; n = n.nextSibling ) { +- if ( n.nodeType === 1 && n !== elem ) { +- matched.push( n ); +- } +- } +- +- return matched; +-}; +- +- +-var rneedsContext = jQuery.expr.match.needsContext; +- +- +- +-function nodeName( elem, name ) { +- +- return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); +- +-}; +-var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); +- +- +- +-// Implement the identical functionality for filter and not +-function winnow( elements, qualifier, not ) { +- if ( isFunction( qualifier ) ) { +- return jQuery.grep( elements, function( elem, i ) { +- return !!qualifier.call( elem, i, elem ) !== not; +- } ); +- } +- +- // Single element +- if ( qualifier.nodeType ) { +- return jQuery.grep( elements, function( elem ) { +- return ( elem === qualifier ) !== not; +- } ); +- } +- +- // Arraylike of elements (jQuery, arguments, Array) +- if ( typeof qualifier !== "string" ) { +- return jQuery.grep( elements, function( elem ) { +- return ( indexOf.call( qualifier, elem ) > -1 ) !== not; +- } ); +- } +- +- // Filtered directly for both simple and complex selectors +- return jQuery.filter( qualifier, elements, not ); +-} +- +-jQuery.filter = function( expr, elems, not ) { +- var elem = elems[ 0 ]; +- +- if ( not ) { +- expr = ":not(" + expr + ")"; +- } +- +- if ( elems.length === 1 && elem.nodeType === 1 ) { +- return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; +- } +- +- return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { +- return elem.nodeType === 1; +- } ) ); +-}; +- +-jQuery.fn.extend( { +- find: function( selector ) { +- var i, ret, +- len = this.length, +- self = this; +- +- if ( typeof selector !== "string" ) { +- return this.pushStack( jQuery( selector ).filter( function() { +- for ( i = 0; i < len; i++ ) { +- if ( jQuery.contains( self[ i ], this ) ) { +- return true; +- } +- } +- } ) ); +- } +- +- ret = this.pushStack( [] ); +- +- for ( i = 0; i < len; i++ ) { +- jQuery.find( selector, self[ i ], ret ); +- } +- +- return len > 1 ? jQuery.uniqueSort( ret ) : ret; +- }, +- filter: function( selector ) { +- return this.pushStack( winnow( this, selector || [], false ) ); +- }, +- not: function( selector ) { +- return this.pushStack( winnow( this, selector || [], true ) ); +- }, +- is: function( selector ) { +- return !!winnow( +- this, +- +- // If this is a positional/relative selector, check membership in the returned set +- // so $("p:first").is("p:last") won't return true for a doc with two "p". +- typeof selector === "string" && rneedsContext.test( selector ) ? +- jQuery( selector ) : +- selector || [], +- false +- ).length; +- } +-} ); +- +- +-// Initialize a jQuery object +- +- +-// A central reference to the root jQuery(document) +-var rootjQuery, +- +- // A simple way to check for HTML strings +- // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) +- // Strict HTML recognition (#11290: must start with <) +- // Shortcut simple #id case for speed +- rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, +- +- init = jQuery.fn.init = function( selector, context, root ) { +- var match, elem; +- +- // HANDLE: $(""), $(null), $(undefined), $(false) +- if ( !selector ) { +- return this; +- } +- +- // Method init() accepts an alternate rootjQuery +- // so migrate can support jQuery.sub (gh-2101) +- root = root || rootjQuery; +- +- // Handle HTML strings +- if ( typeof selector === "string" ) { +- if ( selector[ 0 ] === "<" && +- selector[ selector.length - 1 ] === ">" && +- selector.length >= 3 ) { +- +- // Assume that strings that start and end with <> are HTML and skip the regex check +- match = [ null, selector, null ]; +- +- } else { +- match = rquickExpr.exec( selector ); +- } +- +- // Match html or make sure no context is specified for #id +- if ( match && ( match[ 1 ] || !context ) ) { +- +- // HANDLE: $(html) -> $(array) +- if ( match[ 1 ] ) { +- context = context instanceof jQuery ? context[ 0 ] : context; +- +- // Option to run scripts is true for back-compat +- // Intentionally let the error be thrown if parseHTML is not present +- jQuery.merge( this, jQuery.parseHTML( +- match[ 1 ], +- context && context.nodeType ? context.ownerDocument || context : document, +- true +- ) ); +- +- // HANDLE: $(html, props) +- if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { +- for ( match in context ) { +- +- // Properties of context are called as methods if possible +- if ( isFunction( this[ match ] ) ) { +- this[ match ]( context[ match ] ); +- +- // ...and otherwise set as attributes +- } else { +- this.attr( match, context[ match ] ); +- } +- } +- } +- +- return this; +- +- // HANDLE: $(#id) +- } else { +- elem = document.getElementById( match[ 2 ] ); +- +- if ( elem ) { +- +- // Inject the element directly into the jQuery object +- this[ 0 ] = elem; +- this.length = 1; +- } +- return this; +- } +- +- // HANDLE: $(expr, $(...)) +- } else if ( !context || context.jquery ) { +- return ( context || root ).find( selector ); +- +- // HANDLE: $(expr, context) +- // (which is just equivalent to: $(context).find(expr) +- } else { +- return this.constructor( context ).find( selector ); +- } +- +- // HANDLE: $(DOMElement) +- } else if ( selector.nodeType ) { +- this[ 0 ] = selector; +- this.length = 1; +- return this; +- +- // HANDLE: $(function) +- // Shortcut for document ready +- } else if ( isFunction( selector ) ) { +- return root.ready !== undefined ? +- root.ready( selector ) : +- +- // Execute immediately if ready is not present +- selector( jQuery ); +- } +- +- return jQuery.makeArray( selector, this ); +- }; +- +-// Give the init function the jQuery prototype for later instantiation +-init.prototype = jQuery.fn; +- +-// Initialize central reference +-rootjQuery = jQuery( document ); +- +- +-var rparentsprev = /^(?:parents|prev(?:Until|All))/, +- +- // Methods guaranteed to produce a unique set when starting from a unique set +- guaranteedUnique = { +- children: true, +- contents: true, +- next: true, +- prev: true +- }; +- +-jQuery.fn.extend( { +- has: function( target ) { +- var targets = jQuery( target, this ), +- l = targets.length; +- +- return this.filter( function() { +- var i = 0; +- for ( ; i < l; i++ ) { +- if ( jQuery.contains( this, targets[ i ] ) ) { +- return true; +- } +- } +- } ); +- }, +- +- closest: function( selectors, context ) { +- var cur, +- i = 0, +- l = this.length, +- matched = [], +- targets = typeof selectors !== "string" && jQuery( selectors ); +- +- // Positional selectors never match, since there's no _selection_ context +- if ( !rneedsContext.test( selectors ) ) { +- for ( ; i < l; i++ ) { +- for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { +- +- // Always skip document fragments +- if ( cur.nodeType < 11 && ( targets ? +- targets.index( cur ) > -1 : +- +- // Don't pass non-elements to Sizzle +- cur.nodeType === 1 && +- jQuery.find.matchesSelector( cur, selectors ) ) ) { +- +- matched.push( cur ); +- break; +- } +- } +- } +- } +- +- return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); +- }, +- +- // Determine the position of an element within the set +- index: function( elem ) { +- +- // No argument, return index in parent +- if ( !elem ) { +- return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; +- } +- +- // Index in selector +- if ( typeof elem === "string" ) { +- return indexOf.call( jQuery( elem ), this[ 0 ] ); +- } +- +- // Locate the position of the desired element +- return indexOf.call( this, +- +- // If it receives a jQuery object, the first element is used +- elem.jquery ? elem[ 0 ] : elem +- ); +- }, +- +- add: function( selector, context ) { +- return this.pushStack( +- jQuery.uniqueSort( +- jQuery.merge( this.get(), jQuery( selector, context ) ) +- ) +- ); +- }, +- +- addBack: function( selector ) { +- return this.add( selector == null ? +- this.prevObject : this.prevObject.filter( selector ) +- ); +- } +-} ); +- +-function sibling( cur, dir ) { +- while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} +- return cur; +-} +- +-jQuery.each( { +- parent: function( elem ) { +- var parent = elem.parentNode; +- return parent && parent.nodeType !== 11 ? parent : null; +- }, +- parents: function( elem ) { +- return dir( elem, "parentNode" ); +- }, +- parentsUntil: function( elem, _i, until ) { +- return dir( elem, "parentNode", until ); +- }, +- next: function( elem ) { +- return sibling( elem, "nextSibling" ); +- }, +- prev: function( elem ) { +- return sibling( elem, "previousSibling" ); +- }, +- nextAll: function( elem ) { +- return dir( elem, "nextSibling" ); +- }, +- prevAll: function( elem ) { +- return dir( elem, "previousSibling" ); +- }, +- nextUntil: function( elem, _i, until ) { +- return dir( elem, "nextSibling", until ); +- }, +- prevUntil: function( elem, _i, until ) { +- return dir( elem, "previousSibling", until ); +- }, +- siblings: function( elem ) { +- return siblings( ( elem.parentNode || {} ).firstChild, elem ); +- }, +- children: function( elem ) { +- return siblings( elem.firstChild ); +- }, +- contents: function( elem ) { +- if ( elem.contentDocument != null && +- +- // Support: IE 11+ +- // <object> elements with no `data` attribute has an object +- // `contentDocument` with a `null` prototype. +- getProto( elem.contentDocument ) ) { +- +- return elem.contentDocument; +- } +- +- // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only +- // Treat the template element as a regular one in browsers that +- // don't support it. +- if ( nodeName( elem, "template" ) ) { +- elem = elem.content || elem; +- } +- +- return jQuery.merge( [], elem.childNodes ); +- } +-}, function( name, fn ) { +- jQuery.fn[ name ] = function( until, selector ) { +- var matched = jQuery.map( this, fn, until ); +- +- if ( name.slice( -5 ) !== "Until" ) { +- selector = until; +- } +- +- if ( selector && typeof selector === "string" ) { +- matched = jQuery.filter( selector, matched ); +- } +- +- if ( this.length > 1 ) { +- +- // Remove duplicates +- if ( !guaranteedUnique[ name ] ) { +- jQuery.uniqueSort( matched ); +- } +- +- // Reverse order for parents* and prev-derivatives +- if ( rparentsprev.test( name ) ) { +- matched.reverse(); +- } +- } +- +- return this.pushStack( matched ); +- }; +-} ); +-var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); +- +- +- +-// Convert String-formatted options into Object-formatted ones +-function createOptions( options ) { +- var object = {}; +- jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { +- object[ flag ] = true; +- } ); +- return object; +-} +- +-/* +- * Create a callback list using the following parameters: +- * +- * options: an optional list of space-separated options that will change how +- * the callback list behaves or a more traditional option object +- * +- * By default a callback list will act like an event callback list and can be +- * "fired" multiple times. +- * +- * Possible options: +- * +- * once: will ensure the callback list can only be fired once (like a Deferred) +- * +- * memory: will keep track of previous values and will call any callback added +- * after the list has been fired right away with the latest "memorized" +- * values (like a Deferred) +- * +- * unique: will ensure a callback can only be added once (no duplicate in the list) +- * +- * stopOnFalse: interrupt callings when a callback returns false +- * +- */ +-jQuery.Callbacks = function( options ) { +- +- // Convert options from String-formatted to Object-formatted if needed +- // (we check in cache first) +- options = typeof options === "string" ? +- createOptions( options ) : +- jQuery.extend( {}, options ); +- +- var // Flag to know if list is currently firing +- firing, +- +- // Last fire value for non-forgettable lists +- memory, +- +- // Flag to know if list was already fired +- fired, +- +- // Flag to prevent firing +- locked, +- +- // Actual callback list +- list = [], +- +- // Queue of execution data for repeatable lists +- queue = [], +- +- // Index of currently firing callback (modified by add/remove as needed) +- firingIndex = -1, +- +- // Fire callbacks +- fire = function() { +- +- // Enforce single-firing +- locked = locked || options.once; +- +- // Execute callbacks for all pending executions, +- // respecting firingIndex overrides and runtime changes +- fired = firing = true; +- for ( ; queue.length; firingIndex = -1 ) { +- memory = queue.shift(); +- while ( ++firingIndex < list.length ) { +- +- // Run callback and check for early termination +- if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && +- options.stopOnFalse ) { +- +- // Jump to end and forget the data so .add doesn't re-fire +- firingIndex = list.length; +- memory = false; +- } +- } +- } +- +- // Forget the data if we're done with it +- if ( !options.memory ) { +- memory = false; +- } +- +- firing = false; +- +- // Clean up if we're done firing for good +- if ( locked ) { +- +- // Keep an empty list if we have data for future add calls +- if ( memory ) { +- list = []; +- +- // Otherwise, this object is spent +- } else { +- list = ""; +- } +- } +- }, +- +- // Actual Callbacks object +- self = { +- +- // Add a callback or a collection of callbacks to the list +- add: function() { +- if ( list ) { +- +- // If we have memory from a past run, we should fire after adding +- if ( memory && !firing ) { +- firingIndex = list.length - 1; +- queue.push( memory ); +- } +- +- ( function add( args ) { +- jQuery.each( args, function( _, arg ) { +- if ( isFunction( arg ) ) { +- if ( !options.unique || !self.has( arg ) ) { +- list.push( arg ); +- } +- } else if ( arg && arg.length && toType( arg ) !== "string" ) { +- +- // Inspect recursively +- add( arg ); +- } +- } ); +- } )( arguments ); +- +- if ( memory && !firing ) { +- fire(); +- } +- } +- return this; +- }, +- +- // Remove a callback from the list +- remove: function() { +- jQuery.each( arguments, function( _, arg ) { +- var index; +- while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { +- list.splice( index, 1 ); +- +- // Handle firing indexes +- if ( index <= firingIndex ) { +- firingIndex--; +- } +- } +- } ); +- return this; +- }, +- +- // Check if a given callback is in the list. +- // If no argument is given, return whether or not list has callbacks attached. +- has: function( fn ) { +- return fn ? +- jQuery.inArray( fn, list ) > -1 : +- list.length > 0; +- }, +- +- // Remove all callbacks from the list +- empty: function() { +- if ( list ) { +- list = []; +- } +- return this; +- }, +- +- // Disable .fire and .add +- // Abort any current/pending executions +- // Clear all callbacks and values +- disable: function() { +- locked = queue = []; +- list = memory = ""; +- return this; +- }, +- disabled: function() { +- return !list; +- }, +- +- // Disable .fire +- // Also disable .add unless we have memory (since it would have no effect) +- // Abort any pending executions +- lock: function() { +- locked = queue = []; +- if ( !memory && !firing ) { +- list = memory = ""; +- } +- return this; +- }, +- locked: function() { +- return !!locked; +- }, +- +- // Call all callbacks with the given context and arguments +- fireWith: function( context, args ) { +- if ( !locked ) { +- args = args || []; +- args = [ context, args.slice ? args.slice() : args ]; +- queue.push( args ); +- if ( !firing ) { +- fire(); +- } +- } +- return this; +- }, +- +- // Call all the callbacks with the given arguments +- fire: function() { +- self.fireWith( this, arguments ); +- return this; +- }, +- +- // To know if the callbacks have already been called at least once +- fired: function() { +- return !!fired; +- } +- }; +- +- return self; +-}; +- +- +-function Identity( v ) { +- return v; +-} +-function Thrower( ex ) { +- throw ex; +-} +- +-function adoptValue( value, resolve, reject, noValue ) { +- var method; +- +- try { +- +- // Check for promise aspect first to privilege synchronous behavior +- if ( value && isFunction( ( method = value.promise ) ) ) { +- method.call( value ).done( resolve ).fail( reject ); +- +- // Other thenables +- } else if ( value && isFunction( ( method = value.then ) ) ) { +- method.call( value, resolve, reject ); +- +- // Other non-thenables +- } else { +- +- // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: +- // * false: [ value ].slice( 0 ) => resolve( value ) +- // * true: [ value ].slice( 1 ) => resolve() +- resolve.apply( undefined, [ value ].slice( noValue ) ); +- } +- +- // For Promises/A+, convert exceptions into rejections +- // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in +- // Deferred#then to conditionally suppress rejection. +- } catch ( value ) { +- +- // Support: Android 4.0 only +- // Strict mode functions invoked without .call/.apply get global-object context +- reject.apply( undefined, [ value ] ); +- } +-} +- +-jQuery.extend( { +- +- Deferred: function( func ) { +- var tuples = [ +- +- // action, add listener, callbacks, +- // ... .then handlers, argument index, [final state] +- [ "notify", "progress", jQuery.Callbacks( "memory" ), +- jQuery.Callbacks( "memory" ), 2 ], +- [ "resolve", "done", jQuery.Callbacks( "once memory" ), +- jQuery.Callbacks( "once memory" ), 0, "resolved" ], +- [ "reject", "fail", jQuery.Callbacks( "once memory" ), +- jQuery.Callbacks( "once memory" ), 1, "rejected" ] +- ], +- state = "pending", +- promise = { +- state: function() { +- return state; +- }, +- always: function() { +- deferred.done( arguments ).fail( arguments ); +- return this; +- }, +- "catch": function( fn ) { +- return promise.then( null, fn ); +- }, +- +- // Keep pipe for back-compat +- pipe: function( /* fnDone, fnFail, fnProgress */ ) { +- var fns = arguments; +- +- return jQuery.Deferred( function( newDefer ) { +- jQuery.each( tuples, function( _i, tuple ) { +- +- // Map tuples (progress, done, fail) to arguments (done, fail, progress) +- var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; +- +- // deferred.progress(function() { bind to newDefer or newDefer.notify }) +- // deferred.done(function() { bind to newDefer or newDefer.resolve }) +- // deferred.fail(function() { bind to newDefer or newDefer.reject }) +- deferred[ tuple[ 1 ] ]( function() { +- var returned = fn && fn.apply( this, arguments ); +- if ( returned && isFunction( returned.promise ) ) { +- returned.promise() +- .progress( newDefer.notify ) +- .done( newDefer.resolve ) +- .fail( newDefer.reject ); +- } else { +- newDefer[ tuple[ 0 ] + "With" ]( +- this, +- fn ? [ returned ] : arguments +- ); +- } +- } ); +- } ); +- fns = null; +- } ).promise(); +- }, +- then: function( onFulfilled, onRejected, onProgress ) { +- var maxDepth = 0; +- function resolve( depth, deferred, handler, special ) { +- return function() { +- var that = this, +- args = arguments, +- mightThrow = function() { +- var returned, then; +- +- // Support: Promises/A+ section 2.3.3.3.3 +- // https://promisesaplus.com/#point-59 +- // Ignore double-resolution attempts +- if ( depth < maxDepth ) { +- return; +- } +- +- returned = handler.apply( that, args ); +- +- // Support: Promises/A+ section 2.3.1 +- // https://promisesaplus.com/#point-48 +- if ( returned === deferred.promise() ) { +- throw new TypeError( "Thenable self-resolution" ); +- } +- +- // Support: Promises/A+ sections 2.3.3.1, 3.5 +- // https://promisesaplus.com/#point-54 +- // https://promisesaplus.com/#point-75 +- // Retrieve `then` only once +- then = returned && +- +- // Support: Promises/A+ section 2.3.4 +- // https://promisesaplus.com/#point-64 +- // Only check objects and functions for thenability +- ( typeof returned === "object" || +- typeof returned === "function" ) && +- returned.then; +- +- // Handle a returned thenable +- if ( isFunction( then ) ) { +- +- // Special processors (notify) just wait for resolution +- if ( special ) { +- then.call( +- returned, +- resolve( maxDepth, deferred, Identity, special ), +- resolve( maxDepth, deferred, Thrower, special ) +- ); +- +- // Normal processors (resolve) also hook into progress +- } else { +- +- // ...and disregard older resolution values +- maxDepth++; +- +- then.call( +- returned, +- resolve( maxDepth, deferred, Identity, special ), +- resolve( maxDepth, deferred, Thrower, special ), +- resolve( maxDepth, deferred, Identity, +- deferred.notifyWith ) +- ); +- } +- +- // Handle all other returned values +- } else { +- +- // Only substitute handlers pass on context +- // and multiple values (non-spec behavior) +- if ( handler !== Identity ) { +- that = undefined; +- args = [ returned ]; +- } +- +- // Process the value(s) +- // Default process is resolve +- ( special || deferred.resolveWith )( that, args ); +- } +- }, +- +- // Only normal processors (resolve) catch and reject exceptions +- process = special ? +- mightThrow : +- function() { +- try { +- mightThrow(); +- } catch ( e ) { +- +- if ( jQuery.Deferred.exceptionHook ) { +- jQuery.Deferred.exceptionHook( e, +- process.stackTrace ); +- } +- +- // Support: Promises/A+ section 2.3.3.3.4.1 +- // https://promisesaplus.com/#point-61 +- // Ignore post-resolution exceptions +- if ( depth + 1 >= maxDepth ) { +- +- // Only substitute handlers pass on context +- // and multiple values (non-spec behavior) +- if ( handler !== Thrower ) { +- that = undefined; +- args = [ e ]; +- } +- +- deferred.rejectWith( that, args ); +- } +- } +- }; +- +- // Support: Promises/A+ section 2.3.3.3.1 +- // https://promisesaplus.com/#point-57 +- // Re-resolve promises immediately to dodge false rejection from +- // subsequent errors +- if ( depth ) { +- process(); +- } else { +- +- // Call an optional hook to record the stack, in case of exception +- // since it's otherwise lost when execution goes async +- if ( jQuery.Deferred.getStackHook ) { +- process.stackTrace = jQuery.Deferred.getStackHook(); +- } +- window.setTimeout( process ); +- } +- }; +- } +- +- return jQuery.Deferred( function( newDefer ) { +- +- // progress_handlers.add( ... ) +- tuples[ 0 ][ 3 ].add( +- resolve( +- 0, +- newDefer, +- isFunction( onProgress ) ? +- onProgress : +- Identity, +- newDefer.notifyWith +- ) +- ); +- +- // fulfilled_handlers.add( ... ) +- tuples[ 1 ][ 3 ].add( +- resolve( +- 0, +- newDefer, +- isFunction( onFulfilled ) ? +- onFulfilled : +- Identity +- ) +- ); +- +- // rejected_handlers.add( ... ) +- tuples[ 2 ][ 3 ].add( +- resolve( +- 0, +- newDefer, +- isFunction( onRejected ) ? +- onRejected : +- Thrower +- ) +- ); +- } ).promise(); +- }, +- +- // Get a promise for this deferred +- // If obj is provided, the promise aspect is added to the object +- promise: function( obj ) { +- return obj != null ? jQuery.extend( obj, promise ) : promise; +- } +- }, +- deferred = {}; +- +- // Add list-specific methods +- jQuery.each( tuples, function( i, tuple ) { +- var list = tuple[ 2 ], +- stateString = tuple[ 5 ]; +- +- // promise.progress = list.add +- // promise.done = list.add +- // promise.fail = list.add +- promise[ tuple[ 1 ] ] = list.add; +- +- // Handle state +- if ( stateString ) { +- list.add( +- function() { +- +- // state = "resolved" (i.e., fulfilled) +- // state = "rejected" +- state = stateString; +- }, +- +- // rejected_callbacks.disable +- // fulfilled_callbacks.disable +- tuples[ 3 - i ][ 2 ].disable, +- +- // rejected_handlers.disable +- // fulfilled_handlers.disable +- tuples[ 3 - i ][ 3 ].disable, +- +- // progress_callbacks.lock +- tuples[ 0 ][ 2 ].lock, +- +- // progress_handlers.lock +- tuples[ 0 ][ 3 ].lock +- ); +- } +- +- // progress_handlers.fire +- // fulfilled_handlers.fire +- // rejected_handlers.fire +- list.add( tuple[ 3 ].fire ); +- +- // deferred.notify = function() { deferred.notifyWith(...) } +- // deferred.resolve = function() { deferred.resolveWith(...) } +- // deferred.reject = function() { deferred.rejectWith(...) } +- deferred[ tuple[ 0 ] ] = function() { +- deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); +- return this; +- }; +- +- // deferred.notifyWith = list.fireWith +- // deferred.resolveWith = list.fireWith +- // deferred.rejectWith = list.fireWith +- deferred[ tuple[ 0 ] + "With" ] = list.fireWith; +- } ); +- +- // Make the deferred a promise +- promise.promise( deferred ); +- +- // Call given func if any +- if ( func ) { +- func.call( deferred, deferred ); +- } +- +- // All done! +- return deferred; +- }, +- +- // Deferred helper +- when: function( singleValue ) { +- var +- +- // count of uncompleted subordinates +- remaining = arguments.length, +- +- // count of unprocessed arguments +- i = remaining, +- +- // subordinate fulfillment data +- resolveContexts = Array( i ), +- resolveValues = slice.call( arguments ), +- +- // the master Deferred +- master = jQuery.Deferred(), +- +- // subordinate callback factory +- updateFunc = function( i ) { +- return function( value ) { +- resolveContexts[ i ] = this; +- resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; +- if ( !( --remaining ) ) { +- master.resolveWith( resolveContexts, resolveValues ); +- } +- }; +- }; +- +- // Single- and empty arguments are adopted like Promise.resolve +- if ( remaining <= 1 ) { +- adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, +- !remaining ); +- +- // Use .then() to unwrap secondary thenables (cf. gh-3000) +- if ( master.state() === "pending" || +- isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { +- +- return master.then(); +- } +- } +- +- // Multiple arguments are aggregated like Promise.all array elements +- while ( i-- ) { +- adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); +- } +- +- return master.promise(); +- } +-} ); +- +- +-// These usually indicate a programmer mistake during development, +-// warn about them ASAP rather than swallowing them by default. +-var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; +- +-jQuery.Deferred.exceptionHook = function( error, stack ) { +- +- // Support: IE 8 - 9 only +- // Console exists when dev tools are open, which can happen at any time +- if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { +- window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); +- } +-}; +- +- +- +- +-jQuery.readyException = function( error ) { +- window.setTimeout( function() { +- throw error; +- } ); +-}; +- +- +- +- +-// The deferred used on DOM ready +-var readyList = jQuery.Deferred(); +- +-jQuery.fn.ready = function( fn ) { +- +- readyList +- .then( fn ) +- +- // Wrap jQuery.readyException in a function so that the lookup +- // happens at the time of error handling instead of callback +- // registration. +- .catch( function( error ) { +- jQuery.readyException( error ); +- } ); +- +- return this; +-}; +- +-jQuery.extend( { +- +- // Is the DOM ready to be used? Set to true once it occurs. +- isReady: false, +- +- // A counter to track how many items to wait for before +- // the ready event fires. See #6781 +- readyWait: 1, +- +- // Handle when the DOM is ready +- ready: function( wait ) { +- +- // Abort if there are pending holds or we're already ready +- if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { +- return; +- } +- +- // Remember that the DOM is ready +- jQuery.isReady = true; +- +- // If a normal DOM Ready event fired, decrement, and wait if need be +- if ( wait !== true && --jQuery.readyWait > 0 ) { +- return; +- } +- +- // If there are functions bound, to execute +- readyList.resolveWith( document, [ jQuery ] ); +- } +-} ); +- +-jQuery.ready.then = readyList.then; +- +-// The ready event handler and self cleanup method +-function completed() { +- document.removeEventListener( "DOMContentLoaded", completed ); +- window.removeEventListener( "load", completed ); +- jQuery.ready(); +-} +- +-// Catch cases where $(document).ready() is called +-// after the browser event has already occurred. +-// Support: IE <=9 - 10 only +-// Older IE sometimes signals "interactive" too soon +-if ( document.readyState === "complete" || +- ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { +- +- // Handle it asynchronously to allow scripts the opportunity to delay ready +- window.setTimeout( jQuery.ready ); +- +-} else { +- +- // Use the handy event callback +- document.addEventListener( "DOMContentLoaded", completed ); +- +- // A fallback to window.onload, that will always work +- window.addEventListener( "load", completed ); +-} +- +- +- +- +-// Multifunctional method to get and set values of a collection +-// The value/s can optionally be executed if it's a function +-var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { +- var i = 0, +- len = elems.length, +- bulk = key == null; +- +- // Sets many values +- if ( toType( key ) === "object" ) { +- chainable = true; +- for ( i in key ) { +- access( elems, fn, i, key[ i ], true, emptyGet, raw ); +- } +- +- // Sets one value +- } else if ( value !== undefined ) { +- chainable = true; +- +- if ( !isFunction( value ) ) { +- raw = true; +- } +- +- if ( bulk ) { +- +- // Bulk operations run against the entire set +- if ( raw ) { +- fn.call( elems, value ); +- fn = null; +- +- // ...except when executing function values +- } else { +- bulk = fn; +- fn = function( elem, _key, value ) { +- return bulk.call( jQuery( elem ), value ); +- }; +- } +- } +- +- if ( fn ) { +- for ( ; i < len; i++ ) { +- fn( +- elems[ i ], key, raw ? +- value : +- value.call( elems[ i ], i, fn( elems[ i ], key ) ) +- ); +- } +- } +- } +- +- if ( chainable ) { +- return elems; +- } +- +- // Gets +- if ( bulk ) { +- return fn.call( elems ); +- } +- +- return len ? fn( elems[ 0 ], key ) : emptyGet; +-}; +- +- +-// Matches dashed string for camelizing +-var rmsPrefix = /^-ms-/, +- rdashAlpha = /-([a-z])/g; +- +-// Used by camelCase as callback to replace() +-function fcamelCase( _all, letter ) { +- return letter.toUpperCase(); +-} +- +-// Convert dashed to camelCase; used by the css and data modules +-// Support: IE <=9 - 11, Edge 12 - 15 +-// Microsoft forgot to hump their vendor prefix (#9572) +-function camelCase( string ) { +- return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +-} +-var acceptData = function( owner ) { +- +- // Accepts only: +- // - Node +- // - Node.ELEMENT_NODE +- // - Node.DOCUMENT_NODE +- // - Object +- // - Any +- return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +-}; +- +- +- +- +-function Data() { +- this.expando = jQuery.expando + Data.uid++; +-} +- +-Data.uid = 1; +- +-Data.prototype = { +- +- cache: function( owner ) { +- +- // Check if the owner object already has a cache +- var value = owner[ this.expando ]; +- +- // If not, create one +- if ( !value ) { +- value = {}; +- +- // We can accept data for non-element nodes in modern browsers, +- // but we should not, see #8335. +- // Always return an empty object. +- if ( acceptData( owner ) ) { +- +- // If it is a node unlikely to be stringify-ed or looped over +- // use plain assignment +- if ( owner.nodeType ) { +- owner[ this.expando ] = value; +- +- // Otherwise secure it in a non-enumerable property +- // configurable must be true to allow the property to be +- // deleted when data is removed +- } else { +- Object.defineProperty( owner, this.expando, { +- value: value, +- configurable: true +- } ); +- } +- } +- } +- +- return value; +- }, +- set: function( owner, data, value ) { +- var prop, +- cache = this.cache( owner ); +- +- // Handle: [ owner, key, value ] args +- // Always use camelCase key (gh-2257) +- if ( typeof data === "string" ) { +- cache[ camelCase( data ) ] = value; +- +- // Handle: [ owner, { properties } ] args +- } else { +- +- // Copy the properties one-by-one to the cache object +- for ( prop in data ) { +- cache[ camelCase( prop ) ] = data[ prop ]; +- } +- } +- return cache; +- }, +- get: function( owner, key ) { +- return key === undefined ? +- this.cache( owner ) : +- +- // Always use camelCase key (gh-2257) +- owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; +- }, +- access: function( owner, key, value ) { +- +- // In cases where either: +- // +- // 1. No key was specified +- // 2. A string key was specified, but no value provided +- // +- // Take the "read" path and allow the get method to determine +- // which value to return, respectively either: +- // +- // 1. The entire cache object +- // 2. The data stored at the key +- // +- if ( key === undefined || +- ( ( key && typeof key === "string" ) && value === undefined ) ) { +- +- return this.get( owner, key ); +- } +- +- // When the key is not a string, or both a key and value +- // are specified, set or extend (existing objects) with either: +- // +- // 1. An object of properties +- // 2. A key and value +- // +- this.set( owner, key, value ); +- +- // Since the "set" path can have two possible entry points +- // return the expected data based on which path was taken[*] +- return value !== undefined ? value : key; +- }, +- remove: function( owner, key ) { +- var i, +- cache = owner[ this.expando ]; +- +- if ( cache === undefined ) { +- return; +- } +- +- if ( key !== undefined ) { +- +- // Support array or space separated string of keys +- if ( Array.isArray( key ) ) { +- +- // If key is an array of keys... +- // We always set camelCase keys, so remove that. +- key = key.map( camelCase ); +- } else { +- key = camelCase( key ); +- +- // If a key with the spaces exists, use it. +- // Otherwise, create an array by matching non-whitespace +- key = key in cache ? +- [ key ] : +- ( key.match( rnothtmlwhite ) || [] ); +- } +- +- i = key.length; +- +- while ( i-- ) { +- delete cache[ key[ i ] ]; +- } +- } +- +- // Remove the expando if there's no more data +- if ( key === undefined || jQuery.isEmptyObject( cache ) ) { +- +- // Support: Chrome <=35 - 45 +- // Webkit & Blink performance suffers when deleting properties +- // from DOM nodes, so set to undefined instead +- // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) +- if ( owner.nodeType ) { +- owner[ this.expando ] = undefined; +- } else { +- delete owner[ this.expando ]; +- } +- } +- }, +- hasData: function( owner ) { +- var cache = owner[ this.expando ]; +- return cache !== undefined && !jQuery.isEmptyObject( cache ); +- } +-}; +-var dataPriv = new Data(); +- +-var dataUser = new Data(); +- +- +- +-// Implementation Summary +-// +-// 1. Enforce API surface and semantic compatibility with 1.9.x branch +-// 2. Improve the module's maintainability by reducing the storage +-// paths to a single mechanism. +-// 3. Use the same single mechanism to support "private" and "user" data. +-// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +-// 5. Avoid exposing implementation details on user objects (eg. expando properties) +-// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 +- +-var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, +- rmultiDash = /[A-Z]/g; +- +-function getData( data ) { +- if ( data === "true" ) { +- return true; +- } +- +- if ( data === "false" ) { +- return false; +- } +- +- if ( data === "null" ) { +- return null; +- } +- +- // Only convert to a number if it doesn't change the string +- if ( data === +data + "" ) { +- return +data; +- } +- +- if ( rbrace.test( data ) ) { +- return JSON.parse( data ); +- } +- +- return data; +-} +- +-function dataAttr( elem, key, data ) { +- var name; +- +- // If nothing was found internally, try to fetch any +- // data from the HTML5 data-* attribute +- if ( data === undefined && elem.nodeType === 1 ) { +- name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); +- data = elem.getAttribute( name ); +- +- if ( typeof data === "string" ) { +- try { +- data = getData( data ); +- } catch ( e ) {} +- +- // Make sure we set the data so it isn't changed later +- dataUser.set( elem, key, data ); +- } else { +- data = undefined; +- } +- } +- return data; +-} +- +-jQuery.extend( { +- hasData: function( elem ) { +- return dataUser.hasData( elem ) || dataPriv.hasData( elem ); +- }, +- +- data: function( elem, name, data ) { +- return dataUser.access( elem, name, data ); +- }, +- +- removeData: function( elem, name ) { +- dataUser.remove( elem, name ); +- }, +- +- // TODO: Now that all calls to _data and _removeData have been replaced +- // with direct calls to dataPriv methods, these can be deprecated. +- _data: function( elem, name, data ) { +- return dataPriv.access( elem, name, data ); +- }, +- +- _removeData: function( elem, name ) { +- dataPriv.remove( elem, name ); +- } +-} ); +- +-jQuery.fn.extend( { +- data: function( key, value ) { +- var i, name, data, +- elem = this[ 0 ], +- attrs = elem && elem.attributes; +- +- // Gets all values +- if ( key === undefined ) { +- if ( this.length ) { +- data = dataUser.get( elem ); +- +- if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { +- i = attrs.length; +- while ( i-- ) { +- +- // Support: IE 11 only +- // The attrs elements can be null (#14894) +- if ( attrs[ i ] ) { +- name = attrs[ i ].name; +- if ( name.indexOf( "data-" ) === 0 ) { +- name = camelCase( name.slice( 5 ) ); +- dataAttr( elem, name, data[ name ] ); +- } +- } +- } +- dataPriv.set( elem, "hasDataAttrs", true ); +- } +- } +- +- return data; +- } +- +- // Sets multiple values +- if ( typeof key === "object" ) { +- return this.each( function() { +- dataUser.set( this, key ); +- } ); +- } +- +- return access( this, function( value ) { +- var data; +- +- // The calling jQuery object (element matches) is not empty +- // (and therefore has an element appears at this[ 0 ]) and the +- // `value` parameter was not undefined. An empty jQuery object +- // will result in `undefined` for elem = this[ 0 ] which will +- // throw an exception if an attempt to read a data cache is made. +- if ( elem && value === undefined ) { +- +- // Attempt to get data from the cache +- // The key will always be camelCased in Data +- data = dataUser.get( elem, key ); +- if ( data !== undefined ) { +- return data; +- } +- +- // Attempt to "discover" the data in +- // HTML5 custom data-* attrs +- data = dataAttr( elem, key ); +- if ( data !== undefined ) { +- return data; +- } +- +- // We tried really hard, but the data doesn't exist. +- return; +- } +- +- // Set the data... +- this.each( function() { +- +- // We always store the camelCased key +- dataUser.set( this, key, value ); +- } ); +- }, null, value, arguments.length > 1, null, true ); +- }, +- +- removeData: function( key ) { +- return this.each( function() { +- dataUser.remove( this, key ); +- } ); +- } +-} ); +- +- +-jQuery.extend( { +- queue: function( elem, type, data ) { +- var queue; +- +- if ( elem ) { +- type = ( type || "fx" ) + "queue"; +- queue = dataPriv.get( elem, type ); +- +- // Speed up dequeue by getting out quickly if this is just a lookup +- if ( data ) { +- if ( !queue || Array.isArray( data ) ) { +- queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); +- } else { +- queue.push( data ); +- } +- } +- return queue || []; +- } +- }, +- +- dequeue: function( elem, type ) { +- type = type || "fx"; +- +- var queue = jQuery.queue( elem, type ), +- startLength = queue.length, +- fn = queue.shift(), +- hooks = jQuery._queueHooks( elem, type ), +- next = function() { +- jQuery.dequeue( elem, type ); +- }; +- +- // If the fx queue is dequeued, always remove the progress sentinel +- if ( fn === "inprogress" ) { +- fn = queue.shift(); +- startLength--; +- } +- +- if ( fn ) { +- +- // Add a progress sentinel to prevent the fx queue from being +- // automatically dequeued +- if ( type === "fx" ) { +- queue.unshift( "inprogress" ); +- } +- +- // Clear up the last queue stop function +- delete hooks.stop; +- fn.call( elem, next, hooks ); +- } +- +- if ( !startLength && hooks ) { +- hooks.empty.fire(); +- } +- }, +- +- // Not public - generate a queueHooks object, or return the current one +- _queueHooks: function( elem, type ) { +- var key = type + "queueHooks"; +- return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { +- empty: jQuery.Callbacks( "once memory" ).add( function() { +- dataPriv.remove( elem, [ type + "queue", key ] ); +- } ) +- } ); +- } +-} ); +- +-jQuery.fn.extend( { +- queue: function( type, data ) { +- var setter = 2; +- +- if ( typeof type !== "string" ) { +- data = type; +- type = "fx"; +- setter--; +- } +- +- if ( arguments.length < setter ) { +- return jQuery.queue( this[ 0 ], type ); +- } +- +- return data === undefined ? +- this : +- this.each( function() { +- var queue = jQuery.queue( this, type, data ); +- +- // Ensure a hooks for this queue +- jQuery._queueHooks( this, type ); +- +- if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { +- jQuery.dequeue( this, type ); +- } +- } ); +- }, +- dequeue: function( type ) { +- return this.each( function() { +- jQuery.dequeue( this, type ); +- } ); +- }, +- clearQueue: function( type ) { +- return this.queue( type || "fx", [] ); +- }, +- +- // Get a promise resolved when queues of a certain type +- // are emptied (fx is the type by default) +- promise: function( type, obj ) { +- var tmp, +- count = 1, +- defer = jQuery.Deferred(), +- elements = this, +- i = this.length, +- resolve = function() { +- if ( !( --count ) ) { +- defer.resolveWith( elements, [ elements ] ); +- } +- }; +- +- if ( typeof type !== "string" ) { +- obj = type; +- type = undefined; +- } +- type = type || "fx"; +- +- while ( i-- ) { +- tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); +- if ( tmp && tmp.empty ) { +- count++; +- tmp.empty.add( resolve ); +- } +- } +- resolve(); +- return defer.promise( obj ); +- } +-} ); +-var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; +- +-var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); +- +- +-var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; +- +-var documentElement = document.documentElement; +- +- +- +- var isAttached = function( elem ) { +- return jQuery.contains( elem.ownerDocument, elem ); +- }, +- composed = { composed: true }; +- +- // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only +- // Check attachment across shadow DOM boundaries when possible (gh-3504) +- // Support: iOS 10.0-10.2 only +- // Early iOS 10 versions support `attachShadow` but not `getRootNode`, +- // leading to errors. We need to check for `getRootNode`. +- if ( documentElement.getRootNode ) { +- isAttached = function( elem ) { +- return jQuery.contains( elem.ownerDocument, elem ) || +- elem.getRootNode( composed ) === elem.ownerDocument; +- }; +- } +-var isHiddenWithinTree = function( elem, el ) { +- +- // isHiddenWithinTree might be called from jQuery#filter function; +- // in that case, element will be second argument +- elem = el || elem; +- +- // Inline style trumps all +- return elem.style.display === "none" || +- elem.style.display === "" && +- +- // Otherwise, check computed style +- // Support: Firefox <=43 - 45 +- // Disconnected elements can have computed display: none, so first confirm that elem is +- // in the document. +- isAttached( elem ) && +- +- jQuery.css( elem, "display" ) === "none"; +- }; +- +- +- +-function adjustCSS( elem, prop, valueParts, tween ) { +- var adjusted, scale, +- maxIterations = 20, +- currentValue = tween ? +- function() { +- return tween.cur(); +- } : +- function() { +- return jQuery.css( elem, prop, "" ); +- }, +- initial = currentValue(), +- unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), +- +- // Starting value computation is required for potential unit mismatches +- initialInUnit = elem.nodeType && +- ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && +- rcssNum.exec( jQuery.css( elem, prop ) ); +- +- if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { +- +- // Support: Firefox <=54 +- // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) +- initial = initial / 2; +- +- // Trust units reported by jQuery.css +- unit = unit || initialInUnit[ 3 ]; +- +- // Iteratively approximate from a nonzero starting point +- initialInUnit = +initial || 1; +- +- while ( maxIterations-- ) { +- +- // Evaluate and update our best guess (doubling guesses that zero out). +- // Finish if the scale equals or crosses 1 (making the old*new product non-positive). +- jQuery.style( elem, prop, initialInUnit + unit ); +- if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { +- maxIterations = 0; +- } +- initialInUnit = initialInUnit / scale; +- +- } +- +- initialInUnit = initialInUnit * 2; +- jQuery.style( elem, prop, initialInUnit + unit ); +- +- // Make sure we update the tween properties later on +- valueParts = valueParts || []; +- } +- +- if ( valueParts ) { +- initialInUnit = +initialInUnit || +initial || 0; +- +- // Apply relative offset (+=/-=) if specified +- adjusted = valueParts[ 1 ] ? +- initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : +- +valueParts[ 2 ]; +- if ( tween ) { +- tween.unit = unit; +- tween.start = initialInUnit; +- tween.end = adjusted; +- } +- } +- return adjusted; +-} +- +- +-var defaultDisplayMap = {}; +- +-function getDefaultDisplay( elem ) { +- var temp, +- doc = elem.ownerDocument, +- nodeName = elem.nodeName, +- display = defaultDisplayMap[ nodeName ]; +- +- if ( display ) { +- return display; +- } +- +- temp = doc.body.appendChild( doc.createElement( nodeName ) ); +- display = jQuery.css( temp, "display" ); +- +- temp.parentNode.removeChild( temp ); +- +- if ( display === "none" ) { +- display = "block"; +- } +- defaultDisplayMap[ nodeName ] = display; +- +- return display; +-} +- +-function showHide( elements, show ) { +- var display, elem, +- values = [], +- index = 0, +- length = elements.length; +- +- // Determine new display value for elements that need to change +- for ( ; index < length; index++ ) { +- elem = elements[ index ]; +- if ( !elem.style ) { +- continue; +- } +- +- display = elem.style.display; +- if ( show ) { +- +- // Since we force visibility upon cascade-hidden elements, an immediate (and slow) +- // check is required in this first loop unless we have a nonempty display value (either +- // inline or about-to-be-restored) +- if ( display === "none" ) { +- values[ index ] = dataPriv.get( elem, "display" ) || null; +- if ( !values[ index ] ) { +- elem.style.display = ""; +- } +- } +- if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { +- values[ index ] = getDefaultDisplay( elem ); +- } +- } else { +- if ( display !== "none" ) { +- values[ index ] = "none"; +- +- // Remember what we're overwriting +- dataPriv.set( elem, "display", display ); +- } +- } +- } +- +- // Set the display of the elements in a second loop to avoid constant reflow +- for ( index = 0; index < length; index++ ) { +- if ( values[ index ] != null ) { +- elements[ index ].style.display = values[ index ]; +- } +- } +- +- return elements; +-} +- +-jQuery.fn.extend( { +- show: function() { +- return showHide( this, true ); +- }, +- hide: function() { +- return showHide( this ); +- }, +- toggle: function( state ) { +- if ( typeof state === "boolean" ) { +- return state ? this.show() : this.hide(); +- } +- +- return this.each( function() { +- if ( isHiddenWithinTree( this ) ) { +- jQuery( this ).show(); +- } else { +- jQuery( this ).hide(); +- } +- } ); +- } +-} ); +-var rcheckableType = ( /^(?:checkbox|radio)$/i ); +- +-var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); +- +-var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); +- +- +- +-( function() { +- var fragment = document.createDocumentFragment(), +- div = fragment.appendChild( document.createElement( "div" ) ), +- input = document.createElement( "input" ); +- +- // Support: Android 4.0 - 4.3 only +- // Check state lost if the name is set (#11217) +- // Support: Windows Web Apps (WWA) +- // `name` and `type` must use .setAttribute for WWA (#14901) +- input.setAttribute( "type", "radio" ); +- input.setAttribute( "checked", "checked" ); +- input.setAttribute( "name", "t" ); +- +- div.appendChild( input ); +- +- // Support: Android <=4.1 only +- // Older WebKit doesn't clone checked state correctly in fragments +- support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; +- +- // Support: IE <=11 only +- // Make sure textarea (and checkbox) defaultValue is properly cloned +- div.innerHTML = "<textarea>x</textarea>"; +- support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +- +- // Support: IE <=9 only +- // IE <=9 replaces <option> tags with their contents when inserted outside of +- // the select element. +- div.innerHTML = "<option></option>"; +- support.option = !!div.lastChild; +-} )(); +- +- +-// We have to close these tags to support XHTML (#13200) +-var wrapMap = { +- +- // XHTML parsers do not magically insert elements in the +- // same way that tag soup parsers do. So we cannot shorten +- // this by omitting <tbody> or other required elements. +- thead: [ 1, "<table>", "</table>" ], +- col: [ 2, "<table><colgroup>", "</colgroup></table>" ], +- tr: [ 2, "<table><tbody>", "</tbody></table>" ], +- td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], +- +- _default: [ 0, "", "" ] +-}; +- +-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +-wrapMap.th = wrapMap.td; +- +-// Support: IE <=9 only +-if ( !support.option ) { +- wrapMap.optgroup = wrapMap.option = [ 1, "<select multiple='multiple'>", "</select>" ]; +-} +- +- +-function getAll( context, tag ) { +- +- // Support: IE <=9 - 11 only +- // Use typeof to avoid zero-argument method invocation on host objects (#15151) +- var ret; +- +- if ( typeof context.getElementsByTagName !== "undefined" ) { +- ret = context.getElementsByTagName( tag || "*" ); +- +- } else if ( typeof context.querySelectorAll !== "undefined" ) { +- ret = context.querySelectorAll( tag || "*" ); +- +- } else { +- ret = []; +- } +- +- if ( tag === undefined || tag && nodeName( context, tag ) ) { +- return jQuery.merge( [ context ], ret ); +- } +- +- return ret; +-} +- +- +-// Mark scripts as having already been evaluated +-function setGlobalEval( elems, refElements ) { +- var i = 0, +- l = elems.length; +- +- for ( ; i < l; i++ ) { +- dataPriv.set( +- elems[ i ], +- "globalEval", +- !refElements || dataPriv.get( refElements[ i ], "globalEval" ) +- ); +- } +-} +- +- +-var rhtml = /<|&#?\w+;/; +- +-function buildFragment( elems, context, scripts, selection, ignored ) { +- var elem, tmp, tag, wrap, attached, j, +- fragment = context.createDocumentFragment(), +- nodes = [], +- i = 0, +- l = elems.length; +- +- for ( ; i < l; i++ ) { +- elem = elems[ i ]; +- +- if ( elem || elem === 0 ) { +- +- // Add nodes directly +- if ( toType( elem ) === "object" ) { +- +- // Support: Android <=4.0 only, PhantomJS 1 only +- // push.apply(_, arraylike) throws on ancient WebKit +- jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); +- +- // Convert non-html into a text node +- } else if ( !rhtml.test( elem ) ) { +- nodes.push( context.createTextNode( elem ) ); +- +- // Convert html into DOM nodes +- } else { +- tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); +- +- // Deserialize a standard representation +- tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); +- wrap = wrapMap[ tag ] || wrapMap._default; +- tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; +- +- // Descend through wrappers to the right content +- j = wrap[ 0 ]; +- while ( j-- ) { +- tmp = tmp.lastChild; +- } +- +- // Support: Android <=4.0 only, PhantomJS 1 only +- // push.apply(_, arraylike) throws on ancient WebKit +- jQuery.merge( nodes, tmp.childNodes ); +- +- // Remember the top-level container +- tmp = fragment.firstChild; +- +- // Ensure the created nodes are orphaned (#12392) +- tmp.textContent = ""; +- } +- } +- } +- +- // Remove wrapper from fragment +- fragment.textContent = ""; +- +- i = 0; +- while ( ( elem = nodes[ i++ ] ) ) { +- +- // Skip elements already in the context collection (trac-4087) +- if ( selection && jQuery.inArray( elem, selection ) > -1 ) { +- if ( ignored ) { +- ignored.push( elem ); +- } +- continue; +- } +- +- attached = isAttached( elem ); +- +- // Append to fragment +- tmp = getAll( fragment.appendChild( elem ), "script" ); +- +- // Preserve script evaluation history +- if ( attached ) { +- setGlobalEval( tmp ); +- } +- +- // Capture executables +- if ( scripts ) { +- j = 0; +- while ( ( elem = tmp[ j++ ] ) ) { +- if ( rscriptType.test( elem.type || "" ) ) { +- scripts.push( elem ); +- } +- } +- } +- } +- +- return fragment; +-} +- +- +-var +- rkeyEvent = /^key/, +- rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, +- rtypenamespace = /^([^.]*)(?:\.(.+)|)/; +- +-function returnTrue() { +- return true; +-} +- +-function returnFalse() { +- return false; +-} +- +-// Support: IE <=9 - 11+ +-// focus() and blur() are asynchronous, except when they are no-op. +-// So expect focus to be synchronous when the element is already active, +-// and blur to be synchronous when the element is not already active. +-// (focus and blur are always synchronous in other supported browsers, +-// this just defines when we can count on it). +-function expectSync( elem, type ) { +- return ( elem === safeActiveElement() ) === ( type === "focus" ); +-} +- +-// Support: IE <=9 only +-// Accessing document.activeElement can throw unexpectedly +-// https://bugs.jquery.com/ticket/13393 +-function safeActiveElement() { +- try { +- return document.activeElement; +- } catch ( err ) { } +-} +- +-function on( elem, types, selector, data, fn, one ) { +- var origFn, type; +- +- // Types can be a map of types/handlers +- if ( typeof types === "object" ) { +- +- // ( types-Object, selector, data ) +- if ( typeof selector !== "string" ) { +- +- // ( types-Object, data ) +- data = data || selector; +- selector = undefined; +- } +- for ( type in types ) { +- on( elem, type, selector, data, types[ type ], one ); +- } +- return elem; +- } +- +- if ( data == null && fn == null ) { +- +- // ( types, fn ) +- fn = selector; +- data = selector = undefined; +- } else if ( fn == null ) { +- if ( typeof selector === "string" ) { +- +- // ( types, selector, fn ) +- fn = data; +- data = undefined; +- } else { +- +- // ( types, data, fn ) +- fn = data; +- data = selector; +- selector = undefined; +- } +- } +- if ( fn === false ) { +- fn = returnFalse; +- } else if ( !fn ) { +- return elem; +- } +- +- if ( one === 1 ) { +- origFn = fn; +- fn = function( event ) { +- +- // Can use an empty set, since event contains the info +- jQuery().off( event ); +- return origFn.apply( this, arguments ); +- }; +- +- // Use same guid so caller can remove using origFn +- fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); +- } +- return elem.each( function() { +- jQuery.event.add( this, types, fn, data, selector ); +- } ); +-} +- +-/* +- * Helper functions for managing events -- not part of the public interface. +- * Props to Dean Edwards' addEvent library for many of the ideas. +- */ +-jQuery.event = { +- +- global: {}, +- +- add: function( elem, types, handler, data, selector ) { +- +- var handleObjIn, eventHandle, tmp, +- events, t, handleObj, +- special, handlers, type, namespaces, origType, +- elemData = dataPriv.get( elem ); +- +- // Only attach events to objects that accept data +- if ( !acceptData( elem ) ) { +- return; +- } +- +- // Caller can pass in an object of custom data in lieu of the handler +- if ( handler.handler ) { +- handleObjIn = handler; +- handler = handleObjIn.handler; +- selector = handleObjIn.selector; +- } +- +- // Ensure that invalid selectors throw exceptions at attach time +- // Evaluate against documentElement in case elem is a non-element node (e.g., document) +- if ( selector ) { +- jQuery.find.matchesSelector( documentElement, selector ); +- } +- +- // Make sure that the handler has a unique ID, used to find/remove it later +- if ( !handler.guid ) { +- handler.guid = jQuery.guid++; +- } +- +- // Init the element's event structure and main handler, if this is the first +- if ( !( events = elemData.events ) ) { +- events = elemData.events = Object.create( null ); +- } +- if ( !( eventHandle = elemData.handle ) ) { +- eventHandle = elemData.handle = function( e ) { +- +- // Discard the second event of a jQuery.event.trigger() and +- // when an event is called after a page has unloaded +- return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? +- jQuery.event.dispatch.apply( elem, arguments ) : undefined; +- }; +- } +- +- // Handle multiple events separated by a space +- types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; +- t = types.length; +- while ( t-- ) { +- tmp = rtypenamespace.exec( types[ t ] ) || []; +- type = origType = tmp[ 1 ]; +- namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); +- +- // There *must* be a type, no attaching namespace-only handlers +- if ( !type ) { +- continue; +- } +- +- // If event changes its type, use the special event handlers for the changed type +- special = jQuery.event.special[ type ] || {}; +- +- // If selector defined, determine special event api type, otherwise given type +- type = ( selector ? special.delegateType : special.bindType ) || type; +- +- // Update special based on newly reset type +- special = jQuery.event.special[ type ] || {}; +- +- // handleObj is passed to all event handlers +- handleObj = jQuery.extend( { +- type: type, +- origType: origType, +- data: data, +- handler: handler, +- guid: handler.guid, +- selector: selector, +- needsContext: selector && jQuery.expr.match.needsContext.test( selector ), +- namespace: namespaces.join( "." ) +- }, handleObjIn ); +- +- // Init the event handler queue if we're the first +- if ( !( handlers = events[ type ] ) ) { +- handlers = events[ type ] = []; +- handlers.delegateCount = 0; +- +- // Only use addEventListener if the special events handler returns false +- if ( !special.setup || +- special.setup.call( elem, data, namespaces, eventHandle ) === false ) { +- +- if ( elem.addEventListener ) { +- elem.addEventListener( type, eventHandle ); +- } +- } +- } +- +- if ( special.add ) { +- special.add.call( elem, handleObj ); +- +- if ( !handleObj.handler.guid ) { +- handleObj.handler.guid = handler.guid; +- } +- } +- +- // Add to the element's handler list, delegates in front +- if ( selector ) { +- handlers.splice( handlers.delegateCount++, 0, handleObj ); +- } else { +- handlers.push( handleObj ); +- } +- +- // Keep track of which events have ever been used, for event optimization +- jQuery.event.global[ type ] = true; +- } +- +- }, +- +- // Detach an event or set of events from an element +- remove: function( elem, types, handler, selector, mappedTypes ) { +- +- var j, origCount, tmp, +- events, t, handleObj, +- special, handlers, type, namespaces, origType, +- elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); +- +- if ( !elemData || !( events = elemData.events ) ) { +- return; +- } +- +- // Once for each type.namespace in types; type may be omitted +- types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; +- t = types.length; +- while ( t-- ) { +- tmp = rtypenamespace.exec( types[ t ] ) || []; +- type = origType = tmp[ 1 ]; +- namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); +- +- // Unbind all events (on this namespace, if provided) for the element +- if ( !type ) { +- for ( type in events ) { +- jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); +- } +- continue; +- } +- +- special = jQuery.event.special[ type ] || {}; +- type = ( selector ? special.delegateType : special.bindType ) || type; +- handlers = events[ type ] || []; +- tmp = tmp[ 2 ] && +- new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); +- +- // Remove matching events +- origCount = j = handlers.length; +- while ( j-- ) { +- handleObj = handlers[ j ]; +- +- if ( ( mappedTypes || origType === handleObj.origType ) && +- ( !handler || handler.guid === handleObj.guid ) && +- ( !tmp || tmp.test( handleObj.namespace ) ) && +- ( !selector || selector === handleObj.selector || +- selector === "**" && handleObj.selector ) ) { +- handlers.splice( j, 1 ); +- +- if ( handleObj.selector ) { +- handlers.delegateCount--; +- } +- if ( special.remove ) { +- special.remove.call( elem, handleObj ); +- } +- } +- } +- +- // Remove generic event handler if we removed something and no more handlers exist +- // (avoids potential for endless recursion during removal of special event handlers) +- if ( origCount && !handlers.length ) { +- if ( !special.teardown || +- special.teardown.call( elem, namespaces, elemData.handle ) === false ) { +- +- jQuery.removeEvent( elem, type, elemData.handle ); +- } +- +- delete events[ type ]; +- } +- } +- +- // Remove data and the expando if it's no longer used +- if ( jQuery.isEmptyObject( events ) ) { +- dataPriv.remove( elem, "handle events" ); +- } +- }, +- +- dispatch: function( nativeEvent ) { +- +- var i, j, ret, matched, handleObj, handlerQueue, +- args = new Array( arguments.length ), +- +- // Make a writable jQuery.Event from the native event object +- event = jQuery.event.fix( nativeEvent ), +- +- handlers = ( +- dataPriv.get( this, "events" ) || Object.create( null ) +- )[ event.type ] || [], +- special = jQuery.event.special[ event.type ] || {}; +- +- // Use the fix-ed jQuery.Event rather than the (read-only) native event +- args[ 0 ] = event; +- +- for ( i = 1; i < arguments.length; i++ ) { +- args[ i ] = arguments[ i ]; +- } +- +- event.delegateTarget = this; +- +- // Call the preDispatch hook for the mapped type, and let it bail if desired +- if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { +- return; +- } +- +- // Determine handlers +- handlerQueue = jQuery.event.handlers.call( this, event, handlers ); +- +- // Run delegates first; they may want to stop propagation beneath us +- i = 0; +- while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { +- event.currentTarget = matched.elem; +- +- j = 0; +- while ( ( handleObj = matched.handlers[ j++ ] ) && +- !event.isImmediatePropagationStopped() ) { +- +- // If the event is namespaced, then each handler is only invoked if it is +- // specially universal or its namespaces are a superset of the event's. +- if ( !event.rnamespace || handleObj.namespace === false || +- event.rnamespace.test( handleObj.namespace ) ) { +- +- event.handleObj = handleObj; +- event.data = handleObj.data; +- +- ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || +- handleObj.handler ).apply( matched.elem, args ); +- +- if ( ret !== undefined ) { +- if ( ( event.result = ret ) === false ) { +- event.preventDefault(); +- event.stopPropagation(); +- } +- } +- } +- } +- } +- +- // Call the postDispatch hook for the mapped type +- if ( special.postDispatch ) { +- special.postDispatch.call( this, event ); +- } +- +- return event.result; +- }, +- +- handlers: function( event, handlers ) { +- var i, handleObj, sel, matchedHandlers, matchedSelectors, +- handlerQueue = [], +- delegateCount = handlers.delegateCount, +- cur = event.target; +- +- // Find delegate handlers +- if ( delegateCount && +- +- // Support: IE <=9 +- // Black-hole SVG <use> instance trees (trac-13180) +- cur.nodeType && +- +- // Support: Firefox <=42 +- // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) +- // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click +- // Support: IE 11 only +- // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) +- !( event.type === "click" && event.button >= 1 ) ) { +- +- for ( ; cur !== this; cur = cur.parentNode || this ) { +- +- // Don't check non-elements (#13208) +- // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) +- if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { +- matchedHandlers = []; +- matchedSelectors = {}; +- for ( i = 0; i < delegateCount; i++ ) { +- handleObj = handlers[ i ]; +- +- // Don't conflict with Object.prototype properties (#13203) +- sel = handleObj.selector + " "; +- +- if ( matchedSelectors[ sel ] === undefined ) { +- matchedSelectors[ sel ] = handleObj.needsContext ? +- jQuery( sel, this ).index( cur ) > -1 : +- jQuery.find( sel, this, null, [ cur ] ).length; +- } +- if ( matchedSelectors[ sel ] ) { +- matchedHandlers.push( handleObj ); +- } +- } +- if ( matchedHandlers.length ) { +- handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); +- } +- } +- } +- } +- +- // Add the remaining (directly-bound) handlers +- cur = this; +- if ( delegateCount < handlers.length ) { +- handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); +- } +- +- return handlerQueue; +- }, +- +- addProp: function( name, hook ) { +- Object.defineProperty( jQuery.Event.prototype, name, { +- enumerable: true, +- configurable: true, +- +- get: isFunction( hook ) ? +- function() { +- if ( this.originalEvent ) { +- return hook( this.originalEvent ); +- } +- } : +- function() { +- if ( this.originalEvent ) { +- return this.originalEvent[ name ]; +- } +- }, +- +- set: function( value ) { +- Object.defineProperty( this, name, { +- enumerable: true, +- configurable: true, +- writable: true, +- value: value +- } ); +- } +- } ); +- }, +- +- fix: function( originalEvent ) { +- return originalEvent[ jQuery.expando ] ? +- originalEvent : +- new jQuery.Event( originalEvent ); +- }, +- +- special: { +- load: { +- +- // Prevent triggered image.load events from bubbling to window.load +- noBubble: true +- }, +- click: { +- +- // Utilize native event to ensure correct state for checkable inputs +- setup: function( data ) { +- +- // For mutual compressibility with _default, replace `this` access with a local var. +- // `|| data` is dead code meant only to preserve the variable through minification. +- var el = this || data; +- +- // Claim the first handler +- if ( rcheckableType.test( el.type ) && +- el.click && nodeName( el, "input" ) ) { +- +- // dataPriv.set( el, "click", ... ) +- leverageNative( el, "click", returnTrue ); +- } +- +- // Return false to allow normal processing in the caller +- return false; +- }, +- trigger: function( data ) { +- +- // For mutual compressibility with _default, replace `this` access with a local var. +- // `|| data` is dead code meant only to preserve the variable through minification. +- var el = this || data; +- +- // Force setup before triggering a click +- if ( rcheckableType.test( el.type ) && +- el.click && nodeName( el, "input" ) ) { +- +- leverageNative( el, "click" ); +- } +- +- // Return non-false to allow normal event-path propagation +- return true; +- }, +- +- // For cross-browser consistency, suppress native .click() on links +- // Also prevent it if we're currently inside a leveraged native-event stack +- _default: function( event ) { +- var target = event.target; +- return rcheckableType.test( target.type ) && +- target.click && nodeName( target, "input" ) && +- dataPriv.get( target, "click" ) || +- nodeName( target, "a" ); +- } +- }, +- +- beforeunload: { +- postDispatch: function( event ) { +- +- // Support: Firefox 20+ +- // Firefox doesn't alert if the returnValue field is not set. +- if ( event.result !== undefined && event.originalEvent ) { +- event.originalEvent.returnValue = event.result; +- } +- } +- } +- } +-}; +- +-// Ensure the presence of an event listener that handles manually-triggered +-// synthetic events by interrupting progress until reinvoked in response to +-// *native* events that it fires directly, ensuring that state changes have +-// already occurred before other listeners are invoked. +-function leverageNative( el, type, expectSync ) { +- +- // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add +- if ( !expectSync ) { +- if ( dataPriv.get( el, type ) === undefined ) { +- jQuery.event.add( el, type, returnTrue ); +- } +- return; +- } +- +- // Register the controller as a special universal handler for all event namespaces +- dataPriv.set( el, type, false ); +- jQuery.event.add( el, type, { +- namespace: false, +- handler: function( event ) { +- var notAsync, result, +- saved = dataPriv.get( this, type ); +- +- if ( ( event.isTrigger & 1 ) && this[ type ] ) { +- +- // Interrupt processing of the outer synthetic .trigger()ed event +- // Saved data should be false in such cases, but might be a leftover capture object +- // from an async native handler (gh-4350) +- if ( !saved.length ) { +- +- // Store arguments for use when handling the inner native event +- // There will always be at least one argument (an event object), so this array +- // will not be confused with a leftover capture object. +- saved = slice.call( arguments ); +- dataPriv.set( this, type, saved ); +- +- // Trigger the native event and capture its result +- // Support: IE <=9 - 11+ +- // focus() and blur() are asynchronous +- notAsync = expectSync( this, type ); +- this[ type ](); +- result = dataPriv.get( this, type ); +- if ( saved !== result || notAsync ) { +- dataPriv.set( this, type, false ); +- } else { +- result = {}; +- } +- if ( saved !== result ) { +- +- // Cancel the outer synthetic event +- event.stopImmediatePropagation(); +- event.preventDefault(); +- return result.value; +- } +- +- // If this is an inner synthetic event for an event with a bubbling surrogate +- // (focus or blur), assume that the surrogate already propagated from triggering the +- // native event and prevent that from happening again here. +- // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the +- // bubbling surrogate propagates *after* the non-bubbling base), but that seems +- // less bad than duplication. +- } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { +- event.stopPropagation(); +- } +- +- // If this is a native event triggered above, everything is now in order +- // Fire an inner synthetic event with the original arguments +- } else if ( saved.length ) { +- +- // ...and capture the result +- dataPriv.set( this, type, { +- value: jQuery.event.trigger( +- +- // Support: IE <=9 - 11+ +- // Extend with the prototype to reset the above stopImmediatePropagation() +- jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), +- saved.slice( 1 ), +- this +- ) +- } ); +- +- // Abort handling of the native event +- event.stopImmediatePropagation(); +- } +- } +- } ); +-} +- +-jQuery.removeEvent = function( elem, type, handle ) { +- +- // This "if" is needed for plain objects +- if ( elem.removeEventListener ) { +- elem.removeEventListener( type, handle ); +- } +-}; +- +-jQuery.Event = function( src, props ) { +- +- // Allow instantiation without the 'new' keyword +- if ( !( this instanceof jQuery.Event ) ) { +- return new jQuery.Event( src, props ); +- } +- +- // Event object +- if ( src && src.type ) { +- this.originalEvent = src; +- this.type = src.type; +- +- // Events bubbling up the document may have been marked as prevented +- // by a handler lower down the tree; reflect the correct value. +- this.isDefaultPrevented = src.defaultPrevented || +- src.defaultPrevented === undefined && +- +- // Support: Android <=2.3 only +- src.returnValue === false ? +- returnTrue : +- returnFalse; +- +- // Create target properties +- // Support: Safari <=6 - 7 only +- // Target should not be a text node (#504, #13143) +- this.target = ( src.target && src.target.nodeType === 3 ) ? +- src.target.parentNode : +- src.target; +- +- this.currentTarget = src.currentTarget; +- this.relatedTarget = src.relatedTarget; +- +- // Event type +- } else { +- this.type = src; +- } +- +- // Put explicitly provided properties onto the event object +- if ( props ) { +- jQuery.extend( this, props ); +- } +- +- // Create a timestamp if incoming event doesn't have one +- this.timeStamp = src && src.timeStamp || Date.now(); +- +- // Mark it as fixed +- this[ jQuery.expando ] = true; +-}; +- +-// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +-// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +-jQuery.Event.prototype = { +- constructor: jQuery.Event, +- isDefaultPrevented: returnFalse, +- isPropagationStopped: returnFalse, +- isImmediatePropagationStopped: returnFalse, +- isSimulated: false, +- +- preventDefault: function() { +- var e = this.originalEvent; +- +- this.isDefaultPrevented = returnTrue; +- +- if ( e && !this.isSimulated ) { +- e.preventDefault(); +- } +- }, +- stopPropagation: function() { +- var e = this.originalEvent; +- +- this.isPropagationStopped = returnTrue; +- +- if ( e && !this.isSimulated ) { +- e.stopPropagation(); +- } +- }, +- stopImmediatePropagation: function() { +- var e = this.originalEvent; +- +- this.isImmediatePropagationStopped = returnTrue; +- +- if ( e && !this.isSimulated ) { +- e.stopImmediatePropagation(); +- } +- +- this.stopPropagation(); +- } +-}; +- +-// Includes all common event props including KeyEvent and MouseEvent specific props +-jQuery.each( { +- altKey: true, +- bubbles: true, +- cancelable: true, +- changedTouches: true, +- ctrlKey: true, +- detail: true, +- eventPhase: true, +- metaKey: true, +- pageX: true, +- pageY: true, +- shiftKey: true, +- view: true, +- "char": true, +- code: true, +- charCode: true, +- key: true, +- keyCode: true, +- button: true, +- buttons: true, +- clientX: true, +- clientY: true, +- offsetX: true, +- offsetY: true, +- pointerId: true, +- pointerType: true, +- screenX: true, +- screenY: true, +- targetTouches: true, +- toElement: true, +- touches: true, +- +- which: function( event ) { +- var button = event.button; +- +- // Add which for key events +- if ( event.which == null && rkeyEvent.test( event.type ) ) { +- return event.charCode != null ? event.charCode : event.keyCode; +- } +- +- // Add which for click: 1 === left; 2 === middle; 3 === right +- if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { +- if ( button & 1 ) { +- return 1; +- } +- +- if ( button & 2 ) { +- return 3; +- } +- +- if ( button & 4 ) { +- return 2; +- } +- +- return 0; +- } +- +- return event.which; +- } +-}, jQuery.event.addProp ); +- +-jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { +- jQuery.event.special[ type ] = { +- +- // Utilize native event if possible so blur/focus sequence is correct +- setup: function() { +- +- // Claim the first handler +- // dataPriv.set( this, "focus", ... ) +- // dataPriv.set( this, "blur", ... ) +- leverageNative( this, type, expectSync ); +- +- // Return false to allow normal processing in the caller +- return false; +- }, +- trigger: function() { +- +- // Force setup before trigger +- leverageNative( this, type ); +- +- // Return non-false to allow normal event-path propagation +- return true; +- }, +- +- delegateType: delegateType +- }; +-} ); +- +-// Create mouseenter/leave events using mouseover/out and event-time checks +-// so that event delegation works in jQuery. +-// Do the same for pointerenter/pointerleave and pointerover/pointerout +-// +-// Support: Safari 7 only +-// Safari sends mouseenter too often; see: +-// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +-// for the description of the bug (it existed in older Chrome versions as well). +-jQuery.each( { +- mouseenter: "mouseover", +- mouseleave: "mouseout", +- pointerenter: "pointerover", +- pointerleave: "pointerout" +-}, function( orig, fix ) { +- jQuery.event.special[ orig ] = { +- delegateType: fix, +- bindType: fix, +- +- handle: function( event ) { +- var ret, +- target = this, +- related = event.relatedTarget, +- handleObj = event.handleObj; +- +- // For mouseenter/leave call the handler if related is outside the target. +- // NB: No relatedTarget if the mouse left/entered the browser window +- if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { +- event.type = handleObj.origType; +- ret = handleObj.handler.apply( this, arguments ); +- event.type = fix; +- } +- return ret; +- } +- }; +-} ); +- +-jQuery.fn.extend( { +- +- on: function( types, selector, data, fn ) { +- return on( this, types, selector, data, fn ); +- }, +- one: function( types, selector, data, fn ) { +- return on( this, types, selector, data, fn, 1 ); +- }, +- off: function( types, selector, fn ) { +- var handleObj, type; +- if ( types && types.preventDefault && types.handleObj ) { +- +- // ( event ) dispatched jQuery.Event +- handleObj = types.handleObj; +- jQuery( types.delegateTarget ).off( +- handleObj.namespace ? +- handleObj.origType + "." + handleObj.namespace : +- handleObj.origType, +- handleObj.selector, +- handleObj.handler +- ); +- return this; +- } +- if ( typeof types === "object" ) { +- +- // ( types-object [, selector] ) +- for ( type in types ) { +- this.off( type, selector, types[ type ] ); +- } +- return this; +- } +- if ( selector === false || typeof selector === "function" ) { +- +- // ( types [, fn] ) +- fn = selector; +- selector = undefined; +- } +- if ( fn === false ) { +- fn = returnFalse; +- } +- return this.each( function() { +- jQuery.event.remove( this, types, fn, selector ); +- } ); +- } +-} ); +- +- +-var +- +- // Support: IE <=10 - 11, Edge 12 - 13 only +- // In IE/Edge using regex groups here causes severe slowdowns. +- // See https://connect.microsoft.com/IE/feedback/details/1736512/ +- rnoInnerhtml = /<script|<style|<link/i, +- +- // checked="checked" or checked +- rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, +- rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g; +- +-// Prefer a tbody over its parent table for containing new rows +-function manipulationTarget( elem, content ) { +- if ( nodeName( elem, "table" ) && +- nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { +- +- return jQuery( elem ).children( "tbody" )[ 0 ] || elem; +- } +- +- return elem; +-} +- +-// Replace/restore the type attribute of script elements for safe DOM manipulation +-function disableScript( elem ) { +- elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; +- return elem; +-} +-function restoreScript( elem ) { +- if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { +- elem.type = elem.type.slice( 5 ); +- } else { +- elem.removeAttribute( "type" ); +- } +- +- return elem; +-} +- +-function cloneCopyEvent( src, dest ) { +- var i, l, type, pdataOld, udataOld, udataCur, events; +- +- if ( dest.nodeType !== 1 ) { +- return; +- } +- +- // 1. Copy private data: events, handlers, etc. +- if ( dataPriv.hasData( src ) ) { +- pdataOld = dataPriv.get( src ); +- events = pdataOld.events; +- +- if ( events ) { +- dataPriv.remove( dest, "handle events" ); +- +- for ( type in events ) { +- for ( i = 0, l = events[ type ].length; i < l; i++ ) { +- jQuery.event.add( dest, type, events[ type ][ i ] ); +- } +- } +- } +- } +- +- // 2. Copy user data +- if ( dataUser.hasData( src ) ) { +- udataOld = dataUser.access( src ); +- udataCur = jQuery.extend( {}, udataOld ); +- +- dataUser.set( dest, udataCur ); +- } +-} +- +-// Fix IE bugs, see support tests +-function fixInput( src, dest ) { +- var nodeName = dest.nodeName.toLowerCase(); +- +- // Fails to persist the checked state of a cloned checkbox or radio button. +- if ( nodeName === "input" && rcheckableType.test( src.type ) ) { +- dest.checked = src.checked; +- +- // Fails to return the selected option to the default selected state when cloning options +- } else if ( nodeName === "input" || nodeName === "textarea" ) { +- dest.defaultValue = src.defaultValue; +- } +-} +- +-function domManip( collection, args, callback, ignored ) { +- +- // Flatten any nested arrays +- args = flat( args ); +- +- var fragment, first, scripts, hasScripts, node, doc, +- i = 0, +- l = collection.length, +- iNoClone = l - 1, +- value = args[ 0 ], +- valueIsFunction = isFunction( value ); +- +- // We can't cloneNode fragments that contain checked, in WebKit +- if ( valueIsFunction || +- ( l > 1 && typeof value === "string" && +- !support.checkClone && rchecked.test( value ) ) ) { +- return collection.each( function( index ) { +- var self = collection.eq( index ); +- if ( valueIsFunction ) { +- args[ 0 ] = value.call( this, index, self.html() ); +- } +- domManip( self, args, callback, ignored ); +- } ); +- } +- +- if ( l ) { +- fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); +- first = fragment.firstChild; +- +- if ( fragment.childNodes.length === 1 ) { +- fragment = first; +- } +- +- // Require either new content or an interest in ignored elements to invoke the callback +- if ( first || ignored ) { +- scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); +- hasScripts = scripts.length; +- +- // Use the original fragment for the last item +- // instead of the first because it can end up +- // being emptied incorrectly in certain situations (#8070). +- for ( ; i < l; i++ ) { +- node = fragment; +- +- if ( i !== iNoClone ) { +- node = jQuery.clone( node, true, true ); +- +- // Keep references to cloned scripts for later restoration +- if ( hasScripts ) { +- +- // Support: Android <=4.0 only, PhantomJS 1 only +- // push.apply(_, arraylike) throws on ancient WebKit +- jQuery.merge( scripts, getAll( node, "script" ) ); +- } +- } +- +- callback.call( collection[ i ], node, i ); +- } +- +- if ( hasScripts ) { +- doc = scripts[ scripts.length - 1 ].ownerDocument; +- +- // Reenable scripts +- jQuery.map( scripts, restoreScript ); +- +- // Evaluate executable scripts on first document insertion +- for ( i = 0; i < hasScripts; i++ ) { +- node = scripts[ i ]; +- if ( rscriptType.test( node.type || "" ) && +- !dataPriv.access( node, "globalEval" ) && +- jQuery.contains( doc, node ) ) { +- +- if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { +- +- // Optional AJAX dependency, but won't run scripts if not present +- if ( jQuery._evalUrl && !node.noModule ) { +- jQuery._evalUrl( node.src, { +- nonce: node.nonce || node.getAttribute( "nonce" ) +- }, doc ); +- } +- } else { +- DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); +- } +- } +- } +- } +- } +- } +- +- return collection; +-} +- +-function remove( elem, selector, keepData ) { +- var node, +- nodes = selector ? jQuery.filter( selector, elem ) : elem, +- i = 0; +- +- for ( ; ( node = nodes[ i ] ) != null; i++ ) { +- if ( !keepData && node.nodeType === 1 ) { +- jQuery.cleanData( getAll( node ) ); +- } +- +- if ( node.parentNode ) { +- if ( keepData && isAttached( node ) ) { +- setGlobalEval( getAll( node, "script" ) ); +- } +- node.parentNode.removeChild( node ); +- } +- } +- +- return elem; +-} +- +-jQuery.extend( { +- htmlPrefilter: function( html ) { +- return html; +- }, +- +- clone: function( elem, dataAndEvents, deepDataAndEvents ) { +- var i, l, srcElements, destElements, +- clone = elem.cloneNode( true ), +- inPage = isAttached( elem ); +- +- // Fix IE cloning issues +- if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && +- !jQuery.isXMLDoc( elem ) ) { +- +- // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 +- destElements = getAll( clone ); +- srcElements = getAll( elem ); +- +- for ( i = 0, l = srcElements.length; i < l; i++ ) { +- fixInput( srcElements[ i ], destElements[ i ] ); +- } +- } +- +- // Copy the events from the original to the clone +- if ( dataAndEvents ) { +- if ( deepDataAndEvents ) { +- srcElements = srcElements || getAll( elem ); +- destElements = destElements || getAll( clone ); +- +- for ( i = 0, l = srcElements.length; i < l; i++ ) { +- cloneCopyEvent( srcElements[ i ], destElements[ i ] ); +- } +- } else { +- cloneCopyEvent( elem, clone ); +- } +- } +- +- // Preserve script evaluation history +- destElements = getAll( clone, "script" ); +- if ( destElements.length > 0 ) { +- setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); +- } +- +- // Return the cloned set +- return clone; +- }, +- +- cleanData: function( elems ) { +- var data, elem, type, +- special = jQuery.event.special, +- i = 0; +- +- for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { +- if ( acceptData( elem ) ) { +- if ( ( data = elem[ dataPriv.expando ] ) ) { +- if ( data.events ) { +- for ( type in data.events ) { +- if ( special[ type ] ) { +- jQuery.event.remove( elem, type ); +- +- // This is a shortcut to avoid jQuery.event.remove's overhead +- } else { +- jQuery.removeEvent( elem, type, data.handle ); +- } +- } +- } +- +- // Support: Chrome <=35 - 45+ +- // Assign undefined instead of using delete, see Data#remove +- elem[ dataPriv.expando ] = undefined; +- } +- if ( elem[ dataUser.expando ] ) { +- +- // Support: Chrome <=35 - 45+ +- // Assign undefined instead of using delete, see Data#remove +- elem[ dataUser.expando ] = undefined; +- } +- } +- } +- } +-} ); +- +-jQuery.fn.extend( { +- detach: function( selector ) { +- return remove( this, selector, true ); +- }, +- +- remove: function( selector ) { +- return remove( this, selector ); +- }, +- +- text: function( value ) { +- return access( this, function( value ) { +- return value === undefined ? +- jQuery.text( this ) : +- this.empty().each( function() { +- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { +- this.textContent = value; +- } +- } ); +- }, null, value, arguments.length ); +- }, +- +- append: function() { +- return domManip( this, arguments, function( elem ) { +- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { +- var target = manipulationTarget( this, elem ); +- target.appendChild( elem ); +- } +- } ); +- }, +- +- prepend: function() { +- return domManip( this, arguments, function( elem ) { +- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { +- var target = manipulationTarget( this, elem ); +- target.insertBefore( elem, target.firstChild ); +- } +- } ); +- }, +- +- before: function() { +- return domManip( this, arguments, function( elem ) { +- if ( this.parentNode ) { +- this.parentNode.insertBefore( elem, this ); +- } +- } ); +- }, +- +- after: function() { +- return domManip( this, arguments, function( elem ) { +- if ( this.parentNode ) { +- this.parentNode.insertBefore( elem, this.nextSibling ); +- } +- } ); +- }, +- +- empty: function() { +- var elem, +- i = 0; +- +- for ( ; ( elem = this[ i ] ) != null; i++ ) { +- if ( elem.nodeType === 1 ) { +- +- // Prevent memory leaks +- jQuery.cleanData( getAll( elem, false ) ); +- +- // Remove any remaining nodes +- elem.textContent = ""; +- } +- } +- +- return this; +- }, +- +- clone: function( dataAndEvents, deepDataAndEvents ) { +- dataAndEvents = dataAndEvents == null ? false : dataAndEvents; +- deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; +- +- return this.map( function() { +- return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); +- } ); +- }, +- +- html: function( value ) { +- return access( this, function( value ) { +- var elem = this[ 0 ] || {}, +- i = 0, +- l = this.length; +- +- if ( value === undefined && elem.nodeType === 1 ) { +- return elem.innerHTML; +- } +- +- // See if we can take a shortcut and just use innerHTML +- if ( typeof value === "string" && !rnoInnerhtml.test( value ) && +- !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { +- +- value = jQuery.htmlPrefilter( value ); +- +- try { +- for ( ; i < l; i++ ) { +- elem = this[ i ] || {}; +- +- // Remove element nodes and prevent memory leaks +- if ( elem.nodeType === 1 ) { +- jQuery.cleanData( getAll( elem, false ) ); +- elem.innerHTML = value; +- } +- } +- +- elem = 0; +- +- // If using innerHTML throws an exception, use the fallback method +- } catch ( e ) {} +- } +- +- if ( elem ) { +- this.empty().append( value ); +- } +- }, null, value, arguments.length ); +- }, +- +- replaceWith: function() { +- var ignored = []; +- +- // Make the changes, replacing each non-ignored context element with the new content +- return domManip( this, arguments, function( elem ) { +- var parent = this.parentNode; +- +- if ( jQuery.inArray( this, ignored ) < 0 ) { +- jQuery.cleanData( getAll( this ) ); +- if ( parent ) { +- parent.replaceChild( elem, this ); +- } +- } +- +- // Force callback invocation +- }, ignored ); +- } +-} ); +- +-jQuery.each( { +- appendTo: "append", +- prependTo: "prepend", +- insertBefore: "before", +- insertAfter: "after", +- replaceAll: "replaceWith" +-}, function( name, original ) { +- jQuery.fn[ name ] = function( selector ) { +- var elems, +- ret = [], +- insert = jQuery( selector ), +- last = insert.length - 1, +- i = 0; +- +- for ( ; i <= last; i++ ) { +- elems = i === last ? this : this.clone( true ); +- jQuery( insert[ i ] )[ original ]( elems ); +- +- // Support: Android <=4.0 only, PhantomJS 1 only +- // .get() because push.apply(_, arraylike) throws on ancient WebKit +- push.apply( ret, elems.get() ); +- } +- +- return this.pushStack( ret ); +- }; +-} ); +-var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); +- +-var getStyles = function( elem ) { +- +- // Support: IE <=11 only, Firefox <=30 (#15098, #14150) +- // IE throws on elements created in popups +- // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" +- var view = elem.ownerDocument.defaultView; +- +- if ( !view || !view.opener ) { +- view = window; +- } +- +- return view.getComputedStyle( elem ); +- }; +- +-var swap = function( elem, options, callback ) { +- var ret, name, +- old = {}; +- +- // Remember the old values, and insert the new ones +- for ( name in options ) { +- old[ name ] = elem.style[ name ]; +- elem.style[ name ] = options[ name ]; +- } +- +- ret = callback.call( elem ); +- +- // Revert the old values +- for ( name in options ) { +- elem.style[ name ] = old[ name ]; +- } +- +- return ret; +-}; +- +- +-var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); +- +- +- +-( function() { +- +- // Executing both pixelPosition & boxSizingReliable tests require only one layout +- // so they're executed at the same time to save the second computation. +- function computeStyleTests() { +- +- // This is a singleton, we need to execute it only once +- if ( !div ) { +- return; +- } +- +- container.style.cssText = "position:absolute;left:-11111px;width:60px;" + +- "margin-top:1px;padding:0;border:0"; +- div.style.cssText = +- "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + +- "margin:auto;border:1px;padding:1px;" + +- "width:60%;top:1%"; +- documentElement.appendChild( container ).appendChild( div ); +- +- var divStyle = window.getComputedStyle( div ); +- pixelPositionVal = divStyle.top !== "1%"; +- +- // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 +- reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; +- +- // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 +- // Some styles come back with percentage values, even though they shouldn't +- div.style.right = "60%"; +- pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; +- +- // Support: IE 9 - 11 only +- // Detect misreporting of content dimensions for box-sizing:border-box elements +- boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; +- +- // Support: IE 9 only +- // Detect overflow:scroll screwiness (gh-3699) +- // Support: Chrome <=64 +- // Don't get tricked when zoom affects offsetWidth (gh-4029) +- div.style.position = "absolute"; +- scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; +- +- documentElement.removeChild( container ); +- +- // Nullify the div so it wouldn't be stored in the memory and +- // it will also be a sign that checks already performed +- div = null; +- } +- +- function roundPixelMeasures( measure ) { +- return Math.round( parseFloat( measure ) ); +- } +- +- var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, +- reliableTrDimensionsVal, reliableMarginLeftVal, +- container = document.createElement( "div" ), +- div = document.createElement( "div" ); +- +- // Finish early in limited (non-browser) environments +- if ( !div.style ) { +- return; +- } +- +- // Support: IE <=9 - 11 only +- // Style of cloned element affects source element cloned (#8908) +- div.style.backgroundClip = "content-box"; +- div.cloneNode( true ).style.backgroundClip = ""; +- support.clearCloneStyle = div.style.backgroundClip === "content-box"; +- +- jQuery.extend( support, { +- boxSizingReliable: function() { +- computeStyleTests(); +- return boxSizingReliableVal; +- }, +- pixelBoxStyles: function() { +- computeStyleTests(); +- return pixelBoxStylesVal; +- }, +- pixelPosition: function() { +- computeStyleTests(); +- return pixelPositionVal; +- }, +- reliableMarginLeft: function() { +- computeStyleTests(); +- return reliableMarginLeftVal; +- }, +- scrollboxSize: function() { +- computeStyleTests(); +- return scrollboxSizeVal; +- }, +- +- // Support: IE 9 - 11+, Edge 15 - 18+ +- // IE/Edge misreport `getComputedStyle` of table rows with width/height +- // set in CSS while `offset*` properties report correct values. +- // Behavior in IE 9 is more subtle than in newer versions & it passes +- // some versions of this test; make sure not to make it pass there! +- reliableTrDimensions: function() { +- var table, tr, trChild, trStyle; +- if ( reliableTrDimensionsVal == null ) { +- table = document.createElement( "table" ); +- tr = document.createElement( "tr" ); +- trChild = document.createElement( "div" ); +- +- table.style.cssText = "position:absolute;left:-11111px"; +- tr.style.height = "1px"; +- trChild.style.height = "9px"; +- +- documentElement +- .appendChild( table ) +- .appendChild( tr ) +- .appendChild( trChild ); +- +- trStyle = window.getComputedStyle( tr ); +- reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; +- +- documentElement.removeChild( table ); +- } +- return reliableTrDimensionsVal; +- } +- } ); +-} )(); +- +- +-function curCSS( elem, name, computed ) { +- var width, minWidth, maxWidth, ret, +- +- // Support: Firefox 51+ +- // Retrieving style before computed somehow +- // fixes an issue with getting wrong values +- // on detached elements +- style = elem.style; +- +- computed = computed || getStyles( elem ); +- +- // getPropertyValue is needed for: +- // .css('filter') (IE 9 only, #12537) +- // .css('--customProperty) (#3144) +- if ( computed ) { +- ret = computed.getPropertyValue( name ) || computed[ name ]; +- +- if ( ret === "" && !isAttached( elem ) ) { +- ret = jQuery.style( elem, name ); +- } +- +- // A tribute to the "awesome hack by Dean Edwards" +- // Android Browser returns percentage for some values, +- // but width seems to be reliably pixels. +- // This is against the CSSOM draft spec: +- // https://drafts.csswg.org/cssom/#resolved-values +- if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { +- +- // Remember the original values +- width = style.width; +- minWidth = style.minWidth; +- maxWidth = style.maxWidth; +- +- // Put in the new values to get a computed value out +- style.minWidth = style.maxWidth = style.width = ret; +- ret = computed.width; +- +- // Revert the changed values +- style.width = width; +- style.minWidth = minWidth; +- style.maxWidth = maxWidth; +- } +- } +- +- return ret !== undefined ? +- +- // Support: IE <=9 - 11 only +- // IE returns zIndex value as an integer. +- ret + "" : +- ret; +-} +- +- +-function addGetHookIf( conditionFn, hookFn ) { +- +- // Define the hook, we'll check on the first run if it's really needed. +- return { +- get: function() { +- if ( conditionFn() ) { +- +- // Hook not needed (or it's not possible to use it due +- // to missing dependency), remove it. +- delete this.get; +- return; +- } +- +- // Hook needed; redefine it so that the support test is not executed again. +- return ( this.get = hookFn ).apply( this, arguments ); +- } +- }; +-} +- +- +-var cssPrefixes = [ "Webkit", "Moz", "ms" ], +- emptyStyle = document.createElement( "div" ).style, +- vendorProps = {}; +- +-// Return a vendor-prefixed property or undefined +-function vendorPropName( name ) { +- +- // Check for vendor prefixed names +- var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), +- i = cssPrefixes.length; +- +- while ( i-- ) { +- name = cssPrefixes[ i ] + capName; +- if ( name in emptyStyle ) { +- return name; +- } +- } +-} +- +-// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +-function finalPropName( name ) { +- var final = jQuery.cssProps[ name ] || vendorProps[ name ]; +- +- if ( final ) { +- return final; +- } +- if ( name in emptyStyle ) { +- return name; +- } +- return vendorProps[ name ] = vendorPropName( name ) || name; +-} +- +- +-var +- +- // Swappable if display is none or starts with table +- // except "table", "table-cell", or "table-caption" +- // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display +- rdisplayswap = /^(none|table(?!-c[ea]).+)/, +- rcustomProp = /^--/, +- cssShow = { position: "absolute", visibility: "hidden", display: "block" }, +- cssNormalTransform = { +- letterSpacing: "0", +- fontWeight: "400" +- }; +- +-function setPositiveNumber( _elem, value, subtract ) { +- +- // Any relative (+/-) values have already been +- // normalized at this point +- var matches = rcssNum.exec( value ); +- return matches ? +- +- // Guard against undefined "subtract", e.g., when used as in cssHooks +- Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : +- value; +-} +- +-function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { +- var i = dimension === "width" ? 1 : 0, +- extra = 0, +- delta = 0; +- +- // Adjustment may not be necessary +- if ( box === ( isBorderBox ? "border" : "content" ) ) { +- return 0; +- } +- +- for ( ; i < 4; i += 2 ) { +- +- // Both box models exclude margin +- if ( box === "margin" ) { +- delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); +- } +- +- // If we get here with a content-box, we're seeking "padding" or "border" or "margin" +- if ( !isBorderBox ) { +- +- // Add padding +- delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); +- +- // For "border" or "margin", add border +- if ( box !== "padding" ) { +- delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); +- +- // But still keep track of it otherwise +- } else { +- extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); +- } +- +- // If we get here with a border-box (content + padding + border), we're seeking "content" or +- // "padding" or "margin" +- } else { +- +- // For "content", subtract padding +- if ( box === "content" ) { +- delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); +- } +- +- // For "content" or "padding", subtract border +- if ( box !== "margin" ) { +- delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); +- } +- } +- } +- +- // Account for positive content-box scroll gutter when requested by providing computedVal +- if ( !isBorderBox && computedVal >= 0 ) { +- +- // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border +- // Assuming integer scroll gutter, subtract the rest and round down +- delta += Math.max( 0, Math.ceil( +- elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - +- computedVal - +- delta - +- extra - +- 0.5 +- +- // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter +- // Use an explicit zero to avoid NaN (gh-3964) +- ) ) || 0; +- } +- +- return delta; +-} +- +-function getWidthOrHeight( elem, dimension, extra ) { +- +- // Start with computed style +- var styles = getStyles( elem ), +- +- // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). +- // Fake content-box until we know it's needed to know the true value. +- boxSizingNeeded = !support.boxSizingReliable() || extra, +- isBorderBox = boxSizingNeeded && +- jQuery.css( elem, "boxSizing", false, styles ) === "border-box", +- valueIsBorderBox = isBorderBox, +- +- val = curCSS( elem, dimension, styles ), +- offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); +- +- // Support: Firefox <=54 +- // Return a confounding non-pixel value or feign ignorance, as appropriate. +- if ( rnumnonpx.test( val ) ) { +- if ( !extra ) { +- return val; +- } +- val = "auto"; +- } +- +- +- // Support: IE 9 - 11 only +- // Use offsetWidth/offsetHeight for when box sizing is unreliable. +- // In those cases, the computed value can be trusted to be border-box. +- if ( ( !support.boxSizingReliable() && isBorderBox || +- +- // Support: IE 10 - 11+, Edge 15 - 18+ +- // IE/Edge misreport `getComputedStyle` of table rows with width/height +- // set in CSS while `offset*` properties report correct values. +- // Interestingly, in some cases IE 9 doesn't suffer from this issue. +- !support.reliableTrDimensions() && nodeName( elem, "tr" ) || +- +- // Fall back to offsetWidth/offsetHeight when value is "auto" +- // This happens for inline elements with no explicit setting (gh-3571) +- val === "auto" || +- +- // Support: Android <=4.1 - 4.3 only +- // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) +- !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && +- +- // Make sure the element is visible & connected +- elem.getClientRects().length ) { +- +- isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; +- +- // Where available, offsetWidth/offsetHeight approximate border box dimensions. +- // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the +- // retrieved value as a content box dimension. +- valueIsBorderBox = offsetProp in elem; +- if ( valueIsBorderBox ) { +- val = elem[ offsetProp ]; +- } +- } +- +- // Normalize "" and auto +- val = parseFloat( val ) || 0; +- +- // Adjust for the element's box model +- return ( val + +- boxModelAdjustment( +- elem, +- dimension, +- extra || ( isBorderBox ? "border" : "content" ), +- valueIsBorderBox, +- styles, +- +- // Provide the current computed size to request scroll gutter calculation (gh-3589) +- val +- ) +- ) + "px"; +-} +- +-jQuery.extend( { +- +- // Add in style property hooks for overriding the default +- // behavior of getting and setting a style property +- cssHooks: { +- opacity: { +- get: function( elem, computed ) { +- if ( computed ) { +- +- // We should always get a number back from opacity +- var ret = curCSS( elem, "opacity" ); +- return ret === "" ? "1" : ret; +- } +- } +- } +- }, +- +- // Don't automatically add "px" to these possibly-unitless properties +- cssNumber: { +- "animationIterationCount": true, +- "columnCount": true, +- "fillOpacity": true, +- "flexGrow": true, +- "flexShrink": true, +- "fontWeight": true, +- "gridArea": true, +- "gridColumn": true, +- "gridColumnEnd": true, +- "gridColumnStart": true, +- "gridRow": true, +- "gridRowEnd": true, +- "gridRowStart": true, +- "lineHeight": true, +- "opacity": true, +- "order": true, +- "orphans": true, +- "widows": true, +- "zIndex": true, +- "zoom": true +- }, +- +- // Add in properties whose names you wish to fix before +- // setting or getting the value +- cssProps: {}, +- +- // Get and set the style property on a DOM Node +- style: function( elem, name, value, extra ) { +- +- // Don't set styles on text and comment nodes +- if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { +- return; +- } +- +- // Make sure that we're working with the right name +- var ret, type, hooks, +- origName = camelCase( name ), +- isCustomProp = rcustomProp.test( name ), +- style = elem.style; +- +- // Make sure that we're working with the right name. We don't +- // want to query the value if it is a CSS custom property +- // since they are user-defined. +- if ( !isCustomProp ) { +- name = finalPropName( origName ); +- } +- +- // Gets hook for the prefixed version, then unprefixed version +- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; +- +- // Check if we're setting a value +- if ( value !== undefined ) { +- type = typeof value; +- +- // Convert "+=" or "-=" to relative numbers (#7345) +- if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { +- value = adjustCSS( elem, name, ret ); +- +- // Fixes bug #9237 +- type = "number"; +- } +- +- // Make sure that null and NaN values aren't set (#7116) +- if ( value == null || value !== value ) { +- return; +- } +- +- // If a number was passed in, add the unit (except for certain CSS properties) +- // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append +- // "px" to a few hardcoded values. +- if ( type === "number" && !isCustomProp ) { +- value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); +- } +- +- // background-* props affect original clone's values +- if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { +- style[ name ] = "inherit"; +- } +- +- // If a hook was provided, use that value, otherwise just set the specified value +- if ( !hooks || !( "set" in hooks ) || +- ( value = hooks.set( elem, value, extra ) ) !== undefined ) { +- +- if ( isCustomProp ) { +- style.setProperty( name, value ); +- } else { +- style[ name ] = value; +- } +- } +- +- } else { +- +- // If a hook was provided get the non-computed value from there +- if ( hooks && "get" in hooks && +- ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { +- +- return ret; +- } +- +- // Otherwise just get the value from the style object +- return style[ name ]; +- } +- }, +- +- css: function( elem, name, extra, styles ) { +- var val, num, hooks, +- origName = camelCase( name ), +- isCustomProp = rcustomProp.test( name ); +- +- // Make sure that we're working with the right name. We don't +- // want to modify the value if it is a CSS custom property +- // since they are user-defined. +- if ( !isCustomProp ) { +- name = finalPropName( origName ); +- } +- +- // Try prefixed name followed by the unprefixed name +- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; +- +- // If a hook was provided get the computed value from there +- if ( hooks && "get" in hooks ) { +- val = hooks.get( elem, true, extra ); +- } +- +- // Otherwise, if a way to get the computed value exists, use that +- if ( val === undefined ) { +- val = curCSS( elem, name, styles ); +- } +- +- // Convert "normal" to computed value +- if ( val === "normal" && name in cssNormalTransform ) { +- val = cssNormalTransform[ name ]; +- } +- +- // Make numeric if forced or a qualifier was provided and val looks numeric +- if ( extra === "" || extra ) { +- num = parseFloat( val ); +- return extra === true || isFinite( num ) ? num || 0 : val; +- } +- +- return val; +- } +-} ); +- +-jQuery.each( [ "height", "width" ], function( _i, dimension ) { +- jQuery.cssHooks[ dimension ] = { +- get: function( elem, computed, extra ) { +- if ( computed ) { +- +- // Certain elements can have dimension info if we invisibly show them +- // but it must have a current display style that would benefit +- return rdisplayswap.test( jQuery.css( elem, "display" ) ) && +- +- // Support: Safari 8+ +- // Table columns in Safari have non-zero offsetWidth & zero +- // getBoundingClientRect().width unless display is changed. +- // Support: IE <=11 only +- // Running getBoundingClientRect on a disconnected node +- // in IE throws an error. +- ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? +- swap( elem, cssShow, function() { +- return getWidthOrHeight( elem, dimension, extra ); +- } ) : +- getWidthOrHeight( elem, dimension, extra ); +- } +- }, +- +- set: function( elem, value, extra ) { +- var matches, +- styles = getStyles( elem ), +- +- // Only read styles.position if the test has a chance to fail +- // to avoid forcing a reflow. +- scrollboxSizeBuggy = !support.scrollboxSize() && +- styles.position === "absolute", +- +- // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) +- boxSizingNeeded = scrollboxSizeBuggy || extra, +- isBorderBox = boxSizingNeeded && +- jQuery.css( elem, "boxSizing", false, styles ) === "border-box", +- subtract = extra ? +- boxModelAdjustment( +- elem, +- dimension, +- extra, +- isBorderBox, +- styles +- ) : +- 0; +- +- // Account for unreliable border-box dimensions by comparing offset* to computed and +- // faking a content-box to get border and padding (gh-3699) +- if ( isBorderBox && scrollboxSizeBuggy ) { +- subtract -= Math.ceil( +- elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - +- parseFloat( styles[ dimension ] ) - +- boxModelAdjustment( elem, dimension, "border", false, styles ) - +- 0.5 +- ); +- } +- +- // Convert to pixels if value adjustment is needed +- if ( subtract && ( matches = rcssNum.exec( value ) ) && +- ( matches[ 3 ] || "px" ) !== "px" ) { +- +- elem.style[ dimension ] = value; +- value = jQuery.css( elem, dimension ); +- } +- +- return setPositiveNumber( elem, value, subtract ); +- } +- }; +-} ); +- +-jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, +- function( elem, computed ) { +- if ( computed ) { +- return ( parseFloat( curCSS( elem, "marginLeft" ) ) || +- elem.getBoundingClientRect().left - +- swap( elem, { marginLeft: 0 }, function() { +- return elem.getBoundingClientRect().left; +- } ) +- ) + "px"; +- } +- } +-); +- +-// These hooks are used by animate to expand properties +-jQuery.each( { +- margin: "", +- padding: "", +- border: "Width" +-}, function( prefix, suffix ) { +- jQuery.cssHooks[ prefix + suffix ] = { +- expand: function( value ) { +- var i = 0, +- expanded = {}, +- +- // Assumes a single number if not a string +- parts = typeof value === "string" ? value.split( " " ) : [ value ]; +- +- for ( ; i < 4; i++ ) { +- expanded[ prefix + cssExpand[ i ] + suffix ] = +- parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; +- } +- +- return expanded; +- } +- }; +- +- if ( prefix !== "margin" ) { +- jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; +- } +-} ); +- +-jQuery.fn.extend( { +- css: function( name, value ) { +- return access( this, function( elem, name, value ) { +- var styles, len, +- map = {}, +- i = 0; +- +- if ( Array.isArray( name ) ) { +- styles = getStyles( elem ); +- len = name.length; +- +- for ( ; i < len; i++ ) { +- map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); +- } +- +- return map; +- } +- +- return value !== undefined ? +- jQuery.style( elem, name, value ) : +- jQuery.css( elem, name ); +- }, name, value, arguments.length > 1 ); +- } +-} ); +- +- +-function Tween( elem, options, prop, end, easing ) { +- return new Tween.prototype.init( elem, options, prop, end, easing ); +-} +-jQuery.Tween = Tween; +- +-Tween.prototype = { +- constructor: Tween, +- init: function( elem, options, prop, end, easing, unit ) { +- this.elem = elem; +- this.prop = prop; +- this.easing = easing || jQuery.easing._default; +- this.options = options; +- this.start = this.now = this.cur(); +- this.end = end; +- this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); +- }, +- cur: function() { +- var hooks = Tween.propHooks[ this.prop ]; +- +- return hooks && hooks.get ? +- hooks.get( this ) : +- Tween.propHooks._default.get( this ); +- }, +- run: function( percent ) { +- var eased, +- hooks = Tween.propHooks[ this.prop ]; +- +- if ( this.options.duration ) { +- this.pos = eased = jQuery.easing[ this.easing ]( +- percent, this.options.duration * percent, 0, 1, this.options.duration +- ); +- } else { +- this.pos = eased = percent; +- } +- this.now = ( this.end - this.start ) * eased + this.start; +- +- if ( this.options.step ) { +- this.options.step.call( this.elem, this.now, this ); +- } +- +- if ( hooks && hooks.set ) { +- hooks.set( this ); +- } else { +- Tween.propHooks._default.set( this ); +- } +- return this; +- } +-}; +- +-Tween.prototype.init.prototype = Tween.prototype; +- +-Tween.propHooks = { +- _default: { +- get: function( tween ) { +- var result; +- +- // Use a property on the element directly when it is not a DOM element, +- // or when there is no matching style property that exists. +- if ( tween.elem.nodeType !== 1 || +- tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { +- return tween.elem[ tween.prop ]; +- } +- +- // Passing an empty string as a 3rd parameter to .css will automatically +- // attempt a parseFloat and fallback to a string if the parse fails. +- // Simple values such as "10px" are parsed to Float; +- // complex values such as "rotate(1rad)" are returned as-is. +- result = jQuery.css( tween.elem, tween.prop, "" ); +- +- // Empty strings, null, undefined and "auto" are converted to 0. +- return !result || result === "auto" ? 0 : result; +- }, +- set: function( tween ) { +- +- // Use step hook for back compat. +- // Use cssHook if its there. +- // Use .style if available and use plain properties where available. +- if ( jQuery.fx.step[ tween.prop ] ) { +- jQuery.fx.step[ tween.prop ]( tween ); +- } else if ( tween.elem.nodeType === 1 && ( +- jQuery.cssHooks[ tween.prop ] || +- tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { +- jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); +- } else { +- tween.elem[ tween.prop ] = tween.now; +- } +- } +- } +-}; +- +-// Support: IE <=9 only +-// Panic based approach to setting things on disconnected nodes +-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { +- set: function( tween ) { +- if ( tween.elem.nodeType && tween.elem.parentNode ) { +- tween.elem[ tween.prop ] = tween.now; +- } +- } +-}; +- +-jQuery.easing = { +- linear: function( p ) { +- return p; +- }, +- swing: function( p ) { +- return 0.5 - Math.cos( p * Math.PI ) / 2; +- }, +- _default: "swing" +-}; +- +-jQuery.fx = Tween.prototype.init; +- +-// Back compat <1.8 extension point +-jQuery.fx.step = {}; +- +- +- +- +-var +- fxNow, inProgress, +- rfxtypes = /^(?:toggle|show|hide)$/, +- rrun = /queueHooks$/; +- +-function schedule() { +- if ( inProgress ) { +- if ( document.hidden === false && window.requestAnimationFrame ) { +- window.requestAnimationFrame( schedule ); +- } else { +- window.setTimeout( schedule, jQuery.fx.interval ); +- } +- +- jQuery.fx.tick(); +- } +-} +- +-// Animations created synchronously will run synchronously +-function createFxNow() { +- window.setTimeout( function() { +- fxNow = undefined; +- } ); +- return ( fxNow = Date.now() ); +-} +- +-// Generate parameters to create a standard animation +-function genFx( type, includeWidth ) { +- var which, +- i = 0, +- attrs = { height: type }; +- +- // If we include width, step value is 1 to do all cssExpand values, +- // otherwise step value is 2 to skip over Left and Right +- includeWidth = includeWidth ? 1 : 0; +- for ( ; i < 4; i += 2 - includeWidth ) { +- which = cssExpand[ i ]; +- attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; +- } +- +- if ( includeWidth ) { +- attrs.opacity = attrs.width = type; +- } +- +- return attrs; +-} +- +-function createTween( value, prop, animation ) { +- var tween, +- collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), +- index = 0, +- length = collection.length; +- for ( ; index < length; index++ ) { +- if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { +- +- // We're done with this property +- return tween; +- } +- } +-} +- +-function defaultPrefilter( elem, props, opts ) { +- var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, +- isBox = "width" in props || "height" in props, +- anim = this, +- orig = {}, +- style = elem.style, +- hidden = elem.nodeType && isHiddenWithinTree( elem ), +- dataShow = dataPriv.get( elem, "fxshow" ); +- +- // Queue-skipping animations hijack the fx hooks +- if ( !opts.queue ) { +- hooks = jQuery._queueHooks( elem, "fx" ); +- if ( hooks.unqueued == null ) { +- hooks.unqueued = 0; +- oldfire = hooks.empty.fire; +- hooks.empty.fire = function() { +- if ( !hooks.unqueued ) { +- oldfire(); +- } +- }; +- } +- hooks.unqueued++; +- +- anim.always( function() { +- +- // Ensure the complete handler is called before this completes +- anim.always( function() { +- hooks.unqueued--; +- if ( !jQuery.queue( elem, "fx" ).length ) { +- hooks.empty.fire(); +- } +- } ); +- } ); +- } +- +- // Detect show/hide animations +- for ( prop in props ) { +- value = props[ prop ]; +- if ( rfxtypes.test( value ) ) { +- delete props[ prop ]; +- toggle = toggle || value === "toggle"; +- if ( value === ( hidden ? "hide" : "show" ) ) { +- +- // Pretend to be hidden if this is a "show" and +- // there is still data from a stopped show/hide +- if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { +- hidden = true; +- +- // Ignore all other no-op show/hide data +- } else { +- continue; +- } +- } +- orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); +- } +- } +- +- // Bail out if this is a no-op like .hide().hide() +- propTween = !jQuery.isEmptyObject( props ); +- if ( !propTween && jQuery.isEmptyObject( orig ) ) { +- return; +- } +- +- // Restrict "overflow" and "display" styles during box animations +- if ( isBox && elem.nodeType === 1 ) { +- +- // Support: IE <=9 - 11, Edge 12 - 15 +- // Record all 3 overflow attributes because IE does not infer the shorthand +- // from identically-valued overflowX and overflowY and Edge just mirrors +- // the overflowX value there. +- opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; +- +- // Identify a display type, preferring old show/hide data over the CSS cascade +- restoreDisplay = dataShow && dataShow.display; +- if ( restoreDisplay == null ) { +- restoreDisplay = dataPriv.get( elem, "display" ); +- } +- display = jQuery.css( elem, "display" ); +- if ( display === "none" ) { +- if ( restoreDisplay ) { +- display = restoreDisplay; +- } else { +- +- // Get nonempty value(s) by temporarily forcing visibility +- showHide( [ elem ], true ); +- restoreDisplay = elem.style.display || restoreDisplay; +- display = jQuery.css( elem, "display" ); +- showHide( [ elem ] ); +- } +- } +- +- // Animate inline elements as inline-block +- if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { +- if ( jQuery.css( elem, "float" ) === "none" ) { +- +- // Restore the original display value at the end of pure show/hide animations +- if ( !propTween ) { +- anim.done( function() { +- style.display = restoreDisplay; +- } ); +- if ( restoreDisplay == null ) { +- display = style.display; +- restoreDisplay = display === "none" ? "" : display; +- } +- } +- style.display = "inline-block"; +- } +- } +- } +- +- if ( opts.overflow ) { +- style.overflow = "hidden"; +- anim.always( function() { +- style.overflow = opts.overflow[ 0 ]; +- style.overflowX = opts.overflow[ 1 ]; +- style.overflowY = opts.overflow[ 2 ]; +- } ); +- } +- +- // Implement show/hide animations +- propTween = false; +- for ( prop in orig ) { +- +- // General show/hide setup for this element animation +- if ( !propTween ) { +- if ( dataShow ) { +- if ( "hidden" in dataShow ) { +- hidden = dataShow.hidden; +- } +- } else { +- dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); +- } +- +- // Store hidden/visible for toggle so `.stop().toggle()` "reverses" +- if ( toggle ) { +- dataShow.hidden = !hidden; +- } +- +- // Show elements before animating them +- if ( hidden ) { +- showHide( [ elem ], true ); +- } +- +- /* eslint-disable no-loop-func */ +- +- anim.done( function() { +- +- /* eslint-enable no-loop-func */ +- +- // The final step of a "hide" animation is actually hiding the element +- if ( !hidden ) { +- showHide( [ elem ] ); +- } +- dataPriv.remove( elem, "fxshow" ); +- for ( prop in orig ) { +- jQuery.style( elem, prop, orig[ prop ] ); +- } +- } ); +- } +- +- // Per-property setup +- propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); +- if ( !( prop in dataShow ) ) { +- dataShow[ prop ] = propTween.start; +- if ( hidden ) { +- propTween.end = propTween.start; +- propTween.start = 0; +- } +- } +- } +-} +- +-function propFilter( props, specialEasing ) { +- var index, name, easing, value, hooks; +- +- // camelCase, specialEasing and expand cssHook pass +- for ( index in props ) { +- name = camelCase( index ); +- easing = specialEasing[ name ]; +- value = props[ index ]; +- if ( Array.isArray( value ) ) { +- easing = value[ 1 ]; +- value = props[ index ] = value[ 0 ]; +- } +- +- if ( index !== name ) { +- props[ name ] = value; +- delete props[ index ]; +- } +- +- hooks = jQuery.cssHooks[ name ]; +- if ( hooks && "expand" in hooks ) { +- value = hooks.expand( value ); +- delete props[ name ]; +- +- // Not quite $.extend, this won't overwrite existing keys. +- // Reusing 'index' because we have the correct "name" +- for ( index in value ) { +- if ( !( index in props ) ) { +- props[ index ] = value[ index ]; +- specialEasing[ index ] = easing; +- } +- } +- } else { +- specialEasing[ name ] = easing; +- } +- } +-} +- +-function Animation( elem, properties, options ) { +- var result, +- stopped, +- index = 0, +- length = Animation.prefilters.length, +- deferred = jQuery.Deferred().always( function() { +- +- // Don't match elem in the :animated selector +- delete tick.elem; +- } ), +- tick = function() { +- if ( stopped ) { +- return false; +- } +- var currentTime = fxNow || createFxNow(), +- remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), +- +- // Support: Android 2.3 only +- // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) +- temp = remaining / animation.duration || 0, +- percent = 1 - temp, +- index = 0, +- length = animation.tweens.length; +- +- for ( ; index < length; index++ ) { +- animation.tweens[ index ].run( percent ); +- } +- +- deferred.notifyWith( elem, [ animation, percent, remaining ] ); +- +- // If there's more to do, yield +- if ( percent < 1 && length ) { +- return remaining; +- } +- +- // If this was an empty animation, synthesize a final progress notification +- if ( !length ) { +- deferred.notifyWith( elem, [ animation, 1, 0 ] ); +- } +- +- // Resolve the animation and report its conclusion +- deferred.resolveWith( elem, [ animation ] ); +- return false; +- }, +- animation = deferred.promise( { +- elem: elem, +- props: jQuery.extend( {}, properties ), +- opts: jQuery.extend( true, { +- specialEasing: {}, +- easing: jQuery.easing._default +- }, options ), +- originalProperties: properties, +- originalOptions: options, +- startTime: fxNow || createFxNow(), +- duration: options.duration, +- tweens: [], +- createTween: function( prop, end ) { +- var tween = jQuery.Tween( elem, animation.opts, prop, end, +- animation.opts.specialEasing[ prop ] || animation.opts.easing ); +- animation.tweens.push( tween ); +- return tween; +- }, +- stop: function( gotoEnd ) { +- var index = 0, +- +- // If we are going to the end, we want to run all the tweens +- // otherwise we skip this part +- length = gotoEnd ? animation.tweens.length : 0; +- if ( stopped ) { +- return this; +- } +- stopped = true; +- for ( ; index < length; index++ ) { +- animation.tweens[ index ].run( 1 ); +- } +- +- // Resolve when we played the last frame; otherwise, reject +- if ( gotoEnd ) { +- deferred.notifyWith( elem, [ animation, 1, 0 ] ); +- deferred.resolveWith( elem, [ animation, gotoEnd ] ); +- } else { +- deferred.rejectWith( elem, [ animation, gotoEnd ] ); +- } +- return this; +- } +- } ), +- props = animation.props; +- +- propFilter( props, animation.opts.specialEasing ); +- +- for ( ; index < length; index++ ) { +- result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); +- if ( result ) { +- if ( isFunction( result.stop ) ) { +- jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = +- result.stop.bind( result ); +- } +- return result; +- } +- } +- +- jQuery.map( props, createTween, animation ); +- +- if ( isFunction( animation.opts.start ) ) { +- animation.opts.start.call( elem, animation ); +- } +- +- // Attach callbacks from options +- animation +- .progress( animation.opts.progress ) +- .done( animation.opts.done, animation.opts.complete ) +- .fail( animation.opts.fail ) +- .always( animation.opts.always ); +- +- jQuery.fx.timer( +- jQuery.extend( tick, { +- elem: elem, +- anim: animation, +- queue: animation.opts.queue +- } ) +- ); +- +- return animation; +-} +- +-jQuery.Animation = jQuery.extend( Animation, { +- +- tweeners: { +- "*": [ function( prop, value ) { +- var tween = this.createTween( prop, value ); +- adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); +- return tween; +- } ] +- }, +- +- tweener: function( props, callback ) { +- if ( isFunction( props ) ) { +- callback = props; +- props = [ "*" ]; +- } else { +- props = props.match( rnothtmlwhite ); +- } +- +- var prop, +- index = 0, +- length = props.length; +- +- for ( ; index < length; index++ ) { +- prop = props[ index ]; +- Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; +- Animation.tweeners[ prop ].unshift( callback ); +- } +- }, +- +- prefilters: [ defaultPrefilter ], +- +- prefilter: function( callback, prepend ) { +- if ( prepend ) { +- Animation.prefilters.unshift( callback ); +- } else { +- Animation.prefilters.push( callback ); +- } +- } +-} ); +- +-jQuery.speed = function( speed, easing, fn ) { +- var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { +- complete: fn || !fn && easing || +- isFunction( speed ) && speed, +- duration: speed, +- easing: fn && easing || easing && !isFunction( easing ) && easing +- }; +- +- // Go to the end state if fx are off +- if ( jQuery.fx.off ) { +- opt.duration = 0; +- +- } else { +- if ( typeof opt.duration !== "number" ) { +- if ( opt.duration in jQuery.fx.speeds ) { +- opt.duration = jQuery.fx.speeds[ opt.duration ]; +- +- } else { +- opt.duration = jQuery.fx.speeds._default; +- } +- } +- } +- +- // Normalize opt.queue - true/undefined/null -> "fx" +- if ( opt.queue == null || opt.queue === true ) { +- opt.queue = "fx"; +- } +- +- // Queueing +- opt.old = opt.complete; +- +- opt.complete = function() { +- if ( isFunction( opt.old ) ) { +- opt.old.call( this ); +- } +- +- if ( opt.queue ) { +- jQuery.dequeue( this, opt.queue ); +- } +- }; +- +- return opt; +-}; +- +-jQuery.fn.extend( { +- fadeTo: function( speed, to, easing, callback ) { +- +- // Show any hidden elements after setting opacity to 0 +- return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() +- +- // Animate to the value specified +- .end().animate( { opacity: to }, speed, easing, callback ); +- }, +- animate: function( prop, speed, easing, callback ) { +- var empty = jQuery.isEmptyObject( prop ), +- optall = jQuery.speed( speed, easing, callback ), +- doAnimation = function() { +- +- // Operate on a copy of prop so per-property easing won't be lost +- var anim = Animation( this, jQuery.extend( {}, prop ), optall ); +- +- // Empty animations, or finishing resolves immediately +- if ( empty || dataPriv.get( this, "finish" ) ) { +- anim.stop( true ); +- } +- }; +- doAnimation.finish = doAnimation; +- +- return empty || optall.queue === false ? +- this.each( doAnimation ) : +- this.queue( optall.queue, doAnimation ); +- }, +- stop: function( type, clearQueue, gotoEnd ) { +- var stopQueue = function( hooks ) { +- var stop = hooks.stop; +- delete hooks.stop; +- stop( gotoEnd ); +- }; +- +- if ( typeof type !== "string" ) { +- gotoEnd = clearQueue; +- clearQueue = type; +- type = undefined; +- } +- if ( clearQueue ) { +- this.queue( type || "fx", [] ); +- } +- +- return this.each( function() { +- var dequeue = true, +- index = type != null && type + "queueHooks", +- timers = jQuery.timers, +- data = dataPriv.get( this ); +- +- if ( index ) { +- if ( data[ index ] && data[ index ].stop ) { +- stopQueue( data[ index ] ); +- } +- } else { +- for ( index in data ) { +- if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { +- stopQueue( data[ index ] ); +- } +- } +- } +- +- for ( index = timers.length; index--; ) { +- if ( timers[ index ].elem === this && +- ( type == null || timers[ index ].queue === type ) ) { +- +- timers[ index ].anim.stop( gotoEnd ); +- dequeue = false; +- timers.splice( index, 1 ); +- } +- } +- +- // Start the next in the queue if the last step wasn't forced. +- // Timers currently will call their complete callbacks, which +- // will dequeue but only if they were gotoEnd. +- if ( dequeue || !gotoEnd ) { +- jQuery.dequeue( this, type ); +- } +- } ); +- }, +- finish: function( type ) { +- if ( type !== false ) { +- type = type || "fx"; +- } +- return this.each( function() { +- var index, +- data = dataPriv.get( this ), +- queue = data[ type + "queue" ], +- hooks = data[ type + "queueHooks" ], +- timers = jQuery.timers, +- length = queue ? queue.length : 0; +- +- // Enable finishing flag on private data +- data.finish = true; +- +- // Empty the queue first +- jQuery.queue( this, type, [] ); +- +- if ( hooks && hooks.stop ) { +- hooks.stop.call( this, true ); +- } +- +- // Look for any active animations, and finish them +- for ( index = timers.length; index--; ) { +- if ( timers[ index ].elem === this && timers[ index ].queue === type ) { +- timers[ index ].anim.stop( true ); +- timers.splice( index, 1 ); +- } +- } +- +- // Look for any animations in the old queue and finish them +- for ( index = 0; index < length; index++ ) { +- if ( queue[ index ] && queue[ index ].finish ) { +- queue[ index ].finish.call( this ); +- } +- } +- +- // Turn off finishing flag +- delete data.finish; +- } ); +- } +-} ); +- +-jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { +- var cssFn = jQuery.fn[ name ]; +- jQuery.fn[ name ] = function( speed, easing, callback ) { +- return speed == null || typeof speed === "boolean" ? +- cssFn.apply( this, arguments ) : +- this.animate( genFx( name, true ), speed, easing, callback ); +- }; +-} ); +- +-// Generate shortcuts for custom animations +-jQuery.each( { +- slideDown: genFx( "show" ), +- slideUp: genFx( "hide" ), +- slideToggle: genFx( "toggle" ), +- fadeIn: { opacity: "show" }, +- fadeOut: { opacity: "hide" }, +- fadeToggle: { opacity: "toggle" } +-}, function( name, props ) { +- jQuery.fn[ name ] = function( speed, easing, callback ) { +- return this.animate( props, speed, easing, callback ); +- }; +-} ); +- +-jQuery.timers = []; +-jQuery.fx.tick = function() { +- var timer, +- i = 0, +- timers = jQuery.timers; +- +- fxNow = Date.now(); +- +- for ( ; i < timers.length; i++ ) { +- timer = timers[ i ]; +- +- // Run the timer and safely remove it when done (allowing for external removal) +- if ( !timer() && timers[ i ] === timer ) { +- timers.splice( i--, 1 ); +- } +- } +- +- if ( !timers.length ) { +- jQuery.fx.stop(); +- } +- fxNow = undefined; +-}; +- +-jQuery.fx.timer = function( timer ) { +- jQuery.timers.push( timer ); +- jQuery.fx.start(); +-}; +- +-jQuery.fx.interval = 13; +-jQuery.fx.start = function() { +- if ( inProgress ) { +- return; +- } +- +- inProgress = true; +- schedule(); +-}; +- +-jQuery.fx.stop = function() { +- inProgress = null; +-}; +- +-jQuery.fx.speeds = { +- slow: 600, +- fast: 200, +- +- // Default speed +- _default: 400 +-}; +- +- +-// Based off of the plugin by Clint Helfers, with permission. +-// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +-jQuery.fn.delay = function( time, type ) { +- time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; +- type = type || "fx"; +- +- return this.queue( type, function( next, hooks ) { +- var timeout = window.setTimeout( next, time ); +- hooks.stop = function() { +- window.clearTimeout( timeout ); +- }; +- } ); +-}; +- +- +-( function() { +- var input = document.createElement( "input" ), +- select = document.createElement( "select" ), +- opt = select.appendChild( document.createElement( "option" ) ); +- +- input.type = "checkbox"; +- +- // Support: Android <=4.3 only +- // Default value for a checkbox should be "on" +- support.checkOn = input.value !== ""; +- +- // Support: IE <=11 only +- // Must access selectedIndex to make default options select +- support.optSelected = opt.selected; +- +- // Support: IE <=11 only +- // An input loses its value after becoming a radio +- input = document.createElement( "input" ); +- input.value = "t"; +- input.type = "radio"; +- support.radioValue = input.value === "t"; +-} )(); +- +- +-var boolHook, +- attrHandle = jQuery.expr.attrHandle; +- +-jQuery.fn.extend( { +- attr: function( name, value ) { +- return access( this, jQuery.attr, name, value, arguments.length > 1 ); +- }, +- +- removeAttr: function( name ) { +- return this.each( function() { +- jQuery.removeAttr( this, name ); +- } ); +- } +-} ); +- +-jQuery.extend( { +- attr: function( elem, name, value ) { +- var ret, hooks, +- nType = elem.nodeType; +- +- // Don't get/set attributes on text, comment and attribute nodes +- if ( nType === 3 || nType === 8 || nType === 2 ) { +- return; +- } +- +- // Fallback to prop when attributes are not supported +- if ( typeof elem.getAttribute === "undefined" ) { +- return jQuery.prop( elem, name, value ); +- } +- +- // Attribute hooks are determined by the lowercase version +- // Grab necessary hook if one is defined +- if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { +- hooks = jQuery.attrHooks[ name.toLowerCase() ] || +- ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); +- } +- +- if ( value !== undefined ) { +- if ( value === null ) { +- jQuery.removeAttr( elem, name ); +- return; +- } +- +- if ( hooks && "set" in hooks && +- ( ret = hooks.set( elem, value, name ) ) !== undefined ) { +- return ret; +- } +- +- elem.setAttribute( name, value + "" ); +- return value; +- } +- +- if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { +- return ret; +- } +- +- ret = jQuery.find.attr( elem, name ); +- +- // Non-existent attributes return null, we normalize to undefined +- return ret == null ? undefined : ret; +- }, +- +- attrHooks: { +- type: { +- set: function( elem, value ) { +- if ( !support.radioValue && value === "radio" && +- nodeName( elem, "input" ) ) { +- var val = elem.value; +- elem.setAttribute( "type", value ); +- if ( val ) { +- elem.value = val; +- } +- return value; +- } +- } +- } +- }, +- +- removeAttr: function( elem, value ) { +- var name, +- i = 0, +- +- // Attribute names can contain non-HTML whitespace characters +- // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 +- attrNames = value && value.match( rnothtmlwhite ); +- +- if ( attrNames && elem.nodeType === 1 ) { +- while ( ( name = attrNames[ i++ ] ) ) { +- elem.removeAttribute( name ); +- } +- } +- } +-} ); +- +-// Hooks for boolean attributes +-boolHook = { +- set: function( elem, value, name ) { +- if ( value === false ) { +- +- // Remove boolean attributes when set to false +- jQuery.removeAttr( elem, name ); +- } else { +- elem.setAttribute( name, name ); +- } +- return name; +- } +-}; +- +-jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { +- var getter = attrHandle[ name ] || jQuery.find.attr; +- +- attrHandle[ name ] = function( elem, name, isXML ) { +- var ret, handle, +- lowercaseName = name.toLowerCase(); +- +- if ( !isXML ) { +- +- // Avoid an infinite loop by temporarily removing this function from the getter +- handle = attrHandle[ lowercaseName ]; +- attrHandle[ lowercaseName ] = ret; +- ret = getter( elem, name, isXML ) != null ? +- lowercaseName : +- null; +- attrHandle[ lowercaseName ] = handle; +- } +- return ret; +- }; +-} ); +- +- +- +- +-var rfocusable = /^(?:input|select|textarea|button)$/i, +- rclickable = /^(?:a|area)$/i; +- +-jQuery.fn.extend( { +- prop: function( name, value ) { +- return access( this, jQuery.prop, name, value, arguments.length > 1 ); +- }, +- +- removeProp: function( name ) { +- return this.each( function() { +- delete this[ jQuery.propFix[ name ] || name ]; +- } ); +- } +-} ); +- +-jQuery.extend( { +- prop: function( elem, name, value ) { +- var ret, hooks, +- nType = elem.nodeType; +- +- // Don't get/set properties on text, comment and attribute nodes +- if ( nType === 3 || nType === 8 || nType === 2 ) { +- return; +- } +- +- if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { +- +- // Fix name and attach hooks +- name = jQuery.propFix[ name ] || name; +- hooks = jQuery.propHooks[ name ]; +- } +- +- if ( value !== undefined ) { +- if ( hooks && "set" in hooks && +- ( ret = hooks.set( elem, value, name ) ) !== undefined ) { +- return ret; +- } +- +- return ( elem[ name ] = value ); +- } +- +- if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { +- return ret; +- } +- +- return elem[ name ]; +- }, +- +- propHooks: { +- tabIndex: { +- get: function( elem ) { +- +- // Support: IE <=9 - 11 only +- // elem.tabIndex doesn't always return the +- // correct value when it hasn't been explicitly set +- // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ +- // Use proper attribute retrieval(#12072) +- var tabindex = jQuery.find.attr( elem, "tabindex" ); +- +- if ( tabindex ) { +- return parseInt( tabindex, 10 ); +- } +- +- if ( +- rfocusable.test( elem.nodeName ) || +- rclickable.test( elem.nodeName ) && +- elem.href +- ) { +- return 0; +- } +- +- return -1; +- } +- } +- }, +- +- propFix: { +- "for": "htmlFor", +- "class": "className" +- } +-} ); +- +-// Support: IE <=11 only +-// Accessing the selectedIndex property +-// forces the browser to respect setting selected +-// on the option +-// The getter ensures a default option is selected +-// when in an optgroup +-// eslint rule "no-unused-expressions" is disabled for this code +-// since it considers such accessions noop +-if ( !support.optSelected ) { +- jQuery.propHooks.selected = { +- get: function( elem ) { +- +- /* eslint no-unused-expressions: "off" */ +- +- var parent = elem.parentNode; +- if ( parent && parent.parentNode ) { +- parent.parentNode.selectedIndex; +- } +- return null; +- }, +- set: function( elem ) { +- +- /* eslint no-unused-expressions: "off" */ +- +- var parent = elem.parentNode; +- if ( parent ) { +- parent.selectedIndex; +- +- if ( parent.parentNode ) { +- parent.parentNode.selectedIndex; +- } +- } +- } +- }; +-} +- +-jQuery.each( [ +- "tabIndex", +- "readOnly", +- "maxLength", +- "cellSpacing", +- "cellPadding", +- "rowSpan", +- "colSpan", +- "useMap", +- "frameBorder", +- "contentEditable" +-], function() { +- jQuery.propFix[ this.toLowerCase() ] = this; +-} ); +- +- +- +- +- // Strip and collapse whitespace according to HTML spec +- // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace +- function stripAndCollapse( value ) { +- var tokens = value.match( rnothtmlwhite ) || []; +- return tokens.join( " " ); +- } +- +- +-function getClass( elem ) { +- return elem.getAttribute && elem.getAttribute( "class" ) || ""; +-} +- +-function classesToArray( value ) { +- if ( Array.isArray( value ) ) { +- return value; +- } +- if ( typeof value === "string" ) { +- return value.match( rnothtmlwhite ) || []; +- } +- return []; +-} +- +-jQuery.fn.extend( { +- addClass: function( value ) { +- var classes, elem, cur, curValue, clazz, j, finalValue, +- i = 0; +- +- if ( isFunction( value ) ) { +- return this.each( function( j ) { +- jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); +- } ); +- } +- +- classes = classesToArray( value ); +- +- if ( classes.length ) { +- while ( ( elem = this[ i++ ] ) ) { +- curValue = getClass( elem ); +- cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); +- +- if ( cur ) { +- j = 0; +- while ( ( clazz = classes[ j++ ] ) ) { +- if ( cur.indexOf( " " + clazz + " " ) < 0 ) { +- cur += clazz + " "; +- } +- } +- +- // Only assign if different to avoid unneeded rendering. +- finalValue = stripAndCollapse( cur ); +- if ( curValue !== finalValue ) { +- elem.setAttribute( "class", finalValue ); +- } +- } +- } +- } +- +- return this; +- }, +- +- removeClass: function( value ) { +- var classes, elem, cur, curValue, clazz, j, finalValue, +- i = 0; +- +- if ( isFunction( value ) ) { +- return this.each( function( j ) { +- jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); +- } ); +- } +- +- if ( !arguments.length ) { +- return this.attr( "class", "" ); +- } +- +- classes = classesToArray( value ); +- +- if ( classes.length ) { +- while ( ( elem = this[ i++ ] ) ) { +- curValue = getClass( elem ); +- +- // This expression is here for better compressibility (see addClass) +- cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); +- +- if ( cur ) { +- j = 0; +- while ( ( clazz = classes[ j++ ] ) ) { +- +- // Remove *all* instances +- while ( cur.indexOf( " " + clazz + " " ) > -1 ) { +- cur = cur.replace( " " + clazz + " ", " " ); +- } +- } +- +- // Only assign if different to avoid unneeded rendering. +- finalValue = stripAndCollapse( cur ); +- if ( curValue !== finalValue ) { +- elem.setAttribute( "class", finalValue ); +- } +- } +- } +- } +- +- return this; +- }, +- +- toggleClass: function( value, stateVal ) { +- var type = typeof value, +- isValidValue = type === "string" || Array.isArray( value ); +- +- if ( typeof stateVal === "boolean" && isValidValue ) { +- return stateVal ? this.addClass( value ) : this.removeClass( value ); +- } +- +- if ( isFunction( value ) ) { +- return this.each( function( i ) { +- jQuery( this ).toggleClass( +- value.call( this, i, getClass( this ), stateVal ), +- stateVal +- ); +- } ); +- } +- +- return this.each( function() { +- var className, i, self, classNames; +- +- if ( isValidValue ) { +- +- // Toggle individual class names +- i = 0; +- self = jQuery( this ); +- classNames = classesToArray( value ); +- +- while ( ( className = classNames[ i++ ] ) ) { +- +- // Check each className given, space separated list +- if ( self.hasClass( className ) ) { +- self.removeClass( className ); +- } else { +- self.addClass( className ); +- } +- } +- +- // Toggle whole class name +- } else if ( value === undefined || type === "boolean" ) { +- className = getClass( this ); +- if ( className ) { +- +- // Store className if set +- dataPriv.set( this, "__className__", className ); +- } +- +- // If the element has a class name or if we're passed `false`, +- // then remove the whole classname (if there was one, the above saved it). +- // Otherwise bring back whatever was previously saved (if anything), +- // falling back to the empty string if nothing was stored. +- if ( this.setAttribute ) { +- this.setAttribute( "class", +- className || value === false ? +- "" : +- dataPriv.get( this, "__className__" ) || "" +- ); +- } +- } +- } ); +- }, +- +- hasClass: function( selector ) { +- var className, elem, +- i = 0; +- +- className = " " + selector + " "; +- while ( ( elem = this[ i++ ] ) ) { +- if ( elem.nodeType === 1 && +- ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { +- return true; +- } +- } +- +- return false; +- } +-} ); +- +- +- +- +-var rreturn = /\r/g; +- +-jQuery.fn.extend( { +- val: function( value ) { +- var hooks, ret, valueIsFunction, +- elem = this[ 0 ]; +- +- if ( !arguments.length ) { +- if ( elem ) { +- hooks = jQuery.valHooks[ elem.type ] || +- jQuery.valHooks[ elem.nodeName.toLowerCase() ]; +- +- if ( hooks && +- "get" in hooks && +- ( ret = hooks.get( elem, "value" ) ) !== undefined +- ) { +- return ret; +- } +- +- ret = elem.value; +- +- // Handle most common string cases +- if ( typeof ret === "string" ) { +- return ret.replace( rreturn, "" ); +- } +- +- // Handle cases where value is null/undef or number +- return ret == null ? "" : ret; +- } +- +- return; +- } +- +- valueIsFunction = isFunction( value ); +- +- return this.each( function( i ) { +- var val; +- +- if ( this.nodeType !== 1 ) { +- return; +- } +- +- if ( valueIsFunction ) { +- val = value.call( this, i, jQuery( this ).val() ); +- } else { +- val = value; +- } +- +- // Treat null/undefined as ""; convert numbers to string +- if ( val == null ) { +- val = ""; +- +- } else if ( typeof val === "number" ) { +- val += ""; +- +- } else if ( Array.isArray( val ) ) { +- val = jQuery.map( val, function( value ) { +- return value == null ? "" : value + ""; +- } ); +- } +- +- hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; +- +- // If set returns undefined, fall back to normal setting +- if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { +- this.value = val; +- } +- } ); +- } +-} ); +- +-jQuery.extend( { +- valHooks: { +- option: { +- get: function( elem ) { +- +- var val = jQuery.find.attr( elem, "value" ); +- return val != null ? +- val : +- +- // Support: IE <=10 - 11 only +- // option.text throws exceptions (#14686, #14858) +- // Strip and collapse whitespace +- // https://html.spec.whatwg.org/#strip-and-collapse-whitespace +- stripAndCollapse( jQuery.text( elem ) ); +- } +- }, +- select: { +- get: function( elem ) { +- var value, option, i, +- options = elem.options, +- index = elem.selectedIndex, +- one = elem.type === "select-one", +- values = one ? null : [], +- max = one ? index + 1 : options.length; +- +- if ( index < 0 ) { +- i = max; +- +- } else { +- i = one ? index : 0; +- } +- +- // Loop through all the selected options +- for ( ; i < max; i++ ) { +- option = options[ i ]; +- +- // Support: IE <=9 only +- // IE8-9 doesn't update selected after form reset (#2551) +- if ( ( option.selected || i === index ) && +- +- // Don't return options that are disabled or in a disabled optgroup +- !option.disabled && +- ( !option.parentNode.disabled || +- !nodeName( option.parentNode, "optgroup" ) ) ) { +- +- // Get the specific value for the option +- value = jQuery( option ).val(); +- +- // We don't need an array for one selects +- if ( one ) { +- return value; +- } +- +- // Multi-Selects return an array +- values.push( value ); +- } +- } +- +- return values; +- }, +- +- set: function( elem, value ) { +- var optionSet, option, +- options = elem.options, +- values = jQuery.makeArray( value ), +- i = options.length; +- +- while ( i-- ) { +- option = options[ i ]; +- +- /* eslint-disable no-cond-assign */ +- +- if ( option.selected = +- jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 +- ) { +- optionSet = true; +- } +- +- /* eslint-enable no-cond-assign */ +- } +- +- // Force browsers to behave consistently when non-matching value is set +- if ( !optionSet ) { +- elem.selectedIndex = -1; +- } +- return values; +- } +- } +- } +-} ); +- +-// Radios and checkboxes getter/setter +-jQuery.each( [ "radio", "checkbox" ], function() { +- jQuery.valHooks[ this ] = { +- set: function( elem, value ) { +- if ( Array.isArray( value ) ) { +- return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); +- } +- } +- }; +- if ( !support.checkOn ) { +- jQuery.valHooks[ this ].get = function( elem ) { +- return elem.getAttribute( "value" ) === null ? "on" : elem.value; +- }; +- } +-} ); +- +- +- +- +-// Return jQuery for attributes-only inclusion +- +- +-support.focusin = "onfocusin" in window; +- +- +-var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, +- stopPropagationCallback = function( e ) { +- e.stopPropagation(); +- }; +- +-jQuery.extend( jQuery.event, { +- +- trigger: function( event, data, elem, onlyHandlers ) { +- +- var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, +- eventPath = [ elem || document ], +- type = hasOwn.call( event, "type" ) ? event.type : event, +- namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; +- +- cur = lastElement = tmp = elem = elem || document; +- +- // Don't do events on text and comment nodes +- if ( elem.nodeType === 3 || elem.nodeType === 8 ) { +- return; +- } +- +- // focus/blur morphs to focusin/out; ensure we're not firing them right now +- if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { +- return; +- } +- +- if ( type.indexOf( "." ) > -1 ) { +- +- // Namespaced trigger; create a regexp to match event type in handle() +- namespaces = type.split( "." ); +- type = namespaces.shift(); +- namespaces.sort(); +- } +- ontype = type.indexOf( ":" ) < 0 && "on" + type; +- +- // Caller can pass in a jQuery.Event object, Object, or just an event type string +- event = event[ jQuery.expando ] ? +- event : +- new jQuery.Event( type, typeof event === "object" && event ); +- +- // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) +- event.isTrigger = onlyHandlers ? 2 : 3; +- event.namespace = namespaces.join( "." ); +- event.rnamespace = event.namespace ? +- new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : +- null; +- +- // Clean up the event in case it is being reused +- event.result = undefined; +- if ( !event.target ) { +- event.target = elem; +- } +- +- // Clone any incoming data and prepend the event, creating the handler arg list +- data = data == null ? +- [ event ] : +- jQuery.makeArray( data, [ event ] ); +- +- // Allow special events to draw outside the lines +- special = jQuery.event.special[ type ] || {}; +- if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { +- return; +- } +- +- // Determine event propagation path in advance, per W3C events spec (#9951) +- // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) +- if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { +- +- bubbleType = special.delegateType || type; +- if ( !rfocusMorph.test( bubbleType + type ) ) { +- cur = cur.parentNode; +- } +- for ( ; cur; cur = cur.parentNode ) { +- eventPath.push( cur ); +- tmp = cur; +- } +- +- // Only add window if we got to document (e.g., not plain obj or detached DOM) +- if ( tmp === ( elem.ownerDocument || document ) ) { +- eventPath.push( tmp.defaultView || tmp.parentWindow || window ); +- } +- } +- +- // Fire handlers on the event path +- i = 0; +- while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { +- lastElement = cur; +- event.type = i > 1 ? +- bubbleType : +- special.bindType || type; +- +- // jQuery handler +- handle = ( +- dataPriv.get( cur, "events" ) || Object.create( null ) +- )[ event.type ] && +- dataPriv.get( cur, "handle" ); +- if ( handle ) { +- handle.apply( cur, data ); +- } +- +- // Native handler +- handle = ontype && cur[ ontype ]; +- if ( handle && handle.apply && acceptData( cur ) ) { +- event.result = handle.apply( cur, data ); +- if ( event.result === false ) { +- event.preventDefault(); +- } +- } +- } +- event.type = type; +- +- // If nobody prevented the default action, do it now +- if ( !onlyHandlers && !event.isDefaultPrevented() ) { +- +- if ( ( !special._default || +- special._default.apply( eventPath.pop(), data ) === false ) && +- acceptData( elem ) ) { +- +- // Call a native DOM method on the target with the same name as the event. +- // Don't do default actions on window, that's where global variables be (#6170) +- if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { +- +- // Don't re-trigger an onFOO event when we call its FOO() method +- tmp = elem[ ontype ]; +- +- if ( tmp ) { +- elem[ ontype ] = null; +- } +- +- // Prevent re-triggering of the same event, since we already bubbled it above +- jQuery.event.triggered = type; +- +- if ( event.isPropagationStopped() ) { +- lastElement.addEventListener( type, stopPropagationCallback ); +- } +- +- elem[ type ](); +- +- if ( event.isPropagationStopped() ) { +- lastElement.removeEventListener( type, stopPropagationCallback ); +- } +- +- jQuery.event.triggered = undefined; +- +- if ( tmp ) { +- elem[ ontype ] = tmp; +- } +- } +- } +- } +- +- return event.result; +- }, +- +- // Piggyback on a donor event to simulate a different one +- // Used only for `focus(in | out)` events +- simulate: function( type, elem, event ) { +- var e = jQuery.extend( +- new jQuery.Event(), +- event, +- { +- type: type, +- isSimulated: true +- } +- ); +- +- jQuery.event.trigger( e, null, elem ); +- } +- +-} ); +- +-jQuery.fn.extend( { +- +- trigger: function( type, data ) { +- return this.each( function() { +- jQuery.event.trigger( type, data, this ); +- } ); +- }, +- triggerHandler: function( type, data ) { +- var elem = this[ 0 ]; +- if ( elem ) { +- return jQuery.event.trigger( type, data, elem, true ); +- } +- } +-} ); +- +- +-// Support: Firefox <=44 +-// Firefox doesn't have focus(in | out) events +-// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +-// +-// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +-// focus(in | out) events fire after focus & blur events, +-// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +-// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +-if ( !support.focusin ) { +- jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { +- +- // Attach a single capturing handler on the document while someone wants focusin/focusout +- var handler = function( event ) { +- jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); +- }; +- +- jQuery.event.special[ fix ] = { +- setup: function() { +- +- // Handle: regular nodes (via `this.ownerDocument`), window +- // (via `this.document`) & document (via `this`). +- var doc = this.ownerDocument || this.document || this, +- attaches = dataPriv.access( doc, fix ); +- +- if ( !attaches ) { +- doc.addEventListener( orig, handler, true ); +- } +- dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); +- }, +- teardown: function() { +- var doc = this.ownerDocument || this.document || this, +- attaches = dataPriv.access( doc, fix ) - 1; +- +- if ( !attaches ) { +- doc.removeEventListener( orig, handler, true ); +- dataPriv.remove( doc, fix ); +- +- } else { +- dataPriv.access( doc, fix, attaches ); +- } +- } +- }; +- } ); +-} +-var location = window.location; +- +-var nonce = { guid: Date.now() }; +- +-var rquery = ( /\?/ ); +- +- +- +-// Cross-browser xml parsing +-jQuery.parseXML = function( data ) { +- var xml; +- if ( !data || typeof data !== "string" ) { +- return null; +- } +- +- // Support: IE 9 - 11 only +- // IE throws on parseFromString with invalid input. +- try { +- xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); +- } catch ( e ) { +- xml = undefined; +- } +- +- if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { +- jQuery.error( "Invalid XML: " + data ); +- } +- return xml; +-}; +- +- +-var +- rbracket = /\[\]$/, +- rCRLF = /\r?\n/g, +- rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, +- rsubmittable = /^(?:input|select|textarea|keygen)/i; +- +-function buildParams( prefix, obj, traditional, add ) { +- var name; +- +- if ( Array.isArray( obj ) ) { +- +- // Serialize array item. +- jQuery.each( obj, function( i, v ) { +- if ( traditional || rbracket.test( prefix ) ) { +- +- // Treat each array item as a scalar. +- add( prefix, v ); +- +- } else { +- +- // Item is non-scalar (array or object), encode its numeric index. +- buildParams( +- prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", +- v, +- traditional, +- add +- ); +- } +- } ); +- +- } else if ( !traditional && toType( obj ) === "object" ) { +- +- // Serialize object item. +- for ( name in obj ) { +- buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); +- } +- +- } else { +- +- // Serialize scalar item. +- add( prefix, obj ); +- } +-} +- +-// Serialize an array of form elements or a set of +-// key/values into a query string +-jQuery.param = function( a, traditional ) { +- var prefix, +- s = [], +- add = function( key, valueOrFunction ) { +- +- // If value is a function, invoke it and use its return value +- var value = isFunction( valueOrFunction ) ? +- valueOrFunction() : +- valueOrFunction; +- +- s[ s.length ] = encodeURIComponent( key ) + "=" + +- encodeURIComponent( value == null ? "" : value ); +- }; +- +- if ( a == null ) { +- return ""; +- } +- +- // If an array was passed in, assume that it is an array of form elements. +- if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { +- +- // Serialize the form elements +- jQuery.each( a, function() { +- add( this.name, this.value ); +- } ); +- +- } else { +- +- // If traditional, encode the "old" way (the way 1.3.2 or older +- // did it), otherwise encode params recursively. +- for ( prefix in a ) { +- buildParams( prefix, a[ prefix ], traditional, add ); +- } +- } +- +- // Return the resulting serialization +- return s.join( "&" ); +-}; +- +-jQuery.fn.extend( { +- serialize: function() { +- return jQuery.param( this.serializeArray() ); +- }, +- serializeArray: function() { +- return this.map( function() { +- +- // Can add propHook for "elements" to filter or add form elements +- var elements = jQuery.prop( this, "elements" ); +- return elements ? jQuery.makeArray( elements ) : this; +- } ) +- .filter( function() { +- var type = this.type; +- +- // Use .is( ":disabled" ) so that fieldset[disabled] works +- return this.name && !jQuery( this ).is( ":disabled" ) && +- rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && +- ( this.checked || !rcheckableType.test( type ) ); +- } ) +- .map( function( _i, elem ) { +- var val = jQuery( this ).val(); +- +- if ( val == null ) { +- return null; +- } +- +- if ( Array.isArray( val ) ) { +- return jQuery.map( val, function( val ) { +- return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; +- } ); +- } +- +- return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; +- } ).get(); +- } +-} ); +- +- +-var +- r20 = /%20/g, +- rhash = /#.*$/, +- rantiCache = /([?&])_=[^&]*/, +- rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, +- +- // #7653, #8125, #8152: local protocol detection +- rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, +- rnoContent = /^(?:GET|HEAD)$/, +- rprotocol = /^\/\//, +- +- /* Prefilters +- * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) +- * 2) These are called: +- * - BEFORE asking for a transport +- * - AFTER param serialization (s.data is a string if s.processData is true) +- * 3) key is the dataType +- * 4) the catchall symbol "*" can be used +- * 5) execution will start with transport dataType and THEN continue down to "*" if needed +- */ +- prefilters = {}, +- +- /* Transports bindings +- * 1) key is the dataType +- * 2) the catchall symbol "*" can be used +- * 3) selection will start with transport dataType and THEN go to "*" if needed +- */ +- transports = {}, +- +- // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression +- allTypes = "*/".concat( "*" ), +- +- // Anchor tag for parsing the document origin +- originAnchor = document.createElement( "a" ); +- originAnchor.href = location.href; +- +-// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +-function addToPrefiltersOrTransports( structure ) { +- +- // dataTypeExpression is optional and defaults to "*" +- return function( dataTypeExpression, func ) { +- +- if ( typeof dataTypeExpression !== "string" ) { +- func = dataTypeExpression; +- dataTypeExpression = "*"; +- } +- +- var dataType, +- i = 0, +- dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; +- +- if ( isFunction( func ) ) { +- +- // For each dataType in the dataTypeExpression +- while ( ( dataType = dataTypes[ i++ ] ) ) { +- +- // Prepend if requested +- if ( dataType[ 0 ] === "+" ) { +- dataType = dataType.slice( 1 ) || "*"; +- ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); +- +- // Otherwise append +- } else { +- ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); +- } +- } +- } +- }; +-} +- +-// Base inspection function for prefilters and transports +-function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { +- +- var inspected = {}, +- seekingTransport = ( structure === transports ); +- +- function inspect( dataType ) { +- var selected; +- inspected[ dataType ] = true; +- jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { +- var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); +- if ( typeof dataTypeOrTransport === "string" && +- !seekingTransport && !inspected[ dataTypeOrTransport ] ) { +- +- options.dataTypes.unshift( dataTypeOrTransport ); +- inspect( dataTypeOrTransport ); +- return false; +- } else if ( seekingTransport ) { +- return !( selected = dataTypeOrTransport ); +- } +- } ); +- return selected; +- } +- +- return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +-} +- +-// A special extend for ajax options +-// that takes "flat" options (not to be deep extended) +-// Fixes #9887 +-function ajaxExtend( target, src ) { +- var key, deep, +- flatOptions = jQuery.ajaxSettings.flatOptions || {}; +- +- for ( key in src ) { +- if ( src[ key ] !== undefined ) { +- ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; +- } +- } +- if ( deep ) { +- jQuery.extend( true, target, deep ); +- } +- +- return target; +-} +- +-/* Handles responses to an ajax request: +- * - finds the right dataType (mediates between content-type and expected dataType) +- * - returns the corresponding response +- */ +-function ajaxHandleResponses( s, jqXHR, responses ) { +- +- var ct, type, finalDataType, firstDataType, +- contents = s.contents, +- dataTypes = s.dataTypes; +- +- // Remove auto dataType and get content-type in the process +- while ( dataTypes[ 0 ] === "*" ) { +- dataTypes.shift(); +- if ( ct === undefined ) { +- ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); +- } +- } +- +- // Check if we're dealing with a known content-type +- if ( ct ) { +- for ( type in contents ) { +- if ( contents[ type ] && contents[ type ].test( ct ) ) { +- dataTypes.unshift( type ); +- break; +- } +- } +- } +- +- // Check to see if we have a response for the expected dataType +- if ( dataTypes[ 0 ] in responses ) { +- finalDataType = dataTypes[ 0 ]; +- } else { +- +- // Try convertible dataTypes +- for ( type in responses ) { +- if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { +- finalDataType = type; +- break; +- } +- if ( !firstDataType ) { +- firstDataType = type; +- } +- } +- +- // Or just use first one +- finalDataType = finalDataType || firstDataType; +- } +- +- // If we found a dataType +- // We add the dataType to the list if needed +- // and return the corresponding response +- if ( finalDataType ) { +- if ( finalDataType !== dataTypes[ 0 ] ) { +- dataTypes.unshift( finalDataType ); +- } +- return responses[ finalDataType ]; +- } +-} +- +-/* Chain conversions given the request and the original response +- * Also sets the responseXXX fields on the jqXHR instance +- */ +-function ajaxConvert( s, response, jqXHR, isSuccess ) { +- var conv2, current, conv, tmp, prev, +- converters = {}, +- +- // Work with a copy of dataTypes in case we need to modify it for conversion +- dataTypes = s.dataTypes.slice(); +- +- // Create converters map with lowercased keys +- if ( dataTypes[ 1 ] ) { +- for ( conv in s.converters ) { +- converters[ conv.toLowerCase() ] = s.converters[ conv ]; +- } +- } +- +- current = dataTypes.shift(); +- +- // Convert to each sequential dataType +- while ( current ) { +- +- if ( s.responseFields[ current ] ) { +- jqXHR[ s.responseFields[ current ] ] = response; +- } +- +- // Apply the dataFilter if provided +- if ( !prev && isSuccess && s.dataFilter ) { +- response = s.dataFilter( response, s.dataType ); +- } +- +- prev = current; +- current = dataTypes.shift(); +- +- if ( current ) { +- +- // There's only work to do if current dataType is non-auto +- if ( current === "*" ) { +- +- current = prev; +- +- // Convert response if prev dataType is non-auto and differs from current +- } else if ( prev !== "*" && prev !== current ) { +- +- // Seek a direct converter +- conv = converters[ prev + " " + current ] || converters[ "* " + current ]; +- +- // If none found, seek a pair +- if ( !conv ) { +- for ( conv2 in converters ) { +- +- // If conv2 outputs current +- tmp = conv2.split( " " ); +- if ( tmp[ 1 ] === current ) { +- +- // If prev can be converted to accepted input +- conv = converters[ prev + " " + tmp[ 0 ] ] || +- converters[ "* " + tmp[ 0 ] ]; +- if ( conv ) { +- +- // Condense equivalence converters +- if ( conv === true ) { +- conv = converters[ conv2 ]; +- +- // Otherwise, insert the intermediate dataType +- } else if ( converters[ conv2 ] !== true ) { +- current = tmp[ 0 ]; +- dataTypes.unshift( tmp[ 1 ] ); +- } +- break; +- } +- } +- } +- } +- +- // Apply converter (if not an equivalence) +- if ( conv !== true ) { +- +- // Unless errors are allowed to bubble, catch and return them +- if ( conv && s.throws ) { +- response = conv( response ); +- } else { +- try { +- response = conv( response ); +- } catch ( e ) { +- return { +- state: "parsererror", +- error: conv ? e : "No conversion from " + prev + " to " + current +- }; +- } +- } +- } +- } +- } +- } +- +- return { state: "success", data: response }; +-} +- +-jQuery.extend( { +- +- // Counter for holding the number of active queries +- active: 0, +- +- // Last-Modified header cache for next request +- lastModified: {}, +- etag: {}, +- +- ajaxSettings: { +- url: location.href, +- type: "GET", +- isLocal: rlocalProtocol.test( location.protocol ), +- global: true, +- processData: true, +- async: true, +- contentType: "application/x-www-form-urlencoded; charset=UTF-8", +- +- /* +- timeout: 0, +- data: null, +- dataType: null, +- username: null, +- password: null, +- cache: null, +- throws: false, +- traditional: false, +- headers: {}, +- */ +- +- accepts: { +- "*": allTypes, +- text: "text/plain", +- html: "text/html", +- xml: "application/xml, text/xml", +- json: "application/json, text/javascript" +- }, +- +- contents: { +- xml: /\bxml\b/, +- html: /\bhtml/, +- json: /\bjson\b/ +- }, +- +- responseFields: { +- xml: "responseXML", +- text: "responseText", +- json: "responseJSON" +- }, +- +- // Data converters +- // Keys separate source (or catchall "*") and destination types with a single space +- converters: { +- +- // Convert anything to text +- "* text": String, +- +- // Text to html (true = no transformation) +- "text html": true, +- +- // Evaluate text as a json expression +- "text json": JSON.parse, +- +- // Parse text as xml +- "text xml": jQuery.parseXML +- }, +- +- // For options that shouldn't be deep extended: +- // you can add your own custom options here if +- // and when you create one that shouldn't be +- // deep extended (see ajaxExtend) +- flatOptions: { +- url: true, +- context: true +- } +- }, +- +- // Creates a full fledged settings object into target +- // with both ajaxSettings and settings fields. +- // If target is omitted, writes into ajaxSettings. +- ajaxSetup: function( target, settings ) { +- return settings ? +- +- // Building a settings object +- ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : +- +- // Extending ajaxSettings +- ajaxExtend( jQuery.ajaxSettings, target ); +- }, +- +- ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), +- ajaxTransport: addToPrefiltersOrTransports( transports ), +- +- // Main method +- ajax: function( url, options ) { +- +- // If url is an object, simulate pre-1.5 signature +- if ( typeof url === "object" ) { +- options = url; +- url = undefined; +- } +- +- // Force options to be an object +- options = options || {}; +- +- var transport, +- +- // URL without anti-cache param +- cacheURL, +- +- // Response headers +- responseHeadersString, +- responseHeaders, +- +- // timeout handle +- timeoutTimer, +- +- // Url cleanup var +- urlAnchor, +- +- // Request state (becomes false upon send and true upon completion) +- completed, +- +- // To know if global events are to be dispatched +- fireGlobals, +- +- // Loop variable +- i, +- +- // uncached part of the url +- uncached, +- +- // Create the final options object +- s = jQuery.ajaxSetup( {}, options ), +- +- // Callbacks context +- callbackContext = s.context || s, +- +- // Context for global events is callbackContext if it is a DOM node or jQuery collection +- globalEventContext = s.context && +- ( callbackContext.nodeType || callbackContext.jquery ) ? +- jQuery( callbackContext ) : +- jQuery.event, +- +- // Deferreds +- deferred = jQuery.Deferred(), +- completeDeferred = jQuery.Callbacks( "once memory" ), +- +- // Status-dependent callbacks +- statusCode = s.statusCode || {}, +- +- // Headers (they are sent all at once) +- requestHeaders = {}, +- requestHeadersNames = {}, +- +- // Default abort message +- strAbort = "canceled", +- +- // Fake xhr +- jqXHR = { +- readyState: 0, +- +- // Builds headers hashtable if needed +- getResponseHeader: function( key ) { +- var match; +- if ( completed ) { +- if ( !responseHeaders ) { +- responseHeaders = {}; +- while ( ( match = rheaders.exec( responseHeadersString ) ) ) { +- responseHeaders[ match[ 1 ].toLowerCase() + " " ] = +- ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) +- .concat( match[ 2 ] ); +- } +- } +- match = responseHeaders[ key.toLowerCase() + " " ]; +- } +- return match == null ? null : match.join( ", " ); +- }, +- +- // Raw string +- getAllResponseHeaders: function() { +- return completed ? responseHeadersString : null; +- }, +- +- // Caches the header +- setRequestHeader: function( name, value ) { +- if ( completed == null ) { +- name = requestHeadersNames[ name.toLowerCase() ] = +- requestHeadersNames[ name.toLowerCase() ] || name; +- requestHeaders[ name ] = value; +- } +- return this; +- }, +- +- // Overrides response content-type header +- overrideMimeType: function( type ) { +- if ( completed == null ) { +- s.mimeType = type; +- } +- return this; +- }, +- +- // Status-dependent callbacks +- statusCode: function( map ) { +- var code; +- if ( map ) { +- if ( completed ) { +- +- // Execute the appropriate callbacks +- jqXHR.always( map[ jqXHR.status ] ); +- } else { +- +- // Lazy-add the new callbacks in a way that preserves old ones +- for ( code in map ) { +- statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; +- } +- } +- } +- return this; +- }, +- +- // Cancel the request +- abort: function( statusText ) { +- var finalText = statusText || strAbort; +- if ( transport ) { +- transport.abort( finalText ); +- } +- done( 0, finalText ); +- return this; +- } +- }; +- +- // Attach deferreds +- deferred.promise( jqXHR ); +- +- // Add protocol if not provided (prefilters might expect it) +- // Handle falsy url in the settings object (#10093: consistency with old signature) +- // We also use the url parameter if available +- s.url = ( ( url || s.url || location.href ) + "" ) +- .replace( rprotocol, location.protocol + "//" ); +- +- // Alias method option to type as per ticket #12004 +- s.type = options.method || options.type || s.method || s.type; +- +- // Extract dataTypes list +- s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; +- +- // A cross-domain request is in order when the origin doesn't match the current origin. +- if ( s.crossDomain == null ) { +- urlAnchor = document.createElement( "a" ); +- +- // Support: IE <=8 - 11, Edge 12 - 15 +- // IE throws exception on accessing the href property if url is malformed, +- // e.g. http://example.com:80x/ +- try { +- urlAnchor.href = s.url; +- +- // Support: IE <=8 - 11 only +- // Anchor's host property isn't correctly set when s.url is relative +- urlAnchor.href = urlAnchor.href; +- s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== +- urlAnchor.protocol + "//" + urlAnchor.host; +- } catch ( e ) { +- +- // If there is an error parsing the URL, assume it is crossDomain, +- // it can be rejected by the transport if it is invalid +- s.crossDomain = true; +- } +- } +- +- // Convert data if not already a string +- if ( s.data && s.processData && typeof s.data !== "string" ) { +- s.data = jQuery.param( s.data, s.traditional ); +- } +- +- // Apply prefilters +- inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); +- +- // If request was aborted inside a prefilter, stop there +- if ( completed ) { +- return jqXHR; +- } +- +- // We can fire global events as of now if asked to +- // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) +- fireGlobals = jQuery.event && s.global; +- +- // Watch for a new set of requests +- if ( fireGlobals && jQuery.active++ === 0 ) { +- jQuery.event.trigger( "ajaxStart" ); +- } +- +- // Uppercase the type +- s.type = s.type.toUpperCase(); +- +- // Determine if request has content +- s.hasContent = !rnoContent.test( s.type ); +- +- // Save the URL in case we're toying with the If-Modified-Since +- // and/or If-None-Match header later on +- // Remove hash to simplify url manipulation +- cacheURL = s.url.replace( rhash, "" ); +- +- // More options handling for requests with no content +- if ( !s.hasContent ) { +- +- // Remember the hash so we can put it back +- uncached = s.url.slice( cacheURL.length ); +- +- // If data is available and should be processed, append data to url +- if ( s.data && ( s.processData || typeof s.data === "string" ) ) { +- cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; +- +- // #9682: remove data so that it's not used in an eventual retry +- delete s.data; +- } +- +- // Add or update anti-cache param if needed +- if ( s.cache === false ) { +- cacheURL = cacheURL.replace( rantiCache, "$1" ); +- uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + +- uncached; +- } +- +- // Put hash and anti-cache on the URL that will be requested (gh-1732) +- s.url = cacheURL + uncached; +- +- // Change '%20' to '+' if this is encoded form body content (gh-2658) +- } else if ( s.data && s.processData && +- ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { +- s.data = s.data.replace( r20, "+" ); +- } +- +- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. +- if ( s.ifModified ) { +- if ( jQuery.lastModified[ cacheURL ] ) { +- jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); +- } +- if ( jQuery.etag[ cacheURL ] ) { +- jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); +- } +- } +- +- // Set the correct header, if data is being sent +- if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { +- jqXHR.setRequestHeader( "Content-Type", s.contentType ); +- } +- +- // Set the Accepts header for the server, depending on the dataType +- jqXHR.setRequestHeader( +- "Accept", +- s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? +- s.accepts[ s.dataTypes[ 0 ] ] + +- ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : +- s.accepts[ "*" ] +- ); +- +- // Check for headers option +- for ( i in s.headers ) { +- jqXHR.setRequestHeader( i, s.headers[ i ] ); +- } +- +- // Allow custom headers/mimetypes and early abort +- if ( s.beforeSend && +- ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { +- +- // Abort if not done already and return +- return jqXHR.abort(); +- } +- +- // Aborting is no longer a cancellation +- strAbort = "abort"; +- +- // Install callbacks on deferreds +- completeDeferred.add( s.complete ); +- jqXHR.done( s.success ); +- jqXHR.fail( s.error ); +- +- // Get transport +- transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); +- +- // If no transport, we auto-abort +- if ( !transport ) { +- done( -1, "No Transport" ); +- } else { +- jqXHR.readyState = 1; +- +- // Send global event +- if ( fireGlobals ) { +- globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); +- } +- +- // If request was aborted inside ajaxSend, stop there +- if ( completed ) { +- return jqXHR; +- } +- +- // Timeout +- if ( s.async && s.timeout > 0 ) { +- timeoutTimer = window.setTimeout( function() { +- jqXHR.abort( "timeout" ); +- }, s.timeout ); +- } +- +- try { +- completed = false; +- transport.send( requestHeaders, done ); +- } catch ( e ) { +- +- // Rethrow post-completion exceptions +- if ( completed ) { +- throw e; +- } +- +- // Propagate others as results +- done( -1, e ); +- } +- } +- +- // Callback for when everything is done +- function done( status, nativeStatusText, responses, headers ) { +- var isSuccess, success, error, response, modified, +- statusText = nativeStatusText; +- +- // Ignore repeat invocations +- if ( completed ) { +- return; +- } +- +- completed = true; +- +- // Clear timeout if it exists +- if ( timeoutTimer ) { +- window.clearTimeout( timeoutTimer ); +- } +- +- // Dereference transport for early garbage collection +- // (no matter how long the jqXHR object will be used) +- transport = undefined; +- +- // Cache response headers +- responseHeadersString = headers || ""; +- +- // Set readyState +- jqXHR.readyState = status > 0 ? 4 : 0; +- +- // Determine if successful +- isSuccess = status >= 200 && status < 300 || status === 304; +- +- // Get response data +- if ( responses ) { +- response = ajaxHandleResponses( s, jqXHR, responses ); +- } +- +- // Use a noop converter for missing script +- if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { +- s.converters[ "text script" ] = function() {}; +- } +- +- // Convert no matter what (that way responseXXX fields are always set) +- response = ajaxConvert( s, response, jqXHR, isSuccess ); +- +- // If successful, handle type chaining +- if ( isSuccess ) { +- +- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. +- if ( s.ifModified ) { +- modified = jqXHR.getResponseHeader( "Last-Modified" ); +- if ( modified ) { +- jQuery.lastModified[ cacheURL ] = modified; +- } +- modified = jqXHR.getResponseHeader( "etag" ); +- if ( modified ) { +- jQuery.etag[ cacheURL ] = modified; +- } +- } +- +- // if no content +- if ( status === 204 || s.type === "HEAD" ) { +- statusText = "nocontent"; +- +- // if not modified +- } else if ( status === 304 ) { +- statusText = "notmodified"; +- +- // If we have data, let's convert it +- } else { +- statusText = response.state; +- success = response.data; +- error = response.error; +- isSuccess = !error; +- } +- } else { +- +- // Extract error from statusText and normalize for non-aborts +- error = statusText; +- if ( status || !statusText ) { +- statusText = "error"; +- if ( status < 0 ) { +- status = 0; +- } +- } +- } +- +- // Set data for the fake xhr object +- jqXHR.status = status; +- jqXHR.statusText = ( nativeStatusText || statusText ) + ""; +- +- // Success/Error +- if ( isSuccess ) { +- deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); +- } else { +- deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); +- } +- +- // Status-dependent callbacks +- jqXHR.statusCode( statusCode ); +- statusCode = undefined; +- +- if ( fireGlobals ) { +- globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", +- [ jqXHR, s, isSuccess ? success : error ] ); +- } +- +- // Complete +- completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); +- +- if ( fireGlobals ) { +- globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); +- +- // Handle the global AJAX counter +- if ( !( --jQuery.active ) ) { +- jQuery.event.trigger( "ajaxStop" ); +- } +- } +- } +- +- return jqXHR; +- }, +- +- getJSON: function( url, data, callback ) { +- return jQuery.get( url, data, callback, "json" ); +- }, +- +- getScript: function( url, callback ) { +- return jQuery.get( url, undefined, callback, "script" ); +- } +-} ); +- +-jQuery.each( [ "get", "post" ], function( _i, method ) { +- jQuery[ method ] = function( url, data, callback, type ) { +- +- // Shift arguments if data argument was omitted +- if ( isFunction( data ) ) { +- type = type || callback; +- callback = data; +- data = undefined; +- } +- +- // The url can be an options object (which then must have .url) +- return jQuery.ajax( jQuery.extend( { +- url: url, +- type: method, +- dataType: type, +- data: data, +- success: callback +- }, jQuery.isPlainObject( url ) && url ) ); +- }; +-} ); +- +-jQuery.ajaxPrefilter( function( s ) { +- var i; +- for ( i in s.headers ) { +- if ( i.toLowerCase() === "content-type" ) { +- s.contentType = s.headers[ i ] || ""; +- } +- } +-} ); +- +- +-jQuery._evalUrl = function( url, options, doc ) { +- return jQuery.ajax( { +- url: url, +- +- // Make this explicit, since user can override this through ajaxSetup (#11264) +- type: "GET", +- dataType: "script", +- cache: true, +- async: false, +- global: false, +- +- // Only evaluate the response if it is successful (gh-4126) +- // dataFilter is not invoked for failure responses, so using it instead +- // of the default converter is kludgy but it works. +- converters: { +- "text script": function() {} +- }, +- dataFilter: function( response ) { +- jQuery.globalEval( response, options, doc ); +- } +- } ); +-}; +- +- +-jQuery.fn.extend( { +- wrapAll: function( html ) { +- var wrap; +- +- if ( this[ 0 ] ) { +- if ( isFunction( html ) ) { +- html = html.call( this[ 0 ] ); +- } +- +- // The elements to wrap the target around +- wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); +- +- if ( this[ 0 ].parentNode ) { +- wrap.insertBefore( this[ 0 ] ); +- } +- +- wrap.map( function() { +- var elem = this; +- +- while ( elem.firstElementChild ) { +- elem = elem.firstElementChild; +- } +- +- return elem; +- } ).append( this ); +- } +- +- return this; +- }, +- +- wrapInner: function( html ) { +- if ( isFunction( html ) ) { +- return this.each( function( i ) { +- jQuery( this ).wrapInner( html.call( this, i ) ); +- } ); +- } +- +- return this.each( function() { +- var self = jQuery( this ), +- contents = self.contents(); +- +- if ( contents.length ) { +- contents.wrapAll( html ); +- +- } else { +- self.append( html ); +- } +- } ); +- }, +- +- wrap: function( html ) { +- var htmlIsFunction = isFunction( html ); +- +- return this.each( function( i ) { +- jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); +- } ); +- }, +- +- unwrap: function( selector ) { +- this.parent( selector ).not( "body" ).each( function() { +- jQuery( this ).replaceWith( this.childNodes ); +- } ); +- return this; +- } +-} ); +- +- +-jQuery.expr.pseudos.hidden = function( elem ) { +- return !jQuery.expr.pseudos.visible( elem ); +-}; +-jQuery.expr.pseudos.visible = function( elem ) { +- return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +-}; +- +- +- +- +-jQuery.ajaxSettings.xhr = function() { +- try { +- return new window.XMLHttpRequest(); +- } catch ( e ) {} +-}; +- +-var xhrSuccessStatus = { +- +- // File protocol always yields status code 0, assume 200 +- 0: 200, +- +- // Support: IE <=9 only +- // #1450: sometimes IE returns 1223 when it should be 204 +- 1223: 204 +- }, +- xhrSupported = jQuery.ajaxSettings.xhr(); +- +-support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +-support.ajax = xhrSupported = !!xhrSupported; +- +-jQuery.ajaxTransport( function( options ) { +- var callback, errorCallback; +- +- // Cross domain only allowed if supported through XMLHttpRequest +- if ( support.cors || xhrSupported && !options.crossDomain ) { +- return { +- send: function( headers, complete ) { +- var i, +- xhr = options.xhr(); +- +- xhr.open( +- options.type, +- options.url, +- options.async, +- options.username, +- options.password +- ); +- +- // Apply custom fields if provided +- if ( options.xhrFields ) { +- for ( i in options.xhrFields ) { +- xhr[ i ] = options.xhrFields[ i ]; +- } +- } +- +- // Override mime type if needed +- if ( options.mimeType && xhr.overrideMimeType ) { +- xhr.overrideMimeType( options.mimeType ); +- } +- +- // X-Requested-With header +- // For cross-domain requests, seeing as conditions for a preflight are +- // akin to a jigsaw puzzle, we simply never set it to be sure. +- // (it can always be set on a per-request basis or even using ajaxSetup) +- // For same-domain requests, won't change header if already provided. +- if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { +- headers[ "X-Requested-With" ] = "XMLHttpRequest"; +- } +- +- // Set headers +- for ( i in headers ) { +- xhr.setRequestHeader( i, headers[ i ] ); +- } +- +- // Callback +- callback = function( type ) { +- return function() { +- if ( callback ) { +- callback = errorCallback = xhr.onload = +- xhr.onerror = xhr.onabort = xhr.ontimeout = +- xhr.onreadystatechange = null; +- +- if ( type === "abort" ) { +- xhr.abort(); +- } else if ( type === "error" ) { +- +- // Support: IE <=9 only +- // On a manual native abort, IE9 throws +- // errors on any property access that is not readyState +- if ( typeof xhr.status !== "number" ) { +- complete( 0, "error" ); +- } else { +- complete( +- +- // File: protocol always yields status 0; see #8605, #14207 +- xhr.status, +- xhr.statusText +- ); +- } +- } else { +- complete( +- xhrSuccessStatus[ xhr.status ] || xhr.status, +- xhr.statusText, +- +- // Support: IE <=9 only +- // IE9 has no XHR2 but throws on binary (trac-11426) +- // For XHR2 non-text, let the caller handle it (gh-2498) +- ( xhr.responseType || "text" ) !== "text" || +- typeof xhr.responseText !== "string" ? +- { binary: xhr.response } : +- { text: xhr.responseText }, +- xhr.getAllResponseHeaders() +- ); +- } +- } +- }; +- }; +- +- // Listen to events +- xhr.onload = callback(); +- errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); +- +- // Support: IE 9 only +- // Use onreadystatechange to replace onabort +- // to handle uncaught aborts +- if ( xhr.onabort !== undefined ) { +- xhr.onabort = errorCallback; +- } else { +- xhr.onreadystatechange = function() { +- +- // Check readyState before timeout as it changes +- if ( xhr.readyState === 4 ) { +- +- // Allow onerror to be called first, +- // but that will not handle a native abort +- // Also, save errorCallback to a variable +- // as xhr.onerror cannot be accessed +- window.setTimeout( function() { +- if ( callback ) { +- errorCallback(); +- } +- } ); +- } +- }; +- } +- +- // Create the abort callback +- callback = callback( "abort" ); +- +- try { +- +- // Do send the request (this may raise an exception) +- xhr.send( options.hasContent && options.data || null ); +- } catch ( e ) { +- +- // #14683: Only rethrow if this hasn't been notified as an error yet +- if ( callback ) { +- throw e; +- } +- } +- }, +- +- abort: function() { +- if ( callback ) { +- callback(); +- } +- } +- }; +- } +-} ); +- +- +- +- +-// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +-jQuery.ajaxPrefilter( function( s ) { +- if ( s.crossDomain ) { +- s.contents.script = false; +- } +-} ); +- +-// Install script dataType +-jQuery.ajaxSetup( { +- accepts: { +- script: "text/javascript, application/javascript, " + +- "application/ecmascript, application/x-ecmascript" +- }, +- contents: { +- script: /\b(?:java|ecma)script\b/ +- }, +- converters: { +- "text script": function( text ) { +- jQuery.globalEval( text ); +- return text; +- } +- } +-} ); +- +-// Handle cache's special case and crossDomain +-jQuery.ajaxPrefilter( "script", function( s ) { +- if ( s.cache === undefined ) { +- s.cache = false; +- } +- if ( s.crossDomain ) { +- s.type = "GET"; +- } +-} ); +- +-// Bind script tag hack transport +-jQuery.ajaxTransport( "script", function( s ) { +- +- // This transport only deals with cross domain or forced-by-attrs requests +- if ( s.crossDomain || s.scriptAttrs ) { +- var script, callback; +- return { +- send: function( _, complete ) { +- script = jQuery( "<script>" ) +- .attr( s.scriptAttrs || {} ) +- .prop( { charset: s.scriptCharset, src: s.url } ) +- .on( "load error", callback = function( evt ) { +- script.remove(); +- callback = null; +- if ( evt ) { +- complete( evt.type === "error" ? 404 : 200, evt.type ); +- } +- } ); +- +- // Use native DOM manipulation to avoid our domManip AJAX trickery +- document.head.appendChild( script[ 0 ] ); +- }, +- abort: function() { +- if ( callback ) { +- callback(); +- } +- } +- }; +- } +-} ); +- +- +- +- +-var oldCallbacks = [], +- rjsonp = /(=)\?(?=&|$)|\?\?/; +- +-// Default jsonp settings +-jQuery.ajaxSetup( { +- jsonp: "callback", +- jsonpCallback: function() { +- var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce.guid++ ) ); +- this[ callback ] = true; +- return callback; +- } +-} ); +- +-// Detect, normalize options and install callbacks for jsonp requests +-jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { +- +- var callbackName, overwritten, responseContainer, +- jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? +- "url" : +- typeof s.data === "string" && +- ( s.contentType || "" ) +- .indexOf( "application/x-www-form-urlencoded" ) === 0 && +- rjsonp.test( s.data ) && "data" +- ); +- +- // Handle iff the expected data type is "jsonp" or we have a parameter to set +- if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { +- +- // Get callback name, remembering preexisting value associated with it +- callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ? +- s.jsonpCallback() : +- s.jsonpCallback; +- +- // Insert callback into url or form data +- if ( jsonProp ) { +- s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); +- } else if ( s.jsonp !== false ) { +- s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; +- } +- +- // Use data converter to retrieve json after script execution +- s.converters[ "script json" ] = function() { +- if ( !responseContainer ) { +- jQuery.error( callbackName + " was not called" ); +- } +- return responseContainer[ 0 ]; +- }; +- +- // Force json dataType +- s.dataTypes[ 0 ] = "json"; +- +- // Install callback +- overwritten = window[ callbackName ]; +- window[ callbackName ] = function() { +- responseContainer = arguments; +- }; +- +- // Clean-up function (fires after converters) +- jqXHR.always( function() { +- +- // If previous value didn't exist - remove it +- if ( overwritten === undefined ) { +- jQuery( window ).removeProp( callbackName ); +- +- // Otherwise restore preexisting value +- } else { +- window[ callbackName ] = overwritten; +- } +- +- // Save back as free +- if ( s[ callbackName ] ) { +- +- // Make sure that re-using the options doesn't screw things around +- s.jsonpCallback = originalSettings.jsonpCallback; +- +- // Save the callback name for future use +- oldCallbacks.push( callbackName ); +- } +- +- // Call if it was a function and we have a response +- if ( responseContainer && isFunction( overwritten ) ) { +- overwritten( responseContainer[ 0 ] ); +- } +- +- responseContainer = overwritten = undefined; +- } ); +- +- // Delegate to script +- return "script"; +- } +-} ); +- +- +- +- +-// Support: Safari 8 only +-// In Safari 8 documents created via document.implementation.createHTMLDocument +-// collapse sibling forms: the second one becomes a child of the first one. +-// Because of that, this security measure has to be disabled in Safari 8. +-// https://bugs.webkit.org/show_bug.cgi?id=137337 +-support.createHTMLDocument = ( function() { +- var body = document.implementation.createHTMLDocument( "" ).body; +- body.innerHTML = "<form></form><form></form>"; +- return body.childNodes.length === 2; +-} )(); +- +- +-// Argument "data" should be string of html +-// context (optional): If specified, the fragment will be created in this context, +-// defaults to document +-// keepScripts (optional): If true, will include scripts passed in the html string +-jQuery.parseHTML = function( data, context, keepScripts ) { +- if ( typeof data !== "string" ) { +- return []; +- } +- if ( typeof context === "boolean" ) { +- keepScripts = context; +- context = false; +- } +- +- var base, parsed, scripts; +- +- if ( !context ) { +- +- // Stop scripts or inline event handlers from being executed immediately +- // by using document.implementation +- if ( support.createHTMLDocument ) { +- context = document.implementation.createHTMLDocument( "" ); +- +- // Set the base href for the created document +- // so any parsed elements with URLs +- // are based on the document's URL (gh-2965) +- base = context.createElement( "base" ); +- base.href = document.location.href; +- context.head.appendChild( base ); +- } else { +- context = document; +- } +- } +- +- parsed = rsingleTag.exec( data ); +- scripts = !keepScripts && []; +- +- // Single tag +- if ( parsed ) { +- return [ context.createElement( parsed[ 1 ] ) ]; +- } +- +- parsed = buildFragment( [ data ], context, scripts ); +- +- if ( scripts && scripts.length ) { +- jQuery( scripts ).remove(); +- } +- +- return jQuery.merge( [], parsed.childNodes ); +-}; +- +- +-/** +- * Load a url into a page +- */ +-jQuery.fn.load = function( url, params, callback ) { +- var selector, type, response, +- self = this, +- off = url.indexOf( " " ); +- +- if ( off > -1 ) { +- selector = stripAndCollapse( url.slice( off ) ); +- url = url.slice( 0, off ); +- } +- +- // If it's a function +- if ( isFunction( params ) ) { +- +- // We assume that it's the callback +- callback = params; +- params = undefined; +- +- // Otherwise, build a param string +- } else if ( params && typeof params === "object" ) { +- type = "POST"; +- } +- +- // If we have elements to modify, make the request +- if ( self.length > 0 ) { +- jQuery.ajax( { +- url: url, +- +- // If "type" variable is undefined, then "GET" method will be used. +- // Make value of this field explicit since +- // user can override it through ajaxSetup method +- type: type || "GET", +- dataType: "html", +- data: params +- } ).done( function( responseText ) { +- +- // Save response for use in complete callback +- response = arguments; +- +- self.html( selector ? +- +- // If a selector was specified, locate the right elements in a dummy div +- // Exclude scripts to avoid IE 'Permission Denied' errors +- jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) : +- +- // Otherwise use the full result +- responseText ); +- +- // If the request succeeds, this function gets "data", "status", "jqXHR" +- // but they are ignored because response was set above. +- // If it fails, this function gets "jqXHR", "status", "error" +- } ).always( callback && function( jqXHR, status ) { +- self.each( function() { +- callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] ); +- } ); +- } ); +- } +- +- return this; +-}; +- +- +- +- +-jQuery.expr.pseudos.animated = function( elem ) { +- return jQuery.grep( jQuery.timers, function( fn ) { +- return elem === fn.elem; +- } ).length; +-}; +- +- +- +- +-jQuery.offset = { +- setOffset: function( elem, options, i ) { +- var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition, +- position = jQuery.css( elem, "position" ), +- curElem = jQuery( elem ), +- props = {}; +- +- // Set position first, in-case top/left are set even on static elem +- if ( position === "static" ) { +- elem.style.position = "relative"; +- } +- +- curOffset = curElem.offset(); +- curCSSTop = jQuery.css( elem, "top" ); +- curCSSLeft = jQuery.css( elem, "left" ); +- calculatePosition = ( position === "absolute" || position === "fixed" ) && +- ( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1; +- +- // Need to be able to calculate position if either +- // top or left is auto and position is either absolute or fixed +- if ( calculatePosition ) { +- curPosition = curElem.position(); +- curTop = curPosition.top; +- curLeft = curPosition.left; +- +- } else { +- curTop = parseFloat( curCSSTop ) || 0; +- curLeft = parseFloat( curCSSLeft ) || 0; +- } +- +- if ( isFunction( options ) ) { +- +- // Use jQuery.extend here to allow modification of coordinates argument (gh-1848) +- options = options.call( elem, i, jQuery.extend( {}, curOffset ) ); +- } +- +- if ( options.top != null ) { +- props.top = ( options.top - curOffset.top ) + curTop; +- } +- if ( options.left != null ) { +- props.left = ( options.left - curOffset.left ) + curLeft; +- } +- +- if ( "using" in options ) { +- options.using.call( elem, props ); +- +- } else { +- if ( typeof props.top === "number" ) { +- props.top += "px"; +- } +- if ( typeof props.left === "number" ) { +- props.left += "px"; +- } +- curElem.css( props ); +- } +- } +-}; +- +-jQuery.fn.extend( { +- +- // offset() relates an element's border box to the document origin +- offset: function( options ) { +- +- // Preserve chaining for setter +- if ( arguments.length ) { +- return options === undefined ? +- this : +- this.each( function( i ) { +- jQuery.offset.setOffset( this, options, i ); +- } ); +- } +- +- var rect, win, +- elem = this[ 0 ]; +- +- if ( !elem ) { +- return; +- } +- +- // Return zeros for disconnected and hidden (display: none) elements (gh-2310) +- // Support: IE <=11 only +- // Running getBoundingClientRect on a +- // disconnected node in IE throws an error +- if ( !elem.getClientRects().length ) { +- return { top: 0, left: 0 }; +- } +- +- // Get document-relative position by adding viewport scroll to viewport-relative gBCR +- rect = elem.getBoundingClientRect(); +- win = elem.ownerDocument.defaultView; +- return { +- top: rect.top + win.pageYOffset, +- left: rect.left + win.pageXOffset +- }; +- }, +- +- // position() relates an element's margin box to its offset parent's padding box +- // This corresponds to the behavior of CSS absolute positioning +- position: function() { +- if ( !this[ 0 ] ) { +- return; +- } +- +- var offsetParent, offset, doc, +- elem = this[ 0 ], +- parentOffset = { top: 0, left: 0 }; +- +- // position:fixed elements are offset from the viewport, which itself always has zero offset +- if ( jQuery.css( elem, "position" ) === "fixed" ) { +- +- // Assume position:fixed implies availability of getBoundingClientRect +- offset = elem.getBoundingClientRect(); +- +- } else { +- offset = this.offset(); +- +- // Account for the *real* offset parent, which can be the document or its root element +- // when a statically positioned element is identified +- doc = elem.ownerDocument; +- offsetParent = elem.offsetParent || doc.documentElement; +- while ( offsetParent && +- ( offsetParent === doc.body || offsetParent === doc.documentElement ) && +- jQuery.css( offsetParent, "position" ) === "static" ) { +- +- offsetParent = offsetParent.parentNode; +- } +- if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) { +- +- // Incorporate borders into its offset, since they are outside its content origin +- parentOffset = jQuery( offsetParent ).offset(); +- parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true ); +- parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true ); +- } +- } +- +- // Subtract parent offsets and element margins +- return { +- top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), +- left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true ) +- }; +- }, +- +- // This method will return documentElement in the following cases: +- // 1) For the element inside the iframe without offsetParent, this method will return +- // documentElement of the parent window +- // 2) For the hidden or detached element +- // 3) For body or html element, i.e. in case of the html node - it will return itself +- // +- // but those exceptions were never presented as a real life use-cases +- // and might be considered as more preferable results. +- // +- // This logic, however, is not guaranteed and can change at any point in the future +- offsetParent: function() { +- return this.map( function() { +- var offsetParent = this.offsetParent; +- +- while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) { +- offsetParent = offsetParent.offsetParent; +- } +- +- return offsetParent || documentElement; +- } ); +- } +-} ); +- +-// Create scrollLeft and scrollTop methods +-jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) { +- var top = "pageYOffset" === prop; +- +- jQuery.fn[ method ] = function( val ) { +- return access( this, function( elem, method, val ) { +- +- // Coalesce documents and windows +- var win; +- if ( isWindow( elem ) ) { +- win = elem; +- } else if ( elem.nodeType === 9 ) { +- win = elem.defaultView; +- } +- +- if ( val === undefined ) { +- return win ? win[ prop ] : elem[ method ]; +- } +- +- if ( win ) { +- win.scrollTo( +- !top ? val : win.pageXOffset, +- top ? val : win.pageYOffset +- ); +- +- } else { +- elem[ method ] = val; +- } +- }, method, val, arguments.length ); +- }; +-} ); +- +-// Support: Safari <=7 - 9.1, Chrome <=37 - 49 +-// Add the top/left cssHooks using jQuery.fn.position +-// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 +-// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347 +-// getComputedStyle returns percent when specified for top/left/bottom/right; +-// rather than make the css module depend on the offset module, just check for it here +-jQuery.each( [ "top", "left" ], function( _i, prop ) { +- jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, +- function( elem, computed ) { +- if ( computed ) { +- computed = curCSS( elem, prop ); +- +- // If curCSS returns percentage, fallback to offset +- return rnumnonpx.test( computed ) ? +- jQuery( elem ).position()[ prop ] + "px" : +- computed; +- } +- } +- ); +-} ); +- +- +-// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods +-jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { +- jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, +- function( defaultExtra, funcName ) { +- +- // Margin is only for outerHeight, outerWidth +- jQuery.fn[ funcName ] = function( margin, value ) { +- var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), +- extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); +- +- return access( this, function( elem, type, value ) { +- var doc; +- +- if ( isWindow( elem ) ) { +- +- // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729) +- return funcName.indexOf( "outer" ) === 0 ? +- elem[ "inner" + name ] : +- elem.document.documentElement[ "client" + name ]; +- } +- +- // Get document width or height +- if ( elem.nodeType === 9 ) { +- doc = elem.documentElement; +- +- // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], +- // whichever is greatest +- return Math.max( +- elem.body[ "scroll" + name ], doc[ "scroll" + name ], +- elem.body[ "offset" + name ], doc[ "offset" + name ], +- doc[ "client" + name ] +- ); +- } +- +- return value === undefined ? +- +- // Get width or height on the element, requesting but not forcing parseFloat +- jQuery.css( elem, type, extra ) : +- +- // Set width or height on the element +- jQuery.style( elem, type, value, extra ); +- }, type, chainable ? margin : undefined, chainable ); +- }; +- } ); +-} ); +- +- +-jQuery.each( [ +- "ajaxStart", +- "ajaxStop", +- "ajaxComplete", +- "ajaxError", +- "ajaxSuccess", +- "ajaxSend" +-], function( _i, type ) { +- jQuery.fn[ type ] = function( fn ) { +- return this.on( type, fn ); +- }; +-} ); +- +- +- +- +-jQuery.fn.extend( { +- +- bind: function( types, data, fn ) { +- return this.on( types, null, data, fn ); +- }, +- unbind: function( types, fn ) { +- return this.off( types, null, fn ); +- }, +- +- delegate: function( selector, types, data, fn ) { +- return this.on( types, selector, data, fn ); +- }, +- undelegate: function( selector, types, fn ) { +- +- // ( namespace ) or ( selector, types [, fn] ) +- return arguments.length === 1 ? +- this.off( selector, "**" ) : +- this.off( types, selector || "**", fn ); +- }, +- +- hover: function( fnOver, fnOut ) { +- return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); +- } +-} ); +- +-jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " + +- "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + +- "change select submit keydown keypress keyup contextmenu" ).split( " " ), +- function( _i, name ) { +- +- // Handle event binding +- jQuery.fn[ name ] = function( data, fn ) { +- return arguments.length > 0 ? +- this.on( name, null, data, fn ) : +- this.trigger( name ); +- }; +- } ); +- +- +- +- +-// Support: Android <=4.0 only +-// Make sure we trim BOM and NBSP +-var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; +- +-// Bind a function to a context, optionally partially applying any +-// arguments. +-// jQuery.proxy is deprecated to promote standards (specifically Function#bind) +-// However, it is not slated for removal any time soon +-jQuery.proxy = function( fn, context ) { +- var tmp, args, proxy; +- +- if ( typeof context === "string" ) { +- tmp = fn[ context ]; +- context = fn; +- fn = tmp; +- } +- +- // Quick check to determine if target is callable, in the spec +- // this throws a TypeError, but we will just return undefined. +- if ( !isFunction( fn ) ) { +- return undefined; +- } +- +- // Simulated bind +- args = slice.call( arguments, 2 ); +- proxy = function() { +- return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); +- }; +- +- // Set the guid of unique handler to the same of original handler, so it can be removed +- proxy.guid = fn.guid = fn.guid || jQuery.guid++; +- +- return proxy; +-}; +- +-jQuery.holdReady = function( hold ) { +- if ( hold ) { +- jQuery.readyWait++; +- } else { +- jQuery.ready( true ); +- } +-}; +-jQuery.isArray = Array.isArray; +-jQuery.parseJSON = JSON.parse; +-jQuery.nodeName = nodeName; +-jQuery.isFunction = isFunction; +-jQuery.isWindow = isWindow; +-jQuery.camelCase = camelCase; +-jQuery.type = toType; +- +-jQuery.now = Date.now; +- +-jQuery.isNumeric = function( obj ) { +- +- // As of jQuery 3.0, isNumeric is limited to +- // strings and numbers (primitives or objects) +- // that can be coerced to finite numbers (gh-2662) +- var type = jQuery.type( obj ); +- return ( type === "number" || type === "string" ) && +- +- // parseFloat NaNs numeric-cast false positives ("") +- // ...but misinterprets leading-number strings, particularly hex literals ("0x...") +- // subtraction forces infinities to NaN +- !isNaN( obj - parseFloat( obj ) ); +-}; +- +-jQuery.trim = function( text ) { +- return text == null ? +- "" : +- ( text + "" ).replace( rtrim, "" ); +-}; +- +- +- +-// Register as a named AMD module, since jQuery can be concatenated with other +-// files that may use define, but not via a proper concatenation script that +-// understands anonymous AMD modules. A named AMD is safest and most robust +-// way to register. Lowercase jquery is used because AMD module names are +-// derived from file names, and jQuery is normally delivered in a lowercase +-// file name. Do this after creating the global so that if an AMD module wants +-// to call noConflict to hide this version of jQuery, it will work. +- +-// Note that for maximum portability, libraries that are not jQuery should +-// declare themselves as anonymous modules, and avoid setting a global if an +-// AMD loader is present. jQuery is a special case. For more information, see +-// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon +- +-if ( typeof define === "function" && define.amd ) { +- define( "jquery", [], function() { +- return jQuery; +- } ); +-} +- +- +- +- +-var +- +- // Map over jQuery in case of overwrite +- _jQuery = window.jQuery, +- +- // Map over the $ in case of overwrite +- _$ = window.$; +- +-jQuery.noConflict = function( deep ) { +- if ( window.$ === jQuery ) { +- window.$ = _$; +- } +- +- if ( deep && window.jQuery === jQuery ) { +- window.jQuery = _jQuery; +- } +- +- return jQuery; +-}; +- +-// Expose jQuery and $ identifiers, even in AMD +-// (#7102#comment:10, https://github.com/jquery/jquery/pull/557) +-// and CommonJS for browser emulators (#13566) +-if ( typeof noGlobal === "undefined" ) { +- window.jQuery = window.$ = jQuery; +-} +- +- +- +- +-return jQuery; +-} ); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery.min.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery.min.js +deleted file mode 100644 +index b0614034a..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/jquery.min.js ++++ /dev/null +@@ -1,2 +0,0 @@ +-/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +-!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(D).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(D(this,e||[],!1))},not:function(e){return this.pushStack(D(this,e||[],!0))},is:function(e){return!!D(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var j,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Ae(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,Ce)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=Te.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each(function(){S.event.remove(this,e,n,t)})}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function Pe(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&De.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Pe(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),Le)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,He),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(je,""),u,l))}return n}function Re(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Re(this,e,!0)},remove:function(e){return Re(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Pe(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)})},prepend:function(){return Pe(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Pe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Pe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Pe(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Me=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Ie=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},We=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Fe=new RegExp(ne.join("|"),"i");function Be(e,t,n){var r,i,o,a,s=e.style;return(n=n||Ie(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Me.test(a)&&Fe.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function $e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px",t.style.height="1px",n.style.height="9px",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=3<parseInt(r.height),re.removeChild(e)),a}}))}();var _e=["Webkit","Moz","ms"],ze=E.createElement("div").style,Ue={};function Xe(e){var t=S.cssProps[e]||Ue[e];return t||(e in ze?e:Ue[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=_e.length;while(n--)if((e=_e[n]+t)in ze)return e}(e)||e)}var Ve=/^(none|table(?!-c[ea]).+)/,Ge=/^--/,Ye={position:"absolute",visibility:"hidden",display:"block"},Qe={letterSpacing:"0",fontWeight:"400"};function Je(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ke(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Ie(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=Be(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Me.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?"border":"content"),o,r,a)+"px"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Ge.test(t),l=e.style;if(u||(t=Xe(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Ge.test(t)||(t=Xe(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),"normal"===i&&t in Qe&&(i=Qe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ve.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,u,n):We(e,Ye,function(){return Ze(e,u,n)})},set:function(e,t,n){var r,i=Ie(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Ke(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Ke(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Je(0,t,s)}}}),S.cssHooks.marginLeft=$e(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Be(e,"marginLeft"))||e.getBoundingClientRect().left-We(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Je)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ie(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=et).prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}}).init.prototype=et.prototype,(et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[Xe(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=et.prototype.init,S.fx.step={};var tt,nt,rt,it,ot=/^(?:toggle|show|hide)$/,at=/queueHooks$/;function st(){nt&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(st):C.setTimeout(st,S.fx.interval),S.fx.tick())}function ut(){return C.setTimeout(function(){tt=void 0}),tt=Date.now()}function lt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ct(e,t,n){for(var r,i=(ft.tweeners[t]||[]).concat(ft.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ft(o,e,t){var n,a,r=0,i=ft.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=tt||ut(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:tt||ut(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=ft.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ct,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(ft,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ft.tweeners[n]=ft.tweeners[n]||[],ft.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],ot.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ct(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ft.prefilters.unshift(e):ft.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=ft(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&at.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(lt(r,!0),e,t,n)}}),S.each({slideDown:lt("show"),slideUp:lt("hide"),slideToggle:lt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(tt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),tt=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){nt||(nt=!0,st())},S.fx.stop=function(){nt=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},rt=E.createElement("input"),it=E.createElement("select").appendChild(E.createElement("option")),rt.type="checkbox",y.checkOn=""!==rt.value,y.optSelected=it.selected,(rt=E.createElement("input")).value="t",rt.type="radio",y.radioValue="t"===rt.value;var pt,dt=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=dt[t]||S.find.attr;dt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=dt[o],dt[o]=r,r=null!=a(e,t,n)?o:null,dt[o]=i),r}});var ht=/^(?:input|select|textarea|button)$/i,gt=/^(?:a|area)$/i;function vt(e){return(e.match(P)||[]).join(" ")}function yt(e){return e.getAttribute&&e.getAttribute("class")||""}function mt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):ht.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,yt(this)))});if((e=mt(t)).length)while(n=this[u++])if(i=yt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,yt(this)))});if(!arguments.length)return this.attr("class","");if((e=mt(t)).length)while(n=this[u++])if(i=yt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,yt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=mt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=yt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+vt(yt(n))+" ").indexOf(t))return!0;return!1}});var xt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(xt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:vt(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var bt=/^(?:focusinfocus|focusoutblur)$/,wt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!bt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,bt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,wt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,wt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var Tt=C.location,Ct={guid:Date.now()},Et=/\?/;S.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||S.error("Invalid XML: "+e),t};var St=/\[\]$/,kt=/\r?\n/g,At=/^(?:submit|button|image|reset|file)$/i,Nt=/^(?:input|select|textarea|keygen)/i;function Dt(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||St.test(n)?i(n,t):Dt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)Dt(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)Dt(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&Nt.test(this.nodeName)&&!At.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(kt,"\r\n")}}):{name:t.name,value:n.replace(kt,"\r\n")}}).get()}});var jt=/%20/g,qt=/#.*$/,Lt=/([?&])_=[^&]*/,Ht=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:GET|HEAD)$/,Pt=/^\/\//,Rt={},Mt={},It="*/".concat("*"),Wt=E.createElement("a");function Ft(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Bt(t,i,o,a){var s={},u=t===Mt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function $t(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Wt.href=Tt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Tt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":It,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?$t($t(e,S.ajaxSettings),t):$t(S.ajaxSettings,e)},ajaxPrefilter:Ft(Rt),ajaxTransport:Ft(Mt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Ht.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Tt.href)+"").replace(Pt,Tt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Wt.protocol+"//"+Wt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Bt(Rt,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Ot.test(v.type),f=v.url.replace(qt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(jt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Et.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Lt,"$1"),o=(Et.test(f)?"&":"?")+"_="+Ct.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+It+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Bt(Mt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var _t={0:200,1223:204},zt=S.ajaxSettings.xhr();y.cors=!!zt&&"withCredentials"in zt,y.ajax=zt=!!zt,S.ajaxTransport(function(i){var o,a;if(y.cors||zt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(_t[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=vt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Gt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Gt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Yt=C.jQuery,Qt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Qt),e&&C.jQuery===S&&(C.jQuery=Yt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/ng-google-chart.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/ng-google-chart.js +deleted file mode 100755 +index 16c7e1cbb..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/ng-google-chart.js ++++ /dev/null +@@ -1,261 +0,0 @@ +-/** +- * @description Google Chart Api Directive Module for AngularJS +- * @version 0.0.11 +- * @author Nicolas Bouillon <nicolas@bouil.org> +- * @author GitHub contributors +- * @license MIT +- * @year 2013 +- */ +-(function (document, window, angular) { +- 'use strict'; +- +- angular.module('googlechart', []) +- +- .value('googleChartApiConfig', { +- version: '1', +- optionalSettings: { +- packages: ['corechart'] +- } +- }) +- +- .provider('googleJsapiUrl', function () { +- var protocol = 'https:'; +- var url = '//www.google.com/jsapi'; +- +- this.setProtocol = function(newProtocol) { +- protocol = newProtocol; +- }; +- +- this.setUrl = function(newUrl) { +- url = newUrl; +- }; +- +- this.$get = function() { +- return (protocol ? protocol : '') + url; +- }; +- }) +- .factory('googleChartApiPromise', ['$rootScope', '$q', 'googleChartApiConfig', 'googleJsapiUrl', function ($rootScope, $q, apiConfig, googleJsapiUrl) { +- var apiReady = $q.defer(); +- var onLoad = function () { +- // override callback function +- var settings = { +- callback: function () { +- var oldCb = apiConfig.optionalSettings.callback; +- $rootScope.$apply(function () { +- apiReady.resolve(); +- }); +- +- if (angular.isFunction(oldCb)) { +- oldCb.call(this); +- } +- } +- }; +- +- settings = angular.extend({}, apiConfig.optionalSettings, settings); +- +- window.google.load('visualization', apiConfig.version, settings); +- }; +- var head = document.getElementsByTagName('head')[0]; +- var script = document.createElement('script'); +- +- script.setAttribute('type', 'text/javascript'); +- script.src = googleJsapiUrl; +- +- if (script.addEventListener) { // Standard browsers (including IE9+) +- script.addEventListener('load', onLoad, false); +- } else { // IE8 and below +- script.onreadystatechange = function () { +- if (script.readyState === 'loaded' || script.readyState === 'complete') { +- script.onreadystatechange = null; +- onLoad(); +- } +- }; +- } +- +- head.appendChild(script); +- +- return apiReady.promise; +- }]) +- .directive('googleChart', ['$timeout', '$window', '$rootScope', 'googleChartApiPromise', function ($timeout, $window, $rootScope, googleChartApiPromise) { +- return { +- restrict: 'A', +- scope: { +- beforeDraw: '&', +- chart: '=chart', +- onReady: '&', +- onSelect: '&', +- select: '&' +- }, +- link: function ($scope, $elm, $attrs) { +- /* Watches, to refresh the chart when its data, formatters, options, view, +- or type change. All other values intentionally disregarded to avoid double +- calls to the draw function. Please avoid making changes to these objects +- directly from this directive.*/ +- $scope.$watch(function () { +- if ($scope.chart) { +- return { +- customFormatters: $scope.chart.customFormatters, +- data: $scope.chart.data, +- formatters: $scope.chart.formatters, +- options: $scope.chart.options, +- type: $scope.chart.type, +- view: $scope.chart.view +- }; +- } +- return $scope.chart; +- }, function () { +- drawAsync(); +- }, true); // true is for deep object equality checking +- +- // Redraw the chart if the window is resized +- var resizeHandler = $rootScope.$on('resizeMsg', function () { +- $timeout(function () { +- // Not always defined yet in IE so check +- if($scope.chartWrapper) { +- drawAsync(); +- } +- }); +- }); +- +- //Cleanup resize handler. +- $scope.$on('$destroy', function () { +- resizeHandler(); +- }); +- +- // Keeps old formatter configuration to compare against +- $scope.oldChartFormatters = {}; +- +- function applyFormat(formatType, formatClass, dataTable) { +- +- if (typeof($scope.chart.formatters[formatType]) != 'undefined') { +- if (!angular.equals($scope.chart.formatters[formatType], $scope.oldChartFormatters[formatType])) { +- $scope.oldChartFormatters[formatType] = $scope.chart.formatters[formatType]; +- $scope.formatters[formatType] = []; +- +- if (formatType === 'color') { +- for (var cIdx = 0; cIdx < $scope.chart.formatters[formatType].length; cIdx++) { +- var colorFormat = new formatClass(); +- +- for (i = 0; i < $scope.chart.formatters[formatType][cIdx].formats.length; i++) { +- var data = $scope.chart.formatters[formatType][cIdx].formats[i]; +- +- if (typeof(data.fromBgColor) != 'undefined' && typeof(data.toBgColor) != 'undefined') +- colorFormat.addGradientRange(data.from, data.to, data.color, data.fromBgColor, data.toBgColor); +- else +- colorFormat.addRange(data.from, data.to, data.color, data.bgcolor); +- } +- +- $scope.formatters[formatType].push(colorFormat) +- } +- } else { +- +- for (var i = 0; i < $scope.chart.formatters[formatType].length; i++) { +- $scope.formatters[formatType].push(new formatClass( +- $scope.chart.formatters[formatType][i]) +- ); +- } +- } +- } +- +- +- //apply formats to dataTable +- for (i = 0; i < $scope.formatters[formatType].length; i++) { +- if ($scope.chart.formatters[formatType][i].columnNum < dataTable.getNumberOfColumns()) +- $scope.formatters[formatType][i].format(dataTable, $scope.chart.formatters[formatType][i].columnNum); +- } +- +- +- //Many formatters require HTML tags to display special formatting +- if (formatType === 'arrow' || formatType === 'bar' || formatType === 'color') +- $scope.chart.options.allowHtml = true; +- } +- } +- +- function draw() { +- if (!draw.triggered && ($scope.chart != undefined)) { +- draw.triggered = true; +- $timeout(function () { +- +- if (typeof ($scope.chartWrapper) == 'undefined') { +- var chartWrapperArgs = { +- chartType: $scope.chart.type, +- dataTable: $scope.chart.data, +- view: $scope.chart.view, +- options: $scope.chart.options, +- containerId: $elm[0] +- }; +- +- $scope.chartWrapper = new google.visualization.ChartWrapper(chartWrapperArgs); +- google.visualization.events.addListener($scope.chartWrapper, 'ready', function () { +- $scope.chart.displayed = true; +- $scope.$apply(function (scope) { +- scope.onReady({ chartWrapper: scope.chartWrapper }); +- }); +- }); +- google.visualization.events.addListener($scope.chartWrapper, 'error', function (err) { +- console.log("Chart not displayed due to error: " + err.message + ". Full error object follows."); +- console.log(err); +- }); +- google.visualization.events.addListener($scope.chartWrapper, 'select', function () { +- var selectedItem = $scope.chartWrapper.getChart().getSelection()[0]; +- $scope.$apply(function () { +- if ($attrs.select) { +- console.log('Angular-Google-Chart: The \'select\' attribute is deprecated and will be removed in a future release. Please use \'onSelect\'.'); +- $scope.select({ selectedItem: selectedItem }); +- } +- else { +- $scope.onSelect({ selectedItem: selectedItem }); +- } +- }); +- }); +- } +- else { +- $scope.chartWrapper.setChartType($scope.chart.type); +- $scope.chartWrapper.setDataTable($scope.chart.data); +- $scope.chartWrapper.setView($scope.chart.view); +- $scope.chartWrapper.setOptions($scope.chart.options); +- } +- +- if (typeof($scope.formatters) === 'undefined') +- $scope.formatters = {}; +- +- if (typeof($scope.chart.formatters) != 'undefined') { +- applyFormat("number", google.visualization.NumberFormat, $scope.chartWrapper.getDataTable()); +- applyFormat("arrow", google.visualization.ArrowFormat, $scope.chartWrapper.getDataTable()); +- applyFormat("date", google.visualization.DateFormat, $scope.chartWrapper.getDataTable()); +- applyFormat("bar", google.visualization.BarFormat, $scope.chartWrapper.getDataTable()); +- applyFormat("color", google.visualization.ColorFormat, $scope.chartWrapper.getDataTable()); +- } +- +- var customFormatters = $scope.chart.customFormatters; +- if (typeof(customFormatters) != 'undefined') { +- for (var name in customFormatters) { +- applyFormat(name, customFormatters[name], $scope.chartWrapper.getDataTable()); +- } +- } +- +- $timeout(function () { +- $scope.beforeDraw({ chartWrapper: $scope.chartWrapper }); +- $scope.chartWrapper.draw(); +- draw.triggered = false; +- }); +- }, 0, true); +- } +- } +- +- function drawAsync() { +- googleChartApiPromise.then(function () { +- draw(); +- }) +- } +- } +- }; +- }]) +- +- .run(['$rootScope', '$window', function ($rootScope, $window) { +- angular.element($window).bind('resize', function () { +- $rootScope.$emit('resizeMsg'); +- }); +- }]); +- +-})(document, window, window.angular); +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/ui-bootstrap-tpls.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/ui-bootstrap-tpls.js +deleted file mode 100755 +index 611966115..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/ui-bootstrap-tpls.js ++++ /dev/null +@@ -1,4840 +0,0 @@ +-/* +- * angular-ui-bootstrap +- * http://angular-ui.github.io/bootstrap/ +- +- * Version: 0.13.0 - 2015-05-02 +- * License: MIT +- */ +-angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.collapse","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.bindHtml","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.position","ui.bootstrap.datepicker","ui.bootstrap.dropdown","ui.bootstrap.modal","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.transition","ui.bootstrap.typeahead"]); +-angular.module("ui.bootstrap.tpls", ["template/accordion/accordion-group.html","template/accordion/accordion.html","template/alert/alert.html","template/carousel/carousel.html","template/carousel/slide.html","template/datepicker/datepicker.html","template/datepicker/day.html","template/datepicker/month.html","template/datepicker/popup.html","template/datepicker/year.html","template/modal/backdrop.html","template/modal/window.html","template/pagination/pager.html","template/pagination/pagination.html","template/tooltip/tooltip-html-popup.html","template/tooltip/tooltip-html-unsafe-popup.html","template/tooltip/tooltip-popup.html","template/tooltip/tooltip-template-popup.html","template/popover/popover-template.html","template/popover/popover.html","template/progressbar/bar.html","template/progressbar/progress.html","template/progressbar/progressbar.html","template/rating/rating.html","template/tabs/tab.html","template/tabs/tabset.html","template/timepicker/timepicker.html","template/typeahead/typeahead-match.html","template/typeahead/typeahead-popup.html"]); +-angular.module('ui.bootstrap.collapse', []) +- +- .directive('collapse', ['$animate', function ($animate) { +- +- return { +- link: function (scope, element, attrs) { +- function expand() { +- element.removeClass('collapse').addClass('collapsing'); +- $animate.addClass(element, 'in', { +- to: { height: element[0].scrollHeight + 'px' } +- }).then(expandDone); +- } +- +- function expandDone() { +- element.removeClass('collapsing'); +- element.css({height: 'auto'}); +- } +- +- function collapse() { +- element +- // IMPORTANT: The height must be set before adding "collapsing" class. +- // Otherwise, the browser attempts to animate from height 0 (in +- // collapsing class) to the given height here. +- .css({height: element[0].scrollHeight + 'px'}) +- // initially all panel collapse have the collapse class, this removal +- // prevents the animation from jumping to collapsed state +- .removeClass('collapse') +- .addClass('collapsing'); +- +- $animate.removeClass(element, 'in', { +- to: {height: '0'} +- }).then(collapseDone); +- } +- +- function collapseDone() { +- element.css({height: '0'}); // Required so that collapse works when animation is disabled +- element.removeClass('collapsing'); +- element.addClass('collapse'); +- } +- +- scope.$watch(attrs.collapse, function (shouldCollapse) { +- if (shouldCollapse) { +- collapse(); +- } else { +- expand(); +- } +- }); +- } +- }; +- }]); +- +-angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse']) +- +-.constant('accordionConfig', { +- closeOthers: true +-}) +- +-.controller('AccordionController', ['$scope', '$attrs', 'accordionConfig', function ($scope, $attrs, accordionConfig) { +- +- // This array keeps track of the accordion groups +- this.groups = []; +- +- // Ensure that all the groups in this accordion are closed, unless close-others explicitly says not to +- this.closeOthers = function(openGroup) { +- var closeOthers = angular.isDefined($attrs.closeOthers) ? $scope.$eval($attrs.closeOthers) : accordionConfig.closeOthers; +- if ( closeOthers ) { +- angular.forEach(this.groups, function (group) { +- if ( group !== openGroup ) { +- group.isOpen = false; +- } +- }); +- } +- }; +- +- // This is called from the accordion-group directive to add itself to the accordion +- this.addGroup = function(groupScope) { +- var that = this; +- this.groups.push(groupScope); +- +- groupScope.$on('$destroy', function (event) { +- that.removeGroup(groupScope); +- }); +- }; +- +- // This is called from the accordion-group directive when to remove itself +- this.removeGroup = function(group) { +- var index = this.groups.indexOf(group); +- if ( index !== -1 ) { +- this.groups.splice(index, 1); +- } +- }; +- +-}]) +- +-// The accordion directive simply sets up the directive controller +-// and adds an accordion CSS class to itself element. +-.directive('accordion', function () { +- return { +- restrict:'EA', +- controller:'AccordionController', +- transclude: true, +- replace: false, +- templateUrl: 'template/accordion/accordion.html' +- }; +-}) +- +-// The accordion-group directive indicates a block of html that will expand and collapse in an accordion +-.directive('accordionGroup', function() { +- return { +- require:'^accordion', // We need this directive to be inside an accordion +- restrict:'EA', +- transclude:true, // It transcludes the contents of the directive into the template +- replace: true, // The element containing the directive will be replaced with the template +- templateUrl:'template/accordion/accordion-group.html', +- scope: { +- heading: '@', // Interpolate the heading attribute onto this scope +- isOpen: '=?', +- isDisabled: '=?' +- }, +- controller: function() { +- this.setHeading = function(element) { +- this.heading = element; +- }; +- }, +- link: function(scope, element, attrs, accordionCtrl) { +- accordionCtrl.addGroup(scope); +- +- scope.$watch('isOpen', function(value) { +- if ( value ) { +- accordionCtrl.closeOthers(scope); +- } +- }); +- +- scope.toggleOpen = function() { +- if ( !scope.isDisabled ) { +- scope.isOpen = !scope.isOpen; +- } +- }; +- } +- }; +-}) +- +-// Use accordion-heading below an accordion-group to provide a heading containing HTML +-// <accordion-group> +-// <accordion-heading>Heading containing HTML - <img src="..."></accordion-heading> +-// </accordion-group> +-.directive('accordionHeading', function() { +- return { +- restrict: 'EA', +- transclude: true, // Grab the contents to be used as the heading +- template: '', // In effect remove this element! +- replace: true, +- require: '^accordionGroup', +- link: function(scope, element, attr, accordionGroupCtrl, transclude) { +- // Pass the heading to the accordion-group controller +- // so that it can be transcluded into the right place in the template +- // [The second parameter to transclude causes the elements to be cloned so that they work in ng-repeat] +- accordionGroupCtrl.setHeading(transclude(scope, angular.noop)); +- } +- }; +-}) +- +-// Use in the accordion-group template to indicate where you want the heading to be transcluded +-// You must provide the property on the accordion-group controller that will hold the transcluded element +-// <div class="accordion-group"> +-// <div class="accordion-heading" ><a ... accordion-transclude="heading">...</a></div> +-// ... +-// </div> +-.directive('accordionTransclude', function() { +- return { +- require: '^accordionGroup', +- link: function(scope, element, attr, controller) { +- scope.$watch(function() { return controller[attr.accordionTransclude]; }, function(heading) { +- if ( heading ) { +- element.html(''); +- element.append(heading); +- } +- }); +- } +- }; +-}) +- +-; +- +-angular.module('ui.bootstrap.alert', []) +- +-.controller('AlertController', ['$scope', '$attrs', function ($scope, $attrs) { +- $scope.closeable = 'close' in $attrs; +- this.close = $scope.close; +-}]) +- +-.directive('alert', function () { +- return { +- restrict:'EA', +- controller:'AlertController', +- templateUrl:'template/alert/alert.html', +- transclude:true, +- replace:true, +- scope: { +- type: '@', +- close: '&' +- } +- }; +-}) +- +-.directive('dismissOnTimeout', ['$timeout', function($timeout) { +- return { +- require: 'alert', +- link: function(scope, element, attrs, alertCtrl) { +- $timeout(function(){ +- alertCtrl.close(); +- }, parseInt(attrs.dismissOnTimeout, 10)); +- } +- }; +-}]); +- +-angular.module('ui.bootstrap.bindHtml', []) +- +- .directive('bindHtmlUnsafe', function () { +- return function (scope, element, attr) { +- element.addClass('ng-binding').data('$binding', attr.bindHtmlUnsafe); +- scope.$watch(attr.bindHtmlUnsafe, function bindHtmlUnsafeWatchAction(value) { +- element.html(value || ''); +- }); +- }; +- }); +-angular.module('ui.bootstrap.buttons', []) +- +-.constant('buttonConfig', { +- activeClass: 'active', +- toggleEvent: 'click' +-}) +- +-.controller('ButtonsController', ['buttonConfig', function(buttonConfig) { +- this.activeClass = buttonConfig.activeClass || 'active'; +- this.toggleEvent = buttonConfig.toggleEvent || 'click'; +-}]) +- +-.directive('btnRadio', function () { +- return { +- require: ['btnRadio', 'ngModel'], +- controller: 'ButtonsController', +- link: function (scope, element, attrs, ctrls) { +- var buttonsCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- //model -> UI +- ngModelCtrl.$render = function () { +- element.toggleClass(buttonsCtrl.activeClass, angular.equals(ngModelCtrl.$modelValue, scope.$eval(attrs.btnRadio))); +- }; +- +- //ui->model +- element.bind(buttonsCtrl.toggleEvent, function () { +- var isActive = element.hasClass(buttonsCtrl.activeClass); +- +- if (!isActive || angular.isDefined(attrs.uncheckable)) { +- scope.$apply(function () { +- ngModelCtrl.$setViewValue(isActive ? null : scope.$eval(attrs.btnRadio)); +- ngModelCtrl.$render(); +- }); +- } +- }); +- } +- }; +-}) +- +-.directive('btnCheckbox', function () { +- return { +- require: ['btnCheckbox', 'ngModel'], +- controller: 'ButtonsController', +- link: function (scope, element, attrs, ctrls) { +- var buttonsCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- function getTrueValue() { +- return getCheckboxValue(attrs.btnCheckboxTrue, true); +- } +- +- function getFalseValue() { +- return getCheckboxValue(attrs.btnCheckboxFalse, false); +- } +- +- function getCheckboxValue(attributeValue, defaultValue) { +- var val = scope.$eval(attributeValue); +- return angular.isDefined(val) ? val : defaultValue; +- } +- +- //model -> UI +- ngModelCtrl.$render = function () { +- element.toggleClass(buttonsCtrl.activeClass, angular.equals(ngModelCtrl.$modelValue, getTrueValue())); +- }; +- +- //ui->model +- element.bind(buttonsCtrl.toggleEvent, function () { +- scope.$apply(function () { +- ngModelCtrl.$setViewValue(element.hasClass(buttonsCtrl.activeClass) ? getFalseValue() : getTrueValue()); +- ngModelCtrl.$render(); +- }); +- }); +- } +- }; +-}); +- +-/** +-* @ngdoc overview +-* @name ui.bootstrap.carousel +-* +-* @description +-* AngularJS version of an image carousel. +-* +-*/ +-angular.module('ui.bootstrap.carousel', []) +-.controller('CarouselController', ['$scope', '$interval', '$animate', function ($scope, $interval, $animate) { +- var self = this, +- slides = self.slides = $scope.slides = [], +- currentIndex = -1, +- currentInterval, isPlaying; +- self.currentSlide = null; +- +- var destroyed = false; +- /* direction: "prev" or "next" */ +- self.select = $scope.select = function(nextSlide, direction) { +- var nextIndex = self.indexOfSlide(nextSlide); +- //Decide direction if it's not given +- if (direction === undefined) { +- direction = nextIndex > self.getCurrentIndex() ? 'next' : 'prev'; +- } +- if (nextSlide && nextSlide !== self.currentSlide) { +- goNext(); +- } +- function goNext() { +- // Scope has been destroyed, stop here. +- if (destroyed) { return; } +- +- angular.extend(nextSlide, {direction: direction, active: true}); +- angular.extend(self.currentSlide || {}, {direction: direction, active: false}); +- if ($animate.enabled() && !$scope.noTransition && nextSlide.$element) { +- $scope.$currentTransition = true; +- nextSlide.$element.one('$animate:close', function closeFn() { +- $scope.$currentTransition = null; +- }); +- } +- +- self.currentSlide = nextSlide; +- currentIndex = nextIndex; +- //every time you change slides, reset the timer +- restartTimer(); +- } +- }; +- $scope.$on('$destroy', function () { +- destroyed = true; +- }); +- +- function getSlideByIndex(index) { +- if (angular.isUndefined(slides[index].index)) { +- return slides[index]; +- } +- var i, len = slides.length; +- for (i = 0; i < slides.length; ++i) { +- if (slides[i].index == index) { +- return slides[i]; +- } +- } +- } +- +- self.getCurrentIndex = function() { +- if (self.currentSlide && angular.isDefined(self.currentSlide.index)) { +- return +self.currentSlide.index; +- } +- return currentIndex; +- }; +- +- /* Allow outside people to call indexOf on slides array */ +- self.indexOfSlide = function(slide) { +- return angular.isDefined(slide.index) ? +slide.index : slides.indexOf(slide); +- }; +- +- $scope.next = function() { +- var newIndex = (self.getCurrentIndex() + 1) % slides.length; +- +- //Prevent this user-triggered transition from occurring if there is already one in progress +- if (!$scope.$currentTransition) { +- return self.select(getSlideByIndex(newIndex), 'next'); +- } +- }; +- +- $scope.prev = function() { +- var newIndex = self.getCurrentIndex() - 1 < 0 ? slides.length - 1 : self.getCurrentIndex() - 1; +- +- //Prevent this user-triggered transition from occurring if there is already one in progress +- if (!$scope.$currentTransition) { +- return self.select(getSlideByIndex(newIndex), 'prev'); +- } +- }; +- +- $scope.isActive = function(slide) { +- return self.currentSlide === slide; +- }; +- +- $scope.$watch('interval', restartTimer); +- $scope.$on('$destroy', resetTimer); +- +- function restartTimer() { +- resetTimer(); +- var interval = +$scope.interval; +- if (!isNaN(interval) && interval > 0) { +- currentInterval = $interval(timerFn, interval); +- } +- } +- +- function resetTimer() { +- if (currentInterval) { +- $interval.cancel(currentInterval); +- currentInterval = null; +- } +- } +- +- function timerFn() { +- var interval = +$scope.interval; +- if (isPlaying && !isNaN(interval) && interval > 0) { +- $scope.next(); +- } else { +- $scope.pause(); +- } +- } +- +- $scope.play = function() { +- if (!isPlaying) { +- isPlaying = true; +- restartTimer(); +- } +- }; +- $scope.pause = function() { +- if (!$scope.noPause) { +- isPlaying = false; +- resetTimer(); +- } +- }; +- +- self.addSlide = function(slide, element) { +- slide.$element = element; +- slides.push(slide); +- //if this is the first slide or the slide is set to active, select it +- if(slides.length === 1 || slide.active) { +- self.select(slides[slides.length-1]); +- if (slides.length == 1) { +- $scope.play(); +- } +- } else { +- slide.active = false; +- } +- }; +- +- self.removeSlide = function(slide) { +- if (angular.isDefined(slide.index)) { +- slides.sort(function(a, b) { +- return +a.index > +b.index; +- }); +- } +- //get the index of the slide inside the carousel +- var index = slides.indexOf(slide); +- slides.splice(index, 1); +- if (slides.length > 0 && slide.active) { +- if (index >= slides.length) { +- self.select(slides[index-1]); +- } else { +- self.select(slides[index]); +- } +- } else if (currentIndex > index) { +- currentIndex--; +- } +- }; +- +-}]) +- +-/** +- * @ngdoc directive +- * @name ui.bootstrap.carousel.directive:carousel +- * @restrict EA +- * +- * @description +- * Carousel is the outer container for a set of image 'slides' to showcase. +- * +- * @param {number=} interval The time, in milliseconds, that it will take the carousel to go to the next slide. +- * @param {boolean=} noTransition Whether to disable transitions on the carousel. +- * @param {boolean=} noPause Whether to disable pausing on the carousel (by default, the carousel interval pauses on hover). +- * +- * @example +-<example module="ui.bootstrap"> +- <file name="index.html"> +- <carousel> +- <slide> +- <img src="http://placekitten.com/150/150" style="margin:auto;"> +- <div class="carousel-caption"> +- <p>Beautiful!</p> +- </div> +- </slide> +- <slide> +- <img src="http://placekitten.com/100/150" style="margin:auto;"> +- <div class="carousel-caption"> +- <p>D'aww!</p> +- </div> +- </slide> +- </carousel> +- </file> +- <file name="demo.css"> +- .carousel-indicators { +- top: auto; +- bottom: 15px; +- } +- </file> +-</example> +- */ +-.directive('carousel', [function() { +- return { +- restrict: 'EA', +- transclude: true, +- replace: true, +- controller: 'CarouselController', +- require: 'carousel', +- templateUrl: 'template/carousel/carousel.html', +- scope: { +- interval: '=', +- noTransition: '=', +- noPause: '=' +- } +- }; +-}]) +- +-/** +- * @ngdoc directive +- * @name ui.bootstrap.carousel.directive:slide +- * @restrict EA +- * +- * @description +- * Creates a slide inside a {@link ui.bootstrap.carousel.directive:carousel carousel}. Must be placed as a child of a carousel element. +- * +- * @param {boolean=} active Model binding, whether or not this slide is currently active. +- * @param {number=} index The index of the slide. The slides will be sorted by this parameter. +- * +- * @example +-<example module="ui.bootstrap"> +- <file name="index.html"> +-<div ng-controller="CarouselDemoCtrl"> +- <carousel> +- <slide ng-repeat="slide in slides" active="slide.active" index="$index"> +- <img ng-src="{{slide.image}}" style="margin:auto;"> +- <div class="carousel-caption"> +- <h4>Slide {{$index}}</h4> +- <p>{{slide.text}}</p> +- </div> +- </slide> +- </carousel> +- Interval, in milliseconds: <input type="number" ng-model="myInterval"> +- <br />Enter a negative number to stop the interval. +-</div> +- </file> +- <file name="script.js"> +-function CarouselDemoCtrl($scope) { +- $scope.myInterval = 5000; +-} +- </file> +- <file name="demo.css"> +- .carousel-indicators { +- top: auto; +- bottom: 15px; +- } +- </file> +-</example> +-*/ +- +-.directive('slide', function() { +- return { +- require: '^carousel', +- restrict: 'EA', +- transclude: true, +- replace: true, +- templateUrl: 'template/carousel/slide.html', +- scope: { +- active: '=?', +- index: '=?' +- }, +- link: function (scope, element, attrs, carouselCtrl) { +- carouselCtrl.addSlide(scope, element); +- //when the scope is destroyed then remove the slide from the current slides array +- scope.$on('$destroy', function() { +- carouselCtrl.removeSlide(scope); +- }); +- +- scope.$watch('active', function(active) { +- if (active) { +- carouselCtrl.select(scope); +- } +- }); +- } +- }; +-}) +- +-.animation('.item', [ +- '$animate', +-function ($animate) { +- return { +- beforeAddClass: function (element, className, done) { +- // Due to transclusion, noTransition property is on parent's scope +- if (className == 'active' && element.parent() && +- !element.parent().scope().noTransition) { +- var stopped = false; +- var direction = element.isolateScope().direction; +- var directionClass = direction == 'next' ? 'left' : 'right'; +- element.addClass(direction); +- $animate.addClass(element, directionClass).then(function () { +- if (!stopped) { +- element.removeClass(directionClass + ' ' + direction); +- } +- done(); +- }); +- +- return function () { +- stopped = true; +- }; +- } +- done(); +- }, +- beforeRemoveClass: function (element, className, done) { +- // Due to transclusion, noTransition property is on parent's scope +- if (className == 'active' && element.parent() && +- !element.parent().scope().noTransition) { +- var stopped = false; +- var direction = element.isolateScope().direction; +- var directionClass = direction == 'next' ? 'left' : 'right'; +- $animate.addClass(element, directionClass).then(function () { +- if (!stopped) { +- element.removeClass(directionClass); +- } +- done(); +- }); +- return function () { +- stopped = true; +- }; +- } +- done(); +- } +- }; +- +-}]) +- +- +-; +- +-angular.module('ui.bootstrap.dateparser', []) +- +-.service('dateParser', ['$locale', 'orderByFilter', function($locale, orderByFilter) { +- // Pulled from https://github.com/mbostock/d3/blob/master/src/format/requote.js +- var SPECIAL_CHARACTERS_REGEXP = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g; +- +- this.parsers = {}; +- +- var formatCodeToRegex = { +- 'yyyy': { +- regex: '\\d{4}', +- apply: function(value) { this.year = +value; } +- }, +- 'yy': { +- regex: '\\d{2}', +- apply: function(value) { this.year = +value + 2000; } +- }, +- 'y': { +- regex: '\\d{1,4}', +- apply: function(value) { this.year = +value; } +- }, +- 'MMMM': { +- regex: $locale.DATETIME_FORMATS.MONTH.join('|'), +- apply: function(value) { this.month = $locale.DATETIME_FORMATS.MONTH.indexOf(value); } +- }, +- 'MMM': { +- regex: $locale.DATETIME_FORMATS.SHORTMONTH.join('|'), +- apply: function(value) { this.month = $locale.DATETIME_FORMATS.SHORTMONTH.indexOf(value); } +- }, +- 'MM': { +- regex: '0[1-9]|1[0-2]', +- apply: function(value) { this.month = value - 1; } +- }, +- 'M': { +- regex: '[1-9]|1[0-2]', +- apply: function(value) { this.month = value - 1; } +- }, +- 'dd': { +- regex: '[0-2][0-9]{1}|3[0-1]{1}', +- apply: function(value) { this.date = +value; } +- }, +- 'd': { +- regex: '[1-2]?[0-9]{1}|3[0-1]{1}', +- apply: function(value) { this.date = +value; } +- }, +- 'EEEE': { +- regex: $locale.DATETIME_FORMATS.DAY.join('|') +- }, +- 'EEE': { +- regex: $locale.DATETIME_FORMATS.SHORTDAY.join('|') +- }, +- 'HH': { +- regex: '(?:0|1)[0-9]|2[0-3]', +- apply: function(value) { this.hours = +value; } +- }, +- 'H': { +- regex: '1?[0-9]|2[0-3]', +- apply: function(value) { this.hours = +value; } +- }, +- 'mm': { +- regex: '[0-5][0-9]', +- apply: function(value) { this.minutes = +value; } +- }, +- 'm': { +- regex: '[0-9]|[1-5][0-9]', +- apply: function(value) { this.minutes = +value; } +- }, +- 'sss': { +- regex: '[0-9][0-9][0-9]', +- apply: function(value) { this.milliseconds = +value; } +- }, +- 'ss': { +- regex: '[0-5][0-9]', +- apply: function(value) { this.seconds = +value; } +- }, +- 's': { +- regex: '[0-9]|[1-5][0-9]', +- apply: function(value) { this.seconds = +value; } +- } +- }; +- +- function createParser(format) { +- var map = [], regex = format.split(''); +- +- angular.forEach(formatCodeToRegex, function(data, code) { +- var index = format.indexOf(code); +- +- if (index > -1) { +- format = format.split(''); +- +- regex[index] = '(' + data.regex + ')'; +- format[index] = '$'; // Custom symbol to define consumed part of format +- for (var i = index + 1, n = index + code.length; i < n; i++) { +- regex[i] = ''; +- format[i] = '$'; +- } +- format = format.join(''); +- +- map.push({ index: index, apply: data.apply }); +- } +- }); +- +- return { +- regex: new RegExp('^' + regex.join('') + '$'), +- map: orderByFilter(map, 'index') +- }; +- } +- +- this.parse = function(input, format, baseDate) { +- if ( !angular.isString(input) || !format ) { +- return input; +- } +- +- format = $locale.DATETIME_FORMATS[format] || format; +- format = format.replace(SPECIAL_CHARACTERS_REGEXP, '\\$&'); +- +- if ( !this.parsers[format] ) { +- this.parsers[format] = createParser(format); +- } +- +- var parser = this.parsers[format], +- regex = parser.regex, +- map = parser.map, +- results = input.match(regex); +- +- if ( results && results.length ) { +- var fields, dt; +- if (baseDate) { +- fields = { +- year: baseDate.getFullYear(), +- month: baseDate.getMonth(), +- date: baseDate.getDate(), +- hours: baseDate.getHours(), +- minutes: baseDate.getMinutes(), +- seconds: baseDate.getSeconds(), +- milliseconds: baseDate.getMilliseconds() +- }; +- } else { +- fields = { year: 1900, month: 0, date: 1, hours: 0, minutes: 0, seconds: 0, milliseconds: 0 }; +- } +- +- for( var i = 1, n = results.length; i < n; i++ ) { +- var mapper = map[i-1]; +- if ( mapper.apply ) { +- mapper.apply.call(fields, results[i]); +- } +- } +- +- if ( isValid(fields.year, fields.month, fields.date) ) { +- dt = new Date(fields.year, fields.month, fields.date, fields.hours, fields.minutes, fields.seconds, +- fields.milliseconds || 0); +- } +- +- return dt; +- } +- }; +- +- // Check if date is valid for specific month (and year for February). +- // Month: 0 = Jan, 1 = Feb, etc +- function isValid(year, month, date) { +- if (date < 1) { +- return false; +- } +- +- if ( month === 1 && date > 28) { +- return date === 29 && ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0); +- } +- +- if ( month === 3 || month === 5 || month === 8 || month === 10) { +- return date < 31; +- } +- +- return true; +- } +-}]); +- +-angular.module('ui.bootstrap.position', []) +- +-/** +- * A set of utility methods that can be use to retrieve position of DOM elements. +- * It is meant to be used where we need to absolute-position DOM elements in +- * relation to other, existing elements (this is the case for tooltips, popovers, +- * typeahead suggestions etc.). +- */ +- .factory('$position', ['$document', '$window', function ($document, $window) { +- +- function getStyle(el, cssprop) { +- if (el.currentStyle) { //IE +- return el.currentStyle[cssprop]; +- } else if ($window.getComputedStyle) { +- return $window.getComputedStyle(el)[cssprop]; +- } +- // finally try and get inline style +- return el.style[cssprop]; +- } +- +- /** +- * Checks if a given element is statically positioned +- * @param element - raw DOM element +- */ +- function isStaticPositioned(element) { +- return (getStyle(element, 'position') || 'static' ) === 'static'; +- } +- +- /** +- * returns the closest, non-statically positioned parentOffset of a given element +- * @param element +- */ +- var parentOffsetEl = function (element) { +- var docDomEl = $document[0]; +- var offsetParent = element.offsetParent || docDomEl; +- while (offsetParent && offsetParent !== docDomEl && isStaticPositioned(offsetParent) ) { +- offsetParent = offsetParent.offsetParent; +- } +- return offsetParent || docDomEl; +- }; +- +- return { +- /** +- * Provides read-only equivalent of jQuery's position function: +- * http://api.jquery.com/position/ +- */ +- position: function (element) { +- var elBCR = this.offset(element); +- var offsetParentBCR = { top: 0, left: 0 }; +- var offsetParentEl = parentOffsetEl(element[0]); +- if (offsetParentEl != $document[0]) { +- offsetParentBCR = this.offset(angular.element(offsetParentEl)); +- offsetParentBCR.top += offsetParentEl.clientTop - offsetParentEl.scrollTop; +- offsetParentBCR.left += offsetParentEl.clientLeft - offsetParentEl.scrollLeft; +- } +- +- var boundingClientRect = element[0].getBoundingClientRect(); +- return { +- width: boundingClientRect.width || element.prop('offsetWidth'), +- height: boundingClientRect.height || element.prop('offsetHeight'), +- top: elBCR.top - offsetParentBCR.top, +- left: elBCR.left - offsetParentBCR.left +- }; +- }, +- +- /** +- * Provides read-only equivalent of jQuery's offset function: +- * http://api.jquery.com/offset/ +- */ +- offset: function (element) { +- var boundingClientRect = element[0].getBoundingClientRect(); +- return { +- width: boundingClientRect.width || element.prop('offsetWidth'), +- height: boundingClientRect.height || element.prop('offsetHeight'), +- top: boundingClientRect.top + ($window.pageYOffset || $document[0].documentElement.scrollTop), +- left: boundingClientRect.left + ($window.pageXOffset || $document[0].documentElement.scrollLeft) +- }; +- }, +- +- /** +- * Provides coordinates for the targetEl in relation to hostEl +- */ +- positionElements: function (hostEl, targetEl, positionStr, appendToBody) { +- +- var positionStrParts = positionStr.split('-'); +- var pos0 = positionStrParts[0], pos1 = positionStrParts[1] || 'center'; +- +- var hostElPos, +- targetElWidth, +- targetElHeight, +- targetElPos; +- +- hostElPos = appendToBody ? this.offset(hostEl) : this.position(hostEl); +- +- targetElWidth = targetEl.prop('offsetWidth'); +- targetElHeight = targetEl.prop('offsetHeight'); +- +- var shiftWidth = { +- center: function () { +- return hostElPos.left + hostElPos.width / 2 - targetElWidth / 2; +- }, +- left: function () { +- return hostElPos.left; +- }, +- right: function () { +- return hostElPos.left + hostElPos.width; +- } +- }; +- +- var shiftHeight = { +- center: function () { +- return hostElPos.top + hostElPos.height / 2 - targetElHeight / 2; +- }, +- top: function () { +- return hostElPos.top; +- }, +- bottom: function () { +- return hostElPos.top + hostElPos.height; +- } +- }; +- +- switch (pos0) { +- case 'right': +- targetElPos = { +- top: shiftHeight[pos1](), +- left: shiftWidth[pos0]() +- }; +- break; +- case 'left': +- targetElPos = { +- top: shiftHeight[pos1](), +- left: hostElPos.left - targetElWidth +- }; +- break; +- case 'bottom': +- targetElPos = { +- top: shiftHeight[pos0](), +- left: shiftWidth[pos1]() +- }; +- break; +- default: +- targetElPos = { +- top: hostElPos.top - targetElHeight, +- left: shiftWidth[pos1]() +- }; +- break; +- } +- +- return targetElPos; +- } +- }; +- }]); +- +-angular.module('ui.bootstrap.datepicker', ['ui.bootstrap.dateparser', 'ui.bootstrap.position']) +- +-.constant('datepickerConfig', { +- formatDay: 'dd', +- formatMonth: 'MMMM', +- formatYear: 'yyyy', +- formatDayHeader: 'EEE', +- formatDayTitle: 'MMMM yyyy', +- formatMonthTitle: 'yyyy', +- datepickerMode: 'day', +- minMode: 'day', +- maxMode: 'year', +- showWeeks: true, +- startingDay: 0, +- yearRange: 20, +- minDate: null, +- maxDate: null, +- shortcutPropagation: false +-}) +- +-.controller('DatepickerController', ['$scope', '$attrs', '$parse', '$interpolate', '$timeout', '$log', 'dateFilter', 'datepickerConfig', function($scope, $attrs, $parse, $interpolate, $timeout, $log, dateFilter, datepickerConfig) { +- var self = this, +- ngModelCtrl = { $setViewValue: angular.noop }; // nullModelCtrl; +- +- // Modes chain +- this.modes = ['day', 'month', 'year']; +- +- // Configuration attributes +- angular.forEach(['formatDay', 'formatMonth', 'formatYear', 'formatDayHeader', 'formatDayTitle', 'formatMonthTitle', +- 'minMode', 'maxMode', 'showWeeks', 'startingDay', 'yearRange', 'shortcutPropagation'], function( key, index ) { +- self[key] = angular.isDefined($attrs[key]) ? (index < 8 ? $interpolate($attrs[key])($scope.$parent) : $scope.$parent.$eval($attrs[key])) : datepickerConfig[key]; +- }); +- +- // Watchable date attributes +- angular.forEach(['minDate', 'maxDate'], function( key ) { +- if ( $attrs[key] ) { +- $scope.$parent.$watch($parse($attrs[key]), function(value) { +- self[key] = value ? new Date(value) : null; +- self.refreshView(); +- }); +- } else { +- self[key] = datepickerConfig[key] ? new Date(datepickerConfig[key]) : null; +- } +- }); +- +- $scope.datepickerMode = $scope.datepickerMode || datepickerConfig.datepickerMode; +- $scope.maxMode = self.maxMode; +- $scope.uniqueId = 'datepicker-' + $scope.$id + '-' + Math.floor(Math.random() * 10000); +- +- if(angular.isDefined($attrs.initDate)) { +- this.activeDate = $scope.$parent.$eval($attrs.initDate) || new Date(); +- $scope.$parent.$watch($attrs.initDate, function(initDate){ +- if(initDate && (ngModelCtrl.$isEmpty(ngModelCtrl.$modelValue) || ngModelCtrl.$invalid)){ +- self.activeDate = initDate; +- self.refreshView(); +- } +- }); +- } else { +- this.activeDate = new Date(); +- } +- +- $scope.isActive = function(dateObject) { +- if (self.compare(dateObject.date, self.activeDate) === 0) { +- $scope.activeDateId = dateObject.uid; +- return true; +- } +- return false; +- }; +- +- this.init = function( ngModelCtrl_ ) { +- ngModelCtrl = ngModelCtrl_; +- +- ngModelCtrl.$render = function() { +- self.render(); +- }; +- }; +- +- this.render = function() { +- if ( ngModelCtrl.$viewValue ) { +- var date = new Date( ngModelCtrl.$viewValue ), +- isValid = !isNaN(date); +- +- if ( isValid ) { +- this.activeDate = date; +- } else { +- $log.error('Datepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.'); +- } +- ngModelCtrl.$setValidity('date', isValid); +- } +- this.refreshView(); +- }; +- +- this.refreshView = function() { +- if ( this.element ) { +- this._refreshView(); +- +- var date = ngModelCtrl.$viewValue ? new Date(ngModelCtrl.$viewValue) : null; +- ngModelCtrl.$setValidity('date-disabled', !date || (this.element && !this.isDisabled(date))); +- } +- }; +- +- this.createDateObject = function(date, format) { +- var model = ngModelCtrl.$viewValue ? new Date(ngModelCtrl.$viewValue) : null; +- return { +- date: date, +- label: dateFilter(date, format), +- selected: model && this.compare(date, model) === 0, +- disabled: this.isDisabled(date), +- current: this.compare(date, new Date()) === 0, +- customClass: this.customClass(date) +- }; +- }; +- +- this.isDisabled = function( date ) { +- return ((this.minDate && this.compare(date, this.minDate) < 0) || (this.maxDate && this.compare(date, this.maxDate) > 0) || ($attrs.dateDisabled && $scope.dateDisabled({date: date, mode: $scope.datepickerMode}))); +- }; +- +- this.customClass = function( date ) { +- return $scope.customClass({date: date, mode: $scope.datepickerMode}); +- }; +- +- // Split array into smaller arrays +- this.split = function(arr, size) { +- var arrays = []; +- while (arr.length > 0) { +- arrays.push(arr.splice(0, size)); +- } +- return arrays; +- }; +- +- $scope.select = function( date ) { +- if ( $scope.datepickerMode === self.minMode ) { +- var dt = ngModelCtrl.$viewValue ? new Date( ngModelCtrl.$viewValue ) : new Date(0, 0, 0, 0, 0, 0, 0); +- dt.setFullYear( date.getFullYear(), date.getMonth(), date.getDate() ); +- ngModelCtrl.$setViewValue( dt ); +- ngModelCtrl.$render(); +- } else { +- self.activeDate = date; +- $scope.datepickerMode = self.modes[ self.modes.indexOf( $scope.datepickerMode ) - 1 ]; +- } +- }; +- +- $scope.move = function( direction ) { +- var year = self.activeDate.getFullYear() + direction * (self.step.years || 0), +- month = self.activeDate.getMonth() + direction * (self.step.months || 0); +- self.activeDate.setFullYear(year, month, 1); +- self.refreshView(); +- }; +- +- $scope.toggleMode = function( direction ) { +- direction = direction || 1; +- +- if (($scope.datepickerMode === self.maxMode && direction === 1) || ($scope.datepickerMode === self.minMode && direction === -1)) { +- return; +- } +- +- $scope.datepickerMode = self.modes[ self.modes.indexOf( $scope.datepickerMode ) + direction ]; +- }; +- +- // Key event mapper +- $scope.keys = { 13:'enter', 32:'space', 33:'pageup', 34:'pagedown', 35:'end', 36:'home', 37:'left', 38:'up', 39:'right', 40:'down' }; +- +- var focusElement = function() { +- $timeout(function() { +- self.element[0].focus(); +- }, 0 , false); +- }; +- +- // Listen for focus requests from popup directive +- $scope.$on('datepicker.focus', focusElement); +- +- $scope.keydown = function( evt ) { +- var key = $scope.keys[evt.which]; +- +- if ( !key || evt.shiftKey || evt.altKey ) { +- return; +- } +- +- evt.preventDefault(); +- if(!self.shortcutPropagation){ +- evt.stopPropagation(); +- } +- +- if (key === 'enter' || key === 'space') { +- if ( self.isDisabled(self.activeDate)) { +- return; // do nothing +- } +- $scope.select(self.activeDate); +- focusElement(); +- } else if (evt.ctrlKey && (key === 'up' || key === 'down')) { +- $scope.toggleMode(key === 'up' ? 1 : -1); +- focusElement(); +- } else { +- self.handleKeyDown(key, evt); +- self.refreshView(); +- } +- }; +-}]) +- +-.directive( 'datepicker', function () { +- return { +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/datepicker/datepicker.html', +- scope: { +- datepickerMode: '=?', +- dateDisabled: '&', +- customClass: '&', +- shortcutPropagation: '&?' +- }, +- require: ['datepicker', '?^ngModel'], +- controller: 'DatepickerController', +- link: function(scope, element, attrs, ctrls) { +- var datepickerCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- if ( ngModelCtrl ) { +- datepickerCtrl.init( ngModelCtrl ); +- } +- } +- }; +-}) +- +-.directive('daypicker', ['dateFilter', function (dateFilter) { +- return { +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/datepicker/day.html', +- require: '^datepicker', +- link: function(scope, element, attrs, ctrl) { +- scope.showWeeks = ctrl.showWeeks; +- +- ctrl.step = { months: 1 }; +- ctrl.element = element; +- +- var DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; +- function getDaysInMonth( year, month ) { +- return ((month === 1) && (year % 4 === 0) && ((year % 100 !== 0) || (year % 400 === 0))) ? 29 : DAYS_IN_MONTH[month]; +- } +- +- function getDates(startDate, n) { +- var dates = new Array(n), current = new Date(startDate), i = 0; +- current.setHours(12); // Prevent repeated dates because of timezone bug +- while ( i < n ) { +- dates[i++] = new Date(current); +- current.setDate( current.getDate() + 1 ); +- } +- return dates; +- } +- +- ctrl._refreshView = function() { +- var year = ctrl.activeDate.getFullYear(), +- month = ctrl.activeDate.getMonth(), +- firstDayOfMonth = new Date(year, month, 1), +- difference = ctrl.startingDay - firstDayOfMonth.getDay(), +- numDisplayedFromPreviousMonth = (difference > 0) ? 7 - difference : - difference, +- firstDate = new Date(firstDayOfMonth); +- +- if ( numDisplayedFromPreviousMonth > 0 ) { +- firstDate.setDate( - numDisplayedFromPreviousMonth + 1 ); +- } +- +- // 42 is the number of days on a six-month calendar +- var days = getDates(firstDate, 42); +- for (var i = 0; i < 42; i ++) { +- days[i] = angular.extend(ctrl.createDateObject(days[i], ctrl.formatDay), { +- secondary: days[i].getMonth() !== month, +- uid: scope.uniqueId + '-' + i +- }); +- } +- +- scope.labels = new Array(7); +- for (var j = 0; j < 7; j++) { +- scope.labels[j] = { +- abbr: dateFilter(days[j].date, ctrl.formatDayHeader), +- full: dateFilter(days[j].date, 'EEEE') +- }; +- } +- +- scope.title = dateFilter(ctrl.activeDate, ctrl.formatDayTitle); +- scope.rows = ctrl.split(days, 7); +- +- if ( scope.showWeeks ) { +- scope.weekNumbers = []; +- var thursdayIndex = (4 + 7 - ctrl.startingDay) % 7, +- numWeeks = scope.rows.length; +- for (var curWeek = 0; curWeek < numWeeks; curWeek++) { +- scope.weekNumbers.push( +- getISO8601WeekNumber( scope.rows[curWeek][thursdayIndex].date )); +- } +- } +- }; +- +- ctrl.compare = function(date1, date2) { +- return (new Date( date1.getFullYear(), date1.getMonth(), date1.getDate() ) - new Date( date2.getFullYear(), date2.getMonth(), date2.getDate() ) ); +- }; +- +- function getISO8601WeekNumber(date) { +- var checkDate = new Date(date); +- checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7)); // Thursday +- var time = checkDate.getTime(); +- checkDate.setMonth(0); // Compare with Jan 1 +- checkDate.setDate(1); +- return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1; +- } +- +- ctrl.handleKeyDown = function( key, evt ) { +- var date = ctrl.activeDate.getDate(); +- +- if (key === 'left') { +- date = date - 1; // up +- } else if (key === 'up') { +- date = date - 7; // down +- } else if (key === 'right') { +- date = date + 1; // down +- } else if (key === 'down') { +- date = date + 7; +- } else if (key === 'pageup' || key === 'pagedown') { +- var month = ctrl.activeDate.getMonth() + (key === 'pageup' ? - 1 : 1); +- ctrl.activeDate.setMonth(month, 1); +- date = Math.min(getDaysInMonth(ctrl.activeDate.getFullYear(), ctrl.activeDate.getMonth()), date); +- } else if (key === 'home') { +- date = 1; +- } else if (key === 'end') { +- date = getDaysInMonth(ctrl.activeDate.getFullYear(), ctrl.activeDate.getMonth()); +- } +- ctrl.activeDate.setDate(date); +- }; +- +- ctrl.refreshView(); +- } +- }; +-}]) +- +-.directive('monthpicker', ['dateFilter', function (dateFilter) { +- return { +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/datepicker/month.html', +- require: '^datepicker', +- link: function(scope, element, attrs, ctrl) { +- ctrl.step = { years: 1 }; +- ctrl.element = element; +- +- ctrl._refreshView = function() { +- var months = new Array(12), +- year = ctrl.activeDate.getFullYear(); +- +- for ( var i = 0; i < 12; i++ ) { +- months[i] = angular.extend(ctrl.createDateObject(new Date(year, i, 1), ctrl.formatMonth), { +- uid: scope.uniqueId + '-' + i +- }); +- } +- +- scope.title = dateFilter(ctrl.activeDate, ctrl.formatMonthTitle); +- scope.rows = ctrl.split(months, 3); +- }; +- +- ctrl.compare = function(date1, date2) { +- return new Date( date1.getFullYear(), date1.getMonth() ) - new Date( date2.getFullYear(), date2.getMonth() ); +- }; +- +- ctrl.handleKeyDown = function( key, evt ) { +- var date = ctrl.activeDate.getMonth(); +- +- if (key === 'left') { +- date = date - 1; // up +- } else if (key === 'up') { +- date = date - 3; // down +- } else if (key === 'right') { +- date = date + 1; // down +- } else if (key === 'down') { +- date = date + 3; +- } else if (key === 'pageup' || key === 'pagedown') { +- var year = ctrl.activeDate.getFullYear() + (key === 'pageup' ? - 1 : 1); +- ctrl.activeDate.setFullYear(year); +- } else if (key === 'home') { +- date = 0; +- } else if (key === 'end') { +- date = 11; +- } +- ctrl.activeDate.setMonth(date); +- }; +- +- ctrl.refreshView(); +- } +- }; +-}]) +- +-.directive('yearpicker', ['dateFilter', function (dateFilter) { +- return { +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/datepicker/year.html', +- require: '^datepicker', +- link: function(scope, element, attrs, ctrl) { +- var range = ctrl.yearRange; +- +- ctrl.step = { years: range }; +- ctrl.element = element; +- +- function getStartingYear( year ) { +- return parseInt((year - 1) / range, 10) * range + 1; +- } +- +- ctrl._refreshView = function() { +- var years = new Array(range); +- +- for ( var i = 0, start = getStartingYear(ctrl.activeDate.getFullYear()); i < range; i++ ) { +- years[i] = angular.extend(ctrl.createDateObject(new Date(start + i, 0, 1), ctrl.formatYear), { +- uid: scope.uniqueId + '-' + i +- }); +- } +- +- scope.title = [years[0].label, years[range - 1].label].join(' - '); +- scope.rows = ctrl.split(years, 5); +- }; +- +- ctrl.compare = function(date1, date2) { +- return date1.getFullYear() - date2.getFullYear(); +- }; +- +- ctrl.handleKeyDown = function( key, evt ) { +- var date = ctrl.activeDate.getFullYear(); +- +- if (key === 'left') { +- date = date - 1; // up +- } else if (key === 'up') { +- date = date - 5; // down +- } else if (key === 'right') { +- date = date + 1; // down +- } else if (key === 'down') { +- date = date + 5; +- } else if (key === 'pageup' || key === 'pagedown') { +- date += (key === 'pageup' ? - 1 : 1) * ctrl.step.years; +- } else if (key === 'home') { +- date = getStartingYear( ctrl.activeDate.getFullYear() ); +- } else if (key === 'end') { +- date = getStartingYear( ctrl.activeDate.getFullYear() ) + range - 1; +- } +- ctrl.activeDate.setFullYear(date); +- }; +- +- ctrl.refreshView(); +- } +- }; +-}]) +- +-.constant('datepickerPopupConfig', { +- datepickerPopup: 'yyyy-MM-dd', +- html5Types: { +- date: 'yyyy-MM-dd', +- 'datetime-local': 'yyyy-MM-ddTHH:mm:ss.sss', +- 'month': 'yyyy-MM' +- }, +- currentText: 'Today', +- clearText: 'Clear', +- closeText: 'Done', +- closeOnDateSelection: true, +- appendToBody: false, +- showButtonBar: true +-}) +- +-.directive('datepickerPopup', ['$compile', '$parse', '$document', '$position', 'dateFilter', 'dateParser', 'datepickerPopupConfig', +-function ($compile, $parse, $document, $position, dateFilter, dateParser, datepickerPopupConfig) { +- return { +- restrict: 'EA', +- require: 'ngModel', +- scope: { +- isOpen: '=?', +- currentText: '@', +- clearText: '@', +- closeText: '@', +- dateDisabled: '&', +- customClass: '&' +- }, +- link: function(scope, element, attrs, ngModel) { +- var dateFormat, +- closeOnDateSelection = angular.isDefined(attrs.closeOnDateSelection) ? scope.$parent.$eval(attrs.closeOnDateSelection) : datepickerPopupConfig.closeOnDateSelection, +- appendToBody = angular.isDefined(attrs.datepickerAppendToBody) ? scope.$parent.$eval(attrs.datepickerAppendToBody) : datepickerPopupConfig.appendToBody; +- +- scope.showButtonBar = angular.isDefined(attrs.showButtonBar) ? scope.$parent.$eval(attrs.showButtonBar) : datepickerPopupConfig.showButtonBar; +- +- scope.getText = function( key ) { +- return scope[key + 'Text'] || datepickerPopupConfig[key + 'Text']; +- }; +- +- var isHtml5DateInput = false; +- if (datepickerPopupConfig.html5Types[attrs.type]) { +- dateFormat = datepickerPopupConfig.html5Types[attrs.type]; +- isHtml5DateInput = true; +- } else { +- dateFormat = attrs.datepickerPopup || datepickerPopupConfig.datepickerPopup; +- attrs.$observe('datepickerPopup', function(value, oldValue) { +- var newDateFormat = value || datepickerPopupConfig.datepickerPopup; +- // Invalidate the $modelValue to ensure that formatters re-run +- // FIXME: Refactor when PR is merged: https://github.com/angular/angular.js/pull/10764 +- if (newDateFormat !== dateFormat) { +- dateFormat = newDateFormat; +- ngModel.$modelValue = null; +- +- if (!dateFormat) { +- throw new Error('datepickerPopup must have a date format specified.'); +- } +- } +- }); +- } +- +- if (!dateFormat) { +- throw new Error('datepickerPopup must have a date format specified.'); +- } +- +- if (isHtml5DateInput && attrs.datepickerPopup) { +- throw new Error('HTML5 date input types do not support custom formats.'); +- } +- +- // popup element used to display calendar +- var popupEl = angular.element('<div datepicker-popup-wrap><div datepicker></div></div>'); +- popupEl.attr({ +- 'ng-model': 'date', +- 'ng-change': 'dateSelection()' +- }); +- +- function cameltoDash( string ){ +- return string.replace(/([A-Z])/g, function($1) { return '-' + $1.toLowerCase(); }); +- } +- +- // datepicker element +- var datepickerEl = angular.element(popupEl.children()[0]); +- if (isHtml5DateInput) { +- if (attrs.type == 'month') { +- datepickerEl.attr('datepicker-mode', '"month"'); +- datepickerEl.attr('min-mode', 'month'); +- } +- } +- +- if ( attrs.datepickerOptions ) { +- var options = scope.$parent.$eval(attrs.datepickerOptions); +- if(options.initDate) { +- scope.initDate = options.initDate; +- datepickerEl.attr( 'init-date', 'initDate' ); +- delete options.initDate; +- } +- angular.forEach(options, function( value, option ) { +- datepickerEl.attr( cameltoDash(option), value ); +- }); +- } +- +- scope.watchData = {}; +- angular.forEach(['minDate', 'maxDate', 'datepickerMode', 'initDate', 'shortcutPropagation'], function( key ) { +- if ( attrs[key] ) { +- var getAttribute = $parse(attrs[key]); +- scope.$parent.$watch(getAttribute, function(value){ +- scope.watchData[key] = value; +- }); +- datepickerEl.attr(cameltoDash(key), 'watchData.' + key); +- +- // Propagate changes from datepicker to outside +- if ( key === 'datepickerMode' ) { +- var setAttribute = getAttribute.assign; +- scope.$watch('watchData.' + key, function(value, oldvalue) { +- if ( value !== oldvalue ) { +- setAttribute(scope.$parent, value); +- } +- }); +- } +- } +- }); +- if (attrs.dateDisabled) { +- datepickerEl.attr('date-disabled', 'dateDisabled({ date: date, mode: mode })'); +- } +- +- if (attrs.showWeeks) { +- datepickerEl.attr('show-weeks', attrs.showWeeks); +- } +- +- if (attrs.customClass){ +- datepickerEl.attr('custom-class', 'customClass({ date: date, mode: mode })'); +- } +- +- function parseDate(viewValue) { +- if (angular.isNumber(viewValue)) { +- // presumably timestamp to date object +- viewValue = new Date(viewValue); +- } +- +- if (!viewValue) { +- return null; +- } else if (angular.isDate(viewValue) && !isNaN(viewValue)) { +- return viewValue; +- } else if (angular.isString(viewValue)) { +- var date = dateParser.parse(viewValue, dateFormat, scope.date) || new Date(viewValue); +- if (isNaN(date)) { +- return undefined; +- } else { +- return date; +- } +- } else { +- return undefined; +- } +- } +- +- function validator(modelValue, viewValue) { +- var value = modelValue || viewValue; +- if (angular.isNumber(value)) { +- value = new Date(value); +- } +- if (!value) { +- return true; +- } else if (angular.isDate(value) && !isNaN(value)) { +- return true; +- } else if (angular.isString(value)) { +- var date = dateParser.parse(value, dateFormat) || new Date(value); +- return !isNaN(date); +- } else { +- return false; +- } +- } +- +- if (!isHtml5DateInput) { +- // Internal API to maintain the correct ng-invalid-[key] class +- ngModel.$$parserName = 'date'; +- ngModel.$validators.date = validator; +- ngModel.$parsers.unshift(parseDate); +- ngModel.$formatters.push(function (value) { +- scope.date = value; +- return ngModel.$isEmpty(value) ? value : dateFilter(value, dateFormat); +- }); +- } +- else { +- ngModel.$formatters.push(function (value) { +- scope.date = value; +- return value; +- }); +- } +- +- // Inner change +- scope.dateSelection = function(dt) { +- if (angular.isDefined(dt)) { +- scope.date = dt; +- } +- var date = scope.date ? dateFilter(scope.date, dateFormat) : ''; +- element.val(date); +- ngModel.$setViewValue(date); +- +- if ( closeOnDateSelection ) { +- scope.isOpen = false; +- element[0].focus(); +- } +- }; +- +- // Detect changes in the view from the text box +- ngModel.$viewChangeListeners.push(function () { +- scope.date = dateParser.parse(ngModel.$viewValue, dateFormat, scope.date) || new Date(ngModel.$viewValue); +- }); +- +- var documentClickBind = function(event) { +- if (scope.isOpen && event.target !== element[0]) { +- scope.$apply(function() { +- scope.isOpen = false; +- }); +- } +- }; +- +- var keydown = function(evt, noApply) { +- scope.keydown(evt); +- }; +- element.bind('keydown', keydown); +- +- scope.keydown = function(evt) { +- if (evt.which === 27) { +- evt.preventDefault(); +- if (scope.isOpen) { +- evt.stopPropagation(); +- } +- scope.close(); +- } else if (evt.which === 40 && !scope.isOpen) { +- scope.isOpen = true; +- } +- }; +- +- scope.$watch('isOpen', function(value) { +- if (value) { +- scope.$broadcast('datepicker.focus'); +- scope.position = appendToBody ? $position.offset(element) : $position.position(element); +- scope.position.top = scope.position.top + element.prop('offsetHeight'); +- +- $document.bind('click', documentClickBind); +- } else { +- $document.unbind('click', documentClickBind); +- } +- }); +- +- scope.select = function( date ) { +- if (date === 'today') { +- var today = new Date(); +- if (angular.isDate(scope.date)) { +- date = new Date(scope.date); +- date.setFullYear(today.getFullYear(), today.getMonth(), today.getDate()); +- } else { +- date = new Date(today.setHours(0, 0, 0, 0)); +- } +- } +- scope.dateSelection( date ); +- }; +- +- scope.close = function() { +- scope.isOpen = false; +- element[0].focus(); +- }; +- +- var $popup = $compile(popupEl)(scope); +- // Prevent jQuery cache memory leak (template is now redundant after linking) +- popupEl.remove(); +- +- if ( appendToBody ) { +- $document.find('body').append($popup); +- } else { +- element.after($popup); +- } +- +- scope.$on('$destroy', function() { +- $popup.remove(); +- element.unbind('keydown', keydown); +- $document.unbind('click', documentClickBind); +- }); +- } +- }; +-}]) +- +-.directive('datepickerPopupWrap', function() { +- return { +- restrict:'EA', +- replace: true, +- transclude: true, +- templateUrl: 'template/datepicker/popup.html', +- link:function (scope, element, attrs) { +- element.bind('click', function(event) { +- event.preventDefault(); +- event.stopPropagation(); +- }); +- } +- }; +-}); +- +-angular.module('ui.bootstrap.dropdown', ['ui.bootstrap.position']) +- +-.constant('dropdownConfig', { +- openClass: 'open' +-}) +- +-.service('dropdownService', ['$document', '$rootScope', function($document, $rootScope) { +- var openScope = null; +- +- this.open = function( dropdownScope ) { +- if ( !openScope ) { +- $document.bind('click', closeDropdown); +- $document.bind('keydown', escapeKeyBind); +- } +- +- if ( openScope && openScope !== dropdownScope ) { +- openScope.isOpen = false; +- } +- +- openScope = dropdownScope; +- }; +- +- this.close = function( dropdownScope ) { +- if ( openScope === dropdownScope ) { +- openScope = null; +- $document.unbind('click', closeDropdown); +- $document.unbind('keydown', escapeKeyBind); +- } +- }; +- +- var closeDropdown = function( evt ) { +- // This method may still be called during the same mouse event that +- // unbound this event handler. So check openScope before proceeding. +- if (!openScope) { return; } +- +- if( evt && openScope.getAutoClose() === 'disabled' ) { return ; } +- +- var toggleElement = openScope.getToggleElement(); +- if ( evt && toggleElement && toggleElement[0].contains(evt.target) ) { +- return; +- } +- +- var $element = openScope.getElement(); +- if( evt && openScope.getAutoClose() === 'outsideClick' && $element && $element[0].contains(evt.target) ) { +- return; +- } +- +- openScope.isOpen = false; +- +- if (!$rootScope.$$phase) { +- openScope.$apply(); +- } +- }; +- +- var escapeKeyBind = function( evt ) { +- if ( evt.which === 27 ) { +- openScope.focusToggleElement(); +- closeDropdown(); +- } +- }; +-}]) +- +-.controller('DropdownController', ['$scope', '$attrs', '$parse', 'dropdownConfig', 'dropdownService', '$animate', '$position', '$document', function($scope, $attrs, $parse, dropdownConfig, dropdownService, $animate, $position, $document) { +- var self = this, +- scope = $scope.$new(), // create a child scope so we are not polluting original one +- openClass = dropdownConfig.openClass, +- getIsOpen, +- setIsOpen = angular.noop, +- toggleInvoker = $attrs.onToggle ? $parse($attrs.onToggle) : angular.noop, +- appendToBody = false; +- +- this.init = function( element ) { +- self.$element = element; +- +- if ( $attrs.isOpen ) { +- getIsOpen = $parse($attrs.isOpen); +- setIsOpen = getIsOpen.assign; +- +- $scope.$watch(getIsOpen, function(value) { +- scope.isOpen = !!value; +- }); +- } +- +- appendToBody = angular.isDefined($attrs.dropdownAppendToBody); +- +- if ( appendToBody && self.dropdownMenu ) { +- $document.find('body').append( self.dropdownMenu ); +- element.on('$destroy', function handleDestroyEvent() { +- self.dropdownMenu.remove(); +- }); +- } +- }; +- +- this.toggle = function( open ) { +- return scope.isOpen = arguments.length ? !!open : !scope.isOpen; +- }; +- +- // Allow other directives to watch status +- this.isOpen = function() { +- return scope.isOpen; +- }; +- +- scope.getToggleElement = function() { +- return self.toggleElement; +- }; +- +- scope.getAutoClose = function() { +- return $attrs.autoClose || 'always'; //or 'outsideClick' or 'disabled' +- }; +- +- scope.getElement = function() { +- return self.$element; +- }; +- +- scope.focusToggleElement = function() { +- if ( self.toggleElement ) { +- self.toggleElement[0].focus(); +- } +- }; +- +- scope.$watch('isOpen', function( isOpen, wasOpen ) { +- if ( appendToBody && self.dropdownMenu ) { +- var pos = $position.positionElements(self.$element, self.dropdownMenu, 'bottom-left', true); +- self.dropdownMenu.css({ +- top: pos.top + 'px', +- left: pos.left + 'px', +- display: isOpen ? 'block' : 'none' +- }); +- } +- +- $animate[isOpen ? 'addClass' : 'removeClass'](self.$element, openClass); +- +- if ( isOpen ) { +- scope.focusToggleElement(); +- dropdownService.open( scope ); +- } else { +- dropdownService.close( scope ); +- } +- +- setIsOpen($scope, isOpen); +- if (angular.isDefined(isOpen) && isOpen !== wasOpen) { +- toggleInvoker($scope, { open: !!isOpen }); +- } +- }); +- +- $scope.$on('$locationChangeSuccess', function() { +- scope.isOpen = false; +- }); +- +- $scope.$on('$destroy', function() { +- scope.$destroy(); +- }); +-}]) +- +-.directive('dropdown', function() { +- return { +- controller: 'DropdownController', +- link: function(scope, element, attrs, dropdownCtrl) { +- dropdownCtrl.init( element ); +- } +- }; +-}) +- +-.directive('dropdownMenu', function() { +- return { +- restrict: 'AC', +- require: '?^dropdown', +- link: function(scope, element, attrs, dropdownCtrl) { +- if ( !dropdownCtrl ) { +- return; +- } +- dropdownCtrl.dropdownMenu = element; +- } +- }; +-}) +- +-.directive('dropdownToggle', function() { +- return { +- require: '?^dropdown', +- link: function(scope, element, attrs, dropdownCtrl) { +- if ( !dropdownCtrl ) { +- return; +- } +- +- dropdownCtrl.toggleElement = element; +- +- var toggleDropdown = function(event) { +- event.preventDefault(); +- +- if ( !element.hasClass('disabled') && !attrs.disabled ) { +- scope.$apply(function() { +- dropdownCtrl.toggle(); +- }); +- } +- }; +- +- element.bind('click', toggleDropdown); +- +- // WAI-ARIA +- element.attr({ 'aria-haspopup': true, 'aria-expanded': false }); +- scope.$watch(dropdownCtrl.isOpen, function( isOpen ) { +- element.attr('aria-expanded', !!isOpen); +- }); +- +- scope.$on('$destroy', function() { +- element.unbind('click', toggleDropdown); +- }); +- } +- }; +-}); +- +-angular.module('ui.bootstrap.modal', []) +- +-/** +- * A helper, internal data structure that acts as a map but also allows getting / removing +- * elements in the LIFO order +- */ +- .factory('$$stackedMap', function () { +- return { +- createNew: function () { +- var stack = []; +- +- return { +- add: function (key, value) { +- stack.push({ +- key: key, +- value: value +- }); +- }, +- get: function (key) { +- for (var i = 0; i < stack.length; i++) { +- if (key == stack[i].key) { +- return stack[i]; +- } +- } +- }, +- keys: function() { +- var keys = []; +- for (var i = 0; i < stack.length; i++) { +- keys.push(stack[i].key); +- } +- return keys; +- }, +- top: function () { +- return stack[stack.length - 1]; +- }, +- remove: function (key) { +- var idx = -1; +- for (var i = 0; i < stack.length; i++) { +- if (key == stack[i].key) { +- idx = i; +- break; +- } +- } +- return stack.splice(idx, 1)[0]; +- }, +- removeTop: function () { +- return stack.splice(stack.length - 1, 1)[0]; +- }, +- length: function () { +- return stack.length; +- } +- }; +- } +- }; +- }) +- +-/** +- * A helper directive for the $modal service. It creates a backdrop element. +- */ +- .directive('modalBackdrop', ['$timeout', function ($timeout) { +- return { +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/modal/backdrop.html', +- compile: function (tElement, tAttrs) { +- tElement.addClass(tAttrs.backdropClass); +- return linkFn; +- } +- }; +- +- function linkFn(scope, element, attrs) { +- scope.animate = false; +- +- //trigger CSS transitions +- $timeout(function () { +- scope.animate = true; +- }); +- } +- }]) +- +- .directive('modalWindow', ['$modalStack', '$q', function ($modalStack, $q) { +- return { +- restrict: 'EA', +- scope: { +- index: '@', +- animate: '=' +- }, +- replace: true, +- transclude: true, +- templateUrl: function(tElement, tAttrs) { +- return tAttrs.templateUrl || 'template/modal/window.html'; +- }, +- link: function (scope, element, attrs) { +- element.addClass(attrs.windowClass || ''); +- scope.size = attrs.size; +- +- scope.close = function (evt) { +- var modal = $modalStack.getTop(); +- if (modal && modal.value.backdrop && modal.value.backdrop != 'static' && (evt.target === evt.currentTarget)) { +- evt.preventDefault(); +- evt.stopPropagation(); +- $modalStack.dismiss(modal.key, 'backdrop click'); +- } +- }; +- +- // This property is only added to the scope for the purpose of detecting when this directive is rendered. +- // We can detect that by using this property in the template associated with this directive and then use +- // {@link Attribute#$observe} on it. For more details please see {@link TableColumnResize}. +- scope.$isRendered = true; +- +- // Deferred object that will be resolved when this modal is render. +- var modalRenderDeferObj = $q.defer(); +- // Observe function will be called on next digest cycle after compilation, ensuring that the DOM is ready. +- // In order to use this way of finding whether DOM is ready, we need to observe a scope property used in modal's template. +- attrs.$observe('modalRender', function (value) { +- if (value == 'true') { +- modalRenderDeferObj.resolve(); +- } +- }); +- +- modalRenderDeferObj.promise.then(function () { +- // trigger CSS transitions +- scope.animate = true; +- +- var inputsWithAutofocus = element[0].querySelectorAll('[autofocus]'); +- /** +- * Auto-focusing of a freshly-opened modal element causes any child elements +- * with the autofocus attribute to lose focus. This is an issue on touch +- * based devices which will show and then hide the onscreen keyboard. +- * Attempts to refocus the autofocus element via JavaScript will not reopen +- * the onscreen keyboard. Fixed by updated the focusing logic to only autofocus +- * the modal element if the modal does not contain an autofocus element. +- */ +- if (inputsWithAutofocus.length) { +- inputsWithAutofocus[0].focus(); +- } else { +- element[0].focus(); +- } +- +- // Notify {@link $modalStack} that modal is rendered. +- var modal = $modalStack.getTop(); +- if (modal) { +- $modalStack.modalRendered(modal.key); +- } +- }); +- } +- }; +- }]) +- +- .directive('modalAnimationClass', [ +- function () { +- return { +- compile: function (tElement, tAttrs) { +- if (tAttrs.modalAnimation) { +- tElement.addClass(tAttrs.modalAnimationClass); +- } +- } +- }; +- }]) +- +- .directive('modalTransclude', function () { +- return { +- link: function($scope, $element, $attrs, controller, $transclude) { +- $transclude($scope.$parent, function(clone) { +- $element.empty(); +- $element.append(clone); +- }); +- } +- }; +- }) +- +- .factory('$modalStack', ['$animate', '$timeout', '$document', '$compile', '$rootScope', '$$stackedMap', +- function ($animate, $timeout, $document, $compile, $rootScope, $$stackedMap) { +- +- var OPENED_MODAL_CLASS = 'modal-open'; +- +- var backdropDomEl, backdropScope; +- var openedWindows = $$stackedMap.createNew(); +- var $modalStack = {}; +- +- function backdropIndex() { +- var topBackdropIndex = -1; +- var opened = openedWindows.keys(); +- for (var i = 0; i < opened.length; i++) { +- if (openedWindows.get(opened[i]).value.backdrop) { +- topBackdropIndex = i; +- } +- } +- return topBackdropIndex; +- } +- +- $rootScope.$watch(backdropIndex, function(newBackdropIndex){ +- if (backdropScope) { +- backdropScope.index = newBackdropIndex; +- } +- }); +- +- function removeModalWindow(modalInstance) { +- +- var body = $document.find('body').eq(0); +- var modalWindow = openedWindows.get(modalInstance).value; +- +- //clean up the stack +- openedWindows.remove(modalInstance); +- +- //remove window DOM element +- removeAfterAnimate(modalWindow.modalDomEl, modalWindow.modalScope, function() { +- body.toggleClass(OPENED_MODAL_CLASS, openedWindows.length() > 0); +- checkRemoveBackdrop(); +- }); +- } +- +- function checkRemoveBackdrop() { +- //remove backdrop if no longer needed +- if (backdropDomEl && backdropIndex() == -1) { +- var backdropScopeRef = backdropScope; +- removeAfterAnimate(backdropDomEl, backdropScope, function () { +- backdropScopeRef = null; +- }); +- backdropDomEl = undefined; +- backdropScope = undefined; +- } +- } +- +- function removeAfterAnimate(domEl, scope, done) { +- // Closing animation +- scope.animate = false; +- +- if (domEl.attr('modal-animation') && $animate.enabled()) { +- // transition out +- domEl.one('$animate:close', function closeFn() { +- $rootScope.$evalAsync(afterAnimating); +- }); +- } else { +- // Ensure this call is async +- $timeout(afterAnimating); +- } +- +- function afterAnimating() { +- if (afterAnimating.done) { +- return; +- } +- afterAnimating.done = true; +- +- domEl.remove(); +- scope.$destroy(); +- if (done) { +- done(); +- } +- } +- } +- +- $document.bind('keydown', function (evt) { +- var modal; +- +- if (evt.which === 27) { +- modal = openedWindows.top(); +- if (modal && modal.value.keyboard) { +- evt.preventDefault(); +- $rootScope.$apply(function () { +- $modalStack.dismiss(modal.key, 'escape key press'); +- }); +- } +- } +- }); +- +- $modalStack.open = function (modalInstance, modal) { +- +- var modalOpener = $document[0].activeElement; +- +- openedWindows.add(modalInstance, { +- deferred: modal.deferred, +- renderDeferred: modal.renderDeferred, +- modalScope: modal.scope, +- backdrop: modal.backdrop, +- keyboard: modal.keyboard +- }); +- +- var body = $document.find('body').eq(0), +- currBackdropIndex = backdropIndex(); +- +- if (currBackdropIndex >= 0 && !backdropDomEl) { +- backdropScope = $rootScope.$new(true); +- backdropScope.index = currBackdropIndex; +- var angularBackgroundDomEl = angular.element('<div modal-backdrop="modal-backdrop"></div>'); +- angularBackgroundDomEl.attr('backdrop-class', modal.backdropClass); +- if (modal.animation) { +- angularBackgroundDomEl.attr('modal-animation', 'true'); +- } +- backdropDomEl = $compile(angularBackgroundDomEl)(backdropScope); +- body.append(backdropDomEl); +- } +- +- var angularDomEl = angular.element('<div modal-window="modal-window"></div>'); +- angularDomEl.attr({ +- 'template-url': modal.windowTemplateUrl, +- 'window-class': modal.windowClass, +- 'size': modal.size, +- 'index': openedWindows.length() - 1, +- 'animate': 'animate' +- }).html(modal.content); +- if (modal.animation) { +- angularDomEl.attr('modal-animation', 'true'); +- } +- +- var modalDomEl = $compile(angularDomEl)(modal.scope); +- openedWindows.top().value.modalDomEl = modalDomEl; +- openedWindows.top().value.modalOpener = modalOpener; +- body.append(modalDomEl); +- body.addClass(OPENED_MODAL_CLASS); +- }; +- +- function broadcastClosing(modalWindow, resultOrReason, closing) { +- return !modalWindow.value.modalScope.$broadcast('modal.closing', resultOrReason, closing).defaultPrevented; +- } +- +- $modalStack.close = function (modalInstance, result) { +- var modalWindow = openedWindows.get(modalInstance); +- if (modalWindow && broadcastClosing(modalWindow, result, true)) { +- modalWindow.value.deferred.resolve(result); +- removeModalWindow(modalInstance); +- modalWindow.value.modalOpener.focus(); +- return true; +- } +- return !modalWindow; +- }; +- +- $modalStack.dismiss = function (modalInstance, reason) { +- var modalWindow = openedWindows.get(modalInstance); +- if (modalWindow && broadcastClosing(modalWindow, reason, false)) { +- modalWindow.value.deferred.reject(reason); +- removeModalWindow(modalInstance); +- modalWindow.value.modalOpener.focus(); +- return true; +- } +- return !modalWindow; +- }; +- +- $modalStack.dismissAll = function (reason) { +- var topModal = this.getTop(); +- while (topModal && this.dismiss(topModal.key, reason)) { +- topModal = this.getTop(); +- } +- }; +- +- $modalStack.getTop = function () { +- return openedWindows.top(); +- }; +- +- $modalStack.modalRendered = function (modalInstance) { +- var modalWindow = openedWindows.get(modalInstance); +- if (modalWindow) { +- modalWindow.value.renderDeferred.resolve(); +- } +- }; +- +- return $modalStack; +- }]) +- +- .provider('$modal', function () { +- +- var $modalProvider = { +- options: { +- animation: true, +- backdrop: true, //can also be false or 'static' +- keyboard: true +- }, +- $get: ['$injector', '$rootScope', '$q', '$templateRequest', '$controller', '$modalStack', +- function ($injector, $rootScope, $q, $templateRequest, $controller, $modalStack) { +- +- var $modal = {}; +- +- function getTemplatePromise(options) { +- return options.template ? $q.when(options.template) : +- $templateRequest(angular.isFunction(options.templateUrl) ? (options.templateUrl)() : options.templateUrl); +- } +- +- function getResolvePromises(resolves) { +- var promisesArr = []; +- angular.forEach(resolves, function (value) { +- if (angular.isFunction(value) || angular.isArray(value)) { +- promisesArr.push($q.when($injector.invoke(value))); +- } +- }); +- return promisesArr; +- } +- +- $modal.open = function (modalOptions) { +- +- var modalResultDeferred = $q.defer(); +- var modalOpenedDeferred = $q.defer(); +- var modalRenderDeferred = $q.defer(); +- +- //prepare an instance of a modal to be injected into controllers and returned to a caller +- var modalInstance = { +- result: modalResultDeferred.promise, +- opened: modalOpenedDeferred.promise, +- rendered: modalRenderDeferred.promise, +- close: function (result) { +- return $modalStack.close(modalInstance, result); +- }, +- dismiss: function (reason) { +- return $modalStack.dismiss(modalInstance, reason); +- } +- }; +- +- //merge and clean up options +- modalOptions = angular.extend({}, $modalProvider.options, modalOptions); +- modalOptions.resolve = modalOptions.resolve || {}; +- +- //verify options +- if (!modalOptions.template && !modalOptions.templateUrl) { +- throw new Error('One of template or templateUrl options is required.'); +- } +- +- var templateAndResolvePromise = +- $q.all([getTemplatePromise(modalOptions)].concat(getResolvePromises(modalOptions.resolve))); +- +- +- templateAndResolvePromise.then(function resolveSuccess(tplAndVars) { +- +- var modalScope = (modalOptions.scope || $rootScope).$new(); +- modalScope.$close = modalInstance.close; +- modalScope.$dismiss = modalInstance.dismiss; +- +- var ctrlInstance, ctrlLocals = {}; +- var resolveIter = 1; +- +- //controllers +- if (modalOptions.controller) { +- ctrlLocals.$scope = modalScope; +- ctrlLocals.$modalInstance = modalInstance; +- angular.forEach(modalOptions.resolve, function (value, key) { +- ctrlLocals[key] = tplAndVars[resolveIter++]; +- }); +- +- ctrlInstance = $controller(modalOptions.controller, ctrlLocals); +- if (modalOptions.controllerAs) { +- modalScope[modalOptions.controllerAs] = ctrlInstance; +- } +- } +- +- $modalStack.open(modalInstance, { +- scope: modalScope, +- deferred: modalResultDeferred, +- renderDeferred: modalRenderDeferred, +- content: tplAndVars[0], +- animation: modalOptions.animation, +- backdrop: modalOptions.backdrop, +- keyboard: modalOptions.keyboard, +- backdropClass: modalOptions.backdropClass, +- windowClass: modalOptions.windowClass, +- windowTemplateUrl: modalOptions.windowTemplateUrl, +- size: modalOptions.size +- }); +- +- }, function resolveError(reason) { +- modalResultDeferred.reject(reason); +- }); +- +- templateAndResolvePromise.then(function () { +- modalOpenedDeferred.resolve(true); +- }, function (reason) { +- modalOpenedDeferred.reject(reason); +- }); +- +- return modalInstance; +- }; +- +- return $modal; +- }] +- }; +- +- return $modalProvider; +- }); +- +-angular.module('ui.bootstrap.pagination', []) +- +-.controller('PaginationController', ['$scope', '$attrs', '$parse', function ($scope, $attrs, $parse) { +- var self = this, +- ngModelCtrl = { $setViewValue: angular.noop }, // nullModelCtrl +- setNumPages = $attrs.numPages ? $parse($attrs.numPages).assign : angular.noop; +- +- this.init = function(ngModelCtrl_, config) { +- ngModelCtrl = ngModelCtrl_; +- this.config = config; +- +- ngModelCtrl.$render = function() { +- self.render(); +- }; +- +- if ($attrs.itemsPerPage) { +- $scope.$parent.$watch($parse($attrs.itemsPerPage), function(value) { +- self.itemsPerPage = parseInt(value, 10); +- $scope.totalPages = self.calculateTotalPages(); +- }); +- } else { +- this.itemsPerPage = config.itemsPerPage; +- } +- +- $scope.$watch('totalItems', function() { +- $scope.totalPages = self.calculateTotalPages(); +- }); +- +- $scope.$watch('totalPages', function(value) { +- setNumPages($scope.$parent, value); // Readonly variable +- +- if ( $scope.page > value ) { +- $scope.selectPage(value); +- } else { +- ngModelCtrl.$render(); +- } +- }); +- }; +- +- this.calculateTotalPages = function() { +- var totalPages = this.itemsPerPage < 1 ? 1 : Math.ceil($scope.totalItems / this.itemsPerPage); +- return Math.max(totalPages || 0, 1); +- }; +- +- this.render = function() { +- $scope.page = parseInt(ngModelCtrl.$viewValue, 10) || 1; +- }; +- +- $scope.selectPage = function(page, evt) { +- if ( $scope.page !== page && page > 0 && page <= $scope.totalPages) { +- if (evt && evt.target) { +- evt.target.blur(); +- } +- ngModelCtrl.$setViewValue(page); +- ngModelCtrl.$render(); +- } +- }; +- +- $scope.getText = function( key ) { +- return $scope[key + 'Text'] || self.config[key + 'Text']; +- }; +- $scope.noPrevious = function() { +- return $scope.page === 1; +- }; +- $scope.noNext = function() { +- return $scope.page === $scope.totalPages; +- }; +-}]) +- +-.constant('paginationConfig', { +- itemsPerPage: 10, +- boundaryLinks: false, +- directionLinks: true, +- firstText: 'First', +- previousText: 'Previous', +- nextText: 'Next', +- lastText: 'Last', +- rotate: true +-}) +- +-.directive('pagination', ['$parse', 'paginationConfig', function($parse, paginationConfig) { +- return { +- restrict: 'EA', +- scope: { +- totalItems: '=', +- firstText: '@', +- previousText: '@', +- nextText: '@', +- lastText: '@' +- }, +- require: ['pagination', '?ngModel'], +- controller: 'PaginationController', +- templateUrl: 'template/pagination/pagination.html', +- replace: true, +- link: function(scope, element, attrs, ctrls) { +- var paginationCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- if (!ngModelCtrl) { +- return; // do nothing if no ng-model +- } +- +- // Setup configuration parameters +- var maxSize = angular.isDefined(attrs.maxSize) ? scope.$parent.$eval(attrs.maxSize) : paginationConfig.maxSize, +- rotate = angular.isDefined(attrs.rotate) ? scope.$parent.$eval(attrs.rotate) : paginationConfig.rotate; +- scope.boundaryLinks = angular.isDefined(attrs.boundaryLinks) ? scope.$parent.$eval(attrs.boundaryLinks) : paginationConfig.boundaryLinks; +- scope.directionLinks = angular.isDefined(attrs.directionLinks) ? scope.$parent.$eval(attrs.directionLinks) : paginationConfig.directionLinks; +- +- paginationCtrl.init(ngModelCtrl, paginationConfig); +- +- if (attrs.maxSize) { +- scope.$parent.$watch($parse(attrs.maxSize), function(value) { +- maxSize = parseInt(value, 10); +- paginationCtrl.render(); +- }); +- } +- +- // Create page object used in template +- function makePage(number, text, isActive) { +- return { +- number: number, +- text: text, +- active: isActive +- }; +- } +- +- function getPages(currentPage, totalPages) { +- var pages = []; +- +- // Default page limits +- var startPage = 1, endPage = totalPages; +- var isMaxSized = ( angular.isDefined(maxSize) && maxSize < totalPages ); +- +- // recompute if maxSize +- if ( isMaxSized ) { +- if ( rotate ) { +- // Current page is displayed in the middle of the visible ones +- startPage = Math.max(currentPage - Math.floor(maxSize/2), 1); +- endPage = startPage + maxSize - 1; +- +- // Adjust if limit is exceeded +- if (endPage > totalPages) { +- endPage = totalPages; +- startPage = endPage - maxSize + 1; +- } +- } else { +- // Visible pages are paginated with maxSize +- startPage = ((Math.ceil(currentPage / maxSize) - 1) * maxSize) + 1; +- +- // Adjust last page if limit is exceeded +- endPage = Math.min(startPage + maxSize - 1, totalPages); +- } +- } +- +- // Add page number links +- for (var number = startPage; number <= endPage; number++) { +- var page = makePage(number, number, number === currentPage); +- pages.push(page); +- } +- +- // Add links to move between page sets +- if ( isMaxSized && ! rotate ) { +- if ( startPage > 1 ) { +- var previousPageSet = makePage(startPage - 1, '...', false); +- pages.unshift(previousPageSet); +- } +- +- if ( endPage < totalPages ) { +- var nextPageSet = makePage(endPage + 1, '...', false); +- pages.push(nextPageSet); +- } +- } +- +- return pages; +- } +- +- var originalRender = paginationCtrl.render; +- paginationCtrl.render = function() { +- originalRender(); +- if (scope.page > 0 && scope.page <= scope.totalPages) { +- scope.pages = getPages(scope.page, scope.totalPages); +- } +- }; +- } +- }; +-}]) +- +-.constant('pagerConfig', { +- itemsPerPage: 10, +- previousText: '« Previous', +- nextText: 'Next »', +- align: true +-}) +- +-.directive('pager', ['pagerConfig', function(pagerConfig) { +- return { +- restrict: 'EA', +- scope: { +- totalItems: '=', +- previousText: '@', +- nextText: '@' +- }, +- require: ['pager', '?ngModel'], +- controller: 'PaginationController', +- templateUrl: 'template/pagination/pager.html', +- replace: true, +- link: function(scope, element, attrs, ctrls) { +- var paginationCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- if (!ngModelCtrl) { +- return; // do nothing if no ng-model +- } +- +- scope.align = angular.isDefined(attrs.align) ? scope.$parent.$eval(attrs.align) : pagerConfig.align; +- paginationCtrl.init(ngModelCtrl, pagerConfig); +- } +- }; +-}]); +- +-/** +- * The following features are still outstanding: animation as a +- * function, placement as a function, inside, support for more triggers than +- * just mouse enter/leave, html tooltips, and selector delegation. +- */ +-angular.module( 'ui.bootstrap.tooltip', [ 'ui.bootstrap.position', 'ui.bootstrap.bindHtml' ] ) +- +-/** +- * The $tooltip service creates tooltip- and popover-like directives as well as +- * houses global options for them. +- */ +-.provider( '$tooltip', function () { +- // The default options tooltip and popover. +- var defaultOptions = { +- placement: 'top', +- animation: true, +- popupDelay: 0, +- useContentExp: false +- }; +- +- // Default hide triggers for each show trigger +- var triggerMap = { +- 'mouseenter': 'mouseleave', +- 'click': 'click', +- 'focus': 'blur' +- }; +- +- // The options specified to the provider globally. +- var globalOptions = {}; +- +- /** +- * `options({})` allows global configuration of all tooltips in the +- * application. +- * +- * var app = angular.module( 'App', ['ui.bootstrap.tooltip'], function( $tooltipProvider ) { +- * // place tooltips left instead of top by default +- * $tooltipProvider.options( { placement: 'left' } ); +- * }); +- */ +- this.options = function( value ) { +- angular.extend( globalOptions, value ); +- }; +- +- /** +- * This allows you to extend the set of trigger mappings available. E.g.: +- * +- * $tooltipProvider.setTriggers( 'openTrigger': 'closeTrigger' ); +- */ +- this.setTriggers = function setTriggers ( triggers ) { +- angular.extend( triggerMap, triggers ); +- }; +- +- /** +- * This is a helper function for translating camel-case to snake-case. +- */ +- function snake_case(name){ +- var regexp = /[A-Z]/g; +- var separator = '-'; +- return name.replace(regexp, function(letter, pos) { +- return (pos ? separator : '') + letter.toLowerCase(); +- }); +- } +- +- /** +- * Returns the actual instance of the $tooltip service. +- * TODO support multiple triggers +- */ +- this.$get = [ '$window', '$compile', '$timeout', '$document', '$position', '$interpolate', function ( $window, $compile, $timeout, $document, $position, $interpolate ) { +- return function $tooltip ( type, prefix, defaultTriggerShow, options ) { +- options = angular.extend( {}, defaultOptions, globalOptions, options ); +- +- /** +- * Returns an object of show and hide triggers. +- * +- * If a trigger is supplied, +- * it is used to show the tooltip; otherwise, it will use the `trigger` +- * option passed to the `$tooltipProvider.options` method; else it will +- * default to the trigger supplied to this directive factory. +- * +- * The hide trigger is based on the show trigger. If the `trigger` option +- * was passed to the `$tooltipProvider.options` method, it will use the +- * mapped trigger from `triggerMap` or the passed trigger if the map is +- * undefined; otherwise, it uses the `triggerMap` value of the show +- * trigger; else it will just use the show trigger. +- */ +- function getTriggers ( trigger ) { +- var show = trigger || options.trigger || defaultTriggerShow; +- var hide = triggerMap[show] || show; +- return { +- show: show, +- hide: hide +- }; +- } +- +- var directiveName = snake_case( type ); +- +- var startSym = $interpolate.startSymbol(); +- var endSym = $interpolate.endSymbol(); +- var template = +- '<div '+ directiveName +'-popup '+ +- 'title="'+startSym+'title'+endSym+'" '+ +- (options.useContentExp ? +- 'content-exp="contentExp()" ' : +- 'content="'+startSym+'content'+endSym+'" ') + +- 'placement="'+startSym+'placement'+endSym+'" '+ +- 'popup-class="'+startSym+'popupClass'+endSym+'" '+ +- 'animation="animation" '+ +- 'is-open="isOpen"'+ +- 'origin-scope="origScope" '+ +- '>'+ +- '</div>'; +- +- return { +- restrict: 'EA', +- compile: function (tElem, tAttrs) { +- var tooltipLinker = $compile( template ); +- +- return function link ( scope, element, attrs, tooltipCtrl ) { +- var tooltip; +- var tooltipLinkedScope; +- var transitionTimeout; +- var popupTimeout; +- var appendToBody = angular.isDefined( options.appendToBody ) ? options.appendToBody : false; +- var triggers = getTriggers( undefined ); +- var hasEnableExp = angular.isDefined(attrs[prefix+'Enable']); +- var ttScope = scope.$new(true); +- +- var positionTooltip = function () { +- if (!tooltip) { return; } +- +- var ttPosition = $position.positionElements(element, tooltip, ttScope.placement, appendToBody); +- ttPosition.top += 'px'; +- ttPosition.left += 'px'; +- +- // Now set the calculated positioning. +- tooltip.css( ttPosition ); +- }; +- +- // Set up the correct scope to allow transclusion later +- ttScope.origScope = scope; +- +- // By default, the tooltip is not open. +- // TODO add ability to start tooltip opened +- ttScope.isOpen = false; +- +- function toggleTooltipBind () { +- if ( ! ttScope.isOpen ) { +- showTooltipBind(); +- } else { +- hideTooltipBind(); +- } +- } +- +- // Show the tooltip with delay if specified, otherwise show it immediately +- function showTooltipBind() { +- if(hasEnableExp && !scope.$eval(attrs[prefix+'Enable'])) { +- return; +- } +- +- prepareTooltip(); +- +- if ( ttScope.popupDelay ) { +- // Do nothing if the tooltip was already scheduled to pop-up. +- // This happens if show is triggered multiple times before any hide is triggered. +- if (!popupTimeout) { +- popupTimeout = $timeout( show, ttScope.popupDelay, false ); +- popupTimeout.then(function(reposition){reposition();}); +- } +- } else { +- show()(); +- } +- } +- +- function hideTooltipBind () { +- scope.$apply(function () { +- hide(); +- }); +- } +- +- // Show the tooltip popup element. +- function show() { +- +- popupTimeout = null; +- +- // If there is a pending remove transition, we must cancel it, lest the +- // tooltip be mysteriously removed. +- if ( transitionTimeout ) { +- $timeout.cancel( transitionTimeout ); +- transitionTimeout = null; +- } +- +- // Don't show empty tooltips. +- if ( !(options.useContentExp ? ttScope.contentExp() : ttScope.content) ) { +- return angular.noop; +- } +- +- createTooltip(); +- +- // Set the initial positioning. +- tooltip.css({ top: 0, left: 0, display: 'block' }); +- ttScope.$digest(); +- +- positionTooltip(); +- +- // And show the tooltip. +- ttScope.isOpen = true; +- ttScope.$apply(); // digest required as $apply is not called +- +- // Return positioning function as promise callback for correct +- // positioning after draw. +- return positionTooltip; +- } +- +- // Hide the tooltip popup element. +- function hide() { +- // First things first: we don't show it anymore. +- ttScope.isOpen = false; +- +- //if tooltip is going to be shown after delay, we must cancel this +- $timeout.cancel( popupTimeout ); +- popupTimeout = null; +- +- // And now we remove it from the DOM. However, if we have animation, we +- // need to wait for it to expire beforehand. +- // FIXME: this is a placeholder for a port of the transitions library. +- if ( ttScope.animation ) { +- if (!transitionTimeout) { +- transitionTimeout = $timeout(removeTooltip, 500); +- } +- } else { +- removeTooltip(); +- } +- } +- +- function createTooltip() { +- // There can only be one tooltip element per directive shown at once. +- if (tooltip) { +- removeTooltip(); +- } +- tooltipLinkedScope = ttScope.$new(); +- tooltip = tooltipLinker(tooltipLinkedScope, function (tooltip) { +- if ( appendToBody ) { +- $document.find( 'body' ).append( tooltip ); +- } else { +- element.after( tooltip ); +- } +- }); +- +- tooltipLinkedScope.$watch(function () { +- $timeout(positionTooltip, 0, false); +- }); +- +- if (options.useContentExp) { +- tooltipLinkedScope.$watch('contentExp()', function (val) { +- if (!val && ttScope.isOpen ) { +- hide(); +- } +- }); +- } +- } +- +- function removeTooltip() { +- transitionTimeout = null; +- if (tooltip) { +- tooltip.remove(); +- tooltip = null; +- } +- if (tooltipLinkedScope) { +- tooltipLinkedScope.$destroy(); +- tooltipLinkedScope = null; +- } +- } +- +- function prepareTooltip() { +- prepPopupClass(); +- prepPlacement(); +- prepPopupDelay(); +- } +- +- ttScope.contentExp = function () { +- return scope.$eval(attrs[type]); +- }; +- +- /** +- * Observe the relevant attributes. +- */ +- if (!options.useContentExp) { +- attrs.$observe( type, function ( val ) { +- ttScope.content = val; +- +- if (!val && ttScope.isOpen ) { +- hide(); +- } +- }); +- } +- +- attrs.$observe( 'disabled', function ( val ) { +- if (val && ttScope.isOpen ) { +- hide(); +- } +- }); +- +- attrs.$observe( prefix+'Title', function ( val ) { +- ttScope.title = val; +- }); +- +- function prepPopupClass() { +- ttScope.popupClass = attrs[prefix + 'Class']; +- } +- +- function prepPlacement() { +- var val = attrs[ prefix + 'Placement' ]; +- ttScope.placement = angular.isDefined( val ) ? val : options.placement; +- } +- +- function prepPopupDelay() { +- var val = attrs[ prefix + 'PopupDelay' ]; +- var delay = parseInt( val, 10 ); +- ttScope.popupDelay = ! isNaN(delay) ? delay : options.popupDelay; +- } +- +- var unregisterTriggers = function () { +- element.unbind(triggers.show, showTooltipBind); +- element.unbind(triggers.hide, hideTooltipBind); +- }; +- +- function prepTriggers() { +- var val = attrs[ prefix + 'Trigger' ]; +- unregisterTriggers(); +- +- triggers = getTriggers( val ); +- +- if ( triggers.show === triggers.hide ) { +- element.bind( triggers.show, toggleTooltipBind ); +- } else { +- element.bind( triggers.show, showTooltipBind ); +- element.bind( triggers.hide, hideTooltipBind ); +- } +- } +- prepTriggers(); +- +- var animation = scope.$eval(attrs[prefix + 'Animation']); +- ttScope.animation = angular.isDefined(animation) ? !!animation : options.animation; +- +- var appendToBodyVal = scope.$eval(attrs[prefix + 'AppendToBody']); +- appendToBody = angular.isDefined(appendToBodyVal) ? appendToBodyVal : appendToBody; +- +- // if a tooltip is attached to <body> we need to remove it on +- // location change as its parent scope will probably not be destroyed +- // by the change. +- if ( appendToBody ) { +- scope.$on('$locationChangeSuccess', function closeTooltipOnLocationChangeSuccess () { +- if ( ttScope.isOpen ) { +- hide(); +- } +- }); +- } +- +- // Make sure tooltip is destroyed and removed. +- scope.$on('$destroy', function onDestroyTooltip() { +- $timeout.cancel( transitionTimeout ); +- $timeout.cancel( popupTimeout ); +- unregisterTriggers(); +- removeTooltip(); +- ttScope = null; +- }); +- }; +- } +- }; +- }; +- }]; +-}) +- +-// This is mostly ngInclude code but with a custom scope +-.directive( 'tooltipTemplateTransclude', [ +- '$animate', '$sce', '$compile', '$templateRequest', +-function ($animate , $sce , $compile , $templateRequest) { +- return { +- link: function ( scope, elem, attrs ) { +- var origScope = scope.$eval(attrs.tooltipTemplateTranscludeScope); +- +- var changeCounter = 0, +- currentScope, +- previousElement, +- currentElement; +- +- var cleanupLastIncludeContent = function() { +- if (previousElement) { +- previousElement.remove(); +- previousElement = null; +- } +- if (currentScope) { +- currentScope.$destroy(); +- currentScope = null; +- } +- if (currentElement) { +- $animate.leave(currentElement).then(function() { +- previousElement = null; +- }); +- previousElement = currentElement; +- currentElement = null; +- } +- }; +- +- scope.$watch($sce.parseAsResourceUrl(attrs.tooltipTemplateTransclude), function (src) { +- var thisChangeId = ++changeCounter; +- +- if (src) { +- //set the 2nd param to true to ignore the template request error so that the inner +- //contents and scope can be cleaned up. +- $templateRequest(src, true).then(function(response) { +- if (thisChangeId !== changeCounter) { return; } +- var newScope = origScope.$new(); +- var template = response; +- +- var clone = $compile(template)(newScope, function(clone) { +- cleanupLastIncludeContent(); +- $animate.enter(clone, elem); +- }); +- +- currentScope = newScope; +- currentElement = clone; +- +- currentScope.$emit('$includeContentLoaded', src); +- }, function() { +- if (thisChangeId === changeCounter) { +- cleanupLastIncludeContent(); +- scope.$emit('$includeContentError', src); +- } +- }); +- scope.$emit('$includeContentRequested', src); +- } else { +- cleanupLastIncludeContent(); +- } +- }); +- +- scope.$on('$destroy', cleanupLastIncludeContent); +- } +- }; +-}]) +- +-/** +- * Note that it's intentional that these classes are *not* applied through $animate. +- * They must not be animated as they're expected to be present on the tooltip on +- * initialization. +- */ +-.directive('tooltipClasses', function () { +- return { +- restrict: 'A', +- link: function (scope, element, attrs) { +- if (scope.placement) { +- element.addClass(scope.placement); +- } +- if (scope.popupClass) { +- element.addClass(scope.popupClass); +- } +- if (scope.animation()) { +- element.addClass(attrs.tooltipAnimationClass); +- } +- } +- }; +-}) +- +-.directive( 'tooltipPopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { content: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' }, +- templateUrl: 'template/tooltip/tooltip-popup.html' +- }; +-}) +- +-.directive( 'tooltip', [ '$tooltip', function ( $tooltip ) { +- return $tooltip( 'tooltip', 'tooltip', 'mouseenter' ); +-}]) +- +-.directive( 'tooltipTemplatePopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&', +- originScope: '&' }, +- templateUrl: 'template/tooltip/tooltip-template-popup.html' +- }; +-}) +- +-.directive( 'tooltipTemplate', [ '$tooltip', function ( $tooltip ) { +- return $tooltip('tooltipTemplate', 'tooltip', 'mouseenter', { +- useContentExp: true +- }); +-}]) +- +-.directive( 'tooltipHtmlPopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&' }, +- templateUrl: 'template/tooltip/tooltip-html-popup.html' +- }; +-}) +- +-.directive( 'tooltipHtml', [ '$tooltip', function ( $tooltip ) { +- return $tooltip('tooltipHtml', 'tooltip', 'mouseenter', { +- useContentExp: true +- }); +-}]) +- +-/* +-Deprecated +-*/ +-.directive( 'tooltipHtmlUnsafePopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { content: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' }, +- templateUrl: 'template/tooltip/tooltip-html-unsafe-popup.html' +- }; +-}) +- +-.value('tooltipHtmlUnsafeSuppressDeprecated', false) +-.directive( 'tooltipHtmlUnsafe', [ +- '$tooltip', 'tooltipHtmlUnsafeSuppressDeprecated', '$log', +-function ( $tooltip , tooltipHtmlUnsafeSuppressDeprecated , $log) { +- if (!tooltipHtmlUnsafeSuppressDeprecated) { +- $log.warn('tooltip-html-unsafe is now deprecated. Use tooltip-html or tooltip-template instead.'); +- } +- return $tooltip( 'tooltipHtmlUnsafe', 'tooltip', 'mouseenter' ); +-}]); +- +-/** +- * The following features are still outstanding: popup delay, animation as a +- * function, placement as a function, inside, support for more triggers than +- * just mouse enter/leave, html popovers, and selector delegatation. +- */ +-angular.module( 'ui.bootstrap.popover', [ 'ui.bootstrap.tooltip' ] ) +- +-.directive( 'popoverTemplatePopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { title: '@', contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&', +- originScope: '&' }, +- templateUrl: 'template/popover/popover-template.html' +- }; +-}) +- +-.directive( 'popoverTemplate', [ '$tooltip', function ( $tooltip ) { +- return $tooltip( 'popoverTemplate', 'popover', 'click', { +- useContentExp: true +- } ); +-}]) +- +-.directive( 'popoverPopup', function () { +- return { +- restrict: 'EA', +- replace: true, +- scope: { title: '@', content: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' }, +- templateUrl: 'template/popover/popover.html' +- }; +-}) +- +-.directive( 'popover', [ '$tooltip', function ( $tooltip ) { +- return $tooltip( 'popover', 'popover', 'click' ); +-}]); +- +-angular.module('ui.bootstrap.progressbar', []) +- +-.constant('progressConfig', { +- animate: true, +- max: 100 +-}) +- +-.controller('ProgressController', ['$scope', '$attrs', 'progressConfig', function($scope, $attrs, progressConfig) { +- var self = this, +- animate = angular.isDefined($attrs.animate) ? $scope.$parent.$eval($attrs.animate) : progressConfig.animate; +- +- this.bars = []; +- $scope.max = angular.isDefined($scope.max) ? $scope.max : progressConfig.max; +- +- this.addBar = function(bar, element) { +- if ( !animate ) { +- element.css({'transition': 'none'}); +- } +- +- this.bars.push(bar); +- +- bar.$watch('value', function( value ) { +- bar.percent = +(100 * value / $scope.max).toFixed(2); +- }); +- +- bar.$on('$destroy', function() { +- element = null; +- self.removeBar(bar); +- }); +- }; +- +- this.removeBar = function(bar) { +- this.bars.splice(this.bars.indexOf(bar), 1); +- }; +-}]) +- +-.directive('progress', function() { +- return { +- restrict: 'EA', +- replace: true, +- transclude: true, +- controller: 'ProgressController', +- require: 'progress', +- scope: {}, +- templateUrl: 'template/progressbar/progress.html' +- }; +-}) +- +-.directive('bar', function() { +- return { +- restrict: 'EA', +- replace: true, +- transclude: true, +- require: '^progress', +- scope: { +- value: '=', +- max: '=?', +- type: '@' +- }, +- templateUrl: 'template/progressbar/bar.html', +- link: function(scope, element, attrs, progressCtrl) { +- progressCtrl.addBar(scope, element); +- } +- }; +-}) +- +-.directive('progressbar', function() { +- return { +- restrict: 'EA', +- replace: true, +- transclude: true, +- controller: 'ProgressController', +- scope: { +- value: '=', +- max: '=?', +- type: '@' +- }, +- templateUrl: 'template/progressbar/progressbar.html', +- link: function(scope, element, attrs, progressCtrl) { +- progressCtrl.addBar(scope, angular.element(element.children()[0])); +- } +- }; +-}); +- +-angular.module('ui.bootstrap.rating', []) +- +-.constant('ratingConfig', { +- max: 5, +- stateOn: null, +- stateOff: null +-}) +- +-.controller('RatingController', ['$scope', '$attrs', 'ratingConfig', function($scope, $attrs, ratingConfig) { +- var ngModelCtrl = { $setViewValue: angular.noop }; +- +- this.init = function(ngModelCtrl_) { +- ngModelCtrl = ngModelCtrl_; +- ngModelCtrl.$render = this.render; +- +- ngModelCtrl.$formatters.push(function(value) { +- if (angular.isNumber(value) && value << 0 !== value) { +- value = Math.round(value); +- } +- return value; +- }); +- +- this.stateOn = angular.isDefined($attrs.stateOn) ? $scope.$parent.$eval($attrs.stateOn) : ratingConfig.stateOn; +- this.stateOff = angular.isDefined($attrs.stateOff) ? $scope.$parent.$eval($attrs.stateOff) : ratingConfig.stateOff; +- +- var ratingStates = angular.isDefined($attrs.ratingStates) ? $scope.$parent.$eval($attrs.ratingStates) : +- new Array( angular.isDefined($attrs.max) ? $scope.$parent.$eval($attrs.max) : ratingConfig.max ); +- $scope.range = this.buildTemplateObjects(ratingStates); +- }; +- +- this.buildTemplateObjects = function(states) { +- for (var i = 0, n = states.length; i < n; i++) { +- states[i] = angular.extend({ index: i }, { stateOn: this.stateOn, stateOff: this.stateOff }, states[i]); +- } +- return states; +- }; +- +- $scope.rate = function(value) { +- if ( !$scope.readonly && value >= 0 && value <= $scope.range.length ) { +- ngModelCtrl.$setViewValue(value); +- ngModelCtrl.$render(); +- } +- }; +- +- $scope.enter = function(value) { +- if ( !$scope.readonly ) { +- $scope.value = value; +- } +- $scope.onHover({value: value}); +- }; +- +- $scope.reset = function() { +- $scope.value = ngModelCtrl.$viewValue; +- $scope.onLeave(); +- }; +- +- $scope.onKeydown = function(evt) { +- if (/(37|38|39|40)/.test(evt.which)) { +- evt.preventDefault(); +- evt.stopPropagation(); +- $scope.rate( $scope.value + (evt.which === 38 || evt.which === 39 ? 1 : -1) ); +- } +- }; +- +- this.render = function() { +- $scope.value = ngModelCtrl.$viewValue; +- }; +-}]) +- +-.directive('rating', function() { +- return { +- restrict: 'EA', +- require: ['rating', 'ngModel'], +- scope: { +- readonly: '=?', +- onHover: '&', +- onLeave: '&' +- }, +- controller: 'RatingController', +- templateUrl: 'template/rating/rating.html', +- replace: true, +- link: function(scope, element, attrs, ctrls) { +- var ratingCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- ratingCtrl.init( ngModelCtrl ); +- } +- }; +-}); +- +-/** +- * @ngdoc overview +- * @name ui.bootstrap.tabs +- * +- * @description +- * AngularJS version of the tabs directive. +- */ +- +-angular.module('ui.bootstrap.tabs', []) +- +-.controller('TabsetController', ['$scope', function TabsetCtrl($scope) { +- var ctrl = this, +- tabs = ctrl.tabs = $scope.tabs = []; +- +- ctrl.select = function(selectedTab) { +- angular.forEach(tabs, function(tab) { +- if (tab.active && tab !== selectedTab) { +- tab.active = false; +- tab.onDeselect(); +- } +- }); +- selectedTab.active = true; +- selectedTab.onSelect(); +- }; +- +- ctrl.addTab = function addTab(tab) { +- tabs.push(tab); +- // we can't run the select function on the first tab +- // since that would select it twice +- if (tabs.length === 1 && tab.active !== false) { +- tab.active = true; +- } else if (tab.active) { +- ctrl.select(tab); +- } +- else { +- tab.active = false; +- } +- }; +- +- ctrl.removeTab = function removeTab(tab) { +- var index = tabs.indexOf(tab); +- //Select a new tab if the tab to be removed is selected and not destroyed +- if (tab.active && tabs.length > 1 && !destroyed) { +- //If this is the last tab, select the previous tab. else, the next tab. +- var newActiveIndex = index == tabs.length - 1 ? index - 1 : index + 1; +- ctrl.select(tabs[newActiveIndex]); +- } +- tabs.splice(index, 1); +- }; +- +- var destroyed; +- $scope.$on('$destroy', function() { +- destroyed = true; +- }); +-}]) +- +-/** +- * @ngdoc directive +- * @name ui.bootstrap.tabs.directive:tabset +- * @restrict EA +- * +- * @description +- * Tabset is the outer container for the tabs directive +- * +- * @param {boolean=} vertical Whether or not to use vertical styling for the tabs. +- * @param {boolean=} justified Whether or not to use justified styling for the tabs. +- * +- * @example +-<example module="ui.bootstrap"> +- <file name="index.html"> +- <tabset> +- <tab heading="Tab 1"><b>First</b> Content!</tab> +- <tab heading="Tab 2"><i>Second</i> Content!</tab> +- </tabset> +- <hr /> +- <tabset vertical="true"> +- <tab heading="Vertical Tab 1"><b>First</b> Vertical Content!</tab> +- <tab heading="Vertical Tab 2"><i>Second</i> Vertical Content!</tab> +- </tabset> +- <tabset justified="true"> +- <tab heading="Justified Tab 1"><b>First</b> Justified Content!</tab> +- <tab heading="Justified Tab 2"><i>Second</i> Justified Content!</tab> +- </tabset> +- </file> +-</example> +- */ +-.directive('tabset', function() { +- return { +- restrict: 'EA', +- transclude: true, +- replace: true, +- scope: { +- type: '@' +- }, +- controller: 'TabsetController', +- templateUrl: 'template/tabs/tabset.html', +- link: function(scope, element, attrs) { +- scope.vertical = angular.isDefined(attrs.vertical) ? scope.$parent.$eval(attrs.vertical) : false; +- scope.justified = angular.isDefined(attrs.justified) ? scope.$parent.$eval(attrs.justified) : false; +- } +- }; +-}) +- +-/** +- * @ngdoc directive +- * @name ui.bootstrap.tabs.directive:tab +- * @restrict EA +- * +- * @param {string=} heading The visible heading, or title, of the tab. Set HTML headings with {@link ui.bootstrap.tabs.directive:tabHeading tabHeading}. +- * @param {string=} select An expression to evaluate when the tab is selected. +- * @param {boolean=} active A binding, telling whether or not this tab is selected. +- * @param {boolean=} disabled A binding, telling whether or not this tab is disabled. +- * +- * @description +- * Creates a tab with a heading and content. Must be placed within a {@link ui.bootstrap.tabs.directive:tabset tabset}. +- * +- * @example +-<example module="ui.bootstrap"> +- <file name="index.html"> +- <div ng-controller="TabsDemoCtrl"> +- <button class="btn btn-small" ng-click="items[0].active = true"> +- Select item 1, using active binding +- </button> +- <button class="btn btn-small" ng-click="items[1].disabled = !items[1].disabled"> +- Enable/disable item 2, using disabled binding +- </button> +- <br /> +- <tabset> +- <tab heading="Tab 1">First Tab</tab> +- <tab select="alertMe()"> +- <tab-heading><i class="icon-bell"></i> Alert me!</tab-heading> +- Second Tab, with alert callback and html heading! +- </tab> +- <tab ng-repeat="item in items" +- heading="{{item.title}}" +- disabled="item.disabled" +- active="item.active"> +- {{item.content}} +- </tab> +- </tabset> +- </div> +- </file> +- <file name="script.js"> +- function TabsDemoCtrl($scope) { +- $scope.items = [ +- { title:"Dynamic Title 1", content:"Dynamic Item 0" }, +- { title:"Dynamic Title 2", content:"Dynamic Item 1", disabled: true } +- ]; +- +- $scope.alertMe = function() { +- setTimeout(function() { +- alert("You've selected the alert tab!"); +- }); +- }; +- }; +- </file> +-</example> +- */ +- +-/** +- * @ngdoc directive +- * @name ui.bootstrap.tabs.directive:tabHeading +- * @restrict EA +- * +- * @description +- * Creates an HTML heading for a {@link ui.bootstrap.tabs.directive:tab tab}. Must be placed as a child of a tab element. +- * +- * @example +-<example module="ui.bootstrap"> +- <file name="index.html"> +- <tabset> +- <tab> +- <tab-heading><b>HTML</b> in my titles?!</tab-heading> +- And some content, too! +- </tab> +- <tab> +- <tab-heading><i class="icon-heart"></i> Icon heading?!?</tab-heading> +- That's right. +- </tab> +- </tabset> +- </file> +-</example> +- */ +-.directive('tab', ['$parse', '$log', function($parse, $log) { +- return { +- require: '^tabset', +- restrict: 'EA', +- replace: true, +- templateUrl: 'template/tabs/tab.html', +- transclude: true, +- scope: { +- active: '=?', +- heading: '@', +- onSelect: '&select', //This callback is called in contentHeadingTransclude +- //once it inserts the tab's content into the dom +- onDeselect: '&deselect' +- }, +- controller: function() { +- //Empty controller so other directives can require being 'under' a tab +- }, +- compile: function(elm, attrs, transclude) { +- return function postLink(scope, elm, attrs, tabsetCtrl) { +- scope.$watch('active', function(active) { +- if (active) { +- tabsetCtrl.select(scope); +- } +- }); +- +- scope.disabled = false; +- if ( attrs.disable ) { +- scope.$parent.$watch($parse(attrs.disable), function(value) { +- scope.disabled = !! value; +- }); +- } +- +- // Deprecation support of "disabled" parameter +- // fix(tab): IE9 disabled attr renders grey text on enabled tab #2677 +- // This code is duplicated from the lines above to make it easy to remove once +- // the feature has been completely deprecated +- if ( attrs.disabled ) { +- $log.warn('Use of "disabled" attribute has been deprecated, please use "disable"'); +- scope.$parent.$watch($parse(attrs.disabled), function(value) { +- scope.disabled = !! value; +- }); +- } +- +- scope.select = function() { +- if ( !scope.disabled ) { +- scope.active = true; +- } +- }; +- +- tabsetCtrl.addTab(scope); +- scope.$on('$destroy', function() { +- tabsetCtrl.removeTab(scope); +- }); +- +- //We need to transclude later, once the content container is ready. +- //when this link happens, we're inside a tab heading. +- scope.$transcludeFn = transclude; +- }; +- } +- }; +-}]) +- +-.directive('tabHeadingTransclude', [function() { +- return { +- restrict: 'A', +- require: '^tab', +- link: function(scope, elm, attrs, tabCtrl) { +- scope.$watch('headingElement', function updateHeadingElement(heading) { +- if (heading) { +- elm.html(''); +- elm.append(heading); +- } +- }); +- } +- }; +-}]) +- +-.directive('tabContentTransclude', function() { +- return { +- restrict: 'A', +- require: '^tabset', +- link: function(scope, elm, attrs) { +- var tab = scope.$eval(attrs.tabContentTransclude); +- +- //Now our tab is ready to be transcluded: both the tab heading area +- //and the tab content area are loaded. Transclude 'em both. +- tab.$transcludeFn(tab.$parent, function(contents) { +- angular.forEach(contents, function(node) { +- if (isTabHeading(node)) { +- //Let tabHeadingTransclude know. +- tab.headingElement = node; +- } else { +- elm.append(node); +- } +- }); +- }); +- } +- }; +- function isTabHeading(node) { +- return node.tagName && ( +- node.hasAttribute('tab-heading') || +- node.hasAttribute('data-tab-heading') || +- node.tagName.toLowerCase() === 'tab-heading' || +- node.tagName.toLowerCase() === 'data-tab-heading' +- ); +- } +-}) +- +-; +- +-angular.module('ui.bootstrap.timepicker', []) +- +-.constant('timepickerConfig', { +- hourStep: 1, +- minuteStep: 1, +- showMeridian: true, +- meridians: null, +- readonlyInput: false, +- mousewheel: true, +- arrowkeys: true +-}) +- +-.controller('TimepickerController', ['$scope', '$attrs', '$parse', '$log', '$locale', 'timepickerConfig', function($scope, $attrs, $parse, $log, $locale, timepickerConfig) { +- var selected = new Date(), +- ngModelCtrl = { $setViewValue: angular.noop }, // nullModelCtrl +- meridians = angular.isDefined($attrs.meridians) ? $scope.$parent.$eval($attrs.meridians) : timepickerConfig.meridians || $locale.DATETIME_FORMATS.AMPMS; +- +- this.init = function( ngModelCtrl_, inputs ) { +- ngModelCtrl = ngModelCtrl_; +- ngModelCtrl.$render = this.render; +- +- ngModelCtrl.$formatters.unshift(function (modelValue) { +- return modelValue ? new Date( modelValue ) : null; +- }); +- +- var hoursInputEl = inputs.eq(0), +- minutesInputEl = inputs.eq(1); +- +- var mousewheel = angular.isDefined($attrs.mousewheel) ? $scope.$parent.$eval($attrs.mousewheel) : timepickerConfig.mousewheel; +- if ( mousewheel ) { +- this.setupMousewheelEvents( hoursInputEl, minutesInputEl ); +- } +- +- var arrowkeys = angular.isDefined($attrs.arrowkeys) ? $scope.$parent.$eval($attrs.arrowkeys) : timepickerConfig.arrowkeys; +- if (arrowkeys) { +- this.setupArrowkeyEvents( hoursInputEl, minutesInputEl ); +- } +- +- $scope.readonlyInput = angular.isDefined($attrs.readonlyInput) ? $scope.$parent.$eval($attrs.readonlyInput) : timepickerConfig.readonlyInput; +- this.setupInputEvents( hoursInputEl, minutesInputEl ); +- }; +- +- var hourStep = timepickerConfig.hourStep; +- if ($attrs.hourStep) { +- $scope.$parent.$watch($parse($attrs.hourStep), function(value) { +- hourStep = parseInt(value, 10); +- }); +- } +- +- var minuteStep = timepickerConfig.minuteStep; +- if ($attrs.minuteStep) { +- $scope.$parent.$watch($parse($attrs.minuteStep), function(value) { +- minuteStep = parseInt(value, 10); +- }); +- } +- +- // 12H / 24H mode +- $scope.showMeridian = timepickerConfig.showMeridian; +- if ($attrs.showMeridian) { +- $scope.$parent.$watch($parse($attrs.showMeridian), function(value) { +- $scope.showMeridian = !!value; +- +- if ( ngModelCtrl.$error.time ) { +- // Evaluate from template +- var hours = getHoursFromTemplate(), minutes = getMinutesFromTemplate(); +- if (angular.isDefined( hours ) && angular.isDefined( minutes )) { +- selected.setHours( hours ); +- refresh(); +- } +- } else { +- updateTemplate(); +- } +- }); +- } +- +- // Get $scope.hours in 24H mode if valid +- function getHoursFromTemplate ( ) { +- var hours = parseInt( $scope.hours, 10 ); +- var valid = ( $scope.showMeridian ) ? (hours > 0 && hours < 13) : (hours >= 0 && hours < 24); +- if ( !valid ) { +- return undefined; +- } +- +- if ( $scope.showMeridian ) { +- if ( hours === 12 ) { +- hours = 0; +- } +- if ( $scope.meridian === meridians[1] ) { +- hours = hours + 12; +- } +- } +- return hours; +- } +- +- function getMinutesFromTemplate() { +- var minutes = parseInt($scope.minutes, 10); +- return ( minutes >= 0 && minutes < 60 ) ? minutes : undefined; +- } +- +- function pad( value ) { +- return ( angular.isDefined(value) && value.toString().length < 2 ) ? '0' + value : value.toString(); +- } +- +- // Respond on mousewheel spin +- this.setupMousewheelEvents = function( hoursInputEl, minutesInputEl ) { +- var isScrollingUp = function(e) { +- if (e.originalEvent) { +- e = e.originalEvent; +- } +- //pick correct delta variable depending on event +- var delta = (e.wheelDelta) ? e.wheelDelta : -e.deltaY; +- return (e.detail || delta > 0); +- }; +- +- hoursInputEl.bind('mousewheel wheel', function(e) { +- $scope.$apply( (isScrollingUp(e)) ? $scope.incrementHours() : $scope.decrementHours() ); +- e.preventDefault(); +- }); +- +- minutesInputEl.bind('mousewheel wheel', function(e) { +- $scope.$apply( (isScrollingUp(e)) ? $scope.incrementMinutes() : $scope.decrementMinutes() ); +- e.preventDefault(); +- }); +- +- }; +- +- // Respond on up/down arrowkeys +- this.setupArrowkeyEvents = function( hoursInputEl, minutesInputEl ) { +- hoursInputEl.bind('keydown', function(e) { +- if ( e.which === 38 ) { // up +- e.preventDefault(); +- $scope.incrementHours(); +- $scope.$apply(); +- } +- else if ( e.which === 40 ) { // down +- e.preventDefault(); +- $scope.decrementHours(); +- $scope.$apply(); +- } +- }); +- +- minutesInputEl.bind('keydown', function(e) { +- if ( e.which === 38 ) { // up +- e.preventDefault(); +- $scope.incrementMinutes(); +- $scope.$apply(); +- } +- else if ( e.which === 40 ) { // down +- e.preventDefault(); +- $scope.decrementMinutes(); +- $scope.$apply(); +- } +- }); +- }; +- +- this.setupInputEvents = function( hoursInputEl, minutesInputEl ) { +- if ( $scope.readonlyInput ) { +- $scope.updateHours = angular.noop; +- $scope.updateMinutes = angular.noop; +- return; +- } +- +- var invalidate = function(invalidHours, invalidMinutes) { +- ngModelCtrl.$setViewValue( null ); +- ngModelCtrl.$setValidity('time', false); +- if (angular.isDefined(invalidHours)) { +- $scope.invalidHours = invalidHours; +- } +- if (angular.isDefined(invalidMinutes)) { +- $scope.invalidMinutes = invalidMinutes; +- } +- }; +- +- $scope.updateHours = function() { +- var hours = getHoursFromTemplate(); +- +- if ( angular.isDefined(hours) ) { +- selected.setHours( hours ); +- refresh( 'h' ); +- } else { +- invalidate(true); +- } +- }; +- +- hoursInputEl.bind('blur', function(e) { +- if ( !$scope.invalidHours && $scope.hours < 10) { +- $scope.$apply( function() { +- $scope.hours = pad( $scope.hours ); +- }); +- } +- }); +- +- $scope.updateMinutes = function() { +- var minutes = getMinutesFromTemplate(); +- +- if ( angular.isDefined(minutes) ) { +- selected.setMinutes( minutes ); +- refresh( 'm' ); +- } else { +- invalidate(undefined, true); +- } +- }; +- +- minutesInputEl.bind('blur', function(e) { +- if ( !$scope.invalidMinutes && $scope.minutes < 10 ) { +- $scope.$apply( function() { +- $scope.minutes = pad( $scope.minutes ); +- }); +- } +- }); +- +- }; +- +- this.render = function() { +- var date = ngModelCtrl.$viewValue; +- +- if ( isNaN(date) ) { +- ngModelCtrl.$setValidity('time', false); +- $log.error('Timepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.'); +- } else { +- if ( date ) { +- selected = date; +- } +- makeValid(); +- updateTemplate(); +- } +- }; +- +- // Call internally when we know that model is valid. +- function refresh( keyboardChange ) { +- makeValid(); +- ngModelCtrl.$setViewValue( new Date(selected) ); +- updateTemplate( keyboardChange ); +- } +- +- function makeValid() { +- ngModelCtrl.$setValidity('time', true); +- $scope.invalidHours = false; +- $scope.invalidMinutes = false; +- } +- +- function updateTemplate( keyboardChange ) { +- var hours = selected.getHours(), minutes = selected.getMinutes(); +- +- if ( $scope.showMeridian ) { +- hours = ( hours === 0 || hours === 12 ) ? 12 : hours % 12; // Convert 24 to 12 hour system +- } +- +- $scope.hours = keyboardChange === 'h' ? hours : pad(hours); +- if (keyboardChange !== 'm') { +- $scope.minutes = pad(minutes); +- } +- $scope.meridian = selected.getHours() < 12 ? meridians[0] : meridians[1]; +- } +- +- function addMinutes( minutes ) { +- var dt = new Date( selected.getTime() + minutes * 60000 ); +- selected.setHours( dt.getHours(), dt.getMinutes() ); +- refresh(); +- } +- +- $scope.incrementHours = function() { +- addMinutes( hourStep * 60 ); +- }; +- $scope.decrementHours = function() { +- addMinutes( - hourStep * 60 ); +- }; +- $scope.incrementMinutes = function() { +- addMinutes( minuteStep ); +- }; +- $scope.decrementMinutes = function() { +- addMinutes( - minuteStep ); +- }; +- $scope.toggleMeridian = function() { +- addMinutes( 12 * 60 * (( selected.getHours() < 12 ) ? 1 : -1) ); +- }; +-}]) +- +-.directive('timepicker', function () { +- return { +- restrict: 'EA', +- require: ['timepicker', '?^ngModel'], +- controller:'TimepickerController', +- replace: true, +- scope: {}, +- templateUrl: 'template/timepicker/timepicker.html', +- link: function(scope, element, attrs, ctrls) { +- var timepickerCtrl = ctrls[0], ngModelCtrl = ctrls[1]; +- +- if ( ngModelCtrl ) { +- timepickerCtrl.init( ngModelCtrl, element.find('input') ); +- } +- } +- }; +-}); +- +-angular.module('ui.bootstrap.transition', []) +- +-.value('$transitionSuppressDeprecated', false) +-/** +- * $transition service provides a consistent interface to trigger CSS 3 transitions and to be informed when they complete. +- * @param {DOMElement} element The DOMElement that will be animated. +- * @param {string|object|function} trigger The thing that will cause the transition to start: +- * - As a string, it represents the css class to be added to the element. +- * - As an object, it represents a hash of style attributes to be applied to the element. +- * - As a function, it represents a function to be called that will cause the transition to occur. +- * @return {Promise} A promise that is resolved when the transition finishes. +- */ +-.factory('$transition', [ +- '$q', '$timeout', '$rootScope', '$log', '$transitionSuppressDeprecated', +-function($q , $timeout , $rootScope , $log , $transitionSuppressDeprecated) { +- +- if (!$transitionSuppressDeprecated) { +- $log.warn('$transition is now deprecated. Use $animate from ngAnimate instead.'); +- } +- +- var $transition = function(element, trigger, options) { +- options = options || {}; +- var deferred = $q.defer(); +- var endEventName = $transition[options.animation ? 'animationEndEventName' : 'transitionEndEventName']; +- +- var transitionEndHandler = function(event) { +- $rootScope.$apply(function() { +- element.unbind(endEventName, transitionEndHandler); +- deferred.resolve(element); +- }); +- }; +- +- if (endEventName) { +- element.bind(endEventName, transitionEndHandler); +- } +- +- // Wrap in a timeout to allow the browser time to update the DOM before the transition is to occur +- $timeout(function() { +- if ( angular.isString(trigger) ) { +- element.addClass(trigger); +- } else if ( angular.isFunction(trigger) ) { +- trigger(element); +- } else if ( angular.isObject(trigger) ) { +- element.css(trigger); +- } +- //If browser does not support transitions, instantly resolve +- if ( !endEventName ) { +- deferred.resolve(element); +- } +- }); +- +- // Add our custom cancel function to the promise that is returned +- // We can call this if we are about to run a new transition, which we know will prevent this transition from ending, +- // i.e. it will therefore never raise a transitionEnd event for that transition +- deferred.promise.cancel = function() { +- if ( endEventName ) { +- element.unbind(endEventName, transitionEndHandler); +- } +- deferred.reject('Transition cancelled'); +- }; +- +- return deferred.promise; +- }; +- +- // Work out the name of the transitionEnd event +- var transElement = document.createElement('trans'); +- var transitionEndEventNames = { +- 'WebkitTransition': 'webkitTransitionEnd', +- 'MozTransition': 'transitionend', +- 'OTransition': 'oTransitionEnd', +- 'transition': 'transitionend' +- }; +- var animationEndEventNames = { +- 'WebkitTransition': 'webkitAnimationEnd', +- 'MozTransition': 'animationend', +- 'OTransition': 'oAnimationEnd', +- 'transition': 'animationend' +- }; +- function findEndEventName(endEventNames) { +- for (var name in endEventNames){ +- if (transElement.style[name] !== undefined) { +- return endEventNames[name]; +- } +- } +- } +- $transition.transitionEndEventName = findEndEventName(transitionEndEventNames); +- $transition.animationEndEventName = findEndEventName(animationEndEventNames); +- return $transition; +-}]); +- +-angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.position', 'ui.bootstrap.bindHtml']) +- +-/** +- * A helper service that can parse typeahead's syntax (string provided by users) +- * Extracted to a separate service for ease of unit testing +- */ +- .factory('typeaheadParser', ['$parse', function ($parse) { +- +- // 00000111000000000000022200000000000000003333333333333330000000000044000 +- var TYPEAHEAD_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w\d]*))\s+in\s+([\s\S]+?)$/; +- +- return { +- parse:function (input) { +- +- var match = input.match(TYPEAHEAD_REGEXP); +- if (!match) { +- throw new Error( +- 'Expected typeahead specification in form of "_modelValue_ (as _label_)? for _item_ in _collection_"' + +- ' but got "' + input + '".'); +- } +- +- return { +- itemName:match[3], +- source:$parse(match[4]), +- viewMapper:$parse(match[2] || match[1]), +- modelMapper:$parse(match[1]) +- }; +- } +- }; +-}]) +- +- .directive('typeahead', ['$compile', '$parse', '$q', '$timeout', '$document', '$position', 'typeaheadParser', +- function ($compile, $parse, $q, $timeout, $document, $position, typeaheadParser) { +- +- var HOT_KEYS = [9, 13, 27, 38, 40]; +- +- return { +- require:'ngModel', +- link:function (originalScope, element, attrs, modelCtrl) { +- +- //SUPPORTED ATTRIBUTES (OPTIONS) +- +- //minimal no of characters that needs to be entered before typeahead kicks-in +- var minSearch = originalScope.$eval(attrs.typeaheadMinLength) || 1; +- +- //minimal wait time after last character typed before typeahead kicks-in +- var waitTime = originalScope.$eval(attrs.typeaheadWaitMs) || 0; +- +- //should it restrict model values to the ones selected from the popup only? +- var isEditable = originalScope.$eval(attrs.typeaheadEditable) !== false; +- +- //binding to a variable that indicates if matches are being retrieved asynchronously +- var isLoadingSetter = $parse(attrs.typeaheadLoading).assign || angular.noop; +- +- //a callback executed when a match is selected +- var onSelectCallback = $parse(attrs.typeaheadOnSelect); +- +- var inputFormatter = attrs.typeaheadInputFormatter ? $parse(attrs.typeaheadInputFormatter) : undefined; +- +- var appendToBody = attrs.typeaheadAppendToBody ? originalScope.$eval(attrs.typeaheadAppendToBody) : false; +- +- var focusFirst = originalScope.$eval(attrs.typeaheadFocusFirst) !== false; +- +- //INTERNAL VARIABLES +- +- //model setter executed upon match selection +- var $setModelValue = $parse(attrs.ngModel).assign; +- +- //expressions used by typeahead +- var parserResult = typeaheadParser.parse(attrs.typeahead); +- +- var hasFocus; +- +- //create a child scope for the typeahead directive so we are not polluting original scope +- //with typeahead-specific data (matches, query etc.) +- var scope = originalScope.$new(); +- originalScope.$on('$destroy', function(){ +- scope.$destroy(); +- }); +- +- // WAI-ARIA +- var popupId = 'typeahead-' + scope.$id + '-' + Math.floor(Math.random() * 10000); +- element.attr({ +- 'aria-autocomplete': 'list', +- 'aria-expanded': false, +- 'aria-owns': popupId +- }); +- +- //pop-up element used to display matches +- var popUpEl = angular.element('<div typeahead-popup></div>'); +- popUpEl.attr({ +- id: popupId, +- matches: 'matches', +- active: 'activeIdx', +- select: 'select(activeIdx)', +- query: 'query', +- position: 'position' +- }); +- //custom item template +- if (angular.isDefined(attrs.typeaheadTemplateUrl)) { +- popUpEl.attr('template-url', attrs.typeaheadTemplateUrl); +- } +- +- var resetMatches = function() { +- scope.matches = []; +- scope.activeIdx = -1; +- element.attr('aria-expanded', false); +- }; +- +- var getMatchId = function(index) { +- return popupId + '-option-' + index; +- }; +- +- // Indicate that the specified match is the active (pre-selected) item in the list owned by this typeahead. +- // This attribute is added or removed automatically when the `activeIdx` changes. +- scope.$watch('activeIdx', function(index) { +- if (index < 0) { +- element.removeAttr('aria-activedescendant'); +- } else { +- element.attr('aria-activedescendant', getMatchId(index)); +- } +- }); +- +- var getMatchesAsync = function(inputValue) { +- +- var locals = {$viewValue: inputValue}; +- isLoadingSetter(originalScope, true); +- $q.when(parserResult.source(originalScope, locals)).then(function(matches) { +- +- //it might happen that several async queries were in progress if a user were typing fast +- //but we are interested only in responses that correspond to the current view value +- var onCurrentRequest = (inputValue === modelCtrl.$viewValue); +- if (onCurrentRequest && hasFocus) { +- if (matches && matches.length > 0) { +- +- scope.activeIdx = focusFirst ? 0 : -1; +- scope.matches.length = 0; +- +- //transform labels +- for(var i=0; i<matches.length; i++) { +- locals[parserResult.itemName] = matches[i]; +- scope.matches.push({ +- id: getMatchId(i), +- label: parserResult.viewMapper(scope, locals), +- model: matches[i] +- }); +- } +- +- scope.query = inputValue; +- //position pop-up with matches - we need to re-calculate its position each time we are opening a window +- //with matches as a pop-up might be absolute-positioned and position of an input might have changed on a page +- //due to other elements being rendered +- scope.position = appendToBody ? $position.offset(element) : $position.position(element); +- scope.position.top = scope.position.top + element.prop('offsetHeight'); +- +- element.attr('aria-expanded', true); +- } else { +- resetMatches(); +- } +- } +- if (onCurrentRequest) { +- isLoadingSetter(originalScope, false); +- } +- }, function(){ +- resetMatches(); +- isLoadingSetter(originalScope, false); +- }); +- }; +- +- resetMatches(); +- +- //we need to propagate user's query so we can higlight matches +- scope.query = undefined; +- +- //Declare the timeout promise var outside the function scope so that stacked calls can be cancelled later +- var timeoutPromise; +- +- var scheduleSearchWithTimeout = function(inputValue) { +- timeoutPromise = $timeout(function () { +- getMatchesAsync(inputValue); +- }, waitTime); +- }; +- +- var cancelPreviousTimeout = function() { +- if (timeoutPromise) { +- $timeout.cancel(timeoutPromise); +- } +- }; +- +- //plug into $parsers pipeline to open a typeahead on view changes initiated from DOM +- //$parsers kick-in on all the changes coming from the view as well as manually triggered by $setViewValue +- modelCtrl.$parsers.unshift(function (inputValue) { +- +- hasFocus = true; +- +- if (inputValue && inputValue.length >= minSearch) { +- if (waitTime > 0) { +- cancelPreviousTimeout(); +- scheduleSearchWithTimeout(inputValue); +- } else { +- getMatchesAsync(inputValue); +- } +- } else { +- isLoadingSetter(originalScope, false); +- cancelPreviousTimeout(); +- resetMatches(); +- } +- +- if (isEditable) { +- return inputValue; +- } else { +- if (!inputValue) { +- // Reset in case user had typed something previously. +- modelCtrl.$setValidity('editable', true); +- return inputValue; +- } else { +- modelCtrl.$setValidity('editable', false); +- return undefined; +- } +- } +- }); +- +- modelCtrl.$formatters.push(function (modelValue) { +- +- var candidateViewValue, emptyViewValue; +- var locals = {}; +- +- // The validity may be set to false via $parsers (see above) if +- // the model is restricted to selected values. If the model +- // is set manually it is considered to be valid. +- if (!isEditable) { +- modelCtrl.$setValidity('editable', true); +- } +- +- if (inputFormatter) { +- +- locals.$model = modelValue; +- return inputFormatter(originalScope, locals); +- +- } else { +- +- //it might happen that we don't have enough info to properly render input value +- //we need to check for this situation and simply return model value if we can't apply custom formatting +- locals[parserResult.itemName] = modelValue; +- candidateViewValue = parserResult.viewMapper(originalScope, locals); +- locals[parserResult.itemName] = undefined; +- emptyViewValue = parserResult.viewMapper(originalScope, locals); +- +- return candidateViewValue!== emptyViewValue ? candidateViewValue : modelValue; +- } +- }); +- +- scope.select = function (activeIdx) { +- //called from within the $digest() cycle +- var locals = {}; +- var model, item; +- +- locals[parserResult.itemName] = item = scope.matches[activeIdx].model; +- model = parserResult.modelMapper(originalScope, locals); +- $setModelValue(originalScope, model); +- modelCtrl.$setValidity('editable', true); +- modelCtrl.$setValidity('parse', true); +- +- onSelectCallback(originalScope, { +- $item: item, +- $model: model, +- $label: parserResult.viewMapper(originalScope, locals) +- }); +- +- resetMatches(); +- +- //return focus to the input element if a match was selected via a mouse click event +- // use timeout to avoid $rootScope:inprog error +- $timeout(function() { element[0].focus(); }, 0, false); +- }; +- +- //bind keyboard events: arrows up(38) / down(40), enter(13) and tab(9), esc(27) +- element.bind('keydown', function (evt) { +- +- //typeahead is open and an "interesting" key was pressed +- if (scope.matches.length === 0 || HOT_KEYS.indexOf(evt.which) === -1) { +- return; +- } +- +- // if there's nothing selected (i.e. focusFirst) and enter is hit, don't do anything +- if (scope.activeIdx == -1 && (evt.which === 13 || evt.which === 9)) { +- return; +- } +- +- evt.preventDefault(); +- +- if (evt.which === 40) { +- scope.activeIdx = (scope.activeIdx + 1) % scope.matches.length; +- scope.$digest(); +- +- } else if (evt.which === 38) { +- scope.activeIdx = (scope.activeIdx > 0 ? scope.activeIdx : scope.matches.length) - 1; +- scope.$digest(); +- +- } else if (evt.which === 13 || evt.which === 9) { +- scope.$apply(function () { +- scope.select(scope.activeIdx); +- }); +- +- } else if (evt.which === 27) { +- evt.stopPropagation(); +- +- resetMatches(); +- scope.$digest(); +- } +- }); +- +- element.bind('blur', function (evt) { +- hasFocus = false; +- }); +- +- // Keep reference to click handler to unbind it. +- var dismissClickHandler = function (evt) { +- if (element[0] !== evt.target) { +- resetMatches(); +- scope.$digest(); +- } +- }; +- +- $document.bind('click', dismissClickHandler); +- +- originalScope.$on('$destroy', function(){ +- $document.unbind('click', dismissClickHandler); +- if (appendToBody) { +- $popup.remove(); +- } +- // Prevent jQuery cache memory leak +- popUpEl.remove(); +- }); +- +- var $popup = $compile(popUpEl)(scope); +- +- if (appendToBody) { +- $document.find('body').append($popup); +- } else { +- element.after($popup); +- } +- } +- }; +- +-}]) +- +- .directive('typeaheadPopup', function () { +- return { +- restrict:'EA', +- scope:{ +- matches:'=', +- query:'=', +- active:'=', +- position:'=', +- select:'&' +- }, +- replace:true, +- templateUrl:'template/typeahead/typeahead-popup.html', +- link:function (scope, element, attrs) { +- +- scope.templateUrl = attrs.templateUrl; +- +- scope.isOpen = function () { +- return scope.matches.length > 0; +- }; +- +- scope.isActive = function (matchIdx) { +- return scope.active == matchIdx; +- }; +- +- scope.selectActive = function (matchIdx) { +- scope.active = matchIdx; +- }; +- +- scope.selectMatch = function (activeIdx) { +- scope.select({activeIdx:activeIdx}); +- }; +- } +- }; +- }) +- +- .directive('typeaheadMatch', ['$templateRequest', '$compile', '$parse', function ($templateRequest, $compile, $parse) { +- return { +- restrict:'EA', +- scope:{ +- index:'=', +- match:'=', +- query:'=' +- }, +- link:function (scope, element, attrs) { +- var tplUrl = $parse(attrs.templateUrl)(scope.$parent) || 'template/typeahead/typeahead-match.html'; +- $templateRequest(tplUrl).then(function(tplContent) { +- $compile(tplContent.trim())(scope, function(clonedElement){ +- element.replaceWith(clonedElement); +- }); +- }); +- } +- }; +- }]) +- +- .filter('typeaheadHighlight', function() { +- +- function escapeRegexp(queryToEscape) { +- return queryToEscape.replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1'); +- } +- +- return function(matchItem, query) { +- return query ? ('' + matchItem).replace(new RegExp(escapeRegexp(query), 'gi'), '<strong>$&</strong>') : matchItem; +- }; +- }); +- +-angular.module("template/accordion/accordion-group.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/accordion/accordion-group.html", +- "<div class=\"panel panel-default\">\n" + +- " <div class=\"panel-heading\">\n" + +- " <h4 class=\"panel-title\">\n" + +- " <a href=\"javascript:void(0)\" tabindex=\"0\" class=\"accordion-toggle\" ng-click=\"toggleOpen()\" accordion-transclude=\"heading\"><span ng-class=\"{'text-muted': isDisabled}\">{{heading}}</span></a>\n" + +- " </h4>\n" + +- " </div>\n" + +- " <div class=\"panel-collapse collapse\" collapse=\"!isOpen\">\n" + +- " <div class=\"panel-body\" ng-transclude></div>\n" + +- " </div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/accordion/accordion.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/accordion/accordion.html", +- "<div class=\"panel-group\" ng-transclude></div>"); +-}]); +- +-angular.module("template/alert/alert.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/alert/alert.html", +- "<div class=\"alert\" ng-class=\"['alert-' + (type || 'warning'), closeable ? 'alert-dismissable' : null]\" role=\"alert\">\n" + +- " <button ng-show=\"closeable\" type=\"button\" class=\"close\" ng-click=\"close()\">\n" + +- " <span aria-hidden=\"true\">×</span>\n" + +- " <span class=\"sr-only\">Close</span>\n" + +- " </button>\n" + +- " <div ng-transclude></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/carousel/carousel.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/carousel/carousel.html", +- "<div ng-mouseenter=\"pause()\" ng-mouseleave=\"play()\" class=\"carousel\" ng-swipe-right=\"prev()\" ng-swipe-left=\"next()\">\n" + +- " <ol class=\"carousel-indicators\" ng-show=\"slides.length > 1\">\n" + +- " <li ng-repeat=\"slide in slides | orderBy:'index' track by $index\" ng-class=\"{active: isActive(slide)}\" ng-click=\"select(slide)\"></li>\n" + +- " </ol>\n" + +- " <div class=\"carousel-inner\" ng-transclude></div>\n" + +- " <a class=\"left carousel-control\" ng-click=\"prev()\" ng-show=\"slides.length > 1\"><span class=\"glyphicon glyphicon-chevron-left\"></span></a>\n" + +- " <a class=\"right carousel-control\" ng-click=\"next()\" ng-show=\"slides.length > 1\"><span class=\"glyphicon glyphicon-chevron-right\"></span></a>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/carousel/slide.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/carousel/slide.html", +- "<div ng-class=\"{\n" + +- " 'active': active\n" + +- " }\" class=\"item text-center\" ng-transclude></div>\n" + +- ""); +-}]); +- +-angular.module("template/datepicker/datepicker.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/datepicker/datepicker.html", +- "<div ng-switch=\"datepickerMode\" role=\"application\" ng-keydown=\"keydown($event)\">\n" + +- " <daypicker ng-switch-when=\"day\" tabindex=\"0\"></daypicker>\n" + +- " <monthpicker ng-switch-when=\"month\" tabindex=\"0\"></monthpicker>\n" + +- " <yearpicker ng-switch-when=\"year\" tabindex=\"0\"></yearpicker>\n" + +- "</div>"); +-}]); +- +-angular.module("template/datepicker/day.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/datepicker/day.html", +- "<table role=\"grid\" aria-labelledby=\"{{uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" + +- " <thead>\n" + +- " <tr>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" + +- " <th colspan=\"{{5 + showWeeks}}\"><button id=\"{{uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\" style=\"width:100%;\"><strong>{{title}}</strong></button></th>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" + +- " </tr>\n" + +- " <tr>\n" + +- " <th ng-show=\"showWeeks\" class=\"text-center\"></th>\n" + +- " <th ng-repeat=\"label in labels track by $index\" class=\"text-center\"><small aria-label=\"{{label.full}}\">{{label.abbr}}</small></th>\n" + +- " </tr>\n" + +- " </thead>\n" + +- " <tbody>\n" + +- " <tr ng-repeat=\"row in rows track by $index\">\n" + +- " <td ng-show=\"showWeeks\" class=\"text-center h6\"><em>{{ weekNumbers[$index] }}</em></td>\n" + +- " <td ng-repeat=\"dt in row track by dt.date\" class=\"text-center\" role=\"gridcell\" id=\"{{dt.uid}}\" aria-disabled=\"{{!!dt.disabled}}\" ng-class=\"dt.customClass\">\n" + +- " <button type=\"button\" style=\"width:100%;\" class=\"btn btn-default btn-sm\" ng-class=\"{'btn-info': dt.selected, active: isActive(dt)}\" ng-click=\"select(dt.date)\" ng-disabled=\"dt.disabled\" tabindex=\"-1\"><span ng-class=\"{'text-muted': dt.secondary, 'text-info': dt.current}\">{{dt.label}}</span></button>\n" + +- " </td>\n" + +- " </tr>\n" + +- " </tbody>\n" + +- "</table>\n" + +- ""); +-}]); +- +-angular.module("template/datepicker/month.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/datepicker/month.html", +- "<table role=\"grid\" aria-labelledby=\"{{uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" + +- " <thead>\n" + +- " <tr>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" + +- " <th><button id=\"{{uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\" style=\"width:100%;\"><strong>{{title}}</strong></button></th>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" + +- " </tr>\n" + +- " </thead>\n" + +- " <tbody>\n" + +- " <tr ng-repeat=\"row in rows track by $index\">\n" + +- " <td ng-repeat=\"dt in row track by dt.date\" class=\"text-center\" role=\"gridcell\" id=\"{{dt.uid}}\" aria-disabled=\"{{!!dt.disabled}}\">\n" + +- " <button type=\"button\" style=\"width:100%;\" class=\"btn btn-default\" ng-class=\"{'btn-info': dt.selected, active: isActive(dt)}\" ng-click=\"select(dt.date)\" ng-disabled=\"dt.disabled\" tabindex=\"-1\"><span ng-class=\"{'text-info': dt.current}\">{{dt.label}}</span></button>\n" + +- " </td>\n" + +- " </tr>\n" + +- " </tbody>\n" + +- "</table>\n" + +- ""); +-}]); +- +-angular.module("template/datepicker/popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/datepicker/popup.html", +- "<ul class=\"dropdown-menu\" ng-style=\"{display: (isOpen && 'block') || 'none', top: position.top+'px', left: position.left+'px'}\" ng-keydown=\"keydown($event)\">\n" + +- " <li ng-transclude></li>\n" + +- " <li ng-if=\"showButtonBar\" style=\"padding:10px 9px 2px\">\n" + +- " <span class=\"btn-group pull-left\">\n" + +- " <button type=\"button\" class=\"btn btn-sm btn-info\" ng-click=\"select('today')\">{{ getText('current') }}</button>\n" + +- " <button type=\"button\" class=\"btn btn-sm btn-danger\" ng-click=\"select(null)\">{{ getText('clear') }}</button>\n" + +- " </span>\n" + +- " <button type=\"button\" class=\"btn btn-sm btn-success pull-right\" ng-click=\"close()\">{{ getText('close') }}</button>\n" + +- " </li>\n" + +- "</ul>\n" + +- ""); +-}]); +- +-angular.module("template/datepicker/year.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/datepicker/year.html", +- "<table role=\"grid\" aria-labelledby=\"{{uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" + +- " <thead>\n" + +- " <tr>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" + +- " <th colspan=\"3\"><button id=\"{{uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\" style=\"width:100%;\"><strong>{{title}}</strong></button></th>\n" + +- " <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" + +- " </tr>\n" + +- " </thead>\n" + +- " <tbody>\n" + +- " <tr ng-repeat=\"row in rows track by $index\">\n" + +- " <td ng-repeat=\"dt in row track by dt.date\" class=\"text-center\" role=\"gridcell\" id=\"{{dt.uid}}\" aria-disabled=\"{{!!dt.disabled}}\">\n" + +- " <button type=\"button\" style=\"width:100%;\" class=\"btn btn-default\" ng-class=\"{'btn-info': dt.selected, active: isActive(dt)}\" ng-click=\"select(dt.date)\" ng-disabled=\"dt.disabled\" tabindex=\"-1\"><span ng-class=\"{'text-info': dt.current}\">{{dt.label}}</span></button>\n" + +- " </td>\n" + +- " </tr>\n" + +- " </tbody>\n" + +- "</table>\n" + +- ""); +-}]); +- +-angular.module("template/modal/backdrop.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/modal/backdrop.html", +- "<div class=\"modal-backdrop\"\n" + +- " modal-animation-class=\"fade\"\n" + +- " ng-class=\"{in: animate}\"\n" + +- " ng-style=\"{'z-index': 1040 + (index && 1 || 0) + index*10}\"\n" + +- "></div>\n" + +- ""); +-}]); +- +-angular.module("template/modal/window.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/modal/window.html", +- "<div modal-render=\"{{$isRendered}}\" tabindex=\"-1\" role=\"dialog\" class=\"modal\"\n" + +- " modal-animation-class=\"fade\"\n" + +- " ng-class=\"{in: animate}\" ng-style=\"{'z-index': 1050 + index*10, display: 'block'}\" ng-click=\"close($event)\">\n" + +- " <div class=\"modal-dialog\" ng-class=\"size ? 'modal-' + size : ''\"><div class=\"modal-content\" modal-transclude></div></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/pagination/pager.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/pagination/pager.html", +- "<ul class=\"pager\">\n" + +- " <li ng-class=\"{disabled: noPrevious(), previous: align}\"><a href ng-click=\"selectPage(page - 1, $event)\">{{getText('previous')}}</a></li>\n" + +- " <li ng-class=\"{disabled: noNext(), next: align}\"><a href ng-click=\"selectPage(page + 1, $event)\">{{getText('next')}}</a></li>\n" + +- "</ul>"); +-}]); +- +-angular.module("template/pagination/pagination.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/pagination/pagination.html", +- "<ul class=\"pagination\">\n" + +- " <li ng-if=\"boundaryLinks\" ng-class=\"{disabled: noPrevious()}\"><a href ng-click=\"selectPage(1, $event)\">{{getText('first')}}</a></li>\n" + +- " <li ng-if=\"directionLinks\" ng-class=\"{disabled: noPrevious()}\"><a href ng-click=\"selectPage(page - 1, $event)\">{{getText('previous')}}</a></li>\n" + +- " <li ng-repeat=\"page in pages track by $index\" ng-class=\"{active: page.active}\"><a href ng-click=\"selectPage(page.number, $event)\">{{page.text}}</a></li>\n" + +- " <li ng-if=\"directionLinks\" ng-class=\"{disabled: noNext()}\"><a href ng-click=\"selectPage(page + 1, $event)\">{{getText('next')}}</a></li>\n" + +- " <li ng-if=\"boundaryLinks\" ng-class=\"{disabled: noNext()}\"><a href ng-click=\"selectPage(totalPages, $event)\">{{getText('last')}}</a></li>\n" + +- "</ul>"); +-}]); +- +-angular.module("template/tooltip/tooltip-html-popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tooltip/tooltip-html-popup.html", +- "<div class=\"tooltip\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"tooltip-arrow\"></div>\n" + +- " <div class=\"tooltip-inner\" ng-bind-html=\"contentExp()\"></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/tooltip/tooltip-html-unsafe-popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tooltip/tooltip-html-unsafe-popup.html", +- "<div class=\"tooltip\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"tooltip-arrow\"></div>\n" + +- " <div class=\"tooltip-inner\" bind-html-unsafe=\"content\"></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/tooltip/tooltip-popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tooltip/tooltip-popup.html", +- "<div class=\"tooltip\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"tooltip-arrow\"></div>\n" + +- " <div class=\"tooltip-inner\" ng-bind=\"content\"></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/tooltip/tooltip-template-popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tooltip/tooltip-template-popup.html", +- "<div class=\"tooltip\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"tooltip-arrow\"></div>\n" + +- " <div class=\"tooltip-inner\"\n" + +- " tooltip-template-transclude=\"contentExp()\"\n" + +- " tooltip-template-transclude-scope=\"originScope()\"></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/popover/popover-template.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/popover/popover-template.html", +- "<div class=\"popover\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"arrow\"></div>\n" + +- "\n" + +- " <div class=\"popover-inner\">\n" + +- " <h3 class=\"popover-title\" ng-bind=\"title\" ng-if=\"title\"></h3>\n" + +- " <div class=\"popover-content\"\n" + +- " tooltip-template-transclude=\"contentExp()\"\n" + +- " tooltip-template-transclude-scope=\"originScope()\"></div>\n" + +- " </div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/popover/popover-window.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/popover/popover-window.html", +- "<div class=\"popover {{placement}}\" ng-class=\"{ in: isOpen, fade: animation }\">\n" + +- " <div class=\"arrow\"></div>\n" + +- "\n" + +- " <div class=\"popover-inner\">\n" + +- " <h3 class=\"popover-title\" ng-bind=\"title\" ng-show=\"title\"></h3>\n" + +- " <div class=\"popover-content\" tooltip-template-transclude></div>\n" + +- " </div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/popover/popover.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/popover/popover.html", +- "<div class=\"popover\"\n" + +- " tooltip-animation-class=\"fade\"\n" + +- " tooltip-classes\n" + +- " ng-class=\"{ in: isOpen() }\">\n" + +- " <div class=\"arrow\"></div>\n" + +- "\n" + +- " <div class=\"popover-inner\">\n" + +- " <h3 class=\"popover-title\" ng-bind=\"title\" ng-if=\"title\"></h3>\n" + +- " <div class=\"popover-content\" ng-bind=\"content\"></div>\n" + +- " </div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/progressbar/bar.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/progressbar/bar.html", +- "<div class=\"progress-bar\" ng-class=\"type && 'progress-bar-' + type\" role=\"progressbar\" aria-valuenow=\"{{value}}\" aria-valuemin=\"0\" aria-valuemax=\"{{max}}\" ng-style=\"{width: (percent < 100 ? percent : 100) + '%'}\" aria-valuetext=\"{{percent | number:0}}%\" ng-transclude></div>\n" + +- ""); +-}]); +- +-angular.module("template/progressbar/progress.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/progressbar/progress.html", +- "<div class=\"progress\" ng-transclude></div>"); +-}]); +- +-angular.module("template/progressbar/progressbar.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/progressbar/progressbar.html", +- "<div class=\"progress\">\n" + +- " <div class=\"progress-bar\" ng-class=\"type && 'progress-bar-' + type\" role=\"progressbar\" aria-valuenow=\"{{value}}\" aria-valuemin=\"0\" aria-valuemax=\"{{max}}\" ng-style=\"{width: (percent < 100 ? percent : 100) + '%'}\" aria-valuetext=\"{{percent | number:0}}%\" ng-transclude></div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/rating/rating.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/rating/rating.html", +- "<span ng-mouseleave=\"reset()\" ng-keydown=\"onKeydown($event)\" tabindex=\"0\" role=\"slider\" aria-valuemin=\"0\" aria-valuemax=\"{{range.length}}\" aria-valuenow=\"{{value}}\">\n" + +- " <i ng-repeat=\"r in range track by $index\" ng-mouseenter=\"enter($index + 1)\" ng-click=\"rate($index + 1)\" class=\"glyphicon\" ng-class=\"$index < value && (r.stateOn || 'glyphicon-star') || (r.stateOff || 'glyphicon-star-empty')\">\n" + +- " <span class=\"sr-only\">({{ $index < value ? '*' : ' ' }})</span>\n" + +- " </i>\n" + +- "</span>"); +-}]); +- +-angular.module("template/tabs/tab.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tabs/tab.html", +- "<li ng-class=\"{active: active, disabled: disabled}\">\n" + +- " <a href ng-click=\"select()\" tab-heading-transclude>{{heading}}</a>\n" + +- "</li>\n" + +- ""); +-}]); +- +-angular.module("template/tabs/tabset.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/tabs/tabset.html", +- "<div>\n" + +- " <ul class=\"nav nav-{{type || 'tabs'}}\" ng-class=\"{'nav-stacked': vertical, 'nav-justified': justified}\" ng-transclude></ul>\n" + +- " <div class=\"tab-content\">\n" + +- " <div class=\"tab-pane\" \n" + +- " ng-repeat=\"tab in tabs\" \n" + +- " ng-class=\"{active: tab.active}\"\n" + +- " tab-content-transclude=\"tab\">\n" + +- " </div>\n" + +- " </div>\n" + +- "</div>\n" + +- ""); +-}]); +- +-angular.module("template/timepicker/timepicker.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/timepicker/timepicker.html", +- "<table>\n" + +- " <tbody>\n" + +- " <tr class=\"text-center\">\n" + +- " <td><a ng-click=\"incrementHours()\" class=\"btn btn-link\"><span class=\"glyphicon glyphicon-chevron-up\"></span></a></td>\n" + +- " <td> </td>\n" + +- " <td><a ng-click=\"incrementMinutes()\" class=\"btn btn-link\"><span class=\"glyphicon glyphicon-chevron-up\"></span></a></td>\n" + +- " <td ng-show=\"showMeridian\"></td>\n" + +- " </tr>\n" + +- " <tr>\n" + +- " <td class=\"form-group\" ng-class=\"{'has-error': invalidHours}\">\n" + +- " <input style=\"width:50px;\" type=\"text\" ng-model=\"hours\" ng-change=\"updateHours()\" class=\"form-control text-center\" ng-readonly=\"readonlyInput\" maxlength=\"2\">\n" + +- " </td>\n" + +- " <td>:</td>\n" + +- " <td class=\"form-group\" ng-class=\"{'has-error': invalidMinutes}\">\n" + +- " <input style=\"width:50px;\" type=\"text\" ng-model=\"minutes\" ng-change=\"updateMinutes()\" class=\"form-control text-center\" ng-readonly=\"readonlyInput\" maxlength=\"2\">\n" + +- " </td>\n" + +- " <td ng-show=\"showMeridian\"><button type=\"button\" class=\"btn btn-default text-center\" ng-click=\"toggleMeridian()\">{{meridian}}</button></td>\n" + +- " </tr>\n" + +- " <tr class=\"text-center\">\n" + +- " <td><a ng-click=\"decrementHours()\" class=\"btn btn-link\"><span class=\"glyphicon glyphicon-chevron-down\"></span></a></td>\n" + +- " <td> </td>\n" + +- " <td><a ng-click=\"decrementMinutes()\" class=\"btn btn-link\"><span class=\"glyphicon glyphicon-chevron-down\"></span></a></td>\n" + +- " <td ng-show=\"showMeridian\"></td>\n" + +- " </tr>\n" + +- " </tbody>\n" + +- "</table>\n" + +- ""); +-}]); +- +-angular.module("template/typeahead/typeahead-match.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/typeahead/typeahead-match.html", +- "<a tabindex=\"-1\" bind-html-unsafe=\"match.label | typeaheadHighlight:query\"></a>"); +-}]); +- +-angular.module("template/typeahead/typeahead-popup.html", []).run(["$templateCache", function($templateCache) { +- $templateCache.put("template/typeahead/typeahead-popup.html", +- "<ul class=\"dropdown-menu\" ng-show=\"isOpen()\" ng-style=\"{top: position.top+'px', left: position.left+'px'}\" style=\"display: block;\" role=\"listbox\" aria-hidden=\"{{!isOpen()}}\">\n" + +- " <li ng-repeat=\"match in matches track by $index\" ng-class=\"{active: isActive($index) }\" ng-mouseenter=\"selectActive($index)\" ng-click=\"selectMatch($index)\" role=\"option\" id=\"{{match.id}}\">\n" + +- " <div typeahead-match index=\"$index\" match=\"match\" query=\"query\" template-url=\"templateUrl\"></div>\n" + +- " </li>\n" + +- "</ul>\n" + +- ""); +-}]); +-!angular.$$csp() && angular.element(document).find('head').prepend('<style type="text/css">.ng-animate.item:not(.left):not(.right){-webkit-transition:0s ease-in-out left;transition:0s ease-in-out left}</style>'); +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/js/services/generate-statement-service.js b/phoenix-tracing-webapp/src/main/webapp/js/services/generate-statement-service.js +deleted file mode 100755 +index 17ccb6f47..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/js/services/generate-statement-service.js ++++ /dev/null +@@ -1,64 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +-/** +- * this services was writtern following different pattern. +- * Generate Statement Service mainly converting SQL Statement to Tracing Decription Label +- * To-Do Switching controllers to this pattern of coding +- * +- */ +-angular.module('TracingAppCtrl').service('GenerateStatementService', function( +- StatementFactory) { +- /*using statement facotry - It is in progress*/ +- var SQLQuery = null; +- var tracingStatement = null; +- //following Grammar @ http://phoenix.apache.org/language/index.html +- //To-Do this model will improve as developing is going on +- var SQLQueryObject = { +- commands: {}, +- keys: [], +- schema: null, +- tabel: null, +- filters: {}, +- groupBy: {}, +- orderBy: {}, +- limits: {} +- } +- this.setSQLQuery = function(sqlQuery) { +- SQLQuery = sqlQuery; +- }; +- this.getSQLQuery = function() { +- return SQLQuery; +- }; +- this.getTracingStatement = function() { +- //will using partitioningSQLQuery to convert SQL to TracingStatement +- partitioningSQLQuery(); +- var statementFactory = new StatementFactory(SQLQueryObject.commands, +- SQLQueryObject.tabel); +- tracingStatement = statementFactory.start + statementFactory.command + +- statementFactory.tableName + statementFactory.end; +- return tracingStatement; +- }; +- //sql statements partitioning +- function partitioningSQLQuery() { +- //Building SQLQueryObject +- SQLQueryObject.commands = SQLQuery.split(" ")[0]; +- SQLQueryObject.tabel = SQLQuery.split("from ")[1].split(" ")[0]; +- }; +-}); +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/about.html b/phoenix-tracing-webapp/src/main/webapp/partials/about.html +deleted file mode 100755 +index 637b7a7c6..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/about.html ++++ /dev/null +@@ -1,10 +0,0 @@ +-<div class="jumbotron"> +- <h1>About</h1> +-</div> +- +- +-<div class="page-header"> +-<p>The tracing web app for Apache Phoenix contains features list, dependency tree, trace count, trace distribution and timeline.</p> +-<p>In List the most recent traces are listed down. The limiting value is used to determine the trace count displayed. With each trace there is an option to view either the dependency tree or the timeline.The dependency tree views the traces belonging to a trace id in a tree view. The trace id is the input to the system. The parent child relationship of the traces can be viewed clearly. The tooltip gives the host name, parent id, span id,start time,end time, description and duration. Each node is collapsable and expandable. The SQL Query is viewed for each search. In the trace count the trace list is categorized by the description.</p> +-<p>The trace count chart can be viewed as pie charts, line charts, bar charts and area charts. The chart changing option is collapseble and could be hidden. The trace distribution chart shows the traces across Phoenix hosts on which they are running. The charts used are pie charts, line charts, bar charts and area charts. The chart changing option is collapseble and could be hidden. In the traces can be viewed along the timeline for a given trace id. Traces can be added or cleared from the timeline. There should be a minimum of two traces starting at two different times for the system to draw its timeline. <p> +-</div> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/chart.html b/phoenix-tracing-webapp/src/main/webapp/partials/chart.html +deleted file mode 100755 +index f41a431b9..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/chart.html ++++ /dev/null +@@ -1,24 +0,0 @@ +-<div class="jumbotron"> +- <h1>{{page.title}}</h1> +-</div> +- +-<div ng-controller="AccordionDemoCtrl"> +- <accordion close-others="oneAtATime"> +- <accordion-group is-open="status.isFirstOpen" is-disabled="status.isFirstDisabled" > +- <accordion-heading> +- Controller Panel +- <i class="pull-right glyphicon" ng-class="{'glyphicon-chevron-down': status.open, 'glyphicon-chevron-right': !status.open}"></i> +- </accordion-heading> +- <div class="col-md-4"> +- <label>Chart Type</label><br> +- <div class="btn-group"> +- <label class="btn btn-primary" ng-model="checkModel.left" ng-click="setChartType('PieChart')">Pie</label> +- <label class="btn btn-primary" ng-model="checkModel.middle" ng-click="setChartType('LineChart')">Line</label> +- <label class="btn btn-primary" ng-model="checkModel.right" ng-click="setChartType('BarChart')">Bar</label> +- <label class="btn btn-primary" ng-model="checkModel.left" ng-click="setChartType('AreaChart')">Area</label> +- </div> +- </div> +- </accordion-group> +-</accordion> +-</div> +-<div google-chart chart="chartObject" style="{{cssStyle}}"></div> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/contact.html b/phoenix-tracing-webapp/src/main/webapp/partials/contact.html +deleted file mode 100755 +index 8f707f8bd..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/contact.html ++++ /dev/null +@@ -1,5 +0,0 @@ +-<div class="jumbotron"> +- <h1>Contacts</h1> +-</div> +- +-<div class="page-header"></div> +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/dependency-tree.html b/phoenix-tracing-webapp/src/main/webapp/partials/dependency-tree.html +deleted file mode 100755 +index c5ba316a7..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/dependency-tree.html ++++ /dev/null +@@ -1,11 +0,0 @@ +-<div class="jumbotron"> +- <h1>{{page.title}}</h1> +-</div> +- +-<label>Trace ID: +- <input type="text" ng-model="traceId"/> +- <a class="btn btn-default" ng-click="drawTree()">Draw</i></a> +- <a class="btn btn-default" ng-click="clearTree()">Clear</i></a> +-</label> +-<div class="alert {{page.alertType}}" role="alert">{{reqStatus}}</div> +-<div google-chart chart="chartObject" style="height: 70%;"></div> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/google-chart.html b/phoenix-tracing-webapp/src/main/webapp/partials/google-chart.html +deleted file mode 100755 +index f8ac4ae6c..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/google-chart.html ++++ /dev/null +@@ -1,23 +0,0 @@ +-<div class="jumbotron"> +- <h1>{{page.title}}</h1> +-</div> +- +-<div class="panel panel-default"> +- <div class="panel-heading">Trace Picker</div> +- <div class="panel-body"> +- <div class="col-xs-6"> +- <label>Trace ID: +- <input type="text" ng-model="traceID" > +- <a class="btn btn-primary" ng-click="addItemToTimeLine(false)">Add Trace</a> +- </div> +- <div class="col-xs-2"> +- <select class="form-control" ng-model="myItemID" +- ng-options="line.c[0].v for line in chartObject.data.rows"></select> +- </div> +- <div class="col-xs-4"> +- <label class="btn btn-primary" ng-click="clearId()">Clear Trace</label> +- <label class="btn btn-primary" ng-click="clear()">Clear</label> +- </div> +- </div> +-</div> +-<div google-chart chart="chartObject" style="height: 100%;"></div> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/help.html b/phoenix-tracing-webapp/src/main/webapp/partials/help.html +deleted file mode 100755 +index 557892e1b..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/help.html ++++ /dev/null +@@ -1,36 +0,0 @@ +- <!-- Main jumbotron for a primary marketing message or call to action --> +-<div class="jumbotron"> +- <h1>Help</h1> +-</div> +- +- +-<div class="page-header"> +- <div class="list-group"> +- <div href="#" class="list-group-item"> +- <h4 class="list-group-item-heading">1. Enable tracing for Apache Phoenix [1]</h4> +- <p class="list-group-item-text"><a href= "https://phoenix.apache.org/tracing.html">https://phoenix.apache.org/tracing.html</a></p> +- </div> +- </div> +- +- <div class="list-group"> +- <div href="#" class="list-group-item"> +- <h4 class="list-group-item-heading">2. Start the web app</h4> +- <p class="list-group-item-text"><code>python traceserver.py start</code></p> +- </div> +- </div> +- +- <div class="list-group"> +- <div href="#" class="list-group-item "> +- <h4 class="list-group-item-heading">3. Open following address on a web browser</h4> +- <p class="list-group-item-text"><code>-Dphoenix.traceserver.http.port=8887</code></p> +- </div> +- </div> +- +- <div class="list-group"> +- <div class="list-group-item"> +- <h4 class="list-group-item-heading">4. Stop trace web app</h4> +- <p class="list-group-item-text"><code>python traceserver.py stop</code></p> +- </div> +- </div> +- +-</div> +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/home.html b/phoenix-tracing-webapp/src/main/webapp/partials/home.html +deleted file mode 100755 +index d65b57108..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/home.html ++++ /dev/null +@@ -1,20 +0,0 @@ +- <!-- Main jumbotron for a primary marketing message or call to action --> +-<div class="jumbotron"> +- <h1>Phoenix Tracing</h1> +- <p>You have more interaction with Phoenix Tracing. This User Interface allows you to see and search each important step in a query or insertion, +- all they way from the client through into the HBase side, and back again.</p> +-</div> +-<div class="page-header"> +- <h4><span class="label label-success">Apache Phoenix</span> is a SQL query engine for Apache HBase.</h4> +- <h4>It helps managing and querying the HBase tables. The web app is used to visualize the tracing information. It helps to predict and analyze query information and system matrices</h4> +- +- <h4><span class="label label-success">The Apache Phoenix Tracing Web app</span> has 5 features.</h4> +- +- <ol> +- <li>List - lists the the traces with user preferred limits with access to it's dependency tree and timelines. </li> +- <li>Count Chart - Categorizing the traces according to the description. </li> +- <li>Trace Distribution - Visualizing the trace counts based on the host they are running.</li> +- <li>Trace Timeline - Visualizing the traces along the time axis. </li> +- <li>Dependency Tree - Creating the tree view of the traces.</li> +- </ol> +-</div> +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/list.html b/phoenix-tracing-webapp/src/main/webapp/partials/list.html +deleted file mode 100755 +index 36b3b9457..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/list.html ++++ /dev/null +@@ -1,39 +0,0 @@ +-<!-- Main jumbotron for a primary marketing message or call to action --> +-<div class="jumbotron"> +- <h1>Phoenix Tracing List</h1> +-</div> +- +- +-<div class="page-header"> +- <label>Size: +- <input type="number" name="input" ng-model="tracesLimit" +- min="1" max="1500" required> +- <a class="btn btn-default" ng-click="loadTrace()">Load</a> +- </label> +-<div class="row"> +- <div class="col-md-12"> +- <table class="table table-striped"> +- <thead> +- <tr> +- <th>Parent ID</th> +- <th>Span ID</th> +- <th>Description</th> +- <th>View Models</th> +- </tr> +- </thead> +- <tbody> +- <tr ng-repeat="trace in traces"> +- <td>{{trace.parent_id}}</td> +- <td>{{trace.span_id}}</td> +- <td>{{trace.description | limitTo:letterLimit}}</td> +- <td> +- <div class="btn-group " role="group" aria-label="..."> +- <a href="./#/dependency-tree?traceid={{trace.trace_id}}" class="btn btn-info" role="button"><i class="fa fa-sort-amount-asc"></i></a> +- <a href="./#/trace-timeline?traceid={{trace.trace_id}}" class="btn btn-info" role="button"><i class="fa fa-sliders"></i></a> +- </div> +- </td> +- </tr> +- </tbody> +- </table> +-</div></div> +-</div> +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/phoenix-trace.html b/phoenix-tracing-webapp/src/main/webapp/partials/phoenix-trace.html +deleted file mode 100644 +index 73eea3362..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/phoenix-trace.html ++++ /dev/null +@@ -1,60 +0,0 @@ +- <!-- Main jumbotron for a primary marketing message or call to action --> +-<div class="jumbotron"> +- <h1>Phoenix Tracing</h1> +-</div> +-<div class="page-header"> +- +-<div class="row"> +- <div class="col-sm-6 col-md-4"> +- <div class="thumbnail"> +- <div class="caption"> +- <h3><i class="fa fa-list fa-5"></i> List</h3> +- <p>The most recent traces are listed down. The limiting value is used to determine the trace count displayed. With each trace there is an option to view either the dependency tree or the timeline.</p> +- <p><a href="#list" class="btn btn-primary" role="button">View</a></p> +- </div> +- </div> +- </div> +- +- <div class="col-sm-6 col-md-4"> +- <div class="thumbnail"> +- <div class="caption"> +- <h3><i class="fa fa-bar-chart"></i> Trace Count</h3> +- <p>The trace list is categorized by the description. The trace count chart can be viewed as pie charts, line charts, bar charts and area charts. The chart changing option is collapseble and could be hidden.</p> +- <p><a href="#count-chart" class="btn btn-primary" role="button">View</a></p> +- </div> +- </div> +- </div> +- +- <div class="col-sm-6 col-md-4"> +- <div class="thumbnail"> +- <div class="caption"> +- <h3><i class="fa fa-pie-chart"></i> Trace Distribution</h3> +- <p>The trace distribution chart shows the traces across Phoenix hosts on which they are running. The charts used are pie charts, line charts, bar charts and area charts. The chart changing option is collapseble and could be hidden.</p> +- <p><a href="#trace-distribution" class="btn btn-primary" role="button">View</a> +- </div> +- </div> +- </div> +-</div> +- +-<div class="row"> +- <div class="col-sm-6 col-md-4"> +- <div class="thumbnail"> +- <div class="caption"> +- <h3><i class="fa fa-sitemap"></i> Dependency Tree</h3> +- <p>The dependency tree views the traces belonging to a trace id in a tree view. The trace id is the input to the system. The parentchild relationship of the traces can be viewed clearly. The tooltip gives the host name, parent id, span id,start time,end time,description and duration. Each node is collapsable and expandable. The SQL Query is viewed for each search.</p> +- <p><a href="#dependency-tree" class="btn btn-primary" role="button">View</a></p> +- </div> +- </div> +- </div> +- +- <div class="col-sm-6 col-md-4"> +- <div class="thumbnail"> +- <div class="caption"> +- <h3><i class="fa fa-sliders"></i> Timeline</h3> +- <p>The traces can be viewed along the timeline for a given trace id. Traces can be added or cleared from the timeline. There should be a minimum of two traces starting at two different times for the system to draw its timeline.</p> +- <p><a href="#trace-timeline" class="btn btn-primary" role="button">View</a></p> +- </div> +- </div> +- </div> +- </div> +-</div> +diff --git a/phoenix-tracing-webapp/src/main/webapp/partials/search.html b/phoenix-tracing-webapp/src/main/webapp/partials/search.html +deleted file mode 100755 +index 71116765c..000000000 +--- a/phoenix-tracing-webapp/src/main/webapp/partials/search.html ++++ /dev/null +@@ -1,58 +0,0 @@ +-<div class="jumbotron"> +- <h1>Search</h1> +-</div> +- +-<div class="page-header"> +- +- <!--To-Add for main.CSS--> +- <div ng-controller="SearchTraceCtrl"> +- <pre>Start Date is: <em>{{dt | date:'fullDate' }}</em> +-End Date is: <em>{{edt | date:'fullDate' }}</em> +-SQL Statment is: <em>{{sqlQuery}}</em> <em><b>{{tracingStatement}}</b></em> +- </pre> +- +- <div class="row"> +- <div class="col-md-3"> +- <p>Start Date: </p> +- </div> +- <div class="col-md-3"> +- <p class="input-group"> +- <input type="date" class="form-control" datepicker-popup ng-model="dt" is-open="opened" +- min-date="minDate" max-date="maxDate" datepicker-options="dateOptions" +- date-disabled="disabled(date, mode)" ng-required="true" close-text="Close" +- /> +- <span class="input-group-btn"> +- <button type="button" class="btn btn-default" ng-click="open($event)"><i class="fa fa-calendar"></i></button> +- </span> +- </p> +- </div> +- +- <div class="col-md-3"> +- <p>End Date: </p> +- </div> +- <div class="col-md-3"> +- <p class="input-group"> +- <input type="date" class="form-control" datepicker-popup ng-model="edt" is-open="opened" +- min-date="minDate" max-date="maxDate" datepicker-options="dateOptions" +- date-disabled="disabled(date, mode)" ng-required="true" close-text="Close" +- /> +- <span class="input-group-btn"> +- <button type="button" class="btn btn-default" ng-click="open($event)"><i class="fa fa-calendar"></i></button> +- </span> +- </p> +- </div> +- </div> +- <!--SQL uery mapping--> +- <div class="row"> +- <div class="col-md-3"> +- <p>SQL Query: </p> +- </div> +- <div class="col-md-9"> +- <p><input type="text" class="form-control" ng-model="sqlQuery"/></p> +- </div> +- </div> <!-- /row --> +- <button type="button" class="btn btn-default" ng-click="search(sqlQuery)"><i class="fa fa-search"></i> Search</button> +- <hr /> +- +-</div> +-</div> +\ No newline at end of file +diff --git a/phoenix-tracing-webapp/src/test/webapp/js/specs/app-route-spec.js b/phoenix-tracing-webapp/src/test/webapp/js/specs/app-route-spec.js +deleted file mode 100644 +index 51c28141b..000000000 +--- a/phoenix-tracing-webapp/src/test/webapp/js/specs/app-route-spec.js ++++ /dev/null +@@ -1,73 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +- +-describe('The Tracing Web App Routes', function() { +- +- describe('Checking Ctrls and Partials', function() { +- // load the module +- beforeEach(module('TracingAppCtrl')); +- +- it('/about', +- inject(function($route) { +- expect($route.routes['/about'].templateUrl).toEqual('partials/about.html'); +- })); +- +- it('/count-chart', +- inject(function($route) { +- expect($route.routes['/count-chart'].controller).toBe('TraceCountChartCtrl'); +- expect($route.routes['/count-chart'].templateUrl).toEqual('partials/chart.html'); +- })); +- +- it('/trace-distribution', +- inject(function($route) { +- expect($route.routes['/trace-distribution'].controller).toBe('TraceDistChartCtrl'); +- expect($route.routes['/trace-distribution'].templateUrl).toEqual('partials/chart.html'); +- })); +- +- it('/trace-timeline', +- inject(function($route) { +- expect($route.routes['/trace-timeline'].controller).toBe('TraceTimeLineCtrl'); +- expect($route.routes['/trace-timeline'].templateUrl).toEqual('partials/google-chart.html'); +- })); +- +- it('/list', +- inject(function($route) { +- expect($route.routes['/list'].controller).toBe('TraceListCtrl'); +- expect($route.routes['/list'].templateUrl).toEqual('partials/list.html'); +- })); +- +- it('/home', +- inject(function($route) { +- expect($route.routes['/home'].templateUrl).toEqual('partials/home.html'); +- })); +- +- it('/help', +- inject(function($route) { +- expect($route.routes['/help'].templateUrl).toEqual('partials/help.html'); +- })); +- +- it('/', +- inject(function($route) { +- expect($route.routes[null].redirectTo).toEqual('/home'); +- })); +- +- }); +-}); +diff --git a/phoenix-tracing-webapp/src/test/webapp/js/specs/timeline-ctrl-spec.js b/phoenix-tracing-webapp/src/test/webapp/js/specs/timeline-ctrl-spec.js +deleted file mode 100644 +index 47a4e67a5..000000000 +--- a/phoenix-tracing-webapp/src/test/webapp/js/specs/timeline-ctrl-spec.js ++++ /dev/null +@@ -1,45 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +- +-describe('Controller : TimeLineCtrl', function() { +-/* +- beforeEach(module('TimeLineCtrl')); +- +- beforeEach(inject(function($rootScope, $controller) { +- scope = $rootScope.$new(); +- traceTimeLineCtrl = $controller('TraceTimeLineCtrl', { +- $scope: scope +- }); +- })); +- +- +- +- it('should to be defined', function() { +- expect(scope).toBeDefined(); +- }); +- +- it('scope level variable should to be defined', function() { +- expect(scope.chartObject).toBeDefined(); +- expect(scope.loadTimeLine).toBeDefined(); +- expect(scope.clear).toBeDefined(); +- }); +-*/ +-}); +diff --git a/phoenix-tracing-webapp/src/test/webapp/js/specs/trace-list-ctrl-spec.js b/phoenix-tracing-webapp/src/test/webapp/js/specs/trace-list-ctrl-spec.js +deleted file mode 100644 +index e2eeb006d..000000000 +--- a/phoenix-tracing-webapp/src/test/webapp/js/specs/trace-list-ctrl-spec.js ++++ /dev/null +@@ -1,113 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +-var scope +-var traceListCtrl +-var httpBackend +-var authRequestHandler +-var rootScope +-var createController +- +-describe('TracingCtrl', function() { +- +- beforeEach(module('TracingCtrl')); +- beforeEach(inject(function($rootScope, $controller) { +- scope = $rootScope.$new(); +- traceListCtrl = $controller('TraceListCtrl', { +- $scope: scope +- }); +- })); +- +- +- beforeEach(inject(function($injector) { +- // Set up the mock http service responses +- httpBackend = $injector.get('$httpBackend'); +- // backend definition common for trace of phoenix +- authRequestHandler = httpBackend.when('GET', '../trace?action=getall&limit=100') +- .respond([{ +- "start_time": 1438582622482, +- "trace_id": -9223359832482284828, +- "hostname": "pc", +- "span_id": -876665211183522462, +- "parent_id": -4694507801564472011, +- "end_time": 1438582622483, +- "count": 0, +- "description": "Committing mutations to tables" +- }]); +- // Get hold of a scope (i.e. the root scope) +- rootScope = $injector.get('$rootScope'); +- // The $controller service is used to create instances of controllers +- var $controller = $injector.get('$controller'); +- +- createController = function() { +- return $controller('TraceListCtrl', { +- '$scope': rootScope +- }); +- }; +- })); +- +- it('should to be defined', function() { +- expect(scope).toBeDefined(); +- }); +- +- it('scope level variable should to be defined', function() { +- expect(scope.tracesLimit).toBeDefined(); +- expect(scope.traces).toBeDefined(); +- expect(scope.loadTrace).toBeDefined(); +- }); +- +- it('tracesLimit value', function() { +- expect(scope.tracesLimit).toBe(100); +- }); +- +- it('changing traces limit value', function() { +- scope.tracesLimit = 25; +- expect(scope.tracesLimit).toBe(25); +- scope.tracesLimit = 124; +- expect(scope.tracesLimit).toBe(124); +- }); +- +- it('should fetch trace from phoenix', function() { +- httpBackend.expectGET('../trace?action=getall&limit=100'); +- var controller = createController(); +- httpBackend.flush(); +- }); +- +- it('updating trace list after retriving phoenix trace', function() { +- var controller = createController(); +- httpBackend.flush(); +- expect(rootScope.traces).toBeDefined(); +- expect(rootScope.traces.length).toBe(1); +- }); +- +- it('checking trace list attributes of phoenix trace', function() { +- var controller = createController(); +- httpBackend.flush(); +- expect(rootScope.traces[0].start_time).toBe(1438582622482); +- expect(rootScope.traces[0].trace_id).toBe(-9223359832482284828); +- expect(rootScope.traces[0].hostname).toBe('pc'); +- expect(rootScope.traces[0].span_id).toBe(-876665211183522462); +- expect(rootScope.traces[0].parent_id).toBe(-4694507801564472011); +- expect(rootScope.traces[0].end_time).toBe(1438582622483); +- expect(rootScope.traces[0].count).toBe(0); +- expect(rootScope.traces[0].description).toBe('Committing mutations to tables'); +- }); +- +-}); +diff --git a/phoenix-tracing-webapp/src/test/webapp/js/specs/tracing-app-ctrl-spec.js b/phoenix-tracing-webapp/src/test/webapp/js/specs/tracing-app-ctrl-spec.js +deleted file mode 100644 +index 5e7c78d40..000000000 +--- a/phoenix-tracing-webapp/src/test/webapp/js/specs/tracing-app-ctrl-spec.js ++++ /dev/null +@@ -1,41 +0,0 @@ +-/* +- * 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. +- */ +- +-'use strict'; +- +- +-//beforeEach(module('TracingAppCtrl')); +-describe('The Tracing Web App ', function() { +- +- describe('Controller: TracingAppCtrl', function() { +- +- // load the controller's module +- beforeEach(module('TracingAppCtrl')); +- +- +- //testing all the main controllers in app +- var TraceListCtrl, scope; +- it('Controllers should to be defined', function() { +- expect(TraceCtrl).toBeDefined(); +- expect(UICtrl).toBeDefined(); +- expect(TimeLineCtrl).toBeDefined(); +- expect(SearchCtrl).toBeDefined(); +- }); +- }); +- +-}); +diff --git a/pom.xml b/pom.xml +index 9e76f0bbc..8857a717f 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -47,8 +47,8 @@ + <module>phoenix-core-client</module> + <module>phoenix-core-server</module> + <module>phoenix-core</module> ++ <module>phoenix-opentelemetry-trace-sampler</module> + <module>phoenix-pherf</module> +- <module>phoenix-tracing-webapp</module> + <!-- shaded artifact and assembly modules are added in shade-and-assembly profile --> + </modules> + +@@ -122,7 +122,6 @@ + <jsr305.version>2.0.1</jsr305.version> + <snappy.version>0.5</snappy.version> + <commons-codec.version>1.16.0</commons-codec.version> +- <htrace.version>3.1.0-incubating</htrace.version> + <collections.version>3.2.2</collections.version> + <jodatime.version>2.10.5</jodatime.version> + <joni.version>2.1.31</joni.version> +@@ -135,8 +134,12 @@ + <jcodings.version>1.0.55</jcodings.version> + <jetty.version>9.4.53.v20231009</jetty.version> + <javax.servlet-api.version>3.1.0</javax.servlet-api.version> ++ <opentelemetry.version>1.31.0</opentelemetry.version> ++ <opentelemetry-javaagent.version>1.31.0</opentelemetry-javaagent.version> ++ <opentelemetry-semconv.version>1.21.0-alpha</opentelemetry-semconv.version> + <json-path.version>2.9.0</json-path.version> + <bson.version>4.4.0</bson.version> ++ + <!-- Test Dependencies --> + <mockito.version>4.11.0</mockito.version> + <junit.version>4.13.1</junit.version> +@@ -278,7 +281,7 @@ + <excludeFilterFile>${top.dir}/src/main/config/spotbugs/spotbugs-exclude.xml</excludeFilterFile> + </configuration> + </plugin> +- <!--This plugin's configuration is used to store Eclipse m2e settings ++ <!--This plugin's configuration is used to store Eclipse m2e settings + only. It has no influence on the Maven build itself. --> + <plugin> + <groupId>org.eclipse.m2e</groupId> +@@ -799,11 +802,6 @@ + <artifactId>phoenix-pherf</artifactId> + <version>${project.version}</version> + </dependency> +- <dependency> +- <groupId>org.apache.phoenix</groupId> +- <artifactId>phoenix-tracing-webapp</artifactId> +- <version>${project.version}</version> +- </dependency> + <dependency> + <groupId>org.apache.phoenix.thirdparty</groupId> + <artifactId>phoenix-shaded-guava</artifactId> +@@ -829,6 +827,12 @@ + <artifactId>phoenix-hbase-compat-2.6.0</artifactId> + <version>${project.version}</version> + </dependency> ++ <dependency> ++ <groupId>org.apache.phoenix</groupId> ++ <artifactId>phoenix-opentelemetry-trace-sampler</artifactId> ++ <version>${project.version}</version> ++ </dependency> ++ + <!-- Intra-project test dependencies --> + <dependency> + <groupId>org.apache.phoenix</groupId> +@@ -1667,11 +1671,6 @@ + <artifactId>slf4j-api</artifactId> + <version>${slf4j.version}</version> + </dependency> +- <dependency> +- <groupId>org.apache.htrace</groupId> +- <artifactId>htrace-core</artifactId> +- <version>${htrace.version}</version> +- </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> +@@ -1753,6 +1752,23 @@ + <artifactId>HdrHistogram</artifactId> + <version>${hdrhistogram.version}</version> + </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-bom</artifactId> ++ <version>${opentelemetry.version}</version> ++ <type>pom</type> ++ <scope>import</scope> ++ </dependency> ++ <dependency> ++ <groupId>io.opentelemetry</groupId> ++ <artifactId>opentelemetry-semconv</artifactId> ++ <version>${opentelemetry-semconv.version}</version> ++ </dependency> ++ <dependency> ++ <groupId>io.opentelemetry.javaagent</groupId> ++ <artifactId>opentelemetry-javaagent</artifactId> ++ <version>${opentelemetry-javaagent.version}</version> ++ </dependency> + <dependency> + <groupId>com.jayway.jsonpath</groupId> + <artifactId>json-path</artifactId> diff --git a/hbase/versions.py b/hbase/versions.py index 31f50e578..465a27bb0 100644 --- a/hbase/versions.py +++ b/hbase/versions.py @@ -36,7 +36,7 @@ "java-base": "11", "java-devel": "11", "async_profiler": "2.9", - "phoenix": "5.3.0-4afe457", + "phoenix": "5.3.0-ca21a87dd6", "hbase_profile": "2.6", "hadoop": "3.3.6", "jmx_exporter": "", # 2.6 exports jmx and prometheus metrics by default