code_text
stringlengths
604
999k
repo_name
stringlengths
4
100
file_path
stringlengths
4
873
language
stringclasses
23 values
license
stringclasses
15 values
size
int32
1.02k
999k
OLD_PWD="$( pwd )" BOOST_LIB_PATH=/usr/local/lib export BOOST_LIB_PATH BOOST_INC_PATH=/usr/local/include export BOOST_INC_PATH `rm server_lib/asio_kcp_server.a 2>/dev/null;\ rm asio_kcp_utest/asio_kcp_utest 2>/dev/null;\ rm asio_kcp_client_utest/asio_kcp_client_utest 2>/dev/null;\ ` echo "" && echo "" && echo "[-------------------------------]" && echo " essential" && echo "[-------------------------------]" && \ cd ./essential/ && make && \ echo "" && echo "" && echo "[-------------------------------]" && echo " asio_kcp" && echo "[-------------------------------]" && \ cd ../server_lib/ && make && \ echo "" && echo "" && echo "[-------------------------------]" && echo " client_lib" && echo "[-------------------------------]" && \ cd ../client_lib/ && make && \ echo "" && echo "" && echo "[-------------------------------]" && echo " asio_kcp_utest" && echo "[-------------------------------]" && \ cd ../asio_kcp_utest/ && make && \ echo "" && echo "" && echo "[-------------------------------]" && echo " kcp_client_utest" && echo "[-------------------------------]" && \ cd ../asio_kcp_client_utest/ && make && \ echo "" && \ ../asio_kcp_utest/asio_kcp_utest && \ echo "" && echo "" && echo "" && echo "----------------------------" && echo "client test" && echo "------" && echo "" && \ ./asio_kcp_client_utest # restore old path. cd $OLD_PWD
libinzhangyuan/asio_kcp
utest_make.sh
Shell
gpl-2.0
1,410
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*** This file is part of systemd. Copyright 2011 Lennart Poettering systemd is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. systemd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ #include <sys/signalfd.h> #include <sys/ioctl.h> #include <linux/sockios.h> #include <sys/statvfs.h> #include <sys/mman.h> #include <libudev.h> #include "sd-journal.h" #include "sd-messages.h" #include "sd-daemon.h" #include "mkdir.h" #include "rm-rf.h" #include "hashmap.h" #include "journal-file.h" #include "socket-util.h" #include "cgroup-util.h" #include "missing.h" #include "conf-parser.h" #include "selinux-util.h" #include "acl-util.h" #include "formats-util.h" #include "process-util.h" #include "hostname-util.h" #include "journal-internal.h" #include "journal-vacuum.h" #include "journal-authenticate.h" #include "journald-rate-limit.h" #include "journald-kmsg.h" #include "journald-syslog.h" #include "journald-stream.h" #include "journald-native.h" #include "journald-audit.h" #include "journald-server.h" #ifdef HAVE_SELINUX #include <selinux/selinux.h> #endif #define USER_JOURNALS_MAX 1024 #define DEFAULT_SYNC_INTERVAL_USEC (5*USEC_PER_MINUTE) #define DEFAULT_RATE_LIMIT_INTERVAL (30*USEC_PER_SEC) #define DEFAULT_RATE_LIMIT_BURST 1000 #define DEFAULT_MAX_FILE_USEC USEC_PER_MONTH #define RECHECK_AVAILABLE_SPACE_USEC (30*USEC_PER_SEC) static const char* const storage_table[_STORAGE_MAX] = { [STORAGE_AUTO] = "auto", [STORAGE_VOLATILE] = "volatile", [STORAGE_PERSISTENT] = "persistent", [STORAGE_NONE] = "none" }; DEFINE_STRING_TABLE_LOOKUP(storage, Storage); DEFINE_CONFIG_PARSE_ENUM(config_parse_storage, storage, Storage, "Failed to parse storage setting"); static const char* const split_mode_table[_SPLIT_MAX] = { [SPLIT_LOGIN] = "login", [SPLIT_UID] = "uid", [SPLIT_NONE] = "none", }; DEFINE_STRING_TABLE_LOOKUP(split_mode, SplitMode); DEFINE_CONFIG_PARSE_ENUM(config_parse_split_mode, split_mode, SplitMode, "Failed to parse split mode setting"); static uint64_t available_space(Server *s, bool verbose) { char ids[33]; _cleanup_free_ char *p = NULL; sd_id128_t machine; struct statvfs ss; uint64_t sum = 0, ss_avail = 0, avail = 0; int r; _cleanup_closedir_ DIR *d = NULL; usec_t ts; const char *f; JournalMetrics *m; ts = now(CLOCK_MONOTONIC); if (s->cached_available_space_timestamp + RECHECK_AVAILABLE_SPACE_USEC > ts && !verbose) return s->cached_available_space; r = sd_id128_get_machine(&machine); if (r < 0) return 0; if (s->system_journal) { f = "/var/log/journal/"; m = &s->system_metrics; } else { f = "/run/log/journal/"; m = &s->runtime_metrics; } assert(m); p = strappend(f, sd_id128_to_string(machine, ids)); if (!p) return 0; d = opendir(p); if (!d) return 0; if (fstatvfs(dirfd(d), &ss) < 0) return 0; for (;;) { struct stat st; struct dirent *de; errno = 0; de = readdir(d); if (!de && errno != 0) return 0; if (!de) break; if (!endswith(de->d_name, ".journal") && !endswith(de->d_name, ".journal~")) continue; if (fstatat(dirfd(d), de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) continue; if (!S_ISREG(st.st_mode)) continue; sum += (uint64_t) st.st_blocks * 512UL; } ss_avail = ss.f_bsize * ss.f_bavail; /* If we reached a high mark, we will always allow this much * again, unless usage goes above max_use. This watermark * value is cached so that we don't give up space on pressure, * but hover below the maximum usage. */ if (m->use < sum) m->use = sum; avail = LESS_BY(ss_avail, m->keep_free); s->cached_available_space = LESS_BY(MIN(m->max_use, avail), sum); s->cached_available_space_timestamp = ts; if (verbose) { char fb1[FORMAT_BYTES_MAX], fb2[FORMAT_BYTES_MAX], fb3[FORMAT_BYTES_MAX], fb4[FORMAT_BYTES_MAX], fb5[FORMAT_BYTES_MAX]; server_driver_message(s, SD_MESSAGE_JOURNAL_USAGE, "%s journal is using %s (max allowed %s, " "trying to leave %s free of %s available โ†’ current limit %s).", s->system_journal ? "Permanent" : "Runtime", format_bytes(fb1, sizeof(fb1), sum), format_bytes(fb2, sizeof(fb2), m->max_use), format_bytes(fb3, sizeof(fb3), m->keep_free), format_bytes(fb4, sizeof(fb4), ss_avail), format_bytes(fb5, sizeof(fb5), s->cached_available_space + sum)); } return s->cached_available_space; } void server_fix_perms(Server *s, JournalFile *f, uid_t uid) { int r; #ifdef HAVE_ACL acl_t acl; acl_entry_t entry; acl_permset_t permset; #endif assert(f); r = fchmod(f->fd, 0640); if (r < 0) log_warning_errno(r, "Failed to fix access mode on %s, ignoring: %m", f->path); #ifdef HAVE_ACL if (uid <= SYSTEM_UID_MAX) return; acl = acl_get_fd(f->fd); if (!acl) { log_warning_errno(errno, "Failed to read ACL on %s, ignoring: %m", f->path); return; } r = acl_find_uid(acl, uid, &entry); if (r <= 0) { if (acl_create_entry(&acl, &entry) < 0 || acl_set_tag_type(entry, ACL_USER) < 0 || acl_set_qualifier(entry, &uid) < 0) { log_warning_errno(errno, "Failed to patch ACL on %s, ignoring: %m", f->path); goto finish; } } /* We do not recalculate the mask unconditionally here, * so that the fchmod() mask above stays intact. */ if (acl_get_permset(entry, &permset) < 0 || acl_add_perm(permset, ACL_READ) < 0 || calc_acl_mask_if_needed(&acl) < 0) { log_warning_errno(errno, "Failed to patch ACL on %s, ignoring: %m", f->path); goto finish; } if (acl_set_fd(f->fd, acl) < 0) log_warning_errno(errno, "Failed to set ACL on %s, ignoring: %m", f->path); finish: acl_free(acl); #endif } static JournalFile* find_journal(Server *s, uid_t uid) { _cleanup_free_ char *p = NULL; int r; JournalFile *f; sd_id128_t machine; assert(s); /* We split up user logs only on /var, not on /run. If the * runtime file is open, we write to it exclusively, in order * to guarantee proper order as soon as we flush /run to * /var and close the runtime file. */ if (s->runtime_journal) return s->runtime_journal; if (uid <= SYSTEM_UID_MAX) return s->system_journal; r = sd_id128_get_machine(&machine); if (r < 0) return s->system_journal; f = ordered_hashmap_get(s->user_journals, UINT32_TO_PTR(uid)); if (f) return f; if (asprintf(&p, "/var/log/journal/" SD_ID128_FORMAT_STR "/user-"UID_FMT".journal", SD_ID128_FORMAT_VAL(machine), uid) < 0) return s->system_journal; while (ordered_hashmap_size(s->user_journals) >= USER_JOURNALS_MAX) { /* Too many open? Then let's close one */ f = ordered_hashmap_steal_first(s->user_journals); assert(f); journal_file_close(f); } r = journal_file_open_reliably(p, O_RDWR|O_CREAT, 0640, s->compress, s->seal, &s->system_metrics, s->mmap, NULL, &f); if (r < 0) return s->system_journal; server_fix_perms(s, f, uid); r = ordered_hashmap_put(s->user_journals, UINT32_TO_PTR(uid), f); if (r < 0) { journal_file_close(f); return s->system_journal; } return f; } static int do_rotate( Server *s, JournalFile **f, const char* name, bool seal, uint32_t uid) { int r; assert(s); if (!*f) return -EINVAL; r = journal_file_rotate(f, s->compress, seal); if (r < 0) if (*f) log_error_errno(r, "Failed to rotate %s: %m", (*f)->path); else log_error_errno(r, "Failed to create new %s journal: %m", name); else server_fix_perms(s, *f, uid); return r; } void server_rotate(Server *s) { JournalFile *f; void *k; Iterator i; int r; log_debug("Rotating..."); do_rotate(s, &s->runtime_journal, "runtime", false, 0); do_rotate(s, &s->system_journal, "system", s->seal, 0); ORDERED_HASHMAP_FOREACH_KEY(f, k, s->user_journals, i) { r = do_rotate(s, &f, "user", s->seal, PTR_TO_UINT32(k)); if (r >= 0) ordered_hashmap_replace(s->user_journals, k, f); else if (!f) /* Old file has been closed and deallocated */ ordered_hashmap_remove(s->user_journals, k); } } void server_sync(Server *s) { JournalFile *f; void *k; Iterator i; int r; if (s->system_journal) { r = journal_file_set_offline(s->system_journal); if (r < 0) log_error_errno(r, "Failed to sync system journal: %m"); } ORDERED_HASHMAP_FOREACH_KEY(f, k, s->user_journals, i) { r = journal_file_set_offline(f); if (r < 0) log_error_errno(r, "Failed to sync user journal: %m"); } if (s->sync_event_source) { r = sd_event_source_set_enabled(s->sync_event_source, SD_EVENT_OFF); if (r < 0) log_error_errno(r, "Failed to disable sync timer source: %m"); } s->sync_scheduled = false; } static void do_vacuum( Server *s, const char *id, JournalFile *f, const char* path, JournalMetrics *metrics) { const char *p; int r; if (!f) return; p = strjoina(path, id); r = journal_directory_vacuum(p, metrics->max_use, s->max_retention_usec, &s->oldest_file_usec, false); if (r < 0 && r != -ENOENT) log_error_errno(r, "Failed to vacuum %s: %m", p); } void server_vacuum(Server *s) { char ids[33]; sd_id128_t machine; int r; log_debug("Vacuuming..."); s->oldest_file_usec = 0; r = sd_id128_get_machine(&machine); if (r < 0) { log_error_errno(r, "Failed to get machine ID: %m"); return; } sd_id128_to_string(machine, ids); do_vacuum(s, ids, s->system_journal, "/var/log/journal/", &s->system_metrics); do_vacuum(s, ids, s->runtime_journal, "/run/log/journal/", &s->runtime_metrics); s->cached_available_space_timestamp = 0; } static void server_cache_machine_id(Server *s) { sd_id128_t id; int r; assert(s); r = sd_id128_get_machine(&id); if (r < 0) return; sd_id128_to_string(id, stpcpy(s->machine_id_field, "_MACHINE_ID=")); } static void server_cache_boot_id(Server *s) { sd_id128_t id; int r; assert(s); r = sd_id128_get_boot(&id); if (r < 0) return; sd_id128_to_string(id, stpcpy(s->boot_id_field, "_BOOT_ID=")); } static void server_cache_hostname(Server *s) { _cleanup_free_ char *t = NULL; char *x; assert(s); t = gethostname_malloc(); if (!t) return; x = strappend("_HOSTNAME=", t); if (!x) return; free(s->hostname_field); s->hostname_field = x; } static bool shall_try_append_again(JournalFile *f, int r) { /* -E2BIG Hit configured limit -EFBIG Hit fs limit -EDQUOT Quota limit hit -ENOSPC Disk full -EIO I/O error of some kind (mmap) -EHOSTDOWN Other machine -EBUSY Unclean shutdown -EPROTONOSUPPORT Unsupported feature -EBADMSG Corrupted -ENODATA Truncated -ESHUTDOWN Already archived -EIDRM Journal file has been deleted */ if (r == -E2BIG || r == -EFBIG || r == -EDQUOT || r == -ENOSPC) log_debug("%s: Allocation limit reached, rotating.", f->path); else if (r == -EHOSTDOWN) log_info("%s: Journal file from other machine, rotating.", f->path); else if (r == -EBUSY) log_info("%s: Unclean shutdown, rotating.", f->path); else if (r == -EPROTONOSUPPORT) log_info("%s: Unsupported feature, rotating.", f->path); else if (r == -EBADMSG || r == -ENODATA || r == ESHUTDOWN) log_warning("%s: Journal file corrupted, rotating.", f->path); else if (r == -EIO) log_warning("%s: IO error, rotating.", f->path); else if (r == -EIDRM) log_warning("%s: Journal file has been deleted, rotating.", f->path); else return false; return true; } static void write_to_journal(Server *s, uid_t uid, struct iovec *iovec, unsigned n, int priority) { JournalFile *f; bool vacuumed = false; int r; assert(s); assert(iovec); assert(n > 0); f = find_journal(s, uid); if (!f) return; if (journal_file_rotate_suggested(f, s->max_file_usec)) { log_debug("%s: Journal header limits reached or header out-of-date, rotating.", f->path); server_rotate(s); server_vacuum(s); vacuumed = true; f = find_journal(s, uid); if (!f) return; } r = journal_file_append_entry(f, NULL, iovec, n, &s->seqnum, NULL, NULL); if (r >= 0) { server_schedule_sync(s, priority); return; } if (vacuumed || !shall_try_append_again(f, r)) { log_error_errno(r, "Failed to write entry (%d items, %zu bytes), ignoring: %m", n, IOVEC_TOTAL_SIZE(iovec, n)); return; } server_rotate(s); server_vacuum(s); f = find_journal(s, uid); if (!f) return; log_debug("Retrying write."); r = journal_file_append_entry(f, NULL, iovec, n, &s->seqnum, NULL, NULL); if (r < 0) log_error_errno(r, "Failed to write entry (%d items, %zu bytes) despite vacuuming, ignoring: %m", n, IOVEC_TOTAL_SIZE(iovec, n)); else server_schedule_sync(s, priority); } static void dispatch_message_real( Server *s, struct iovec *iovec, unsigned n, unsigned m, const struct ucred *ucred, const struct timeval *tv, const char *label, size_t label_len, const char *unit_id, int priority, pid_t object_pid) { char pid[sizeof("_PID=") + DECIMAL_STR_MAX(pid_t)], uid[sizeof("_UID=") + DECIMAL_STR_MAX(uid_t)], gid[sizeof("_GID=") + DECIMAL_STR_MAX(gid_t)], owner_uid[sizeof("_SYSTEMD_OWNER_UID=") + DECIMAL_STR_MAX(uid_t)], source_time[sizeof("_SOURCE_REALTIME_TIMESTAMP=") + DECIMAL_STR_MAX(usec_t)], o_uid[sizeof("OBJECT_UID=") + DECIMAL_STR_MAX(uid_t)], o_gid[sizeof("OBJECT_GID=") + DECIMAL_STR_MAX(gid_t)], o_owner_uid[sizeof("OBJECT_SYSTEMD_OWNER_UID=") + DECIMAL_STR_MAX(uid_t)]; uid_t object_uid; gid_t object_gid; char *x; int r; char *t, *c; uid_t realuid = 0, owner = 0, journal_uid; bool owner_valid = false; #ifdef HAVE_AUDIT char audit_session[sizeof("_AUDIT_SESSION=") + DECIMAL_STR_MAX(uint32_t)], audit_loginuid[sizeof("_AUDIT_LOGINUID=") + DECIMAL_STR_MAX(uid_t)], o_audit_session[sizeof("OBJECT_AUDIT_SESSION=") + DECIMAL_STR_MAX(uint32_t)], o_audit_loginuid[sizeof("OBJECT_AUDIT_LOGINUID=") + DECIMAL_STR_MAX(uid_t)]; uint32_t audit; uid_t loginuid; #endif assert(s); assert(iovec); assert(n > 0); assert(n + N_IOVEC_META_FIELDS + (object_pid ? N_IOVEC_OBJECT_FIELDS : 0) <= m); if (ucred) { realuid = ucred->uid; sprintf(pid, "_PID="PID_FMT, ucred->pid); IOVEC_SET_STRING(iovec[n++], pid); sprintf(uid, "_UID="UID_FMT, ucred->uid); IOVEC_SET_STRING(iovec[n++], uid); sprintf(gid, "_GID="GID_FMT, ucred->gid); IOVEC_SET_STRING(iovec[n++], gid); r = get_process_comm(ucred->pid, &t); if (r >= 0) { x = strjoina("_COMM=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } r = get_process_exe(ucred->pid, &t); if (r >= 0) { x = strjoina("_EXE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } r = get_process_cmdline(ucred->pid, 0, false, &t); if (r >= 0) { x = strjoina("_CMDLINE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } r = get_process_capeff(ucred->pid, &t); if (r >= 0) { x = strjoina("_CAP_EFFECTIVE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } #ifdef HAVE_AUDIT r = audit_session_from_pid(ucred->pid, &audit); if (r >= 0) { sprintf(audit_session, "_AUDIT_SESSION=%"PRIu32, audit); IOVEC_SET_STRING(iovec[n++], audit_session); } r = audit_loginuid_from_pid(ucred->pid, &loginuid); if (r >= 0) { sprintf(audit_loginuid, "_AUDIT_LOGINUID="UID_FMT, loginuid); IOVEC_SET_STRING(iovec[n++], audit_loginuid); } #endif r = cg_pid_get_path_shifted(ucred->pid, s->cgroup_root, &c); if (r >= 0) { char *session = NULL; x = strjoina("_SYSTEMD_CGROUP=", c); IOVEC_SET_STRING(iovec[n++], x); r = cg_path_get_session(c, &t); if (r >= 0) { session = strjoina("_SYSTEMD_SESSION=", t); free(t); IOVEC_SET_STRING(iovec[n++], session); } if (cg_path_get_owner_uid(c, &owner) >= 0) { owner_valid = true; sprintf(owner_uid, "_SYSTEMD_OWNER_UID="UID_FMT, owner); IOVEC_SET_STRING(iovec[n++], owner_uid); } if (cg_path_get_unit(c, &t) >= 0) { x = strjoina("_SYSTEMD_UNIT=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } else if (unit_id && !session) { x = strjoina("_SYSTEMD_UNIT=", unit_id); IOVEC_SET_STRING(iovec[n++], x); } if (cg_path_get_user_unit(c, &t) >= 0) { x = strjoina("_SYSTEMD_USER_UNIT=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } else if (unit_id && session) { x = strjoina("_SYSTEMD_USER_UNIT=", unit_id); IOVEC_SET_STRING(iovec[n++], x); } if (cg_path_get_slice(c, &t) >= 0) { x = strjoina("_SYSTEMD_SLICE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } free(c); } else if (unit_id) { x = strjoina("_SYSTEMD_UNIT=", unit_id); IOVEC_SET_STRING(iovec[n++], x); } #ifdef HAVE_SELINUX if (mac_selinux_use()) { if (label) { x = alloca(strlen("_SELINUX_CONTEXT=") + label_len + 1); *((char*) mempcpy(stpcpy(x, "_SELINUX_CONTEXT="), label, label_len)) = 0; IOVEC_SET_STRING(iovec[n++], x); } else { security_context_t con; if (getpidcon(ucred->pid, &con) >= 0) { x = strjoina("_SELINUX_CONTEXT=", con); freecon(con); IOVEC_SET_STRING(iovec[n++], x); } } } #endif } assert(n <= m); if (object_pid) { r = get_process_uid(object_pid, &object_uid); if (r >= 0) { sprintf(o_uid, "OBJECT_UID="UID_FMT, object_uid); IOVEC_SET_STRING(iovec[n++], o_uid); } r = get_process_gid(object_pid, &object_gid); if (r >= 0) { sprintf(o_gid, "OBJECT_GID="GID_FMT, object_gid); IOVEC_SET_STRING(iovec[n++], o_gid); } r = get_process_comm(object_pid, &t); if (r >= 0) { x = strjoina("OBJECT_COMM=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } r = get_process_exe(object_pid, &t); if (r >= 0) { x = strjoina("OBJECT_EXE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } r = get_process_cmdline(object_pid, 0, false, &t); if (r >= 0) { x = strjoina("OBJECT_CMDLINE=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } #ifdef HAVE_AUDIT r = audit_session_from_pid(object_pid, &audit); if (r >= 0) { sprintf(o_audit_session, "OBJECT_AUDIT_SESSION=%"PRIu32, audit); IOVEC_SET_STRING(iovec[n++], o_audit_session); } r = audit_loginuid_from_pid(object_pid, &loginuid); if (r >= 0) { sprintf(o_audit_loginuid, "OBJECT_AUDIT_LOGINUID="UID_FMT, loginuid); IOVEC_SET_STRING(iovec[n++], o_audit_loginuid); } #endif r = cg_pid_get_path_shifted(object_pid, s->cgroup_root, &c); if (r >= 0) { x = strjoina("OBJECT_SYSTEMD_CGROUP=", c); IOVEC_SET_STRING(iovec[n++], x); r = cg_path_get_session(c, &t); if (r >= 0) { x = strjoina("OBJECT_SYSTEMD_SESSION=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } if (cg_path_get_owner_uid(c, &owner) >= 0) { sprintf(o_owner_uid, "OBJECT_SYSTEMD_OWNER_UID="UID_FMT, owner); IOVEC_SET_STRING(iovec[n++], o_owner_uid); } if (cg_path_get_unit(c, &t) >= 0) { x = strjoina("OBJECT_SYSTEMD_UNIT=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } if (cg_path_get_user_unit(c, &t) >= 0) { x = strjoina("OBJECT_SYSTEMD_USER_UNIT=", t); free(t); IOVEC_SET_STRING(iovec[n++], x); } free(c); } } assert(n <= m); if (tv) { sprintf(source_time, "_SOURCE_REALTIME_TIMESTAMP=%llu", (unsigned long long) timeval_load(tv)); IOVEC_SET_STRING(iovec[n++], source_time); } /* Note that strictly speaking storing the boot id here is * redundant since the entry includes this in-line * anyway. However, we need this indexed, too. */ if (!isempty(s->boot_id_field)) IOVEC_SET_STRING(iovec[n++], s->boot_id_field); if (!isempty(s->machine_id_field)) IOVEC_SET_STRING(iovec[n++], s->machine_id_field); if (!isempty(s->hostname_field)) IOVEC_SET_STRING(iovec[n++], s->hostname_field); assert(n <= m); if (s->split_mode == SPLIT_UID && realuid > 0) /* Split up strictly by any UID */ journal_uid = realuid; else if (s->split_mode == SPLIT_LOGIN && realuid > 0 && owner_valid && owner > 0) /* Split up by login UIDs. We do this only if the * realuid is not root, in order not to accidentally * leak privileged information to the user that is * logged by a privileged process that is part of an * unprivileged session. */ journal_uid = owner; else journal_uid = 0; write_to_journal(s, journal_uid, iovec, n, priority); } void server_driver_message(Server *s, sd_id128_t message_id, const char *format, ...) { char mid[11 + 32 + 1]; char buffer[16 + LINE_MAX + 1]; struct iovec iovec[N_IOVEC_META_FIELDS + 4]; int n = 0; va_list ap; struct ucred ucred = {}; assert(s); assert(format); IOVEC_SET_STRING(iovec[n++], "PRIORITY=6"); IOVEC_SET_STRING(iovec[n++], "_TRANSPORT=driver"); memcpy(buffer, "MESSAGE=", 8); va_start(ap, format); vsnprintf(buffer + 8, sizeof(buffer) - 8, format, ap); va_end(ap); IOVEC_SET_STRING(iovec[n++], buffer); if (!sd_id128_equal(message_id, SD_ID128_NULL)) { snprintf(mid, sizeof(mid), LOG_MESSAGE_ID(message_id)); IOVEC_SET_STRING(iovec[n++], mid); } ucred.pid = getpid(); ucred.uid = getuid(); ucred.gid = getgid(); dispatch_message_real(s, iovec, n, ELEMENTSOF(iovec), &ucred, NULL, NULL, 0, NULL, LOG_INFO, 0); } void server_dispatch_message( Server *s, struct iovec *iovec, unsigned n, unsigned m, const struct ucred *ucred, const struct timeval *tv, const char *label, size_t label_len, const char *unit_id, int priority, pid_t object_pid) { int rl, r; _cleanup_free_ char *path = NULL; char *c; assert(s); assert(iovec || n == 0); if (n == 0) return; if (LOG_PRI(priority) > s->max_level_store) return; /* Stop early in case the information will not be stored * in a journal. */ if (s->storage == STORAGE_NONE) return; if (!ucred) goto finish; r = cg_pid_get_path_shifted(ucred->pid, s->cgroup_root, &path); if (r < 0) goto finish; /* example: /user/lennart/3/foobar * /system/dbus.service/foobar * * So let's cut of everything past the third /, since that is * where user directories start */ c = strchr(path, '/'); if (c) { c = strchr(c+1, '/'); if (c) { c = strchr(c+1, '/'); if (c) *c = 0; } } rl = journal_rate_limit_test(s->rate_limit, path, priority & LOG_PRIMASK, available_space(s, false)); if (rl == 0) return; /* Write a suppression message if we suppressed something */ if (rl > 1) server_driver_message(s, SD_MESSAGE_JOURNAL_DROPPED, "Suppressed %u messages from %s", rl - 1, path); finish: dispatch_message_real(s, iovec, n, m, ucred, tv, label, label_len, unit_id, priority, object_pid); } static int system_journal_open(Server *s, bool flush_requested) { int r; char *fn; sd_id128_t machine; char ids[33]; r = sd_id128_get_machine(&machine); if (r < 0) return log_error_errno(r, "Failed to get machine id: %m"); sd_id128_to_string(machine, ids); if (!s->system_journal && (s->storage == STORAGE_PERSISTENT || s->storage == STORAGE_AUTO) && (flush_requested || access("/run/systemd/journal/flushed", F_OK) >= 0)) { /* If in auto mode: first try to create the machine * path, but not the prefix. * * If in persistent mode: create /var/log/journal and * the machine path */ if (s->storage == STORAGE_PERSISTENT) (void) mkdir("/var/log/journal/", 0755); fn = strjoina("/var/log/journal/", ids); (void) mkdir(fn, 0755); fn = strjoina(fn, "/system.journal"); r = journal_file_open_reliably(fn, O_RDWR|O_CREAT, 0640, s->compress, s->seal, &s->system_metrics, s->mmap, NULL, &s->system_journal); if (r >= 0) server_fix_perms(s, s->system_journal, 0); else if (r < 0) { if (r != -ENOENT && r != -EROFS) log_warning_errno(r, "Failed to open system journal: %m"); r = 0; } } if (!s->runtime_journal && (s->storage != STORAGE_NONE)) { fn = strjoin("/run/log/journal/", ids, "/system.journal", NULL); if (!fn) return -ENOMEM; if (s->system_journal) { /* Try to open the runtime journal, but only * if it already exists, so that we can flush * it into the system journal */ r = journal_file_open(fn, O_RDWR, 0640, s->compress, false, &s->runtime_metrics, s->mmap, NULL, &s->runtime_journal); free(fn); if (r < 0) { if (r != -ENOENT) log_warning_errno(r, "Failed to open runtime journal: %m"); r = 0; } } else { /* OK, we really need the runtime journal, so create * it if necessary. */ (void) mkdir("/run/log", 0755); (void) mkdir("/run/log/journal", 0755); (void) mkdir_parents(fn, 0750); r = journal_file_open_reliably(fn, O_RDWR|O_CREAT, 0640, s->compress, false, &s->runtime_metrics, s->mmap, NULL, &s->runtime_journal); free(fn); if (r < 0) return log_error_errno(r, "Failed to open runtime journal: %m"); } if (s->runtime_journal) server_fix_perms(s, s->runtime_journal, 0); } available_space(s, true); return r; } int server_flush_to_var(Server *s) { sd_id128_t machine; sd_journal *j = NULL; char ts[FORMAT_TIMESPAN_MAX]; usec_t start; unsigned n = 0; int r; assert(s); if (s->storage != STORAGE_AUTO && s->storage != STORAGE_PERSISTENT) return 0; if (!s->runtime_journal) return 0; system_journal_open(s, true); if (!s->system_journal) return 0; log_debug("Flushing to /var..."); start = now(CLOCK_MONOTONIC); r = sd_id128_get_machine(&machine); if (r < 0) return r; r = sd_journal_open(&j, SD_JOURNAL_RUNTIME_ONLY); if (r < 0) return log_error_errno(r, "Failed to read runtime journal: %m"); sd_journal_set_data_threshold(j, 0); SD_JOURNAL_FOREACH(j) { Object *o = NULL; JournalFile *f; f = j->current_file; assert(f && f->current_offset > 0); n++; r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o); if (r < 0) { log_error_errno(r, "Can't read entry: %m"); goto finish; } r = journal_file_copy_entry(f, s->system_journal, o, f->current_offset, NULL, NULL, NULL); if (r >= 0) continue; if (!shall_try_append_again(s->system_journal, r)) { log_error_errno(r, "Can't write entry: %m"); goto finish; } server_rotate(s); server_vacuum(s); if (!s->system_journal) { log_notice("Didn't flush runtime journal since rotation of system journal wasn't successful."); r = -EIO; goto finish; } log_debug("Retrying write."); r = journal_file_copy_entry(f, s->system_journal, o, f->current_offset, NULL, NULL, NULL); if (r < 0) { log_error_errno(r, "Can't write entry: %m"); goto finish; } } finish: journal_file_post_change(s->system_journal); journal_file_close(s->runtime_journal); s->runtime_journal = NULL; if (r >= 0) (void) rm_rf("/run/log/journal", REMOVE_ROOT); sd_journal_close(j); server_driver_message(s, SD_ID128_NULL, "Time spent on flushing to /var is %s for %u entries.", format_timespan(ts, sizeof(ts), now(CLOCK_MONOTONIC) - start, 0), n); return r; } int server_process_datagram(sd_event_source *es, int fd, uint32_t revents, void *userdata) { Server *s = userdata; assert(s); assert(fd == s->native_fd || fd == s->syslog_fd || fd == s->audit_fd); if (revents != EPOLLIN) { log_error("Got invalid event from epoll for datagram fd: %"PRIx32, revents); return -EIO; } for (;;) { struct ucred *ucred = NULL; struct timeval *tv = NULL; struct cmsghdr *cmsg; char *label = NULL; size_t label_len = 0; struct iovec iovec; union { struct cmsghdr cmsghdr; /* We use NAME_MAX space for the SELinux label * here. The kernel currently enforces no * limit, but according to suggestions from * the SELinux people this will change and it * will probably be identical to NAME_MAX. For * now we use that, but this should be updated * one day when the final limit is known. */ uint8_t buf[CMSG_SPACE(sizeof(struct ucred)) + CMSG_SPACE(sizeof(struct timeval)) + CMSG_SPACE(sizeof(int)) + /* fd */ CMSG_SPACE(NAME_MAX)]; /* selinux label */ } control = {}; union sockaddr_union sa = {}; struct msghdr msghdr = { .msg_iov = &iovec, .msg_iovlen = 1, .msg_control = &control, .msg_controllen = sizeof(control), .msg_name = &sa, .msg_namelen = sizeof(sa), }; ssize_t n; int *fds = NULL; unsigned n_fds = 0; int v = 0; size_t m; /* Try to get the right size, if we can. (Not all * sockets support SIOCINQ, hence we just try, but * don't rely on it. */ (void) ioctl(fd, SIOCINQ, &v); /* Fix it up, if it is too small. We use the same fixed value as auditd here. Awful! */ m = PAGE_ALIGN(MAX3((size_t) v + 1, (size_t) LINE_MAX, ALIGN(sizeof(struct nlmsghdr)) + ALIGN((size_t) MAX_AUDIT_MESSAGE_LENGTH)) + 1); if (!GREEDY_REALLOC(s->buffer, s->buffer_size, m)) return log_oom(); iovec.iov_base = s->buffer; iovec.iov_len = s->buffer_size - 1; /* Leave room for trailing NUL we add later */ n = recvmsg(fd, &msghdr, MSG_DONTWAIT|MSG_CMSG_CLOEXEC); if (n < 0) { if (errno == EINTR || errno == EAGAIN) return 0; log_error_errno(errno, "recvmsg() failed: %m"); return -errno; } for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg; cmsg = CMSG_NXTHDR(&msghdr, cmsg)) { if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_CREDENTIALS && cmsg->cmsg_len == CMSG_LEN(sizeof(struct ucred))) ucred = (struct ucred*) CMSG_DATA(cmsg); else if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_SECURITY) { label = (char*) CMSG_DATA(cmsg); label_len = cmsg->cmsg_len - CMSG_LEN(0); } else if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SO_TIMESTAMP && cmsg->cmsg_len == CMSG_LEN(sizeof(struct timeval))) tv = (struct timeval*) CMSG_DATA(cmsg); else if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS) { fds = (int*) CMSG_DATA(cmsg); n_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int); } } /* And a trailing NUL, just in case */ s->buffer[n] = 0; if (fd == s->syslog_fd) { if (n > 0 && n_fds == 0) server_process_syslog_message(s, strstrip(s->buffer), ucred, tv, label, label_len); else if (n_fds > 0) log_warning("Got file descriptors via syslog socket. Ignoring."); } else if (fd == s->native_fd) { if (n > 0 && n_fds == 0) server_process_native_message(s, s->buffer, n, ucred, tv, label, label_len); else if (n == 0 && n_fds == 1) server_process_native_file(s, fds[0], ucred, tv, label, label_len); else if (n_fds > 0) log_warning("Got too many file descriptors via native socket. Ignoring."); } else { assert(fd == s->audit_fd); if (n > 0 && n_fds == 0) server_process_audit_message(s, s->buffer, n, ucred, &sa, msghdr.msg_namelen); else if (n_fds > 0) log_warning("Got file descriptors via audit socket. Ignoring."); } close_many(fds, n_fds); } } static int dispatch_sigusr1(sd_event_source *es, const struct signalfd_siginfo *si, void *userdata) { Server *s = userdata; assert(s); log_info("Received request to flush runtime journal from PID %"PRIu32, si->ssi_pid); server_flush_to_var(s); server_sync(s); server_vacuum(s); touch("/run/systemd/journal/flushed"); return 0; } static int dispatch_sigusr2(sd_event_source *es, const struct signalfd_siginfo *si, void *userdata) { Server *s = userdata; assert(s); log_info("Received request to rotate journal from PID %"PRIu32, si->ssi_pid); server_rotate(s); server_vacuum(s); return 0; } static int dispatch_sigterm(sd_event_source *es, const struct signalfd_siginfo *si, void *userdata) { Server *s = userdata; assert(s); log_received_signal(LOG_INFO, si); sd_event_exit(s->event, 0); return 0; } static int setup_signals(Server *s) { sigset_t mask; int r; assert(s); assert_se(sigemptyset(&mask) == 0); sigset_add_many(&mask, SIGINT, SIGTERM, SIGUSR1, SIGUSR2, -1); assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0); r = sd_event_add_signal(s->event, &s->sigusr1_event_source, SIGUSR1, dispatch_sigusr1, s); if (r < 0) return r; r = sd_event_add_signal(s->event, &s->sigusr2_event_source, SIGUSR2, dispatch_sigusr2, s); if (r < 0) return r; r = sd_event_add_signal(s->event, &s->sigterm_event_source, SIGTERM, dispatch_sigterm, s); if (r < 0) return r; r = sd_event_add_signal(s->event, &s->sigint_event_source, SIGINT, dispatch_sigterm, s); if (r < 0) return r; return 0; } static int server_parse_proc_cmdline(Server *s) { _cleanup_free_ char *line = NULL; const char *w, *state; size_t l; int r; r = proc_cmdline(&line); if (r < 0) { log_warning_errno(r, "Failed to read /proc/cmdline, ignoring: %m"); return 0; } FOREACH_WORD_QUOTED(w, l, line, state) { _cleanup_free_ char *word; word = strndup(w, l); if (!word) return -ENOMEM; if (startswith(word, "systemd.journald.forward_to_syslog=")) { r = parse_boolean(word + 35); if (r < 0) log_warning("Failed to parse forward to syslog switch %s. Ignoring.", word + 35); else s->forward_to_syslog = r; } else if (startswith(word, "systemd.journald.forward_to_kmsg=")) { r = parse_boolean(word + 33); if (r < 0) log_warning("Failed to parse forward to kmsg switch %s. Ignoring.", word + 33); else s->forward_to_kmsg = r; } else if (startswith(word, "systemd.journald.forward_to_console=")) { r = parse_boolean(word + 36); if (r < 0) log_warning("Failed to parse forward to console switch %s. Ignoring.", word + 36); else s->forward_to_console = r; } else if (startswith(word, "systemd.journald.forward_to_wall=")) { r = parse_boolean(word + 33); if (r < 0) log_warning("Failed to parse forward to wall switch %s. Ignoring.", word + 33); else s->forward_to_wall = r; } else if (startswith(word, "systemd.journald")) log_warning("Invalid systemd.journald parameter. Ignoring."); } /* do not warn about state here, since probably systemd already did */ return 0; } static int server_parse_config_file(Server *s) { assert(s); return config_parse_many("/etc/systemd/journald.conf", CONF_DIRS_NULSTR("systemd/journald.conf"), "Journal\0", config_item_perf_lookup, journald_gperf_lookup, false, s); } static int server_dispatch_sync(sd_event_source *es, usec_t t, void *userdata) { Server *s = userdata; assert(s); server_sync(s); return 0; } int server_schedule_sync(Server *s, int priority) { int r; assert(s); if (priority <= LOG_CRIT) { /* Immediately sync to disk when this is of priority CRIT, ALERT, EMERG */ server_sync(s); return 0; } if (s->sync_scheduled) return 0; if (s->sync_interval_usec > 0) { usec_t when; r = sd_event_now(s->event, CLOCK_MONOTONIC, &when); if (r < 0) return r; when += s->sync_interval_usec; if (!s->sync_event_source) { r = sd_event_add_time( s->event, &s->sync_event_source, CLOCK_MONOTONIC, when, 0, server_dispatch_sync, s); if (r < 0) return r; r = sd_event_source_set_priority(s->sync_event_source, SD_EVENT_PRIORITY_IMPORTANT); } else { r = sd_event_source_set_time(s->sync_event_source, when); if (r < 0) return r; r = sd_event_source_set_enabled(s->sync_event_source, SD_EVENT_ONESHOT); } if (r < 0) return r; s->sync_scheduled = true; } return 0; } static int dispatch_hostname_change(sd_event_source *es, int fd, uint32_t revents, void *userdata) { Server *s = userdata; assert(s); server_cache_hostname(s); return 0; } static int server_open_hostname(Server *s) { int r; assert(s); s->hostname_fd = open("/proc/sys/kernel/hostname", O_RDONLY|O_CLOEXEC|O_NDELAY|O_NOCTTY); if (s->hostname_fd < 0) return log_error_errno(errno, "Failed to open /proc/sys/kernel/hostname: %m"); r = sd_event_add_io(s->event, &s->hostname_event_source, s->hostname_fd, 0, dispatch_hostname_change, s); if (r < 0) { /* kernels prior to 3.2 don't support polling this file. Ignore * the failure. */ if (r == -EPERM) { log_warning("Failed to register hostname fd in event loop: %s. Ignoring.", strerror(-r)); s->hostname_fd = safe_close(s->hostname_fd); return 0; } return log_error_errno(r, "Failed to register hostname fd in event loop: %m"); } r = sd_event_source_set_priority(s->hostname_event_source, SD_EVENT_PRIORITY_IMPORTANT-10); if (r < 0) return log_error_errno(r, "Failed to adjust priority of host name event source: %m"); return 0; } int server_init(Server *s) { _cleanup_fdset_free_ FDSet *fds = NULL; int n, r, fd; assert(s); zero(*s); s->syslog_fd = s->native_fd = s->stdout_fd = s->dev_kmsg_fd = s->audit_fd = s->hostname_fd = -1; s->compress = true; s->seal = true; s->sync_interval_usec = DEFAULT_SYNC_INTERVAL_USEC; s->sync_scheduled = false; s->rate_limit_interval = DEFAULT_RATE_LIMIT_INTERVAL; s->rate_limit_burst = DEFAULT_RATE_LIMIT_BURST; s->forward_to_wall = true; s->max_file_usec = DEFAULT_MAX_FILE_USEC; s->max_level_store = LOG_DEBUG; s->max_level_syslog = LOG_DEBUG; s->max_level_kmsg = LOG_NOTICE; s->max_level_console = LOG_INFO; s->max_level_wall = LOG_EMERG; memset(&s->system_metrics, 0xFF, sizeof(s->system_metrics)); memset(&s->runtime_metrics, 0xFF, sizeof(s->runtime_metrics)); server_parse_config_file(s); server_parse_proc_cmdline(s); if (!!s->rate_limit_interval ^ !!s->rate_limit_burst) { log_debug("Setting both rate limit interval and burst from "USEC_FMT",%u to 0,0", s->rate_limit_interval, s->rate_limit_burst); s->rate_limit_interval = s->rate_limit_burst = 0; } mkdir_p("/run/systemd/journal", 0755); s->user_journals = ordered_hashmap_new(NULL); if (!s->user_journals) return log_oom(); s->mmap = mmap_cache_new(); if (!s->mmap) return log_oom(); r = sd_event_default(&s->event); if (r < 0) return log_error_errno(r, "Failed to create event loop: %m"); sd_event_set_watchdog(s->event, true); n = sd_listen_fds(true); if (n < 0) return log_error_errno(n, "Failed to read listening file descriptors from environment: %m"); for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd++) { if (sd_is_socket_unix(fd, SOCK_DGRAM, -1, "/run/systemd/journal/socket", 0) > 0) { if (s->native_fd >= 0) { log_error("Too many native sockets passed."); return -EINVAL; } s->native_fd = fd; } else if (sd_is_socket_unix(fd, SOCK_STREAM, 1, "/run/systemd/journal/stdout", 0) > 0) { if (s->stdout_fd >= 0) { log_error("Too many stdout sockets passed."); return -EINVAL; } s->stdout_fd = fd; } else if (sd_is_socket_unix(fd, SOCK_DGRAM, -1, "/dev/log", 0) > 0 || sd_is_socket_unix(fd, SOCK_DGRAM, -1, "/run/systemd/journal/dev-log", 0) > 0) { if (s->syslog_fd >= 0) { log_error("Too many /dev/log sockets passed."); return -EINVAL; } s->syslog_fd = fd; } else if (sd_is_socket(fd, AF_NETLINK, SOCK_RAW, -1) > 0) { if (s->audit_fd >= 0) { log_error("Too many audit sockets passed."); return -EINVAL; } s->audit_fd = fd; } else { if (!fds) { fds = fdset_new(); if (!fds) return log_oom(); } r = fdset_put(fds, fd); if (r < 0) return log_oom(); } } r = server_open_stdout_socket(s, fds); if (r < 0) return r; if (fdset_size(fds) > 0) { log_warning("%u unknown file descriptors passed, closing.", fdset_size(fds)); fds = fdset_free(fds); } r = server_open_syslog_socket(s); if (r < 0) return r; r = server_open_native_socket(s); if (r < 0) return r; r = server_open_dev_kmsg(s); if (r < 0) return r; r = server_open_audit(s); if (r < 0) return r; r = server_open_kernel_seqnum(s); if (r < 0) return r; r = server_open_hostname(s); if (r < 0) return r; r = setup_signals(s); if (r < 0) return r; s->udev = udev_new(); if (!s->udev) return -ENOMEM; s->rate_limit = journal_rate_limit_new(s->rate_limit_interval, s->rate_limit_burst); if (!s->rate_limit) return -ENOMEM; r = cg_get_root_path(&s->cgroup_root); if (r < 0) return r; server_cache_hostname(s); server_cache_boot_id(s); server_cache_machine_id(s); r = system_journal_open(s, false); if (r < 0) return r; return 0; } void server_maybe_append_tags(Server *s) { #ifdef HAVE_GCRYPT JournalFile *f; Iterator i; usec_t n; n = now(CLOCK_REALTIME); if (s->system_journal) journal_file_maybe_append_tag(s->system_journal, n); ORDERED_HASHMAP_FOREACH(f, s->user_journals, i) journal_file_maybe_append_tag(f, n); #endif } void server_done(Server *s) { JournalFile *f; assert(s); while (s->stdout_streams) stdout_stream_free(s->stdout_streams); if (s->system_journal) journal_file_close(s->system_journal); if (s->runtime_journal) journal_file_close(s->runtime_journal); while ((f = ordered_hashmap_steal_first(s->user_journals))) journal_file_close(f); ordered_hashmap_free(s->user_journals); sd_event_source_unref(s->syslog_event_source); sd_event_source_unref(s->native_event_source); sd_event_source_unref(s->stdout_event_source); sd_event_source_unref(s->dev_kmsg_event_source); sd_event_source_unref(s->audit_event_source); sd_event_source_unref(s->sync_event_source); sd_event_source_unref(s->sigusr1_event_source); sd_event_source_unref(s->sigusr2_event_source); sd_event_source_unref(s->sigterm_event_source); sd_event_source_unref(s->sigint_event_source); sd_event_source_unref(s->hostname_event_source); sd_event_unref(s->event); safe_close(s->syslog_fd); safe_close(s->native_fd); safe_close(s->stdout_fd); safe_close(s->dev_kmsg_fd); safe_close(s->audit_fd); safe_close(s->hostname_fd); if (s->rate_limit) journal_rate_limit_free(s->rate_limit); if (s->kernel_seqnum) munmap(s->kernel_seqnum, sizeof(uint64_t)); free(s->buffer); free(s->tty_path); free(s->cgroup_root); free(s->hostname_field); if (s->mmap) mmap_cache_unref(s->mmap); if (s->udev) udev_unref(s->udev); }
gentoo/systemd-old
src/journal/journald-server.c
C
gpl-2.0
58,217
<?php if( !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /** * * @package VirtueMart * @Author Kohl Patrick * @subpackage router * @copyright Copyright (C) 2010 Kohl Patrick - Virtuemart Team - All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * VirtueMart is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details. * * http://virtuemart.net */ function virtuemartBuildRoute(&$query) { $segments = array(); $helper = vmrouterHelper::getInstance($query); /* simple route , no work , for very slow server or test purpose */ if ($helper->router_disabled) { foreach ($query as $key => $value){ if ($key != 'option') { if ($key != 'Itemid') { $segments[]=$key.'/'.$value; unset($query[$key]); } } } return $segments; } if ($helper->edit) return $segments; /* Full route , heavy work*/ // $lang = $helper->lang ; $view = ''; $jmenu = $helper->menu ; if(isset($query['langswitch'])) unset($query['langswitch']); if(isset($query['view'])){ $view = $query['view']; unset($query['view']); } switch ($view) { case 'virtuemart'; $query['Itemid'] = $jmenu['virtuemart'] ; break; /* Shop category or virtuemart view All ideas are wellcome to improve this because is the biggest and more used */ case 'category'; $start = null; $limitstart = null; $limit = null; if ( isset($query['virtuemart_manufacturer_id']) ) { $segments[] = $helper->lang('manufacturer').'/'.$helper->getManufacturerName($query['virtuemart_manufacturer_id']) ; unset($query['virtuemart_manufacturer_id']); } if ( isset($query['search']) ) { $segments[] = $helper->lang('search') ; unset($query['search']); } if ( isset($query['keyword'] )) { $segments[] = $query['keyword']; unset($query['keyword']); } if ( isset($query['virtuemart_category_id']) ) { if (isset($jmenu['virtuemart_category_id'][ $query['virtuemart_category_id'] ] ) ) $query['Itemid'] = $jmenu['virtuemart_category_id'][$query['virtuemart_category_id']]; else { $categoryRoute = $helper->getCategoryRoute($query['virtuemart_category_id']); if ($categoryRoute->route) $segments[] = $categoryRoute->route; if ($categoryRoute->itemId) $query['Itemid'] = $categoryRoute->itemId; } unset($query['virtuemart_category_id']); } if ( isset($jmenu['category']) ) $query['Itemid'] = $jmenu['category']; if ( isset($query['order']) ) { if ($query['order'] =='DESC') $segments[] = $helper->lang('orderDesc') ; unset($query['order']); } if ( isset($query['orderby']) ) { $segments[] = $helper->lang('by').','.$helper->lang( $query['orderby']) ; unset($query['orderby']); } // Joomla replace before route limitstart by start but without SEF this is start ! if ( isset($query['limitstart'] ) ) { $limitstart = $query['limitstart'] ; unset($query['limitstart']); } if ( isset($query['start'] ) ) { $start = $query['start'] ; unset($query['start']); } if ( isset($query['limit'] ) ) { $limit = $query['limit'] ; unset($query['limit']); } if ($start !== null && $limitstart!== null ) { //$segments[] = $helper->lang('results') .',1-'.$start ; } else if ( $start>0 ) { // using general limit if $limit is not set if ($limit === null) $limit= vmrouterHelper::$limit ; $segments[] = $helper->lang('results') .','. ($start+1).'-'.($start+$limit); } else if ($limit !== null && $limit != vmrouterHelper::$limit ) $segments[] = $helper->lang('results') .',1-'.$limit ;//limit change return $segments; break; /* Shop product details view */ case 'productdetails'; $virtuemart_product_id = false; if (isset($jmenu['virtuemart_product_id'][ $query['virtuemart_product_id'] ] ) ) { $query['Itemid'] = $jmenu['virtuemart_product_id'][$query['virtuemart_product_id']]; unset($query['virtuemart_product_id']); unset($query['virtuemart_category_id']); } else { if(isset($query['virtuemart_product_id'])) { if ($helper->use_id) $segments[] = $query['virtuemart_product_id']; $virtuemart_product_id = $query['virtuemart_product_id']; unset($query['virtuemart_product_id']); } if(empty( $query['virtuemart_category_id'])){ $query['virtuemart_category_id'] = $helper->getParentProductcategory($virtuemart_product_id); } if(!empty( $query['virtuemart_category_id'])){ $categoryRoute = $helper->getCategoryRoute($query['virtuemart_category_id']); if ($categoryRoute->route) $segments[] = $categoryRoute->route; if ($categoryRoute->itemId) $query['Itemid'] = $categoryRoute->itemId; else $query['Itemid'] = $jmenu['virtuemart']; } else { $query['Itemid'] = $jmenu['virtuemart']?$jmenu['virtuemart']:@$jmenu['virtuemart_category_id'][0]; } unset($query['virtuemart_category_id']); if($virtuemart_product_id) $segments[] = $helper->getProductName($virtuemart_product_id); } if (!count($query)) return $segments; break; case 'manufacturer'; if(isset($query['virtuemart_manufacturer_id'])) { if (isset($jmenu['virtuemart_manufacturer_id'][ $query['virtuemart_manufacturer_id'] ] ) ) { $query['Itemid'] = $jmenu['virtuemart_manufacturer_id'][$query['virtuemart_manufacturer_id']]; } else { $segments[] = $helper->lang('manufacturers').'/'.$helper->getManufacturerName($query['virtuemart_manufacturer_id']) ; if ( isset($jmenu['manufacturer']) ) $query['Itemid'] = $jmenu['manufacturer']; else $query['Itemid'] = $jmenu['virtuemart']; } unset($query['virtuemart_manufacturer_id']); } else { if ( isset($jmenu['manufacturer']) ) $query['Itemid'] = $jmenu['manufacturer']; else $query['Itemid'] = $jmenu['virtuemart']; } // Joomla replace before route limitstart by start but without SEF this is start ! if ( isset($query['limitstart'] ) ) { $limitstart = $query['limitstart'] ; unset($query['limitstart']); } if ( isset($query['start'] ) ) { $start = $query['start'] ; unset($query['start']); } if ( isset($query['limit'] ) ) { $limit = $query['limit'] ; unset($query['limit']); } if ($start !== null && $limitstart!== null ) { //$segments[] = $helper->lang('results') .',1-'.$start ; } else if ( $start>0 ) { // using general limit if $limit is not set if ($limit === null) $limit= vmrouterHelper::$limit; $segments[] = $helper->lang('results') .','. ($start+1).'-'.($start+$limit); } else if ($limit !== null && $limit != vmrouterHelper::$limit ) $segments[] = $helper->lang('results') .',1-'.$limit ;//limit change return $segments; break; case 'user'; if ( isset($jmenu['user']) ) $query['Itemid'] = $jmenu['user']; else { $segments[] = $helper->lang('user') ; $query['Itemid'] = $jmenu['virtuemart']; } if (isset($query['task'])) { //vmdebug('my task in user view',$query['task']); if($query['task']=='editaddresscart'){ if ($query['addrtype'] == 'ST'){ $segments[] = $helper->lang('editaddresscartST') ; } else { $segments[] = $helper->lang('editaddresscartBT') ; } } else if($query['task']=='editaddresscheckout'){ if ($query['addrtype'] == 'ST'){ $segments[] = $helper->lang('editaddresscheckoutST') ; } else { $segments[] = $helper->lang('editaddresscheckoutBT') ; } } else if($query['task']=='editaddress'){ if (isset($query['addrtype']) and $query['addrtype'] == 'ST'){ $segments[] = $helper->lang('editaddressST') ; } else { $segments[] = $helper->lang('editaddressBT') ; } } else { $segments[] = $helper->lang($query['task']); } /* if ($query['addrtype'] == 'BT' && $query['task']='editaddresscart') $segments[] = $helper->lang('editaddresscartBT') ; elseif ($query['addrtype'] == 'ST' && $query['task']='editaddresscart') $segments[] = $helper->lang('editaddresscartST') ; elseif ($query['addrtype'] == 'BT') $segments[] = $helper->lang('editaddresscheckoutST') ; elseif ($query['addrtype'] == 'ST') $segments[] = $helper->lang('editaddresscheckoutST') ; else $segments[] = $query['task'] ;*/ unset ($query['task'] , $query['addrtype']); } break; case 'vendor'; /* VM208 */ if(isset($query['virtuemart_vendor_id'])) { if (isset($jmenu['virtuemart_vendor_id'][ $query['virtuemart_vendor_id'] ] ) ) { $query['Itemid'] = $jmenu['virtuemart_vendor_id'][$query['virtuemart_vendor_id']]; } else { if ( isset($jmenu['vendor']) ) { $query['Itemid'] = $jmenu['vendor']; } else { $segments[] = $helper->lang('vendor') ; $query['Itemid'] = $jmenu['virtuemart']; } } } else if ( isset($jmenu['vendor']) ) { $query['Itemid'] = $jmenu['vendor']; } else { $segments[] = $helper->lang('vendor') ; $query['Itemid'] = $jmenu['virtuemart']; } if (isset($query['virtuemart_vendor_id'])) { //$segments[] = $helper->lang('vendor').'/'.$helper->getVendorName($query['virtuemart_vendor_id']) ; $segments[] = $helper->getVendorName($query['virtuemart_vendor_id']) ; unset ($query['virtuemart_vendor_id'] ); } break; case 'cart'; if ( isset($jmenu['cart']) ) $query['Itemid'] = $jmenu['cart']; else { $segments[] = $helper->lang('cart') ; $query['Itemid'] = $jmenu['virtuemart']; } break; case 'orders'; if ( isset($jmenu['orders']) ) $query['Itemid'] = $jmenu['orders']; else { $segments[] = $helper->lang('orders') ; $query['Itemid'] = $jmenu['virtuemart']; } if ( isset($query['order_number']) ) { $segments[] = 'number/'.$query['order_number']; unset ($query['order_number'],$query['layout']); } else if ( isset($query['virtuemart_order_id']) ) { $segments[] = 'id/'.$query['virtuemart_order_id']; unset ($query['virtuemart_order_id'],$query['layout']); } //else unset ($query['layout']); break; // sef only view default ; $segments[] = $view; } // if (!class_exists( 'VmConfig' )) require(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart'.DS.'helpers'.DS.'config.php'); // vmdebug("case 'productdetails'",$query); if (isset($query['task'])) { $segments[] = $helper->lang($query['task']); unset($query['task']); } if (isset($query['layout'])) { $segments[] = $helper->lang($query['layout']) ; unset($query['layout']); } // sef the slimbox View /* if (isset($query['tmpl'])) { //if ( $query['tmpl'] = 'component') $segments[] = 'modal' ; $segments[] = $query['tmpl'] ; unset($query['tmpl']); }*/ return $segments; } /* This function can be slower because is used only one time to find the real URL*/ function virtuemartParseRoute($segments) { $vars = array(); $helper = vmrouterHelper::getInstance(); if ($helper->router_disabled) { $total = count($segments); for ($i = 0; $i < $total; $i=$i+2) { $vars[ $segments[$i] ] = $segments[$i+1]; } return $vars; } if (empty($segments)) { return $vars; } //$lang = $helper->lang ; // revert '-' (Joomla change - to :) // foreach ($segments as &$value) { $value = str_replace(':', '-', $value); } // $splitted = explode(',',$segments[0],2); $splitted = explode(',',end($segments),2); if ( $helper->compareKey($splitted[0] ,'results')){ // array_shift($segments); array_pop($segments); $results = explode('-',$splitted[1],2); //Pagination has changed, removed the -1 note by Max Milbers NOTE: Works on j1.5, but NOT j1.7 // limitstart is swapped by joomla to start ! See includes/route.php if ($start = $results[0]-1) $vars['limitstart'] = $start; else $vars['limitstart'] = 0 ; $vars['limit'] = $results[1]-$results[0]+1; } else { $vars['limitstart'] = 0 ; $vars['limit'] = vmrouterHelper::$limit; } if (empty($segments)) { $vars['view'] = 'category'; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; return $vars; } // $orderby = explode(',',$segments[0],2); $orderby = explode(',',end($segments),2); if ( $helper->compareKey($orderby[0] , 'by') ) { $vars['orderby'] =$helper->getOrderingKey($orderby[1]) ; // array_shift($segments); array_pop($segments); if (empty($segments)) { $vars['view'] = 'category'; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; return $vars; } } if ( $helper->compareKey(end($segments),'orderDesc') ){ $vars['order'] ='DESC' ; array_pop($segments); if (empty($segments)) { $vars['view'] = 'category'; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; return $vars; } } if ( $segments[0] == 'product') { $vars['view'] = 'product'; $vars['task'] = $segments[1]; $vars['tmpl'] = 'component'; return $vars; } if ( $helper->compareKey($segments[0] ,'manufacturer') ) { array_shift($segments); $vars['virtuemart_manufacturer_id'] = $helper->getManufacturerId($segments[0]); array_shift($segments); // OSP 2012-02-29 removed search malforms SEF path and search is performed // $vars['search'] = 'true'; if (empty($segments)) { $vars['view'] = 'category'; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; return $vars; } } /* added in vm208 */ // if no joomla link: vendor/vendorname/layout // if joomla link joomlalink/vendorname/layout if ( $helper->compareKey($segments[0] ,'vendor') ) { $vars['virtuemart_vendor_id'] = $helper->getVendorId($segments[1]); // OSP 2012-02-29 removed search malforms SEF path and search is performed // $vars['search'] = 'true'; // this can never happen if (empty($segments)) { $vars['view'] = 'vendor'; $vars['virtuemart_vendor_id'] = $helper->activeMenu->virtuemart_vendor_id ; return $vars; } } if ( $helper->compareKey($segments[0] ,'search') ) { $vars['search'] = 'true'; array_shift($segments); if ( !empty ($segments) ) { $vars['keyword'] = array_shift($segments); } $vars['view'] = 'search'; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id; if (empty($segments)) return $vars; } if (end($segments) == 'modal') { $vars['tmpl'] = 'component'; array_pop($segments); } if ( $helper->compareKey(end($segments) ,'askquestion') ) { $vars = (array)$helper->activeMenu ; $vars['task'] = 'askquestion'; array_pop($segments); } elseif ( $helper->compareKey(end($segments) ,'recommend') ) { $vars = (array)$helper->activeMenu ; $vars['task'] = 'recommend'; array_pop($segments); } elseif ( $helper->compareKey(end($segments) ,'notify') ) { $vars = (array)$helper->activeMenu ; $vars['layout'] = 'notify'; array_pop($segments); } if (empty($segments)) return $vars ; // View is first segment now $view = $segments[0]; if ( $helper->compareKey($view,'orders') || $helper->activeMenu->view == 'orders') { $vars['view'] = 'orders'; if ( $helper->compareKey($view,'orders')){ array_shift($segments); } if (empty($segments)) { $vars['layout'] = 'list'; } else if ($helper->compareKey($segments[0],'list') ) { $vars['layout'] = 'list'; array_shift($segments); } if ( !empty($segments) ) { if ($segments[0] ='number') $vars['order_number'] = $segments[1] ; else $vars['virtuemart_order_id'] = $segments[1] ; $vars['layout'] = 'details'; } return $vars; } else if ( $helper->compareKey($view,'user') || $helper->activeMenu->view == 'user') { $vars['view'] = 'user'; if ( $helper->compareKey($view,'user') ) { array_shift($segments); } if ( !empty($segments) ) { if ( $helper->compareKey($segments[0] ,'editaddresscartBT') ) { $vars['addrtype'] = 'BT' ; $vars['task'] = 'editaddresscart' ; } elseif ( $helper->compareKey($segments[0] ,'editaddresscartST') ) { $vars['addrtype'] = 'ST' ; $vars['task'] = 'editaddresscart' ; } elseif ( $helper->compareKey($segments[0] ,'editaddresscheckoutBT') ) { $vars['addrtype'] = 'BT' ; $vars['task'] = 'editaddresscheckout' ; } elseif ( $helper->compareKey($segments[0] ,'editaddresscheckoutST') ) { $vars['addrtype'] = 'ST' ; $vars['task'] = 'editaddresscheckout' ; } elseif ( $helper->compareKey($segments[0] ,'editaddressST') ) { $vars['addrtype'] = 'ST' ; $vars['task'] = 'editaddressST' ; } elseif ( $helper->compareKey($segments[0] ,'editaddressBT') ) { $vars['addrtype'] = 'BT' ; $vars['task'] = 'edit' ; $vars['layout'] = 'edit' ; //I think that should be the layout, not the task } elseif ( $helper->compareKey($segments[0] ,'edit') ) { $vars['layout'] = 'edit' ; //uncomment and lets test } else $vars['task'] = $segments[0] ; } return $vars; } else if ( $helper->compareKey($view,'vendor') || $helper->activeMenu->view == 'vendor') { /* vm208 */ $vars['view'] = 'vendor'; if ( $helper->compareKey($view,'vendor') ) { array_shift($segments); if (empty($segments)) return $vars; } //$vars['virtuemart_vendor_id'] = array_shift($segments);//// already done //array_shift($segments); $vars['virtuemart_vendor_id'] = $helper->getVendorId($segments[0]); array_shift($segments); if(!empty($segments)) { if ( $helper->compareKey($segments[0] ,'contact') ) $vars['layout'] = 'contact' ; elseif ( $helper->compareKey($segments[0] ,'tos') ) $vars['layout'] = 'tos' ; elseif ( $helper->compareKey($segments[0] ,'details') ) $vars['layout'] = 'details' ; } else $vars['layout'] = 'details' ; return $vars; } else if ( $helper->compareKey($view,'cart') || $helper->activeMenu->view == 'cart') { $vars['view'] = 'cart'; if ( $helper->compareKey($view,'cart') ) { array_shift($segments); if (empty($segments)) return $vars; } if ( $helper->compareKey($segments[0] ,'edit_shipment') ) $vars['task'] = 'edit_shipment' ; elseif ( $helper->compareKey($segments[0] ,'editpayment') ) $vars['task'] = 'editpayment' ; elseif ( $helper->compareKey($segments[0] ,'delete') ) $vars['task'] = 'delete' ; elseif ( $helper->compareKey($segments[0] ,'checkout') ) $vars['task'] = 'checkout' ; else $vars['task'] = $segments[0]; return $vars; } else if ( $helper->compareKey($view,'manufacturers') || $helper->activeMenu->view == 'manufacturer') { $vars['view'] = 'manufacturer'; if ( $helper->compareKey($view,'manufacturers') ) { array_shift($segments); } if (!empty($segments) ) { $vars['virtuemart_manufacturer_id'] = $helper->getManufacturerId($segments[0]); array_shift($segments); } if ( isset($segments[0]) && $segments[0] == 'modal') { $vars['tmpl'] = 'component'; array_shift($segments); } // if (isset($helper->activeMenu->virtuemart_manufacturer_id)) // $vars['virtuemart_manufacturer_id'] = $helper->activeMenu->virtuemart_manufacturer_id ; vmdebug('my parsed URL vars',$vars); return $vars; } /* * seo_sufix must never be used in category or router can't find it * eg. suffix as "-suffix", a category with "name-suffix" get always a false return * Trick : YOu can simply use "-p","-x","-" or ".htm" for better seo result if it's never in the product/category name ! */ /* if (substr(end($segments ), -(int)$helper->seo_sufix_size ) == $helper->seo_sufix ) { vmdebug('$segments productdetail',$segments,end($segments ));*/ $last_elem = end($segments); $slast_elem = prev($segments); if ( (substr($last_elem, -(int)$helper->seo_sufix_size ) == $helper->seo_sufix) || ($last_elem=='notify' && substr($slast_elem, -(int)$helper->seo_sufix_size ) == $helper->seo_sufix) ) { $vars['view'] = 'productdetails'; if($last_elem=='notify') { $vars['layout'] = 'notify'; array_pop($segments); } if (!$helper->use_id ) { $product = $helper->getProductId($segments ,$helper->activeMenu->virtuemart_category_id); $vars['virtuemart_product_id'] = $product['virtuemart_product_id']; $vars['virtuemart_category_id'] = $product['virtuemart_category_id']; //vmdebug('View productdetails, using case !$helper->use_id',$vars,$helper->activeMenu); } elseif (isset($segments[1]) ){ $vars['virtuemart_product_id'] = $segments[0]; $vars['virtuemart_category_id'] = $segments[1]; //vmdebug('View productdetails, using case isset($segments[1]',$vars); } else { $vars['virtuemart_product_id'] = $segments[0]; $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; //vmdebug('View productdetails, using case "else", which uses $helper->activeMenu->virtuemart_category_id ',$vars); } } elseif (!$helper->use_id && ($helper->activeMenu->view == 'category' ) ) { $vars['virtuemart_category_id'] = $helper->getCategoryId (end($segments) ,$helper->activeMenu->virtuemart_category_id); $vars['view'] = 'category' ; }/* elseif (isset($segments[0]) && ctype_digit ($segments[0]) || $helper->activeMenu->virtuemart_category_id>0 ) { //$vars['virtuemart_category_id'] = $segments[0]; $vars['virtuemart_category_id'] = $helper->getCategoryId ($segments[0]); $vars['view'] = 'category'; }*/ elseif ($helper->activeMenu->virtuemart_category_id >0 && $vars['view'] != 'productdetails') { $vars['virtuemart_category_id'] = $helper->activeMenu->virtuemart_category_id ; $vars['view'] = 'category'; } elseif ($id = $helper->getCategoryId (end($segments) ,$helper->activeMenu->virtuemart_category_id )) { // find corresponding category . If not, segment 0 must be a view $vars['virtuemart_category_id'] = $id; $vars['view'] = 'category' ; } else { $vars['view'] = $segments[0] ; if ( isset($segments[1]) ) { $vars['task'] = $segments[1] ; } } //print_r($vars);exit; //vmdebug('Router vars',$vars); return $vars; } class vmrouterHelper { /* language array */ public $lang = null ; public $langTag = null ; public $query = array(); /* Joomla menus ID object from com_virtuemart */ public $menu = null ; /* Joomla active menu( itemId ) object */ public $activeMenu = null ; public $menuVmitems = null; /* * $use_id type boolean * Use the Id's of categorie and product or not */ public $use_id = false ; public $seo_translate = false ; private $orderings = null ; public static $limit = null ; /* * $router_disabled type boolean * true = don't Use the router */ public $router_disabled = false ; /* instance of class */ private static $_instances = array (); private static $_catRoute = array (); public $CategoryName = array(); private $dbview = array('vendor' =>'vendor','category' =>'category','virtuemart' =>'virtuemart','productdetails' =>'product','cart' => 'cart','manufacturer' => 'manufacturer','user'=>'user'); private function __construct($instanceKey,$query) { if (!$this->router_disabled = VmConfig::get('seo_disabled', false)) { $this->seo_translate = VmConfig::get('seo_translate', false); $this->setLangs($instanceKey); if ( JVM_VERSION===1 ) $this->setMenuItemId(); else $this->setMenuItemIdJ17(); $this->setActiveMenu(); $this->use_id = VmConfig::get('seo_use_id', false); $this->seo_sufix = VmConfig::get('seo_sufix', '-detail'); $this->seo_sufix_size = strlen($this->seo_sufix) ; $this->edit = ('edit' == JRequest::getCmd('task') ); // if language switcher we must know the $query $this->query = $query; } } public static function getInstance(&$query = null) { if (!class_exists( 'VmConfig' )) { require(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart'.DS.'helpers'.DS.'config.php'); VmConfig::loadConfig(); } if (isset($query['langswitch']) ) { if ($query['langswitch'] != VMLANG ) $instanceKey = $query['langswitch'] ; unset ($query['langswitch']); } else $instanceKey = VMLANG ; if (! array_key_exists ($instanceKey, self::$_instances)){ self::$_instances[$instanceKey] = new vmrouterHelper ($instanceKey,$query); if (self::$limit===null){ $mainframe = Jfactory::getApplication(); ; $view = 'virtuemart'; if(isset($query['view'])) $view = $query['view']; self::$limit= $mainframe->getUserStateFromRequest('com_virtuemart.'.$view.'.limit', VmConfig::get('list_limit'), 20); // self::$limit= $mainframe->getUserStateFromRequest('global.list.limit', 'limit', VmConfig::get('list_limit', 20), 'int'); } } return self::$_instances[$instanceKey]; } /* multi language routing ? */ public function setLangs($instanceKey){ $langs = VmConfig::get('active_languages',false); if(count($langs)> 1) { if(!in_array($instanceKey, $langs)) { $this->vmlang = VMLANG ; $this->langTag = strtr(VMLANG,'_','-'); } else { $this->vmlang = strtolower(strtr($instanceKey,'-','_')); $this->langTag= $instanceKey; } } else $this->vmlang = $this->langTag = VMLANG ; $this->setLang($instanceKey); $this->Jlang = JFactory::getLanguage(); } public function getCategoryRoute($virtuemart_category_id){ $cache = JFactory::getCache('_virtuemart',''); $key = $virtuemart_category_id. $this->vmlang ; // internal cache key if (!($CategoryRoute = $cache->get($key))) { $CategoryRoute = $this->getCategoryRouteNocache($virtuemart_category_id); $cache->store($CategoryRoute, $key); } return $CategoryRoute ; } /* Get Joomla menu item and the route for category */ public function getCategoryRouteNocache($virtuemart_category_id){ if (! array_key_exists ($virtuemart_category_id . $this->vmlang, self::$_catRoute)){ $category = new stdClass(); $category->route = ''; $category->itemId = 0; $menuCatid = 0 ; $ismenu = false ; // control if category is joomla menu if (isset($this->menu['virtuemart_category_id'])) { if (isset( $this->menu['virtuemart_category_id'][$virtuemart_category_id])) { $ismenu = true; $category->itemId = $this->menu['virtuemart_category_id'][$virtuemart_category_id] ; } else { $CatParentIds = $this->getCategoryRecurse($virtuemart_category_id,0) ; /* control if parent categories are joomla menu */ foreach ($CatParentIds as $CatParentId) { // No ? then find the parent menu categorie ! if (isset( $this->menu['virtuemart_category_id'][$CatParentId]) ) { $category->itemId = $this->menu['virtuemart_category_id'][$CatParentId] ; $menuCatid = $CatParentId; break; } } } } if ($ismenu==false) { if ( $this->use_id ) $category->route = $virtuemart_category_id.'/'; if (!isset ($this->CategoryName[$virtuemart_category_id])) { $this->CategoryName[$virtuemart_category_id] = $this->getCategoryNames($virtuemart_category_id, $menuCatid ); } $category->route .= $this->CategoryName[$virtuemart_category_id] ; if ($menuCatid == 0 && $this->menu['virtuemart']) $category->itemId = $this->menu['virtuemart'] ; } self::$_catRoute[$virtuemart_category_id . $this->vmlang] = $category; } return self::$_catRoute[$virtuemart_category_id . $this->vmlang] ; } /*get url safe names of category and parents categories */ public function getCategoryNames($virtuemart_category_id,$catMenuId=0){ static $categoryNamesCache = array(); $strings = array(); $db = JFactory::getDBO(); $parents_id = array_reverse($this->getCategoryRecurse($virtuemart_category_id,$catMenuId)) ; foreach ($parents_id as $id ) { if(!isset($categoryNamesCache[$id])){ $q = 'SELECT `slug` as name FROM `#__virtuemart_categories_'.$this->vmlang.'` WHERE `virtuemart_category_id`='.(int)$id; $db->setQuery($q); $cslug = $db->loadResult(); $categoryNamesCache[$id] = $cslug; $strings[] = $cslug; } else { $strings[] = $categoryNamesCache[$id]; } } if(function_exists('mb_strtolower')){ return mb_strtolower(implode ('/', $strings ) ); } else { return strtolower(implode ('/', $strings ) ); } } /* Get parents of category*/ public function getCategoryRecurse($virtuemart_category_id,$catMenuId,$first=true ) { static $idsArr = array(); if ($first==true) $idsArr = array(); $db = JFactory::getDBO(); $q = "SELECT `category_child_id` AS `child`, `category_parent_id` AS `parent` FROM #__virtuemart_category_categories AS `xref` WHERE `xref`.`category_child_id`= ".(int)$virtuemart_category_id; $db->setQuery($q); $ids = $db->loadObject(); if (isset ($ids->child)) { $idsArr[] = $ids->child; if($ids->parent != 0 and $catMenuId != $virtuemart_category_id and $catMenuId != $ids->parent) { $this->getCategoryRecurse($ids->parent,$catMenuId,false); } } return $idsArr ; } /* return id of categories * $names are segments * $virtuemart_category_ids is joomla menu virtuemart_category_id */ public function getCategoryId($slug,$virtuemart_category_id ){ $db = JFactory::getDBO(); $q = "SELECT `virtuemart_category_id` FROM `#__virtuemart_categories_".$this->vmlang."` WHERE `slug` LIKE '".$db->getEscaped($slug)."' "; $db->setQuery($q); if (!$category_id = $db->loadResult()) { $category_id = $virtuemart_category_id; } return $category_id ; } /* Get URL safe Product name */ public function getProductName($id){ static $productNamesCache = array(); if(!isset($productNamesCache[$id])){ $db = JFactory::getDBO(); $query = 'SELECT `slug` FROM `#__virtuemart_products_'.$this->vmlang.'` ' . ' WHERE `virtuemart_product_id` = ' . (int) $id; $db->setQuery($query); $name = $db->loadResult(); $productNamesCache[$id] = $name ; } else { $name = $productNamesCache[$id]; } return $name.$this->seo_sufix; } var $counter = 0; /* Get parent Product first found category ID */ public function getParentProductcategory($id){ $virtuemart_category_id = 0; $db = JFactory::getDBO(); $query = 'SELECT `product_parent_id` FROM `#__virtuemart_products` ' . ' WHERE `virtuemart_product_id` = ' . (int) $id; $db->setQuery($query); /* If product is child then get parent category ID*/ if ($parent_id = $db->loadResult()) { $query = 'SELECT `virtuemart_category_id` FROM `#__virtuemart_product_categories` ' . ' WHERE `virtuemart_product_id` = ' . $parent_id; $db->setQuery($query); //When the child and parent id is the same, this creates a deadlock //add $counter, dont allow more then 10 levels if (!$virtuemart_category_id = $db->loadResult()){ $this->counter++; if($this->counter<10){ $this->getParentProductcategory($parent_id) ; } } } $this->counter = 0; return $virtuemart_category_id ; } /* get product and category ID */ public function getProductId($names,$virtuemart_category_id = NULL ){ $productName = array_pop($names); $productName = substr($productName, 0, -(int)$this->seo_sufix_size ); $product = array(); $categoryName = end($names); $product['virtuemart_category_id'] = $this->getCategoryId($categoryName,$virtuemart_category_id ) ; $db = JFactory::getDBO(); $q = 'SELECT `p`.`virtuemart_product_id` FROM `#__virtuemart_products_'.$this->vmlang.'` AS `p` LEFT JOIN `#__virtuemart_product_categories` AS `xref` ON `p`.`virtuemart_product_id` = `xref`.`virtuemart_product_id` WHERE `p`.`slug` LIKE "'.$db->getEscaped($productName).'" '; //$q .= " AND `xref`.`virtuemart_category_id` = ".(int)$product['virtuemart_category_id']; $db->setQuery($q); $product['virtuemart_product_id'] = $db->loadResult(); /* WARNING product name must be unique or you can't acces the product */ return $product ; } /* Get URL safe Manufacturer name */ public function getManufacturerName($virtuemart_manufacturer_id ){ $db = JFactory::getDBO(); $query = 'SELECT `slug` FROM `#__virtuemart_manufacturers_'.$this->vmlang.'` WHERE virtuemart_manufacturer_id='.(int)$virtuemart_manufacturer_id; $db->setQuery($query); return $db->loadResult(); } /* Get Manufacturer id */ public function getManufacturerId($slug ){ $db = JFactory::getDBO(); $query = "SELECT `virtuemart_manufacturer_id` FROM `#__virtuemart_manufacturers_".$this->vmlang."` WHERE `slug` LIKE '".$db->getEscaped($slug)."' "; $db->setQuery($query); return $db->loadResult(); } /* Get URL safe Manufacturer name */ public function getVendorName($virtuemart_vendor_id ){ $db = JFactory::getDBO(); $query = 'SELECT `slug` FROM `#__virtuemart_vendors_'.$this->vmlang.'` WHERE virtuemart_vendor_id='.(int)$virtuemart_vendor_id; $db->setQuery($query); return $db->loadResult(); } /* Get Manufacturer id */ public function getVendorId($slug ){ $db = JFactory::getDBO(); $query = "SELECT `virtuemart_vendor_id` FROM `#__virtuemart_vendors_".$this->vmlang."` WHERE `slug` LIKE '".$db->getEscaped($slug)."' "; $db->setQuery($query); return $db->loadResult(); } /* Set $this-lang (Translator for language from virtuemart string) to load only once*/ private function setLang($instanceKey){ if ( $this->seo_translate ) { /* use translator */ $lang =JFactory::getLanguage(); $extension = 'com_virtuemart.sef'; $base_dir = JPATH_SITE; $lang->load($extension, $base_dir); } } /* Set $this->menu with the Item ID from Joomla Menus */ private function setMenuItemIdJ17(){ $home = false ; $component = JComponentHelper::getComponent('com_virtuemart'); //else $items = $menus->getItems('component_id', $component->id); //get all vm menus $db = JFactory::getDBO(); $query = 'SELECT * FROM `#__menu` where `link` like "index.php?option=com_virtuemart%" and client_id=0 and published=1 and (language="*" or language="'.$this->langTag.'")' ; $db->setQuery($query); // vmdebug('setMenuItemIdJ17 q',$query); $this->menuVmitems= $db->loadObjectList(); $homeid =0; if(empty($this->menuVmitems)){ vmWarn(JText::_('COM_VIRTUEMART_ASSIGN_VM_TO_MENU')); } else { // Search Virtuemart itemID in joomla menu foreach ($this->menuVmitems as $item) { $linkToSplit= explode ('&',$item->link); $link =array(); foreach ($linkToSplit as $tosplit) { $splitpos = strpos($tosplit, '='); $link[ (substr($tosplit, 0, $splitpos) ) ] = substr($tosplit, $splitpos+1); } //vmDebug('menu view link',$link); //This is fix to prevent entries in the errorlog. if(!empty($link['view'])){ $view = $link['view'] ; if (array_key_exists($view,$this->dbview) ){ $dbKey = $this->dbview[$view]; } else { $dbKey = false ; } if ( isset($link['virtuemart_'.$dbKey.'_id']) && $dbKey ){ $this->menu['virtuemart_'.$dbKey.'_id'][ $link['virtuemart_'.$dbKey.'_id'] ] = $item->id; } elseif ($home == $view ) continue; else $this->menu[$view]= $item->id ; if ($item->home === 1) { $home = $view; $homeid = $item->id; } } else { vmdebug('my item with empty $link["view"]',$item); vmError('$link["view"] is empty'); } } } // init unsetted views to defaut front view or nothing(prevent duplicates routes) if ( !isset( $this->menu['virtuemart']) ) { if (isset ($this->menu['virtuemart_category_id'][0]) ) { $this->menu['virtuemart'] = $this->menu['virtuemart_category_id'][0] ; }else $this->menu['virtuemart'] = $homeid; } // if ( !isset( $this->menu['manufacturer']) ) { // $this->menu['manufacturer'] = $this->menu['virtuemart'] ; // } // if ( !isset( $this->menu['vendor']) ) { // $this->menu['manufacturer'] = $this->menu['virtuemart'] ; // } } /* Set $this->menu with the Item ID from Joomla Menus */ private function setMenuItemId(){ $app = JFactory::getApplication(); $menus = $app->getMenu('site'); $component = JComponentHelper::getComponent('com_virtuemart'); $items = $menus->getItems('componentid', $component->id); if(empty($items)){ vmWarn(JText::_('COM_VIRTUEMART_ASSIGN_VM_TO_MENU')); } else { // Search Virtuemart itemID in joomla menu foreach ($items as $item) { $view = $item->query['view'] ; if ($view=='virtuemart') $this->menu['virtuemart'] = $item->id; $dbKey = $this->dbview[$view]; if ( isset($item->query['virtuemart_'.$dbKey.'_id']) ) $this->menu['virtuemart_'.$dbKey.'_id'][ $item->query['virtuemart_'.$dbKey.'_id'] ] = $item->id; else $this->menu[$view]= $item->id ; } } // init unsetted views to defaut front view or nothing(prevent duplicates routes) if ( !isset( $this->menu['virtuemart'][0]) ) { $this->menu['virtuemart'][0] = null; } if ( !isset( $this->menu['manufacturer']) ) { $this->menu['manufacturer'] = $this->menu['virtuemart'][0] ; } } /* Set $this->activeMenu to current Item ID from Joomla Menus */ private function setActiveMenu(){ if ($this->activeMenu === null ) { //$menu = JSite::getMenu(); //$menu = JFactory::getApplication()->getMenu(); $app = JFactory::getApplication(); $menu = $app->getMenu('site'); if ($Itemid = JRequest::getInt('Itemid',0) ) { $menuItem = $menu->getItem($Itemid); } else { $menuItem = $menu->getActive(); } $this->activeMenu = new stdClass(); $this->activeMenu->view = (empty($menuItem->query['view'])) ? null : $menuItem->query['view']; $this->activeMenu->virtuemart_category_id = (empty($menuItem->query['virtuemart_category_id'])) ? 0 : $menuItem->query['virtuemart_category_id']; $this->activeMenu->virtuemart_product_id = (empty($menuItem->query['virtuemart_product_id'])) ? null : $menuItem->query['virtuemart_product_id']; $this->activeMenu->virtuemart_manufacturer_id = (empty($menuItem->query['virtuemart_manufacturer_id'])) ? null : $menuItem->query['virtuemart_manufacturer_id']; /* added in 208 */ $this->activeMenu->virtuemart_vendor_id = (empty($menuItem->query['virtuemart_vendor_id'])) ? null : $menuItem->query['virtuemart_vendor_id']; $this->activeMenu->Component = (empty($menuItem->component)) ? null : $menuItem->component; } } /* * Get language key or use $key in route */ public function lang($key) { if ($this->seo_translate ) { $jtext = (strtoupper( $key ) ); if ($this->Jlang->hasKey('COM_VIRTUEMART_SEF_'.$jtext) ){ //vmdebug('router lang translated '.$jtext); return JText::_('COM_VIRTUEMART_SEF_'.$jtext); } } //vmdebug('router lang '.$key); //falldown return $key; } /* * revert key or use $key in route */ public function getOrderingKey($key) { if ($this->seo_translate ) { if ($this->orderings == null) { $this->orderings = array( 'p.virtuemart_product_id'=> JText::_('COM_VIRTUEMART_SEF_PRODUCT_ID'), 'product_sku' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_SKU'), 'product_price' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_PRICE'), 'category_name' => JText::_('COM_VIRTUEMART_SEF_CATEGORY_NAME'), 'category_description'=> JText::_('COM_VIRTUEMART_SEF_CATEGORY_DESCRIPTION'), 'mf_name' => JText::_('COM_VIRTUEMART_SEF_MF_NAME'), 'product_s_desc' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_S_DESC'), 'product_desc' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_DESC'), 'product_weight' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_WEIGHT'), 'product_weight_uom'=> JText::_('COM_VIRTUEMART_SEF_PRODUCT_WEIGHT_UOM'), 'product_length' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_LENGTH'), 'product_width' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_WIDTH'), 'product_height' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_HEIGHT'), 'product_lwh_uom' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_LWH_UOM'), 'product_in_stock' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_IN_STOCK'), 'low_stock_notification'=> JText::_('COM_VIRTUEMART_SEF_LOW_STOCK_NOTIFICATION'), 'product_available_date'=> JText::_('COM_VIRTUEMART_SEF_PRODUCT_AVAILABLE_DATE'), 'product_availability' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_AVAILABILITY'), 'product_special' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_SPECIAL'), 'created_on' => JText::_('COM_VIRTUEMART_SEF_CREATED_ON'), // 'p.modified_on' => JText::_('COM_VIRTUEMART_SEF_MDATE'), 'product_name' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_NAME'), 'product_sales' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_SALES'), 'product_unit' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_UNIT'), 'product_packaging' => JText::_('COM_VIRTUEMART_SEF_PRODUCT_PACKAGING'), 'p.intnotes' => JText::_('COM_VIRTUEMART_SEF_INTNOTES'), 'ordering' => JText::_('COM_VIRTUEMART_SEF_ORDERING') ); } if ($result = array_search($key,$this->orderings )) { return $result; } } return $key; } /* * revert string key or use $key in route */ public function compareKey($string, $key) { if ($this->seo_translate ) { if (JText::_('COM_VIRTUEMART_SEF_'.$key) == $string ) { return true; } } if ($string == $key) return true; return false; } } // pure php no closing tag
naka211/amager
components/com_virtuemart/router.php
PHP
gpl-2.0
41,160
$:.unshift( "../lib" ) require 'capcode' require 'digest/md5' module Capcode OPAQUE = Digest::MD5.hexdigest( Time.now.to_s ) http_authentication( :type => :digest, :opaque => OPAQUE, :realm => "Private part", :routes => "/noauth/private" ) { { "greg" => "toto", "mu" => "maia" } } class Index < Route '/admin' def get # Basic HTTP Authentication http_authentication( :type => :digest, :opaque => OPAQUE, :realm => "Admin part" ) { { "greg" => "toto", "mu" => "maia" } } render "Welcome in admin part #{request.env['REMOTE_USER']}" end end class Noauth < Route '/noauth' def get render "You don't need any special authorization here !" end end class Private < Route '/noauth/private' def get render "Welcome in the private part #{request.env['REMOTE_USER']}" end end class Private2 < Route '/noauth/private/again' def get render "Welcome in the private/again part #{request.env['REMOTE_USER']}" end end end Capcode.run( )
glejeune/Capcode
examples/auth-digest.rb
Ruby
gpl-2.0
1,092
/** * Copyright 2010 Society for Health Information Systems Programmes, India (HISP India) * * This file is part of Hospital-core module. * * Hospital-core module is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * Hospital-core module is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Hospital-core module. If not, see <http://www.gnu.org/licenses/>. * **/ package org.openmrs.module.hospitalcore.db; import java.text.ParseException; import java.util.Date; import java.util.List; import java.util.Set; import org.openmrs.Concept; import org.openmrs.Encounter; import org.openmrs.Order; import org.openmrs.OrderType; import org.openmrs.Patient; import org.openmrs.Role; import org.openmrs.module.hospitalcore.form.RadiologyForm; import org.openmrs.module.hospitalcore.model.RadiologyDepartment; import org.openmrs.module.hospitalcore.model.RadiologyTest; import org.openmrs.module.hospitalcore.template.RadiologyTemplate; public interface RadiologyDAO { /** * Save radiology form * * @param form * @return */ public RadiologyForm saveRadiologyForm(RadiologyForm form); /** * Get radiology form by id * * @param id * @return */ public RadiologyForm getRadiologyFormById(Integer id); /** * Get radiology form be concept name * * @param concept * @return */ public List<RadiologyForm> getRadiologyForms(String conceptName); /** * Get all radiology form * * @return */ public List<RadiologyForm> getAllRadiologyForms(); /** * Delete radiology form * * @param form */ public void deleteRadiologyForm(RadiologyForm form); /** * Save radiology department * * @param department * @return */ public RadiologyDepartment saveRadiologyDepartment( RadiologyDepartment department); /** * Get radiology department by id * * @param id * @return */ public RadiologyDepartment getRadiologyDepartmentById(Integer id); /** * Delete a radiology department * * @param department */ public void deleteRadiologyDepartment(RadiologyDepartment department); /** * Get radiology department by role * * @param role * @return */ public RadiologyDepartment getRadiologyDepartmentByRole(Role role); /** * Find orders * * @param orderStartDate * @param orderType * @param tests * @param patients * @param page * @param pageSize * TODO * @return * @throws ParseException */ public List<Order> getOrders(Date orderStartDate, OrderType orderType, Set<Concept> tests, List<Patient> patients, int page, int pageSize) throws ParseException; /** * Count the number of found orders * * @param orderStartDate * @param orderType * @param tests * @param patients * @param page * @return * @throws ParseException */ public Integer countOrders(Date orderStartDate, OrderType orderType, Set<Concept> tests, List<Patient> patients) throws ParseException; /** * Save radiology test * * @param test * @return */ public RadiologyTest saveRadiologyTest(RadiologyTest test); /** * Get radiology test by id * * @param id * @return */ public RadiologyTest getRadiologyTestById(Integer id); /** * Delete a radiology test * * * @param test */ public void deleteRadiologyTest(RadiologyTest test); /** * Get all radiology tests * * @return */ public List<RadiologyTest> getAllRadiologyTests(); /** * Get radiology test by order * * @param order * @return */ public RadiologyTest getRadiologyTestByOrder(Order order); /** * Get radiology tests by date and status * * @param date * @param status * @return * @throws ParseException */ public List<RadiologyTest> getRadiologyTestsByDateAndStatus(Date date, String status) throws ParseException; /** * Get radiology tests * * @param date * @param status * @param concepts * @param page * TODO * @param pageSize * TODO * @return * @throws ParseException */ public List<RadiologyTest> getRadiologyTests(Date date, String status, Set<Concept> concepts, List<Patient> patients, int page, int pageSize) throws ParseException; /** * Get radiology tets by date * * @param date * @return * @throws ParseException */ public abstract List<RadiologyTest> getRadiologyTestsByDate(Date date) throws ParseException; /** * Get radiology tests by discontinued date * * @param date * @param concepts * @param patients * @param page * @param pageSize * * @return * @throws ParseException */ public List<RadiologyTest> getRadiologyTestsByDiscontinuedDate(Date date, Set<Concept> concepts, List<Patient> patients, int page, int pageSize) throws ParseException; /** * Count radiology tests by discontinued date * @param date * @param concepts * @param patients * @return * @throws ParseException */ public Integer countRadiologyTestsByDiscontinuedDate(Date date, Set<Concept> concepts, List<Patient> patients) throws ParseException; /** * Get radiology test by date and patient * * @param date * @param patient * @return * @throws ParseException */ public List<RadiologyTest> getRadiologyTestsByDateAndPatient(Date date, Patient patient) throws ParseException; /** * Get radiology test by encounter * @param ecnounter * @return */ public RadiologyTest getRadiologyTest(Encounter encounter); /** * Create concepts for xray default form */ public void createConceptsForXrayDefaultForm(); /** * * @param date * @param status * @param concepts * @param patients * @return * @throws ParseException */ public Integer countRadiologyTests(Date date, String status, Set<Concept> concepts, List<Patient> patients) throws ParseException; /** * Get Radiology Template by id * @param id * @return */ public RadiologyTemplate getRadiologyTemplate(Integer id); /** * Save Radiology Template * @param template * @return */ public RadiologyTemplate saveRadiologyTemplate(RadiologyTemplate template); /** * Get all Radiology templates * @return */ public List<RadiologyTemplate> getAllRadiologyTemplates(); /** * Delete radiology template * @param template */ public void deleteRadiologyTemplate(RadiologyTemplate template); /** * get Radiology Template by concept * @param concept * @return */ public List<RadiologyTemplate> getRadiologyTemplates(Concept concept); public List<RadiologyTest> getCompletedRadiologyTestsByPatient(Patient patient); }
kenyaehrs/hospitalcore
api/src/main/java/org/openmrs/module/hospitalcore/db/RadiologyDAO.java
Java
gpl-2.0
7,014
/* <<<<<<< HEAD * Copyright (c) 2008-2011 Atheros Communications Inc. ======= * Copyright (c) 2008-2009 Atheros Communications Inc. >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <linux/slab.h> <<<<<<< HEAD #include <linux/ath9k_platform.h> ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a #include "ath9k.h" static char *dev_info = "ath9k"; MODULE_AUTHOR("Atheros Communications"); MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards."); MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards"); MODULE_LICENSE("Dual BSD/GPL"); static unsigned int ath9k_debug = ATH_DBG_DEFAULT; module_param_named(debug, ath9k_debug, uint, 0); MODULE_PARM_DESC(debug, "Debugging mask"); <<<<<<< HEAD int ath9k_modparam_nohwcrypt; module_param_named(nohwcrypt, ath9k_modparam_nohwcrypt, int, 0444); MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); int led_blink; module_param_named(blink, led_blink, int, 0444); MODULE_PARM_DESC(blink, "Enable LED blink on activity"); static int ath9k_btcoex_enable; module_param_named(btcoex_enable, ath9k_btcoex_enable, int, 0444); MODULE_PARM_DESC(btcoex_enable, "Enable wifi-BT coexistence"); bool is_ath9k_unloaded; /* We use the hw_value as an index into our private channel structure */ #define CHAN2G(_freq, _idx) { \ .band = IEEE80211_BAND_2GHZ, \ ======= int modparam_nohwcrypt; module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444); MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); /* We use the hw_value as an index into our private channel structure */ #define CHAN2G(_freq, _idx) { \ >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a .center_freq = (_freq), \ .hw_value = (_idx), \ .max_power = 20, \ } #define CHAN5G(_freq, _idx) { \ .band = IEEE80211_BAND_5GHZ, \ .center_freq = (_freq), \ .hw_value = (_idx), \ .max_power = 20, \ } /* Some 2 GHz radios are actually tunable on 2312-2732 * on 5 MHz steps, we support the channels which we know * we have calibration data for all cards though to make * this static */ <<<<<<< HEAD static const struct ieee80211_channel ath9k_2ghz_chantable[] = { ======= static struct ieee80211_channel ath9k_2ghz_chantable[] = { >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a CHAN2G(2412, 0), /* Channel 1 */ CHAN2G(2417, 1), /* Channel 2 */ CHAN2G(2422, 2), /* Channel 3 */ CHAN2G(2427, 3), /* Channel 4 */ CHAN2G(2432, 4), /* Channel 5 */ CHAN2G(2437, 5), /* Channel 6 */ CHAN2G(2442, 6), /* Channel 7 */ CHAN2G(2447, 7), /* Channel 8 */ CHAN2G(2452, 8), /* Channel 9 */ CHAN2G(2457, 9), /* Channel 10 */ CHAN2G(2462, 10), /* Channel 11 */ CHAN2G(2467, 11), /* Channel 12 */ CHAN2G(2472, 12), /* Channel 13 */ CHAN2G(2484, 13), /* Channel 14 */ }; /* Some 5 GHz radios are actually tunable on XXXX-YYYY * on 5 MHz steps, we support the channels which we know * we have calibration data for all cards though to make * this static */ <<<<<<< HEAD static const struct ieee80211_channel ath9k_5ghz_chantable[] = { ======= static struct ieee80211_channel ath9k_5ghz_chantable[] = { >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* _We_ call this UNII 1 */ CHAN5G(5180, 14), /* Channel 36 */ CHAN5G(5200, 15), /* Channel 40 */ CHAN5G(5220, 16), /* Channel 44 */ CHAN5G(5240, 17), /* Channel 48 */ /* _We_ call this UNII 2 */ CHAN5G(5260, 18), /* Channel 52 */ CHAN5G(5280, 19), /* Channel 56 */ CHAN5G(5300, 20), /* Channel 60 */ CHAN5G(5320, 21), /* Channel 64 */ /* _We_ call this "Middle band" */ CHAN5G(5500, 22), /* Channel 100 */ CHAN5G(5520, 23), /* Channel 104 */ CHAN5G(5540, 24), /* Channel 108 */ CHAN5G(5560, 25), /* Channel 112 */ CHAN5G(5580, 26), /* Channel 116 */ CHAN5G(5600, 27), /* Channel 120 */ CHAN5G(5620, 28), /* Channel 124 */ CHAN5G(5640, 29), /* Channel 128 */ CHAN5G(5660, 30), /* Channel 132 */ CHAN5G(5680, 31), /* Channel 136 */ CHAN5G(5700, 32), /* Channel 140 */ /* _We_ call this UNII 3 */ CHAN5G(5745, 33), /* Channel 149 */ CHAN5G(5765, 34), /* Channel 153 */ CHAN5G(5785, 35), /* Channel 157 */ CHAN5G(5805, 36), /* Channel 161 */ CHAN5G(5825, 37), /* Channel 165 */ }; /* Atheros hardware rate code addition for short premble */ #define SHPCHECK(__hw_rate, __flags) \ ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04 ) : 0) #define RATE(_bitrate, _hw_rate, _flags) { \ .bitrate = (_bitrate), \ .flags = (_flags), \ .hw_value = (_hw_rate), \ .hw_value_short = (SHPCHECK(_hw_rate, _flags)) \ } static struct ieee80211_rate ath9k_legacy_rates[] = { RATE(10, 0x1b, 0), RATE(20, 0x1a, IEEE80211_RATE_SHORT_PREAMBLE), RATE(55, 0x19, IEEE80211_RATE_SHORT_PREAMBLE), RATE(110, 0x18, IEEE80211_RATE_SHORT_PREAMBLE), RATE(60, 0x0b, 0), RATE(90, 0x0f, 0), RATE(120, 0x0a, 0), RATE(180, 0x0e, 0), RATE(240, 0x09, 0), RATE(360, 0x0d, 0), RATE(480, 0x08, 0), RATE(540, 0x0c, 0), }; <<<<<<< HEAD #ifdef CONFIG_MAC80211_LEDS static const struct ieee80211_tpt_blink ath9k_tpt_blink[] = { { .throughput = 0 * 1024, .blink_time = 334 }, { .throughput = 1 * 1024, .blink_time = 260 }, { .throughput = 5 * 1024, .blink_time = 220 }, { .throughput = 10 * 1024, .blink_time = 190 }, { .throughput = 20 * 1024, .blink_time = 170 }, { .throughput = 50 * 1024, .blink_time = 150 }, { .throughput = 70 * 1024, .blink_time = 130 }, { .throughput = 100 * 1024, .blink_time = 110 }, { .throughput = 200 * 1024, .blink_time = 80 }, { .throughput = 300 * 1024, .blink_time = 50 }, }; #endif ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a static void ath9k_deinit_softc(struct ath_softc *sc); /* * Read and write, they both share the same lock. We do this to serialize * reads and writes on Atheros 802.11n PCI devices only. This is required * as the FIFO on these devices can only accept sanely 2 requests. */ static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) { struct ath_hw *ah = (struct ath_hw *) hw_priv; struct ath_common *common = ath9k_hw_common(ah); struct ath_softc *sc = (struct ath_softc *) common->priv; if (ah->config.serialize_regmode == SER_REG_MODE_ON) { unsigned long flags; spin_lock_irqsave(&sc->sc_serial_rw, flags); iowrite32(val, sc->mem + reg_offset); spin_unlock_irqrestore(&sc->sc_serial_rw, flags); } else iowrite32(val, sc->mem + reg_offset); } static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset) { struct ath_hw *ah = (struct ath_hw *) hw_priv; struct ath_common *common = ath9k_hw_common(ah); struct ath_softc *sc = (struct ath_softc *) common->priv; u32 val; if (ah->config.serialize_regmode == SER_REG_MODE_ON) { unsigned long flags; spin_lock_irqsave(&sc->sc_serial_rw, flags); val = ioread32(sc->mem + reg_offset); spin_unlock_irqrestore(&sc->sc_serial_rw, flags); } else val = ioread32(sc->mem + reg_offset); return val; } <<<<<<< HEAD static unsigned int ath9k_reg_rmw(void *hw_priv, u32 reg_offset, u32 set, u32 clr) { struct ath_hw *ah = (struct ath_hw *) hw_priv; struct ath_common *common = ath9k_hw_common(ah); struct ath_softc *sc = (struct ath_softc *) common->priv; unsigned long uninitialized_var(flags); u32 val; if (ah->config.serialize_regmode == SER_REG_MODE_ON) spin_lock_irqsave(&sc->sc_serial_rw, flags); val = ioread32(sc->mem + reg_offset); val &= ~clr; val |= set; iowrite32(val, sc->mem + reg_offset); if (ah->config.serialize_regmode == SER_REG_MODE_ON) spin_unlock_irqrestore(&sc->sc_serial_rw, flags); return val; ======= static const struct ath_ops ath9k_common_ops = { .read = ath9k_ioread32, .write = ath9k_iowrite32, }; static int count_streams(unsigned int chainmask, int max) { int streams = 0; do { if (++streams == max) break; } while ((chainmask = chainmask & (chainmask - 1))); return streams; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a } /**************************/ /* Initialization */ /**************************/ static void setup_ht_cap(struct ath_softc *sc, struct ieee80211_sta_ht_cap *ht_info) { struct ath_hw *ah = sc->sc_ah; struct ath_common *common = ath9k_hw_common(ah); u8 tx_streams, rx_streams; int i, max_streams; ht_info->ht_supported = true; ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | IEEE80211_HT_CAP_SM_PS | IEEE80211_HT_CAP_SGI_40 | IEEE80211_HT_CAP_DSSSCCK40; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_LDPC) ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING; <<<<<<< HEAD if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) ht_info->cap |= IEEE80211_HT_CAP_SGI_20; ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; if (AR_SREV_9485(ah)) max_streams = 1; else if (AR_SREV_9300_20_OR_LATER(ah)) ======= ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; if (AR_SREV_9300_20_OR_LATER(ah)) >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a max_streams = 3; else max_streams = 2; <<<<<<< HEAD if (AR_SREV_9280_20_OR_LATER(ah)) { ======= if (AR_SREV_9280_10_OR_LATER(ah)) { >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a if (max_streams >= 2) ht_info->cap |= IEEE80211_HT_CAP_TX_STBC; ht_info->cap |= (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT); } /* set up supported mcs set */ memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); <<<<<<< HEAD tx_streams = ath9k_cmn_count_streams(common->tx_chainmask, max_streams); rx_streams = ath9k_cmn_count_streams(common->rx_chainmask, max_streams); ath_dbg(common, ATH_DBG_CONFIG, "TX streams %d, RX streams: %d\n", tx_streams, rx_streams); ======= tx_streams = count_streams(common->tx_chainmask, max_streams); rx_streams = count_streams(common->rx_chainmask, max_streams); ath_print(common, ATH_DBG_CONFIG, "TX streams %d, RX streams: %d\n", tx_streams, rx_streams); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a if (tx_streams != rx_streams) { ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; ht_info->mcs.tx_params |= ((tx_streams - 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); } for (i = 0; i < rx_streams; i++) ht_info->mcs.rx_mask[i] = 0xff; ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED; } static int ath9k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) { struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); <<<<<<< HEAD struct ath_softc *sc = hw->priv; ======= struct ath_wiphy *aphy = hw->priv; struct ath_softc *sc = aphy->sc; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a struct ath_regulatory *reg = ath9k_hw_regulatory(sc->sc_ah); return ath_reg_notifier_apply(wiphy, request, reg); } /* * This function will allocate both the DMA descriptor structure, and the * buffers it contains. These are used to contain the descriptors used * by the system. */ int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd, struct list_head *head, const char *name, int nbuf, int ndesc, bool is_tx) { #define DS2PHYS(_dd, _ds) \ ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc)) #define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0) #define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096) struct ath_common *common = ath9k_hw_common(sc->sc_ah); u8 *ds; struct ath_buf *bf; int i, bsize, error, desc_len; <<<<<<< HEAD ath_dbg(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n", name, nbuf, ndesc); ======= ath_print(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n", name, nbuf, ndesc); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a INIT_LIST_HEAD(head); if (is_tx) desc_len = sc->sc_ah->caps.tx_desc_len; else desc_len = sizeof(struct ath_desc); /* ath_desc must be a multiple of DWORDs */ if ((desc_len % 4) != 0) { <<<<<<< HEAD ath_err(common, "ath_desc not DWORD aligned\n"); ======= ath_print(common, ATH_DBG_FATAL, "ath_desc not DWORD aligned\n"); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a BUG_ON((desc_len % 4) != 0); error = -ENOMEM; goto fail; } dd->dd_desc_len = desc_len * nbuf * ndesc; /* * Need additional DMA memory because we can't use * descriptors that cross the 4K page boundary. Assume * one skipped descriptor per 4K page. */ if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { u32 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len); u32 dma_len; while (ndesc_skipped) { dma_len = ndesc_skipped * desc_len; dd->dd_desc_len += dma_len; ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len); } } /* allocate descriptors */ dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len, &dd->dd_desc_paddr, GFP_KERNEL); if (dd->dd_desc == NULL) { error = -ENOMEM; goto fail; } ds = (u8 *) dd->dd_desc; <<<<<<< HEAD ath_dbg(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", name, ds, (u32) dd->dd_desc_len, ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); ======= ath_print(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", name, ds, (u32) dd->dd_desc_len, ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* allocate buffers */ bsize = sizeof(struct ath_buf) * nbuf; bf = kzalloc(bsize, GFP_KERNEL); if (bf == NULL) { error = -ENOMEM; goto fail2; } dd->dd_bufptr = bf; for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { bf->bf_desc = ds; bf->bf_daddr = DS2PHYS(dd, ds); if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { /* * Skip descriptor addresses which can cause 4KB * boundary crossing (addr + length) with a 32 dword * descriptor fetch. */ while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { BUG_ON((caddr_t) bf->bf_desc >= ((caddr_t) dd->dd_desc + dd->dd_desc_len)); ds += (desc_len * ndesc); bf->bf_desc = ds; bf->bf_daddr = DS2PHYS(dd, ds); } } list_add_tail(&bf->list, head); } return 0; fail2: dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr); fail: memset(dd, 0, sizeof(*dd)); return error; #undef ATH_DESC_4KB_BOUND_CHECK #undef ATH_DESC_4KB_BOUND_NUM_SKIPPED #undef DS2PHYS } <<<<<<< HEAD void ath9k_init_crypto(struct ath_softc *sc) ======= static void ath9k_init_crypto(struct ath_softc *sc) >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a { struct ath_common *common = ath9k_hw_common(sc->sc_ah); int i = 0; /* Get the hardware key cache size. */ <<<<<<< HEAD common->keymax = AR_KEYTABLE_SIZE; ======= common->keymax = sc->sc_ah->caps.keycache_size; if (common->keymax > ATH_KEYMAX) { ath_print(common, ATH_DBG_ANY, "Warning, using only %u entries in %u key cache\n", ATH_KEYMAX, common->keymax); common->keymax = ATH_KEYMAX; } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* * Reset the key cache since some parts do not * reset the contents on initial power up. */ for (i = 0; i < common->keymax; i++) <<<<<<< HEAD ath_hw_keyreset(common, (u16) i); ======= ath9k_hw_keyreset(sc->sc_ah, (u16) i); if (ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER, ATH9K_CIPHER_TKIP, NULL)) { /* * Whether we should enable h/w TKIP MIC. * XXX: if we don't support WME TKIP MIC, then we wouldn't * report WMM capable, so it's always safe to turn on * TKIP MIC in this case. */ ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC, 0, 1, NULL); } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* * Check whether the separate key cache entries * are required to handle both tx+rx MIC keys. * With split mic keys the number of stations is limited * to 27 otherwise 59. */ <<<<<<< HEAD if (sc->sc_ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) common->crypt_caps |= ATH_CRYPT_CAP_MIC_COMBINED; ======= if (ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER, ATH9K_CIPHER_TKIP, NULL) && ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER, ATH9K_CIPHER_MIC, NULL) && ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_TKIP_SPLIT, 0, NULL)) common->splitmic = 1; /* turn on mcast key search if possible */ if (!ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL)) (void)ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_MCAST_KEYSRCH, 1, 1, NULL); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a } static int ath9k_init_btcoex(struct ath_softc *sc) { <<<<<<< HEAD struct ath_txq *txq; int r; ======= int r, qnum; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a switch (sc->sc_ah->btcoex_hw.scheme) { case ATH_BTCOEX_CFG_NONE: break; case ATH_BTCOEX_CFG_2WIRE: ath9k_hw_btcoex_init_2wire(sc->sc_ah); break; case ATH_BTCOEX_CFG_3WIRE: ath9k_hw_btcoex_init_3wire(sc->sc_ah); r = ath_init_btcoex_timer(sc); if (r) return -1; <<<<<<< HEAD txq = sc->tx.txq_map[WME_AC_BE]; ath9k_hw_init_btcoex_hw(sc->sc_ah, txq->axq_qnum); ======= qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE); ath9k_hw_init_btcoex_hw(sc->sc_ah, qnum); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW; break; default: WARN_ON(1); break; } return 0; } static int ath9k_init_queues(struct ath_softc *sc) { <<<<<<< HEAD int i = 0; sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah); sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); ======= struct ath_common *common = ath9k_hw_common(sc->sc_ah); int i = 0; for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++) sc->tx.hwq_map[i] = -1; sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah); if (sc->beacon.beaconq == -1) { ath_print(common, ATH_DBG_FATAL, "Unable to setup a beacon xmit queue\n"); goto err; } sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); if (sc->beacon.cabq == NULL) { ath_print(common, ATH_DBG_FATAL, "Unable to setup CAB xmit queue\n"); goto err; } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a sc->config.cabqReadytime = ATH_CABQ_READY_TIME; ath_cabq_update(sc); <<<<<<< HEAD for (i = 0; i < WME_NUM_AC; i++) { sc->tx.txq_map[i] = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, i); sc->tx.txq_map[i]->mac80211_qnum = i; } return 0; } static int ath9k_init_channels_rates(struct ath_softc *sc) { void *channels; BUILD_BUG_ON(ARRAY_SIZE(ath9k_2ghz_chantable) + ARRAY_SIZE(ath9k_5ghz_chantable) != ATH9K_NUM_CHANNELS); if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) { channels = kmemdup(ath9k_2ghz_chantable, sizeof(ath9k_2ghz_chantable), GFP_KERNEL); if (!channels) return -ENOMEM; sc->sbands[IEEE80211_BAND_2GHZ].channels = channels; ======= if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) { ath_print(common, ATH_DBG_FATAL, "Unable to setup xmit queue for BK traffic\n"); goto err; } if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) { ath_print(common, ATH_DBG_FATAL, "Unable to setup xmit queue for BE traffic\n"); goto err; } if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) { ath_print(common, ATH_DBG_FATAL, "Unable to setup xmit queue for VI traffic\n"); goto err; } if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) { ath_print(common, ATH_DBG_FATAL, "Unable to setup xmit queue for VO traffic\n"); goto err; } return 0; err: for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) if (ATH_TXQ_SETUP(sc, i)) ath_tx_cleanupq(sc, &sc->tx.txq[i]); return -EIO; } static void ath9k_init_channels_rates(struct ath_softc *sc) { if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) { sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; sc->sbands[IEEE80211_BAND_2GHZ].n_channels = ARRAY_SIZE(ath9k_2ghz_chantable); sc->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates; sc->sbands[IEEE80211_BAND_2GHZ].n_bitrates = ARRAY_SIZE(ath9k_legacy_rates); } <<<<<<< HEAD if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) { channels = kmemdup(ath9k_5ghz_chantable, sizeof(ath9k_5ghz_chantable), GFP_KERNEL); if (!channels) { if (sc->sbands[IEEE80211_BAND_2GHZ].channels) kfree(sc->sbands[IEEE80211_BAND_2GHZ].channels); return -ENOMEM; } sc->sbands[IEEE80211_BAND_5GHZ].channels = channels; ======= if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) { sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; sc->sbands[IEEE80211_BAND_5GHZ].n_channels = ARRAY_SIZE(ath9k_5ghz_chantable); sc->sbands[IEEE80211_BAND_5GHZ].bitrates = ath9k_legacy_rates + 4; sc->sbands[IEEE80211_BAND_5GHZ].n_bitrates = ARRAY_SIZE(ath9k_legacy_rates) - 4; } <<<<<<< HEAD return 0; ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a } static void ath9k_init_misc(struct ath_softc *sc) { struct ath_common *common = ath9k_hw_common(sc->sc_ah); int i = 0; <<<<<<< HEAD ======= common->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a setup_timer(&common->ani.timer, ath_ani_calibrate, (unsigned long)sc); sc->config.txpowlimit = ATH_TXPOWER_MAX; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) { sc->sc_flags |= SC_OP_TXAGGR; sc->sc_flags |= SC_OP_RXAGGR; } common->tx_chainmask = sc->sc_ah->caps.tx_chainmask; common->rx_chainmask = sc->sc_ah->caps.rx_chainmask; ath9k_hw_set_diversity(sc->sc_ah, true); sc->rx.defant = ath9k_hw_getdefantenna(sc->sc_ah); <<<<<<< HEAD memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN); sc->beacon.slottime = ATH9K_SLOT_TIME_9; for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) sc->beacon.bslot[i] = NULL; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) sc->ant_comb.count = ATH_ANT_DIV_COMB_INIT_COUNT; ======= if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN); sc->beacon.slottime = ATH9K_SLOT_TIME_9; for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { sc->beacon.bslot[i] = NULL; sc->beacon.bslot_aphy[i] = NULL; } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a } static int ath9k_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid, const struct ath_bus_ops *bus_ops) { <<<<<<< HEAD struct ath9k_platform_data *pdata = sc->dev->platform_data; ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a struct ath_hw *ah = NULL; struct ath_common *common; int ret = 0, i; int csz = 0; ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL); if (!ah) return -ENOMEM; <<<<<<< HEAD ah->hw = sc->hw; ah->hw_version.devid = devid; ah->hw_version.subsysid = subsysid; ah->reg_ops.read = ath9k_ioread32; ah->reg_ops.write = ath9k_iowrite32; ah->reg_ops.rmw = ath9k_reg_rmw; sc->sc_ah = ah; if (!pdata) { ah->ah_flags |= AH_USE_EEPROM; sc->sc_ah->led_pin = -1; } else { sc->sc_ah->gpio_mask = pdata->gpio_mask; sc->sc_ah->gpio_val = pdata->gpio_val; sc->sc_ah->led_pin = pdata->led_pin; ah->is_clk_25mhz = pdata->is_clk_25mhz; } common = ath9k_hw_common(ah); common->ops = &ah->reg_ops; ======= ah->hw_version.devid = devid; ah->hw_version.subsysid = subsysid; sc->sc_ah = ah; common = ath9k_hw_common(ah); common->ops = &ath9k_common_ops; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a common->bus_ops = bus_ops; common->ah = ah; common->hw = sc->hw; common->priv = sc; common->debug_mask = ath9k_debug; <<<<<<< HEAD common->btcoex_enabled = ath9k_btcoex_enable == 1; spin_lock_init(&common->cc_lock); spin_lock_init(&sc->sc_serial_rw); spin_lock_init(&sc->sc_pm_lock); mutex_init(&sc->mutex); #ifdef CONFIG_ATH9K_DEBUGFS spin_lock_init(&sc->nodes_lock); INIT_LIST_HEAD(&sc->nodes); #endif ======= spin_lock_init(&sc->wiphy_lock); spin_lock_init(&sc->sc_resetlock); spin_lock_init(&sc->sc_serial_rw); spin_lock_init(&sc->sc_pm_lock); mutex_init(&sc->mutex); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc); tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet, (unsigned long)sc); /* * Cache line size is used to size and align various * structures used to communicate with the hardware. */ ath_read_cachesize(common, &csz); common->cachelsz = csz << 2; /* convert to bytes */ /* Initializes the hardware for all supported chipsets */ ret = ath9k_hw_init(ah); if (ret) goto err_hw; <<<<<<< HEAD if (pdata && pdata->macaddr) memcpy(common->macaddr, pdata->macaddr, ETH_ALEN); ======= ret = ath9k_init_debug(ah); if (ret) { ath_print(common, ATH_DBG_FATAL, "Unable to create debugfs files\n"); goto err_debug; } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ret = ath9k_init_queues(sc); if (ret) goto err_queues; ret = ath9k_init_btcoex(sc); if (ret) goto err_btcoex; <<<<<<< HEAD ret = ath9k_init_channels_rates(sc); if (ret) goto err_btcoex; ath9k_init_crypto(sc); ======= ath9k_init_crypto(sc); ath9k_init_channels_rates(sc); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ath9k_init_misc(sc); return 0; err_btcoex: for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) if (ATH_TXQ_SETUP(sc, i)) ath_tx_cleanupq(sc, &sc->tx.txq[i]); err_queues: <<<<<<< HEAD ath9k_hw_deinit(ah); err_hw: ======= ath9k_exit_debug(ah); err_debug: ath9k_hw_deinit(ah); err_hw: tasklet_kill(&sc->intr_tq); tasklet_kill(&sc->bcon_tasklet); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a kfree(ah); sc->sc_ah = NULL; return ret; } <<<<<<< HEAD static void ath9k_init_band_txpower(struct ath_softc *sc, int band) { struct ieee80211_supported_band *sband; struct ieee80211_channel *chan; struct ath_hw *ah = sc->sc_ah; struct ath_regulatory *reg = ath9k_hw_regulatory(ah); int i; sband = &sc->sbands[band]; for (i = 0; i < sband->n_channels; i++) { chan = &sband->channels[i]; ah->curchan = &ah->channels[chan->hw_value]; ath9k_cmn_update_ichannel(ah->curchan, chan, NL80211_CHAN_HT20); ath9k_hw_set_txpowerlimit(ah, MAX_RATE_POWER, true); chan->max_power = reg->max_power_level / 2; } } static void ath9k_init_txpower_limits(struct ath_softc *sc) { struct ath_hw *ah = sc->sc_ah; struct ath_common *common = ath9k_hw_common(sc->sc_ah); struct ath9k_channel *curchan = ah->curchan; ah->txchainmask = common->tx_chainmask; if (ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) ath9k_init_band_txpower(sc, IEEE80211_BAND_2GHZ); if (ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) ath9k_init_band_txpower(sc, IEEE80211_BAND_5GHZ); ah->curchan = curchan; } ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) { struct ath_common *common = ath9k_hw_common(sc->sc_ah); hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_SUPPORTS_PS | IEEE80211_HW_PS_NULLFUNC_STACK | IEEE80211_HW_SPECTRUM_MGMT | IEEE80211_HW_REPORTS_TX_ACK_STATUS; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION; <<<<<<< HEAD if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || ath9k_modparam_nohwcrypt) hw->flags |= IEEE80211_HW_MFP_CAPABLE; hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_P2P_GO) | BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_AP) | BIT(NL80211_IFTYPE_WDS) | ======= if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt) hw->flags |= IEEE80211_HW_MFP_CAPABLE; hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_AP) | >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_MESH_POINT); <<<<<<< HEAD if (AR_SREV_5416(sc->sc_ah)) hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; ======= hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a hw->queues = 4; hw->max_rates = 4; hw->channel_change_time = 5000; hw->max_listen_interval = 10; hw->max_rate_tries = 10; hw->sta_data_size = sizeof(struct ath_node); hw->vif_data_size = sizeof(struct ath_vif); <<<<<<< HEAD #ifdef CONFIG_ATH9K_RATE_CONTROL hw->rate_control_algorithm = "ath9k_rate_control"; #endif if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ]; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) ======= hw->rate_control_algorithm = "ath9k_rate_control"; if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &sc->sbands[IEEE80211_BAND_2GHZ]; if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &sc->sbands[IEEE80211_BAND_5GHZ]; if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) { <<<<<<< HEAD if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap); if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) ======= if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap); if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap); } SET_IEEE80211_PERM_ADDR(hw, common->macaddr); } int ath9k_init_device(u16 devid, struct ath_softc *sc, u16 subsysid, const struct ath_bus_ops *bus_ops) { struct ieee80211_hw *hw = sc->hw; struct ath_common *common; struct ath_hw *ah; int error = 0; struct ath_regulatory *reg; /* Bring up device */ error = ath9k_init_softc(devid, sc, subsysid, bus_ops); if (error != 0) goto error_init; ah = sc->sc_ah; common = ath9k_hw_common(ah); ath9k_set_hw_capab(sc, hw); /* Initialize regulatory */ error = ath_regd_init(&common->regulatory, sc->hw->wiphy, ath9k_reg_notifier); if (error) goto error_regd; reg = &common->regulatory; /* Setup TX DMA */ error = ath_tx_init(sc, ATH_TXBUF); if (error != 0) goto error_tx; /* Setup RX DMA */ error = ath_rx_init(sc, ATH_RXBUF); if (error != 0) goto error_rx; <<<<<<< HEAD ath9k_init_txpower_limits(sc); #ifdef CONFIG_MAC80211_LEDS /* must be initialized before ieee80211_register_hw */ sc->led_cdev.default_trigger = ieee80211_create_tpt_led_trigger(sc->hw, IEEE80211_TPT_LEDTRIG_FL_RADIO, ath9k_tpt_blink, ARRAY_SIZE(ath9k_tpt_blink)); #endif ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* Register with mac80211 */ error = ieee80211_register_hw(hw); if (error) goto error_register; <<<<<<< HEAD error = ath9k_init_debug(ah); if (error) { ath_err(common, "Unable to create debugfs files\n"); goto error_world; } ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a /* Handle world regulatory */ if (!ath_is_world_regd(reg)) { error = regulatory_hint(hw->wiphy, reg->alpha2); if (error) goto error_world; } <<<<<<< HEAD INIT_WORK(&sc->hw_check_work, ath_hw_check); INIT_WORK(&sc->paprd_work, ath_paprd_calibrate); INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work); sc->last_rssi = ATH_RSSI_DUMMY_MARKER; ======= INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work); INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work); sc->wiphy_scheduler_int = msecs_to_jiffies(500); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ath_init_leds(sc); ath_start_rfkill_poll(sc); return 0; error_world: ieee80211_unregister_hw(hw); error_register: ath_rx_cleanup(sc); error_rx: ath_tx_cleanup(sc); error_tx: /* Nothing */ error_regd: ath9k_deinit_softc(sc); error_init: return error; } /*****************************/ /* De-Initialization */ /*****************************/ static void ath9k_deinit_softc(struct ath_softc *sc) { int i = 0; <<<<<<< HEAD if (sc->sbands[IEEE80211_BAND_2GHZ].channels) kfree(sc->sbands[IEEE80211_BAND_2GHZ].channels); if (sc->sbands[IEEE80211_BAND_5GHZ].channels) kfree(sc->sbands[IEEE80211_BAND_5GHZ].channels); ======= >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a if ((sc->btcoex.no_stomp_timer) && sc->sc_ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE) ath_gen_timer_free(sc->sc_ah, sc->btcoex.no_stomp_timer); for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) if (ATH_TXQ_SETUP(sc, i)) ath_tx_cleanupq(sc, &sc->tx.txq[i]); <<<<<<< HEAD ath9k_hw_deinit(sc->sc_ah); ======= ath9k_exit_debug(sc->sc_ah); ath9k_hw_deinit(sc->sc_ah); tasklet_kill(&sc->intr_tq); tasklet_kill(&sc->bcon_tasklet); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a kfree(sc->sc_ah); sc->sc_ah = NULL; } void ath9k_deinit_device(struct ath_softc *sc) { struct ieee80211_hw *hw = sc->hw; <<<<<<< HEAD ======= int i = 0; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ath9k_ps_wakeup(sc); wiphy_rfkill_stop_polling(sc->hw->wiphy); ath_deinit_leds(sc); <<<<<<< HEAD ath9k_ps_restore(sc); ======= for (i = 0; i < sc->num_sec_wiphy; i++) { struct ath_wiphy *aphy = sc->sec_wiphy[i]; if (aphy == NULL) continue; sc->sec_wiphy[i] = NULL; ieee80211_unregister_hw(aphy->hw); ieee80211_free_hw(aphy->hw); } kfree(sc->sec_wiphy); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ieee80211_unregister_hw(hw); ath_rx_cleanup(sc); ath_tx_cleanup(sc); ath9k_deinit_softc(sc); } void ath_descdma_cleanup(struct ath_softc *sc, struct ath_descdma *dd, struct list_head *head) { dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc, dd->dd_desc_paddr); INIT_LIST_HEAD(head); kfree(dd->dd_bufptr); memset(dd, 0, sizeof(*dd)); } /************************/ /* Module Hooks */ /************************/ static int __init ath9k_init(void) { int error; /* Register rate control algorithm */ error = ath_rate_control_register(); if (error != 0) { printk(KERN_ERR "ath9k: Unable to register rate control " "algorithm: %d\n", error); goto err_out; } <<<<<<< HEAD ======= error = ath9k_debug_create_root(); if (error) { printk(KERN_ERR "ath9k: Unable to create debugfs root: %d\n", error); goto err_rate_unregister; } >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a error = ath_pci_init(); if (error < 0) { printk(KERN_ERR "ath9k: No PCI devices found, driver not installed.\n"); error = -ENODEV; <<<<<<< HEAD goto err_rate_unregister; ======= goto err_remove_root; >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a } error = ath_ahb_init(); if (error < 0) { error = -ENODEV; goto err_pci_exit; } return 0; err_pci_exit: ath_pci_exit(); <<<<<<< HEAD ======= err_remove_root: ath9k_debug_remove_root(); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a err_rate_unregister: ath_rate_control_unregister(); err_out: return error; } module_init(ath9k_init); static void __exit ath9k_exit(void) { <<<<<<< HEAD is_ath9k_unloaded = true; ath_ahb_exit(); ath_pci_exit(); ======= ath_ahb_exit(); ath_pci_exit(); ath9k_debug_remove_root(); >>>>>>> 296c66da8a02d52243f45b80521febece5ed498a ath_rate_control_unregister(); printk(KERN_INFO "%s: Driver unloaded\n", dev_info); } module_exit(ath9k_exit);
Core2idiot/Kernel-Samsung-3.0...-
drivers/net/wireless/ath/ath9k/init.c
C
gpl-2.0
35,968
<?php /** * Disable error reporting * * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging */ error_reporting(0); /** Set ABSPATH for execution */ define( 'ABSPATH', dirname(dirname(__FILE__)) . '/' ); define( 'WPINC', 'wp-includes' ); /** * @ignore */ function __() {} /** * @ignore */ function _x() {} /** * @ignore */ function add_filter() {} /** * @ignore */ function esc_attr() {} /** * @ignore */ function apply_filters() {} /** * @ignore */ function get_option() {} /** * @ignore */ function is_lighttpd_before_150() {} /** * @ignore */ function add_action() {} /** * @ignore */ function did_action() {} /** * @ignore */ function do_action_ref_array() {} /** * @ignore */ function get_bloginfo() {} /** * @ignore */ function is_admin() {return true;} /** * @ignore */ function site_url() {} /** * @ignore */ function admin_url() {} /** * @ignore */ function home_url() {} /** * @ignore */ function includes_url() {} /** * @ignore */ function wp_guess_url() {} if ( ! function_exists( 'json_encode' ) ) : /** * @ignore */ function json_encode() {} endif; function get_file($path) { if ( function_exists('realpath') ) $path = realpath($path); if ( ! $path || ! @is_file($path) ) return ''; return @file_get_contents($path); } $load = $_GET['load']; if ( is_array( $load ) ) $load = implode( '', $load ); $load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load ); $load = array_unique( explode( ',', $load ) ); if ( empty($load) ) exit; require(ABSPATH . WPINC . '/script-loader.php'); require(ABSPATH . WPINC . '/version.php'); $compress = ( isset($_GET['c']) && $_GET['c'] ); $force_gzip = ( $compress && 'gzip' == $_GET['c'] ); $expires_offset = 31536000; // 1 year $out = ''; $wp_scripts = new WP_Scripts(); wp_default_scripts($wp_scripts); foreach( $load as $handle ) { if ( !array_key_exists($handle, $wp_scripts->registered) ) continue; $path = ABSPATH . $wp_scripts->registered[$handle]->src; $out .= get_file($path) . "\n"; } header('Content-Type: application/x-javascript; charset=UTF-8'); header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT'); header("Cache-Control: public, max-age=$expires_offset"); if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) { header('Vary: Accept-Encoding'); // Handle proxies if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { header('Content-Encoding: deflate'); $out = gzdeflate( $out, 3 ); } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) { header('Content-Encoding: gzip'); $out = gzencode( $out, 3 ); } } echo $out; exit;
MESH-Dev/MESH
wp-admin/load-scripts.php
PHP
gpl-2.0
2,860
######################################################################## # # File Name: CopyOfElement.py # # Documentation: http://docs.4suite.org/4XSLT/CopyOfElement.py.html # """ Implementation of the XSLT Spec copy-of element. WWW: http://4suite.org/4XSLT e-mail: support@4suite.org Copyright (c) 1999-2001 Fourthought Inc, USA. All Rights Reserved. See http://4suite.org/COPYRIGHT for license and copyright information """ from xml.dom import Node from Ft.Xml import EMPTY_NAMESPACE, XMLNS_NAMESPACE from Ft.Xml.Xslt import XsltElement, XsltException, Error, XSL_NAMESPACE from Ft.Xml.Xslt import CategoryTypes, ContentInfo, AttributeInfo from Ft.Xml.XPath import Conversions, NAMESPACE_NODE class CopyOfElement(XsltElement): category = CategoryTypes.INSTRUCTION content = ContentInfo.Empty legalAttrs = { 'select' : AttributeInfo.Expression(required=1), } def instantiate(self, context, processor): context.processorNss = self.namespaces context.currentInstruction = self writer = processor.writers[-1] result = self._select.evaluate(context) if hasattr(result, "nodeType"): writer.copyNodes(result) elif type(result) == type([]) : #FIXME: Should probably do a sort-doc-order first for child in result: writer.copyNodes(child) else: string = Conversions.StringValue(result) writer.text(string) return def CopyNode(processor, node): processor.writers[-1].copyNodes(node) return from Ft.Xml.Domlette import GetAllNs def OldCopyNode(processor, node): if node.nodeType in [Node.DOCUMENT_NODE, Node.DOCUMENT_FRAGMENT_NODE]: for child in node.childNodes: CopyNode(processor, child) if node.nodeType == Node.TEXT_NODE: processor.writers[-1].text(node.data, node.xsltOutputEscaping) elif node.nodeType == Node.ELEMENT_NODE: #The GetAllNs is needed to copy the namespace nodes processor.writers[-1].startElement(node.nodeName, node.namespaceURI, extraNss=GetAllNs(node)) for attr in node.attributes.values(): if attr.namespaceURI != XMLNS_NAMESPACE: processor.writers[-1].attribute(attr.name, attr.value, attr.namespaceURI) for child in node.childNodes: CopyNode(processor, child) processor.writers[-1].endElement(node.nodeName, node.namespaceURI) elif node.nodeType == Node.ATTRIBUTE_NODE: if node.namespaceURI != XMLNS_NAMESPACE: processor.writers[-1].attribute(node.name, node.value, node.namespaceURI) elif node.nodeType == Node.COMMENT_NODE: processor.writers[-1].comment(node.data) elif node.nodeType == Node.PROCESSING_INSTRUCTION_NODE: processor.writers[-1].processingInstruction(node.target, node.data) elif node.nodeType == NAMESPACE_NODE: processor.writers[-1].namespace(node.nodeName, node.value) else: pass return
Pikecillo/genna
external/4Suite-XML-1.0.2/Ft/Xml/Xslt/CopyOfElement.py
Python
gpl-2.0
3,177
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <script src="js/jquery.min.js"></script> <script type="text/javascript" src="js/js.cookie.js"></script> <title>BenchmarkTest00340</title> </head> <body> <form action="/benchmark/BenchmarkTest00340" method="POST" id="FormBenchmarkTest00340"> <div><label>Please explain your answer:</label></div> <br/> <div><textarea rows="4" cols="50" id="vectorArea" name="vectorArea"></textarea></div> <div><label>Any additional note for the reviewer:</label></div> <div><input type="text" id="answer" name="answer"></input></div> <br/> <div><label>An AJAX request will be sent with a header named vector and value:</label> <input type="text" id="vector" name="vector" value="bar" class="safe"></input></div> <div><input type="button" id="login-btn" value="Login" /></div> </form> <div id="ajax-form-msg1"><pre><code class="prettyprint" id="code"></code></pre></div> <script> $('.safe').keypress(function (e) { if (e.which == 13) { $('#login-btn').trigger('click'); return false; } }); $("#login-btn").click(function(){ var formData = $("#FormBenchmarkTest00340").serializeArray(); var URL = $("#FormBenchmarkTest00340").attr("action"); var text = $("#FormBenchmarkTest00340 input[id=vector]").val(); $.ajax({ url : URL, headers: { 'vector': text }, type: "POST", data : formData, success: function(data, textStatus, jqXHR){ $("#code").text(data); }, error: function (jqXHR, textStatus, errorThrown){ console.error(errorThrown);} }); }); </script> </body> </html>
thc202/Benchmark
src/main/webapp/BenchmarkTest00340.html
HTML
gpl-2.0
1,755
<?php /** * Bootstrap file. * Including this file into your application and executing RBootstrap::bootstrap() will make redCORE available to use. * * @package Redcore * @copyright Copyright (C) 2008 - 2021 redWEB.dk. All rights reserved. * @license GNU General Public License version 2 or later, see LICENSE. */ defined('JPATH_PLATFORM') or die; if (!defined('JPATH_REDCORE')) { // Sets redCORE path variable, to avoid setting it twice define('JPATH_REDCORE', dirname(__FILE__)); require JPATH_REDCORE . '/functions.php'; } /** * redCORE bootstrap class * * @package Red * @subpackage System * @since 1.0 */ class RBootstrap { /** * Redcore configuration * * @var JRegistry */ public static $config = null; /** * Defines if redCORE base css should be loaded in Frontend component/modules * * @var bool */ public static $loadFrontendCSS = false; /** * Defines if jQuery should be loaded in Frontend component/modules * * @var bool */ public static $loadFrontendjQuery = true; /** * Defines if jQuery Migrate should be loaded in Frontend component/modules * * @var bool */ public static $loadFrontendjQueryMigrate = true; /** * Defines if Mootools should be disabled in Frontend component/modules * * @var bool */ public static $disableFrontendMootools = false; /** * Gets redCORE config param * * @param string $key Config key * @param mixed $default Default value * * @return mixed */ public static function getConfig($key, $default = null) { if (is_null(self::$config)) { if (RComponentHelper::isInstalled('com_redcore')) { self::$config = JComponentHelper::getParams('com_redcore'); // Sets initialization variables for frontend in Bootstrap class, according to plugin parameters self::$loadFrontendCSS = self::$config->get('frontend_css', false); self::$loadFrontendjQuery = self::$config->get('frontend_jquery', true); self::$loadFrontendjQueryMigrate = self::$config->get('frontend_jquery_migrate', true); self::$disableFrontendMootools = self::$config->get('frontend_mootools_disable', false); } } if (!self::$config) { return $default; } return self::$config->get($key, $default); } /** * Effectively bootstrap redCORE. * * @param bool $loadBootstrap Load bootstrap with redcore plugin options * * @return void */ public static function bootstrap($loadBootstrap = true) { if ($loadBootstrap && !defined('REDCORE_BOOTSTRAPPED')) { define('REDCORE_BOOTSTRAPPED', 1); } if (!defined('REDCORE_LIBRARY_LOADED')) { // Sets bootstrapped variable, to avoid bootstrapping redCORE twice define('REDCORE_LIBRARY_LOADED', 1); // We are still in Joomla 2.5 or another version so we use alias to prevent errors if (!class_exists('Joomla\Registry\Registry')) { class_alias('JRegistry', 'Joomla\Registry\Registry'); } // Use our own base field if (!class_exists('JFormField', false)) { $baseField = JPATH_LIBRARIES . '/redcore/joomla/form/field.php'; if (file_exists($baseField)) { require_once $baseField; } } // Register the classes for autoload. JLoader::registerPrefix('R', JPATH_REDCORE); // Setup the RLoader. RLoader::setup(); // Make available the redCORE fields JFormHelper::addFieldPath(JPATH_REDCORE . '/form/field'); JFormHelper::addFieldPath(JPATH_REDCORE . '/form/fields'); // Make available the redCORE form rules JFormHelper::addRulePath(JPATH_REDCORE . '/form/rules'); // HTML helpers JHtml::addIncludePath(JPATH_REDCORE . '/html'); RHtml::addIncludePath(JPATH_REDCORE . '/html'); // Load library language $lang = JFactory::getLanguage(); $lang->load('lib_redcore', JPATH_REDCORE); // For Joomla! 2.5 compatibility we add some core functions if (version_compare(JVERSION, '3.0', '<')) { RLoader::registerPrefix('J', JPATH_LIBRARIES . '/redcore/joomla', false, true); } // Make available the fields JFormHelper::addFieldPath(JPATH_LIBRARIES . '/redcore/form/fields'); // Make available the rules JFormHelper::addRulePath(JPATH_LIBRARIES . '/redcore/form/rules'); // Replaces Joomla database driver for redCORE database driver JFactory::$database = null; JFactory::$database = RFactory::getDbo(); $isAdmin = RTranslationHelper::isAdmin(); $isTranslateAdmin = (bool) self::getConfig('translate_in_admin', 0); if (self::getConfig('enable_translations', 0) == 1 && (!$isAdmin || ($isAdmin && $isTranslateAdmin))) { // This is our object now $db = JFactory::getDbo(); // Enable translations $db->translate = self::getConfig('enable_translations', 0) == 1; // Setting default option for translation fallback RDatabaseSqlparserSqltranslation::setTranslationFallback(self::getConfig('enable_translation_fallback', '1') == '1'); // Setting default option for force translate default language RDatabaseSqlparserSqltranslation::setForceTranslateDefaultLanguage( self::getConfig('force_translate_default_site_language', '0') == '1' ); // Set option for "translate in admin" RDatabaseSqlparserSqltranslation::setTranslationInAdmin($isTranslateAdmin); // Reset plugin translations params if needed RTranslationHelper::resetPluginTranslation(); } else { // We still need to set translate property to avoid notices as we check it from other functions $db = JFactory::getDbo(); $db->translate = 0; } } } }
redCOMPONENT-COM/redCORE
extensions/libraries/redcore/bootstrap.php
PHP
gpl-2.0
5,582
<?php /** * Part of Component Jobs files. * * @copyright Copyright (C) 2014 Asikart. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ use Windwalker\View\Layout\FileLayout; // No direct access defined('_JEXEC') or die; // Prepare script JHtmlBootstrap::tooltip(); JHtmlFormbehavior::chosen('select'); JHtmlDropdown::init(); /** * Prepare data for this template. * * @var Windwalker\DI\Container $container */ $container = $this->getContainer(); ?> <div id="jobs" class="windwalker jobs tablelist row-fluid"> <form action="<?php echo JURI::getInstance(); ?>" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data"> <?php if (!empty($this->data->sidebar)): ?> <div id="j-sidebar-container" class="span2"> <h4 class="page-header"><?php echo JText::_('JOPTION_MENUS'); ?></h4> <?php echo $this->data->sidebar; ?> </div> <div id="j-main-container" class="span10"> <?php else: ?> <div id="j-main-container"> <?php endif;?> <?php echo with(new FileLayout('joomla.searchtools.default'))->render(array('view' => $this->data)); ?> <?php echo $this->loadTemplate('table'); ?> <?php echo with(new FileLayout('joomla.batchtools.modal'))->render(array('view' => $this->data, 'task_prefix' => 'jobs.')); ?> <!-- Hidden Inputs --> <div id="hidden-inputs"> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <?php echo JHtml::_('form.token'); ?> </div> </div> </form> </div>
asukademy/jobs
administrator/components/com_jobs/view/jobs/tmpl/default.php
PHP
gpl-2.0
1,554
/* kpstatelighttest.cpp Automatic solution finder for KhunPhan game Copyright (C) 2006-2018 W. Schwotzer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "stdafx.h" #include "kpstatelighttest.h" #include "kpmenu.h" #include "light.h" #include "camera.h" #include "kpuibase.h" #include "kpconfig.h" #include "blogger.h" KPstateLightTest::KPstateLightTest() : mouse_x(0), mouse_y(0) { } void KPstateLightTest::Initialize(KPstateContext *pContext, StateId previousStateId) { KPstate::Initialize(pContext, previousStateId); pContext->GetConfig().CameraPosition = 1; pContext->GetCamera().SetPosition(pContext->GetConfig().CameraPosition); UpdateDisplay(pContext); } void KPstateLightTest::UpdateDisplay(KPstateContext *pContext) const { auto &menu = pContext->GetMenu(); KPstate::UpdateDisplay(pContext); menu.labels[Lbl::Ok].SetPosition(8, 1, 1, AlignItem::Centered); menu.labels[Lbl::Ok].SetSignal(Signal::Back); StartAnimation(pContext); } void KPstateLightTest::KeyPressed(KPstateContext *pContext, unsigned char key, int x, int y) const { switch (key) { case '1': case '2': case '3': case '4': case '5': case '6': case '7': pContext->GetConfig().CameraPosition = key - '1' + 1; pContext->GetCamera().SetPosition( pContext->GetConfig().CameraPosition); break; } KPstate::KeyPressed(pContext, key, x, y); } StateId KPstateLightTest::ESCKeyAction(KPstateContext *pContext) const { pContext->GetUserInterface().RequestForClose(); return StateId::Invalid; } void KPstateLightTest::MouseClick(KPstateContext *pContext, MouseButton button, MouseButtonEvent event, int x, int y) { auto signal = KPstate::EvaluateMouseClick(pContext, button, event, x, y); switch (signal) { case Signal::Back: pContext->GetUserInterface().RequestForClose(); break; default: HandleMouseClick(pContext, button, event, x, y); break; } } void KPstateLightTest::HandleMouseClick(KPstateContext *pContext, MouseButton button, MouseButtonEvent event, int x, int y) { float lx, ly, lz; if (button == MouseButton::Left && event == MouseButtonEvent::Press) { mouse_x = x; // save current mouse position mouse_y = y; } else if (button == MouseButton::Left && event == MouseButtonEvent::Release) { // calculate mouse direction auto diff_x = x - mouse_x; auto diff_z = -(y - mouse_y); pContext->GetLight().GetPosition(lx, ly, lz); lx += diff_x; lz += diff_z; pContext->GetLight().SetPosition(lx, ly, lz); BLogger::Log(std::fixed, "Light position x=", lx, " y=", ly, " z=", lz); } else if (button == MouseButton::Right && event == MouseButtonEvent::Press) { mouse_x = x; // save current mouse position mouse_y = y; } else if (button == MouseButton::Right && event == MouseButtonEvent::Release) { // calculate mouse direction auto diff_y = -(y - mouse_y); pContext->GetLight().GetPosition(lx, ly, lz); ly += diff_y; pContext->GetLight().SetPosition(lx, ly, lz); BLogger::Log(std::fixed, "Light position x=", lx, " y=", ly, " z=", lz); } }
aladur/khunphan
src/kpstatelighttest.cpp
C++
gpl-2.0
4,290
namespace Components.RoslynJit { using System; using System.Collections.Generic; public static class GeneratedContainer { public readonly struct CityInfo { public readonly string Name; public readonly string State; public const string Country = "BY"; public readonly double Latitude; public readonly double Longitude; public CityInfo( string name, in string state, double latitude, double longitude) { Name = name; State = state; Latitude = latitude; Longitude = longitude; } } public static CityInfo GetClosestCity(double lat, double lng) { double tmp; var cur = (Math.Abs(53.4605 - lat) + Math.Abs(23.8823 - lng)); var closest = 0; if ((tmp = (Math.Abs(53.5904 - lat) + Math.Abs(24.2478 - lng))) < cur) { cur = tmp; closest = 1; } if ((tmp = (Math.Abs(51.88168 - lat) + Math.Abs(23.65545 - lng))) < cur) { cur = tmp; closest = 2; } if ((tmp = (Math.Abs(54.0985 - lat) + Math.Abs(28.3331 - lng))) < cur) { cur = tmp; closest = 3; } if ((tmp = (Math.Abs(52.8926 - lat) + Math.Abs(30.024 - lng))) < cur) { cur = tmp; closest = 4; } if ((tmp = (Math.Abs(52.2168 - lat) + Math.Abs(27.8561 - lng))) < cur) { cur = tmp; closest = 5; } if ((tmp = (Math.Abs(53.0131 - lat) + Math.Abs(25.3443 - lng))) < cur) { cur = tmp; closest = 6; } if ((tmp = (Math.Abs(53.5974 - lat) + Math.Abs(24.9828 - lng))) < cur) { cur = tmp; closest = 7; } if ((tmp = (Math.Abs(53.9432 - lat) + Math.Abs(27.425 - lng))) < cur) { cur = tmp; closest = 8; } if ((tmp = (Math.Abs(52.1984 - lat) + Math.Abs(24.0115 - lng))) < cur) { cur = tmp; closest = 9; } if ((tmp = (Math.Abs(54.3579 - lat) + Math.Abs(28.2207 - lng))) < cur) { cur = tmp; closest = 10; } if ((tmp = (Math.Abs(53.1504 - lat) + Math.Abs(24.8153 - lng))) < cur) { cur = tmp; closest = 11; } if ((tmp = (Math.Abs(54.0119 - lat) + Math.Abs(28.4843 - lng))) < cur) { cur = tmp; closest = 12; } if ((tmp = (Math.Abs(54.0114 - lat) + Math.Abs(27.2695 - lng))) < cur) { cur = tmp; closest = 13; } if ((tmp = (Math.Abs(53.8198 - lat) + Math.Abs(27.8685 - lng))) < cur) { cur = tmp; closest = 14; } if ((tmp = (Math.Abs(54.4192 - lat) + Math.Abs(26.548 - lng))) < cur) { cur = tmp; closest = 15; } if ((tmp = (Math.Abs(54.0052 - lat) + Math.Abs(28.0272 - lng))) < cur) { cur = tmp; closest = 16; } if ((tmp = (Math.Abs(51.8141 - lat) + Math.Abs(29.1522 - lng))) < cur) { cur = tmp; closest = 17; } if ((tmp = (Math.Abs(53.3994 - lat) + Math.Abs(29.0048 - lng))) < cur) { cur = tmp; closest = 18; } if ((tmp = (Math.Abs(55.4255 - lat) + Math.Abs(28.157 - lng))) < cur) { cur = tmp; closest = 19; } if ((tmp = (Math.Abs(52.37091 - lat) + Math.Abs(23.37083 - lng))) < cur) { cur = tmp; closest = 20; } if ((tmp = (Math.Abs(53.72136 - lat) + Math.Abs(25.79894 - lng))) < cur) { cur = tmp; closest = 21; } if ((tmp = (Math.Abs(54.1492 - lat) + Math.Abs(25.3112 - lng))) < cur) { cur = tmp; closest = 22; } if ((tmp = (Math.Abs(53.7534 - lat) + Math.Abs(28.1555 - lng))) < cur) { cur = tmp; closest = 23; } if ((tmp = (Math.Abs(55.1904 - lat) + Math.Abs(30.2049 - lng))) < cur) { cur = tmp; closest = 24; } if ((tmp = (Math.Abs(53.9805 - lat) + Math.Abs(29.9925 - lng))) < cur) { cur = tmp; closest = 25; } if ((tmp = (Math.Abs(54.7102 - lat) + Math.Abs(26.5228 - lng))) < cur) { cur = tmp; closest = 26; } if ((tmp = (Math.Abs(54.4914 - lat) + Math.Abs(26.9111 - lng))) < cur) { cur = tmp; closest = 27; } if ((tmp = (Math.Abs(55.3945 - lat) + Math.Abs(26.6305 - lng))) < cur) { cur = tmp; closest = 28; } if ((tmp = (Math.Abs(53.83333 - lat) + Math.Abs(30.38333 - lng))) < cur) { cur = tmp; closest = 29; } if ((tmp = (Math.Abs(52.5591 - lat) + Math.Abs(31.1794 - lng))) < cur) { cur = tmp; closest = 30; } if ((tmp = (Math.Abs(55.7777 - lat) + Math.Abs(27.9389 - lng))) < cur) { cur = tmp; closest = 31; } if ((tmp = (Math.Abs(53.1561 - lat) + Math.Abs(24.4513 - lng))) < cur) { cur = tmp; closest = 32; } if ((tmp = (Math.Abs(52.2512 - lat) + Math.Abs(29.8288 - lng))) < cur) { cur = tmp; closest = 33; } if ((tmp = (Math.Abs(54.0892 - lat) + Math.Abs(26.5266 - lng))) < cur) { cur = tmp; closest = 34; } if ((tmp = (Math.Abs(53.9698 - lat) + Math.Abs(27.6685 - lng))) < cur) { cur = tmp; closest = 35; } if ((tmp = (Math.Abs(53.4627 - lat) + Math.Abs(27.2137 - lng))) < cur) { cur = tmp; closest = 36; } if ((tmp = (Math.Abs(55.179 - lat) + Math.Abs(28.6158 - lng))) < cur) { cur = tmp; closest = 37; } if ((tmp = (Math.Abs(52.9479 - lat) + Math.Abs(27.893 - lng))) < cur) { cur = tmp; closest = 38; } if ((tmp = (Math.Abs(52.0683 - lat) + Math.Abs(27.735 - lng))) < cur) { cur = tmp; closest = 39; } if ((tmp = (Math.Abs(53.5263 - lat) + Math.Abs(26.3125 - lng))) < cur) { cur = tmp; closest = 40; } if ((tmp = (Math.Abs(54.1587 - lat) + Math.Abs(25.9075 - lng))) < cur) { cur = tmp; closest = 41; } if ((tmp = (Math.Abs(54.4087 - lat) + Math.Abs(29.6955 - lng))) < cur) { cur = tmp; closest = 42; } if ((tmp = (Math.Abs(53.0672 - lat) + Math.Abs(26.9902 - lng))) < cur) { cur = tmp; closest = 43; } if ((tmp = (Math.Abs(52.5175 - lat) + Math.Abs(25.8429 - lng))) < cur) { cur = tmp; closest = 44; } if ((tmp = (Math.Abs(53.2533 - lat) + Math.Abs(28.8193 - lng))) < cur) { cur = tmp; closest = 45; } if ((tmp = (Math.Abs(53.9253 - lat) + Math.Abs(27.3815 - lng))) < cur) { cur = tmp; closest = 46; } if ((tmp = (Math.Abs(53.03474 - lat) + Math.Abs(24.09829 - lng))) < cur) { cur = tmp; closest = 47; } if ((tmp = (Math.Abs(54.8517 - lat) + Math.Abs(26.395 - lng))) < cur) { cur = tmp; closest = 48; } if ((tmp = (Math.Abs(52.6329 - lat) + Math.Abs(29.7389 - lng))) < cur) { cur = tmp; closest = 49; } if ((tmp = (Math.Abs(55.4092 - lat) + Math.Abs(30.7246 - lng))) < cur) { cur = tmp; closest = 50; } if ((tmp = (Math.Abs(53.4785 - lat) + Math.Abs(26.7434 - lng))) < cur) { cur = tmp; closest = 51; } if ((tmp = (Math.Abs(53.2142 - lat) + Math.Abs(26.0377 - lng))) < cur) { cur = tmp; closest = 52; } if ((tmp = (Math.Abs(51.89115 - lat) + Math.Abs(26.84597 - lng))) < cur) { cur = tmp; closest = 53; } if ((tmp = (Math.Abs(53.0402 - lat) + Math.Abs(28.267 - lng))) < cur) { cur = tmp; closest = 54; } if ((tmp = (Math.Abs(54.7985 - lat) + Math.Abs(27.4132 - lng))) < cur) { cur = tmp; closest = 55; } if ((tmp = (Math.Abs(52.7267 - lat) + Math.Abs(27.4606 - lng))) < cur) { cur = tmp; closest = 56; } if ((tmp = (Math.Abs(53.6292 - lat) + Math.Abs(27.229 - lng))) < cur) { cur = tmp; closest = 57; } if ((tmp = (Math.Abs(52.5194 - lat) + Math.Abs(29.5988 - lng))) < cur) { cur = tmp; closest = 58; } if ((tmp = (Math.Abs(53.8329 - lat) + Math.Abs(23.6598 - lng))) < cur) { cur = tmp; closest = 59; } if ((tmp = (Math.Abs(54.51301 - lat) + Math.Abs(26.19381 - lng))) < cur) { cur = tmp; closest = 60; } if ((tmp = (Math.Abs(53.2201 - lat) + Math.Abs(26.401 - lng))) < cur) { cur = tmp; closest = 61; } if ((tmp = (Math.Abs(54.4798 - lat) + Math.Abs(26.3957 - lng))) < cur) { cur = tmp; closest = 62; } if ((tmp = (Math.Abs(54.5969 - lat) + Math.Abs(30.071 - lng))) < cur) { cur = tmp; closest = 63; } if ((tmp = (Math.Abs(54.0249 - lat) + Math.Abs(28.0894 - lng))) < cur) { cur = tmp; closest = 64; } if ((tmp = (Math.Abs(53.7496 - lat) + Math.Abs(28.0115 - lng))) < cur) { cur = tmp; closest = 65; } if ((tmp = (Math.Abs(53.0274 - lat) + Math.Abs(27.5597 - lng))) < cur) { cur = tmp; closest = 66; } if ((tmp = (Math.Abs(53.0869 - lat) + Math.Abs(25.3163 - lng))) < cur) { cur = tmp; closest = 67; } if ((tmp = (Math.Abs(54.0087 - lat) + Math.Abs(27.8866 - lng))) < cur) { cur = tmp; closest = 68; } if ((tmp = (Math.Abs(53.4429 - lat) + Math.Abs(31.0014 - lng))) < cur) { cur = tmp; closest = 69; } if ((tmp = (Math.Abs(52.15519 - lat) + Math.Abs(23.6329 - lng))) < cur) { cur = tmp; closest = 70; } if ((tmp = (Math.Abs(54.2131 - lat) + Math.Abs(30.2877 - lng))) < cur) { cur = tmp; closest = 71; } if ((tmp = (Math.Abs(53.6014 - lat) + Math.Abs(24.7465 - lng))) < cur) { cur = tmp; closest = 72; } if ((tmp = (Math.Abs(53.6344 - lat) + Math.Abs(26.1855 - lng))) < cur) { cur = tmp; closest = 73; } if ((tmp = (Math.Abs(55.3689 - lat) + Math.Abs(27.4686 - lng))) < cur) { cur = tmp; closest = 74; } if ((tmp = (Math.Abs(54.8108 - lat) + Math.Abs(29.7086 - lng))) < cur) { cur = tmp; closest = 75; } if ((tmp = (Math.Abs(53.8313 - lat) + Math.Abs(27.5343 - lng))) < cur) { cur = tmp; closest = 76; } if ((tmp = (Math.Abs(54.0101 - lat) + Math.Abs(27.441 - lng))) < cur) { cur = tmp; closest = 77; } if ((tmp = (Math.Abs(52.7867 - lat) + Math.Abs(28.0186 - lng))) < cur) { cur = tmp; closest = 78; } if ((tmp = (Math.Abs(53.7396 - lat) + Math.Abs(27.5037 - lng))) < cur) { cur = tmp; closest = 79; } if ((tmp = (Math.Abs(52.7876 - lat) + Math.Abs(27.5415 - lng))) < cur) { cur = tmp; closest = 80; } if ((tmp = (Math.Abs(52.86322 - lat) + Math.Abs(24.89357 - lng))) < cur) { cur = tmp; closest = 81; } if ((tmp = (Math.Abs(53.5983 - lat) + Math.Abs(27.8621 - lng))) < cur) { cur = tmp; closest = 82; } if ((tmp = (Math.Abs(53.2351 - lat) + Math.Abs(26.6494 - lng))) < cur) { cur = tmp; closest = 83; } if ((tmp = (Math.Abs(55.9058 - lat) + Math.Abs(28.8135 - lng))) < cur) { cur = tmp; closest = 84; } if ((tmp = (Math.Abs(53.28411 - lat) + Math.Abs(24.40721 - lng))) < cur) { cur = tmp; closest = 85; } if ((tmp = (Math.Abs(53.0934 - lat) + Math.Abs(30.0495 - lng))) < cur) { cur = tmp; closest = 86; } if ((tmp = (Math.Abs(52.3617 - lat) + Math.Abs(30.3916 - lng))) < cur) { cur = tmp; closest = 87; } if ((tmp = (Math.Abs(53.9674 - lat) + Math.Abs(27.0562 - lng))) < cur) { cur = tmp; closest = 88; } if ((tmp = (Math.Abs(54.1554 - lat) + Math.Abs(27.2412 - lng))) < cur) { cur = tmp; closest = 89; } if ((tmp = (Math.Abs(53.5297 - lat) + Math.Abs(28.2467 - lng))) < cur) { cur = tmp; closest = 90; } if ((tmp = (Math.Abs(52.556 - lat) + Math.Abs(24.4573 - lng))) < cur) { cur = tmp; closest = 91; } if ((tmp = (Math.Abs(53.5248 - lat) + Math.Abs(27.8303 - lng))) < cur) { cur = tmp; closest = 92; } if ((tmp = (Math.Abs(53.8066 - lat) + Math.Abs(28.8698 - lng))) < cur) { cur = tmp; closest = 93; } if ((tmp = (Math.Abs(55.4879 - lat) + Math.Abs(28.7856 - lng))) < cur) { cur = tmp; closest = 94; } if ((tmp = (Math.Abs(53.8482 - lat) + Math.Abs(29.1491 - lng))) < cur) { cur = tmp; closest = 95; } if ((tmp = (Math.Abs(54.4235 - lat) + Math.Abs(27.8301 - lng))) < cur) { cur = tmp; closest = 96; } if ((tmp = (Math.Abs(52.1229 - lat) + Math.Abs(26.0951 - lng))) < cur) { cur = tmp; closest = 97; } if ((tmp = (Math.Abs(54.0686 - lat) + Math.Abs(27.2179 - lng))) < cur) { cur = tmp; closest = 98; } if ((tmp = (Math.Abs(52.1289 - lat) + Math.Abs(28.4921 - lng))) < cur) { cur = tmp; closest = 99; } if ((tmp = (Math.Abs(55.11676 - lat) + Math.Abs(26.83263 - lng))) < cur) { cur = tmp; closest = 100; } if ((tmp = (Math.Abs(52.8042 - lat) + Math.Abs(29.4176 - lng))) < cur) { cur = tmp; closest = 101; } if ((tmp = (Math.Abs(53.7216 - lat) + Math.Abs(24.1836 - lng))) < cur) { cur = tmp; closest = 102; } if ((tmp = (Math.Abs(53.8397 - lat) + Math.Abs(27.3917 - lng))) < cur) { cur = tmp; closest = 103; } if ((tmp = (Math.Abs(56.0147 - lat) + Math.Abs(28.11049 - lng))) < cur) { cur = tmp; closest = 104; } if ((tmp = (Math.Abs(53.7335 - lat) + Math.Abs(28.3857 - lng))) < cur) { cur = tmp; closest = 105; } if ((tmp = (Math.Abs(54.61378 - lat) + Math.Abs(25.95537 - lng))) < cur) { cur = tmp; closest = 106; } if ((tmp = (Math.Abs(54.0651 - lat) + Math.Abs(27.695 - lng))) < cur) { cur = tmp; closest = 107; } if ((tmp = (Math.Abs(52.1891 - lat) + Math.Abs(26.1299 - lng))) < cur) { cur = tmp; closest = 108; } if ((tmp = (Math.Abs(53.3011 - lat) + Math.Abs(28.6386 - lng))) < cur) { cur = tmp; closest = 109; } if ((tmp = (Math.Abs(54.5081 - lat) + Math.Abs(30.4172 - lng))) < cur) { cur = tmp; closest = 110; } if ((tmp = (Math.Abs(55.5359 - lat) + Math.Abs(26.8238 - lng))) < cur) { cur = tmp; closest = 111; } if ((tmp = (Math.Abs(52.644 - lat) + Math.Abs(28.8801 - lng))) < cur) { cur = tmp; closest = 112; } if ((tmp = (Math.Abs(53.4542 - lat) + Math.Abs(26.7301 - lng))) < cur) { cur = tmp; closest = 113; } if ((tmp = (Math.Abs(53.88389 - lat) + Math.Abs(30.52028 - lng))) < cur) { cur = tmp; closest = 114; } if ((tmp = (Math.Abs(53.9162 - lat) + Math.Abs(27.2009 - lng))) < cur) { cur = tmp; closest = 115; } if ((tmp = (Math.Abs(53.9567 - lat) + Math.Abs(30.2496 - lng))) < cur) { cur = tmp; closest = 116; } if ((tmp = (Math.Abs(54.66192 - lat) + Math.Abs(29.15016 - lng))) < cur) { cur = tmp; closest = 117; } if ((tmp = (Math.Abs(52.1032 - lat) + Math.Abs(30.9837 - lng))) < cur) { cur = tmp; closest = 118; } if ((tmp = (Math.Abs(54.30441 - lat) + Math.Abs(26.78209 - lng))) < cur) { cur = tmp; closest = 119; } if ((tmp = (Math.Abs(53.2189 - lat) + Math.Abs(26.6779 - lng))) < cur) { cur = tmp; closest = 120; } if ((tmp = (Math.Abs(52.644 - lat) + Math.Abs(25.2027 - lng))) < cur) { cur = tmp; closest = 121; } if ((tmp = (Math.Abs(53.6104 - lat) + Math.Abs(27.0733 - lng))) < cur) { cur = tmp; closest = 122; } if ((tmp = (Math.Abs(55.5318 - lat) + Math.Abs(28.5987 - lng))) < cur) { cur = tmp; closest = 123; } if ((tmp = (Math.Abs(53.5942 - lat) + Math.Abs(25.8191 - lng))) < cur) { cur = tmp; closest = 124; } if ((tmp = (Math.Abs(51.7961 - lat) + Math.Abs(29.5004 - lng))) < cur) { cur = tmp; closest = 125; } if ((tmp = (Math.Abs(54.9102 - lat) + Math.Abs(26.708 - lng))) < cur) { cur = tmp; closest = 126; } if ((tmp = (Math.Abs(54.5652 - lat) + Math.Abs(26.7314 - lng))) < cur) { cur = tmp; closest = 127; } if ((tmp = (Math.Abs(53.2172 - lat) + Math.Abs(29.512 - lng))) < cur) { cur = tmp; closest = 128; } if ((tmp = (Math.Abs(54.8789 - lat) + Math.Abs(26.9371 - lng))) < cur) { cur = tmp; closest = 129; } if ((tmp = (Math.Abs(54.0185 - lat) + Math.Abs(31.7217 - lng))) < cur) { cur = tmp; closest = 130; } if ((tmp = (Math.Abs(52.3138 - lat) + Math.Abs(25.6072 - lng))) < cur) { cur = tmp; closest = 131; } if ((tmp = (Math.Abs(53.9794 - lat) + Math.Abs(30.4592 - lng))) < cur) { cur = tmp; closest = 132; } if ((tmp = (Math.Abs(55.2232 - lat) + Math.Abs(27.4609 - lng))) < cur) { cur = tmp; closest = 133; } if ((tmp = (Math.Abs(53.4544 - lat) + Math.Abs(26.467 - lng))) < cur) { cur = tmp; closest = 134; } if ((tmp = (Math.Abs(55.6222 - lat) + Math.Abs(27.6281 - lng))) < cur) { cur = tmp; closest = 135; } if ((tmp = (Math.Abs(53.9 - lat) + Math.Abs(27.56667 - lng))) < cur) { cur = tmp; closest = 136; } if ((tmp = (Math.Abs(52.2173 - lat) + Math.Abs(27.476 - lng))) < cur) { cur = tmp; closest = 137; } if ((tmp = (Math.Abs(53.7776 - lat) + Math.Abs(30.1765 - lng))) < cur) { cur = tmp; closest = 138; } if ((tmp = (Math.Abs(54.6274 - lat) + Math.Abs(30.3082 - lng))) < cur) { cur = tmp; closest = 139; } if ((tmp = (Math.Abs(52.0495 - lat) + Math.Abs(29.2456 - lng))) < cur) { cur = tmp; closest = 140; } if ((tmp = (Math.Abs(53.4122 - lat) + Math.Abs(24.5387 - lng))) < cur) { cur = tmp; closest = 141; } if ((tmp = (Math.Abs(53.509 - lat) + Math.Abs(28.147 - lng))) < cur) { cur = tmp; closest = 142; } if ((tmp = (Math.Abs(51.7905 - lat) + Math.Abs(24.074 - lng))) < cur) { cur = tmp; closest = 143; } if ((tmp = (Math.Abs(54.3167 - lat) + Math.Abs(26.854 - lng))) < cur) { cur = tmp; closest = 144; } if ((tmp = (Math.Abs(53.9168 - lat) + Math.Abs(30.3449 - lng))) < cur) { cur = tmp; closest = 145; } if ((tmp = (Math.Abs(53.7788 - lat) + Math.Abs(27.5948 - lng))) < cur) { cur = tmp; closest = 146; } if ((tmp = (Math.Abs(53.7522 - lat) + Math.Abs(26.0603 - lng))) < cur) { cur = tmp; closest = 147; } if ((tmp = (Math.Abs(52.7985 - lat) + Math.Abs(28.0048 - lng))) < cur) { cur = tmp; closest = 148; } if ((tmp = (Math.Abs(55.0516 - lat) + Math.Abs(26.3103 - lng))) < cur) { cur = tmp; closest = 149; } if ((tmp = (Math.Abs(54.8814 - lat) + Math.Abs(28.699 - lng))) < cur) { cur = tmp; closest = 150; } if ((tmp = (Math.Abs(53.0388 - lat) + Math.Abs(26.2656 - lng))) < cur) { cur = tmp; closest = 151; } if ((tmp = (Math.Abs(52.2472 - lat) + Math.Abs(26.8047 - lng))) < cur) { cur = tmp; closest = 152; } if ((tmp = (Math.Abs(53.7823 - lat) + Math.Abs(27.8434 - lng))) < cur) { cur = tmp; closest = 153; } if ((tmp = (Math.Abs(51.9458 - lat) + Math.Abs(30.7953 - lng))) < cur) { cur = tmp; closest = 154; } if ((tmp = (Math.Abs(54.1013 - lat) + Math.Abs(30.2639 - lng))) < cur) { cur = tmp; closest = 155; } if ((tmp = (Math.Abs(54.2796 - lat) + Math.Abs(28.7649 - lng))) < cur) { cur = tmp; closest = 156; } if ((tmp = (Math.Abs(54.2064 - lat) + Math.Abs(27.8512 - lng))) < cur) { cur = tmp; closest = 157; } if ((tmp = (Math.Abs(55.0247 - lat) + Math.Abs(30.797 - lng))) < cur) { cur = tmp; closest = 158; } if ((tmp = (Math.Abs(53.88333 - lat) + Math.Abs(25.29972 - lng))) < cur) { cur = tmp; closest = 159; } if ((tmp = (Math.Abs(51.7862 - lat) + Math.Abs(28.3288 - lng))) < cur) { cur = tmp; closest = 160; } if ((tmp = (Math.Abs(52.339 - lat) + Math.Abs(25.9867 - lng))) < cur) { cur = tmp; closest = 161; } if ((tmp = (Math.Abs(53.7125 - lat) + Math.Abs(31.717 - lng))) < cur) { cur = tmp; closest = 162; } if ((tmp = (Math.Abs(54.3178 - lat) + Math.Abs(29.1374 - lng))) < cur) { cur = tmp; closest = 163; } if ((tmp = (Math.Abs(54.2497 - lat) + Math.Abs(29.7968 - lng))) < cur) { cur = tmp; closest = 164; } if ((tmp = (Math.Abs(54.7132 - lat) + Math.Abs(27.2886 - lng))) < cur) { cur = tmp; closest = 165; } if ((tmp = (Math.Abs(54.3118 - lat) + Math.Abs(26.2916 - lng))) < cur) { cur = tmp; closest = 166; } if ((tmp = (Math.Abs(53.3291 - lat) + Math.Abs(30.1929 - lng))) < cur) { cur = tmp; closest = 167; } if ((tmp = (Math.Abs(54.2438 - lat) + Math.Abs(27.0758 - lng))) < cur) { cur = tmp; closest = 168; } if ((tmp = (Math.Abs(53.26494 - lat) + Math.Abs(24.42398 - lng))) < cur) { cur = tmp; closest = 169; } if ((tmp = (Math.Abs(53.3353 - lat) + Math.Abs(31.3999 - lng))) < cur) { cur = tmp; closest = 170; } if ((tmp = (Math.Abs(52.8522 - lat) + Math.Abs(27.1698 - lng))) < cur) { cur = tmp; closest = 171; } if ((tmp = (Math.Abs(52.5387 - lat) + Math.Abs(30.9173 - lng))) < cur) { cur = tmp; closest = 172; } if ((tmp = (Math.Abs(53.3525 - lat) + Math.Abs(32.0514 - lng))) < cur) { cur = tmp; closest = 173; } if ((tmp = (Math.Abs(52.7583 - lat) + Math.Abs(25.1554 - lng))) < cur) { cur = tmp; closest = 174; } if ((tmp = (Math.Abs(53.9865 - lat) + Math.Abs(27.7982 - lng))) < cur) { cur = tmp; closest = 175; } if ((tmp = (Math.Abs(53.1301 - lat) + Math.Abs(30.8016 - lng))) < cur) { cur = tmp; closest = 176; } if ((tmp = (Math.Abs(52.3506 - lat) + Math.Abs(31.1121 - lng))) < cur) { cur = tmp; closest = 177; } if ((tmp = (Math.Abs(53.5648 - lat) + Math.Abs(26.1406 - lng))) < cur) { cur = tmp; closest = 178; } if ((tmp = (Math.Abs(54.3221 - lat) + Math.Abs(30.2897 - lng))) < cur) { cur = tmp; closest = 179; } if ((tmp = (Math.Abs(53.1516 - lat) + Math.Abs(27.0913 - lng))) < cur) { cur = tmp; closest = 180; } if ((tmp = (Math.Abs(54.6593 - lat) + Math.Abs(29.2684 - lng))) < cur) { cur = tmp; closest = 181; } if ((tmp = (Math.Abs(54.1503 - lat) + Math.Abs(29.8794 - lng))) < cur) { cur = tmp; closest = 182; } if ((tmp = (Math.Abs(53.944 - lat) + Math.Abs(27.7823 - lng))) < cur) { cur = tmp; closest = 183; } if ((tmp = (Math.Abs(54.4611 - lat) + Math.Abs(30.0018 - lng))) < cur) { cur = tmp; closest = 184; } if ((tmp = (Math.Abs(52.2138 - lat) + Math.Abs(24.3564 - lng))) < cur) { cur = tmp; closest = 185; } if ((tmp = (Math.Abs(53.9747 - lat) + Math.Abs(30.1513 - lng))) < cur) { cur = tmp; closest = 186; } if ((tmp = (Math.Abs(53.6079 - lat) + Math.Abs(31.9586 - lng))) < cur) { cur = tmp; closest = 187; } if ((tmp = (Math.Abs(53.4923 - lat) + Math.Abs(29.3356 - lng))) < cur) { cur = tmp; closest = 188; } if ((tmp = (Math.Abs(53.0635 - lat) + Math.Abs(26.6321 - lng))) < cur) { cur = tmp; closest = 189; } if ((tmp = (Math.Abs(53.2693 - lat) + Math.Abs(29.4752 - lng))) < cur) { cur = tmp; closest = 190; } if ((tmp = (Math.Abs(51.8911 - lat) + Math.Abs(29.9552 - lng))) < cur) { cur = tmp; closest = 191; } if ((tmp = (Math.Abs(53.4086 - lat) + Math.Abs(32.578 - lng))) < cur) { cur = tmp; closest = 192; } if ((tmp = (Math.Abs(54.51746 - lat) + Math.Abs(28.95645 - lng))) < cur) { cur = tmp; closest = 193; } if ((tmp = (Math.Abs(53.9266 - lat) + Math.Abs(31.4779 - lng))) < cur) { cur = tmp; closest = 194; } if ((tmp = (Math.Abs(52.5643 - lat) + Math.Abs(31.1364 - lng))) < cur) { cur = tmp; closest = 195; } if ((tmp = (Math.Abs(52.55757 - lat) + Math.Abs(23.80525 - lng))) < cur) { cur = tmp; closest = 196; } if ((tmp = (Math.Abs(54.0898 - lat) + Math.Abs(30.2962 - lng))) < cur) { cur = tmp; closest = 197; } if ((tmp = (Math.Abs(52.40013 - lat) + Math.Abs(23.81 - lng))) < cur) { cur = tmp; closest = 198; } if ((tmp = (Math.Abs(52.1323 - lat) + Math.Abs(29.3257 - lng))) < cur) { cur = tmp; closest = 199; } if ((tmp = (Math.Abs(53.9299 - lat) + Math.Abs(25.7727 - lng))) < cur) { cur = tmp; closest = 200; } if ((tmp = (Math.Abs(53.8864 - lat) + Math.Abs(26.7432 - lng))) < cur) { cur = tmp; closest = 201; } if ((tmp = (Math.Abs(52.709 - lat) + Math.Abs(25.3401 - lng))) < cur) { cur = tmp; closest = 202; } if ((tmp = (Math.Abs(52.1451 - lat) + Math.Abs(25.5365 - lng))) < cur) { cur = tmp; closest = 203; } if ((tmp = (Math.Abs(54.4167 - lat) + Math.Abs(27.2958 - lng))) < cur) { cur = tmp; closest = 204; } if ((tmp = (Math.Abs(53.6884 - lat) + Math.Abs(23.8258 - lng))) < cur) { cur = tmp; closest = 205; } if ((tmp = (Math.Abs(54.2862 - lat) + Math.Abs(30.9863 - lng))) < cur) { cur = tmp; closest = 206; } if ((tmp = (Math.Abs(52.4345 - lat) + Math.Abs(30.9754 - lng))) < cur) { cur = tmp; closest = 207; } if ((tmp = (Math.Abs(55.1384 - lat) + Math.Abs(27.6905 - lng))) < cur) { cur = tmp; closest = 208; } if ((tmp = (Math.Abs(52.758 - lat) + Math.Abs(26.43 - lng))) < cur) { cur = tmp; closest = 209; } if ((tmp = (Math.Abs(52.5215 - lat) + Math.Abs(27.1385 - lng))) < cur) { cur = tmp; closest = 210; } if ((tmp = (Math.Abs(55.4624 - lat) + Math.Abs(29.9845 - lng))) < cur) { cur = tmp; closest = 211; } if ((tmp = (Math.Abs(54.1893 - lat) + Math.Abs(30.6231 - lng))) < cur) { cur = tmp; closest = 212; } if ((tmp = (Math.Abs(53.3247 - lat) + Math.Abs(26.0107 - lng))) < cur) { cur = tmp; closest = 213; } if ((tmp = (Math.Abs(53.3121 - lat) + Math.Abs(26.538 - lng))) < cur) { cur = tmp; closest = 214; } if ((tmp = (Math.Abs(53.8183 - lat) + Math.Abs(30.7001 - lng))) < cur) { cur = tmp; closest = 215; } if ((tmp = (Math.Abs(54.2585 - lat) + Math.Abs(26.0144 - lng))) < cur) { cur = tmp; closest = 216; } if ((tmp = (Math.Abs(54.0601 - lat) + Math.Abs(29.9184 - lng))) < cur) { cur = tmp; closest = 217; } if ((tmp = (Math.Abs(52.903 - lat) + Math.Abs(28.6845 - lng))) < cur) { cur = tmp; closest = 218; } if ((tmp = (Math.Abs(53.0868 - lat) + Math.Abs(28.8567 - lng))) < cur) { cur = tmp; closest = 219; } if ((tmp = (Math.Abs(54.1159 - lat) + Math.Abs(25.5773 - lng))) < cur) { cur = tmp; closest = 220; } if ((tmp = (Math.Abs(53.7829 - lat) + Math.Abs(27.6407 - lng))) < cur) { cur = tmp; closest = 221; } if ((tmp = (Math.Abs(53.6832 - lat) + Math.Abs(27.138 - lng))) < cur) { cur = tmp; closest = 222; } if ((tmp = (Math.Abs(53.4631 - lat) + Math.Abs(25.4068 - lng))) < cur) { cur = tmp; closest = 223; } if ((tmp = (Math.Abs(53.6786 - lat) + Math.Abs(27.94 - lng))) < cur) { cur = tmp; closest = 224; } if ((tmp = (Math.Abs(54.5716 - lat) + Math.Abs(30.691 - lng))) < cur) { cur = tmp; closest = 225; } if ((tmp = (Math.Abs(54.1192 - lat) + Math.Abs(31.0939 - lng))) < cur) { cur = tmp; closest = 226; } if ((tmp = (Math.Abs(55.7906 - lat) + Math.Abs(27.4505 - lng))) < cur) { cur = tmp; closest = 227; } if ((tmp = (Math.Abs(52.1874 - lat) + Math.Abs(25.1597 - lng))) < cur) { cur = tmp; closest = 228; } if ((tmp = (Math.Abs(53.1571 - lat) + Math.Abs(30.4601 - lng))) < cur) { cur = tmp; closest = 229; } if ((tmp = (Math.Abs(51.75 - lat) + Math.Abs(23.6 - lng))) < cur) { cur = tmp; closest = 230; } if ((tmp = (Math.Abs(54.8918 - lat) + Math.Abs(27.7667 - lng))) < cur) { cur = tmp; closest = 231; } if ((tmp = (Math.Abs(52.4089 - lat) + Math.Abs(31.3237 - lng))) < cur) { cur = tmp; closest = 232; } if ((tmp = (Math.Abs(55.5676 - lat) + Math.Abs(28.2076 - lng))) < cur) { cur = tmp; closest = 233; } if ((tmp = (Math.Abs(52.0566 - lat) + Math.Abs(27.2161 - lng))) < cur) { cur = tmp; closest = 234; } if ((tmp = (Math.Abs(53.7352 - lat) + Math.Abs(30.2625 - lng))) < cur) { cur = tmp; closest = 235; } if ((tmp = (Math.Abs(53.7059 - lat) + Math.Abs(28.4313 - lng))) < cur) { cur = tmp; closest = 236; } if ((tmp = (Math.Abs(52.21948 - lat) + Math.Abs(23.74043 - lng))) < cur) { cur = tmp; closest = 237; } if ((tmp = (Math.Abs(53.5689 - lat) + Math.Abs(31.3831 - lng))) < cur) { cur = tmp; closest = 238; } if ((tmp = (Math.Abs(52.9164 - lat) + Math.Abs(30.9179 - lng))) < cur) { cur = tmp; closest = 239; } if ((tmp = (Math.Abs(53.8098 - lat) + Math.Abs(30.9717 - lng))) < cur) { cur = tmp; closest = 240; } if ((tmp = (Math.Abs(54.8584 - lat) + Math.Abs(29.1608 - lng))) < cur) { cur = tmp; closest = 241; } if ((tmp = (Math.Abs(53.521 - lat) + Math.Abs(30.2454 - lng))) < cur) { cur = tmp; closest = 242; } if ((tmp = (Math.Abs(52.5314 - lat) + Math.Abs(24.9786 - lng))) < cur) { cur = tmp; closest = 243; } if ((tmp = (Math.Abs(53.8536 - lat) + Math.Abs(30.2671 - lng))) < cur) { cur = tmp; closest = 244; } if ((tmp = (Math.Abs(52.7179 - lat) + Math.Abs(30.5701 - lng))) < cur) { cur = tmp; closest = 245; } if ((tmp = (Math.Abs(52.09755 - lat) + Math.Abs(23.68775 - lng))) < cur) { cur = tmp; closest = 246; } if ((tmp = (Math.Abs(55.6413 - lat) + Math.Abs(27.0418 - lng))) < cur) { cur = tmp; closest = 247; } if ((tmp = (Math.Abs(51.787 - lat) + Math.Abs(30.2677 - lng))) < cur) { cur = tmp; closest = 248; } if ((tmp = (Math.Abs(54.3785 - lat) + Math.Abs(26.6581 - lng))) < cur) { cur = tmp; closest = 249; } if ((tmp = (Math.Abs(54.3171 - lat) + Math.Abs(26.1376 - lng))) < cur) { cur = tmp; closest = 250; } if ((tmp = (Math.Abs(53.851 - lat) + Math.Abs(27.7139 - lng))) < cur) { cur = tmp; closest = 251; } if ((tmp = (Math.Abs(53.8693 - lat) + Math.Abs(27.7005 - lng))) < cur) { cur = tmp; closest = 252; } if ((tmp = (Math.Abs(53.9541 - lat) + Math.Abs(29.6255 - lng))) < cur) { cur = tmp; closest = 253; } if ((tmp = (Math.Abs(53.196 - lat) + Math.Abs(24.0166 - lng))) < cur) { cur = tmp; closest = 254; } if ((tmp = (Math.Abs(54.342 - lat) + Math.Abs(29.2736 - lng))) < cur) { cur = tmp; closest = 255; } if ((tmp = (Math.Abs(53.5269 - lat) + Math.Abs(28.1732 - lng))) < cur) { cur = tmp; closest = 256; } if ((tmp = (Math.Abs(53.72406 - lat) + Math.Abs(25.49709 - lng))) < cur) { cur = tmp; closest = 257; } if ((tmp = (Math.Abs(53.8391 - lat) + Math.Abs(28.9879 - lng))) < cur) { cur = tmp; closest = 258; } if ((tmp = (Math.Abs(53.9994 - lat) + Math.Abs(29.7141 - lng))) < cur) { cur = tmp; closest = 259; } if ((tmp = (Math.Abs(52.4731 - lat) + Math.Abs(25.1784 - lng))) < cur) { cur = tmp; closest = 260; } if ((tmp = (Math.Abs(53.80128 - lat) + Math.Abs(25.16711 - lng))) < cur) { cur = tmp; closest = 261; } if ((tmp = (Math.Abs(54.7316 - lat) + Math.Abs(28.0577 - lng))) < cur) { cur = tmp; closest = 262; } if ((tmp = (Math.Abs(54.2279 - lat) + Math.Abs(28.505 - lng))) < cur) { cur = tmp; closest = 263; } if ((tmp = (Math.Abs(53.1327 - lat) + Math.Abs(26.0139 - lng))) < cur) { cur = tmp; closest = 264; } if ((tmp = (Math.Abs(54.4784 - lat) + Math.Abs(30.3159 - lng))) < cur) { cur = tmp; closest = 265; } if ((tmp = (Math.Abs(53.1384 - lat) + Math.Abs(29.2214 - lng))) < cur) { cur = tmp; closest = 266; } if ((tmp = (Math.Abs(54.421 - lat) + Math.Abs(25.936 - lng))) < cur) { cur = tmp; closest = 267; } if ((tmp = (Math.Abs(52.2038 - lat) + Math.Abs(24.7863 - lng))) < cur) { cur = tmp; closest = 268; } if ((tmp = (Math.Abs(54.4207 - lat) + Math.Abs(30.2909 - lng))) < cur) { cur = tmp; closest = 269; } if ((tmp = (Math.Abs(53.7115 - lat) + Math.Abs(30.6176 - lng))) < cur) { cur = tmp; closest = 270; } if ((tmp = (Math.Abs(53.813 - lat) + Math.Abs(30.3769 - lng))) < cur) { cur = tmp; closest = 271; } if ((tmp = (Math.Abs(53.8653 - lat) + Math.Abs(30.5597 - lng))) < cur) { cur = tmp; closest = 272; } if ((tmp = (Math.Abs(53.9854 - lat) + Math.Abs(30.36 - lng))) < cur) { cur = tmp; closest = 273; } if ((tmp = (Math.Abs(52.21611 - lat) + Math.Abs(24.36639 - lng))) < cur) { cur = tmp; closest = 274; } if ((tmp = (Math.Abs(52.25028 - lat) + Math.Abs(26.79944 - lng))) < cur) { cur = tmp; closest = 275; } if ((tmp = (Math.Abs(52.12139 - lat) + Math.Abs(26.07278 - lng))) < cur) { cur = tmp; closest = 276; } if ((tmp = (Math.Abs(54.51528 - lat) + Math.Abs(30.40528 - lng))) < cur) { cur = tmp; closest = 277; } if ((tmp = (Math.Abs(52.36389 - lat) + Math.Abs(30.39472 - lng))) < cur) { cur = tmp; closest = 278; } if ((tmp = (Math.Abs(53.69889 - lat) + Math.Abs(31.71417 - lng))) < cur) { cur = tmp; closest = 279; } if ((tmp = (Math.Abs(53.74998 - lat) + Math.Abs(27.33338 - lng))) < cur) { cur = tmp; closest = 280; } if ((tmp = (Math.Abs(53.7275 - lat) + Math.Abs(28.4325 - lng))) < cur) { cur = tmp; closest = 281; } if ((tmp = (Math.Abs(53.9833 - lat) + Math.Abs(27.8384 - lng))) < cur) { cur = tmp; closest = 282; } if ((tmp = (Math.Abs(53.9753 - lat) + Math.Abs(27.8586 - lng))) < cur) { cur = tmp; closest = 283; } if ((tmp = (Math.Abs(53.9094 - lat) + Math.Abs(27.3069 - lng))) < cur) { cur = tmp; closest = 284; } if ((tmp = (Math.Abs(53.8211 - lat) + Math.Abs(27.4522 - lng))) < cur) { cur = tmp; closest = 285; } if ((tmp = (Math.Abs(53.8191 - lat) + Math.Abs(27.5215 - lng))) < cur) { cur = tmp; closest = 286; } if ((tmp = (Math.Abs(53.7662 - lat) + Math.Abs(27.3347 - lng))) < cur) { cur = tmp; closest = 287; } if ((tmp = (Math.Abs(53.7817 - lat) + Math.Abs(27.4346 - lng))) < cur) { cur = tmp; closest = 288; } if ((tmp = (Math.Abs(53.7969 - lat) + Math.Abs(27.7967 - lng))) < cur) { cur = tmp; closest = 289; } if ((tmp = (Math.Abs(53.5871 - lat) + Math.Abs(27.0535 - lng))) < cur) { cur = tmp; closest = 290; } if ((tmp = (Math.Abs(53.6404 - lat) + Math.Abs(27.9199 - lng))) < cur) { cur = tmp; closest = 291; } if ((tmp = (Math.Abs(53.6238 - lat) + Math.Abs(27.8977 - lng))) < cur) { cur = tmp; closest = 292; } if ((tmp = (Math.Abs(53.3474 - lat) + Math.Abs(26.6895 - lng))) < cur) { cur = tmp; closest = 293; } if ((tmp = (Math.Abs(52.3973 - lat) + Math.Abs(31.071 - lng))) < cur) { cur = tmp; closest = 294; } if ((tmp = (Math.Abs(54.0022 - lat) + Math.Abs(27.6754 - lng))) < cur) { cur = tmp; closest = 295; } if ((tmp = (Math.Abs(54.2698 - lat) + Math.Abs(27.1067 - lng))) < cur) { cur = tmp; closest = 296; } if ((tmp = (Math.Abs(54.0024 - lat) + Math.Abs(27.7108 - lng))) < cur) { cur = tmp; closest = 297; } if ((tmp = (Math.Abs(54.0072 - lat) + Math.Abs(27.6963 - lng))) < cur) { cur = tmp; closest = 298; } if ((tmp = (Math.Abs(54.0036 - lat) + Math.Abs(27.5669 - lng))) < cur) { cur = tmp; closest = 299; } if ((tmp = (Math.Abs(54.07598 - lat) + Math.Abs(28.00698 - lng))) < cur) { cur = tmp; closest = 300; } if ((tmp = (Math.Abs(53.95295 - lat) + Math.Abs(30.38278 - lng))) < cur) { cur = tmp; closest = 301; } if ((tmp = (Math.Abs(54.04059 - lat) + Math.Abs(28.19813 - lng))) < cur) { cur = tmp; closest = 302; } if ((tmp = (Math.Abs(53.73937 - lat) + Math.Abs(27.69276 - lng))) < cur) { cur = tmp; closest = 303; } if ((tmp = (Math.Abs(53.7766 - lat) + Math.Abs(30.3497 - lng))) < cur) { cur = tmp; closest = 304; } switch (closest) { case 0: return new CityInfo("Indura", "03", 53.4605, 23.8823); case 1: return new CityInfo("Skidelโ€™", "03", 53.5904, 24.2478); case 2: return new CityInfo("Znamenka", "01", 51.88168, 23.65545); case 3: return new CityInfo("Horad Zhodzina", "05", 54.0985, 28.3331); case 4: return new CityInfo("Zhlobin", "02", 52.8926, 30.024); case 5: return new CityInfo("Zhytkavichy", "02", 52.2168, 27.8561); case 6: return new CityInfo("Zhirovichi", "03", 53.0131, 25.3443); case 7: return new CityInfo("Zhaludok", "03", 53.5974, 24.9828); case 8: return new CityInfo("Zhdanovichy", "05", 53.9432, 27.425); case 9: return new CityInfo("Zhabinka", "01", 52.1984, 24.0115); case 10: return new CityInfo("Zyembin", "05", 54.3579, 28.2207); case 11: return new CityInfo("Zelโ€™va", "03", 53.1504, 24.8153); case 12: return new CityInfo("Zyalyony Bor", "05", 54.0119, 28.4843); case 13: return new CityInfo("Zaslawye", "05", 54.0114, 27.2695); case 14: return new CityInfo("Zamostochye", "05", 53.8198, 27.8685); case 15: return new CityInfo("Zalyessye", "03", 54.4192, 26.548); case 16: return new CityInfo("Zabalotstsye", "05", 54.0052, 28.0272); case 17: return new CityInfo("Yelโ€™sk", "02", 51.8141, 29.1522); case 18: return new CityInfo("Yalizava", "06", 53.3994, 29.0048); case 19: return new CityInfo("Yazna", "07", 55.4255, 28.157); case 20: return new CityInfo("Vysokaye", "01", 52.37091, 23.37083); case 21: return new CityInfo("Vselyub", "03", 53.72136, 25.79894); case 22: return new CityInfo("Voranava", "03", 54.1492, 25.3112); case 23: return new CityInfo("Valyevachy", "05", 53.7534, 28.1555); case 24: return new CityInfo("Vitebsk", "07", 55.1904, 30.2049); case 25: return new CityInfo("Vishow", "06", 53.9805, 29.9925); case 26: return new CityInfo("Vishnyeva", "03", 54.7102, 26.5228); case 27: return new CityInfo("Vilyeyka", "05", 54.4914, 26.9111); case 28: return new CityInfo("Vidzy", "07", 55.3945, 26.6305); case 29: return new CityInfo("Veyno", "06", 53.83333, 30.38333); case 30: return new CityInfo("Vyetka", "02", 52.5591, 31.1794); case 31: return new CityInfo("Vyerkhnyadzvinsk", "07", 55.7777, 27.9389); case 32: return new CityInfo("Volkovysk", "03", 53.1561, 24.4513); case 33: return new CityInfo("Vasilyevichy", "02", 52.2512, 29.8288); case 34: return new CityInfo("Valozhyn", "05", 54.0892, 26.5266); case 35: return new CityInfo("Valerโ€™yanovo", "05", 53.9698, 27.6685); case 36: return new CityInfo("Uzda", "05", 53.4627, 27.2137); case 37: return new CityInfo("Ushachy", "07", 55.179, 28.6158); case 38: return new CityInfo("Urechcha", "05", 52.9479, 27.893); case 39: return new CityInfo("Turaw", "02", 52.0683, 27.735); case 40: return new CityInfo("Turets", "03", 53.5263, 26.3125); case 41: return new CityInfo("Traby", "03", 54.1587, 25.9075); case 42: return new CityInfo("Talachyn", "07", 54.4087, 29.6955); case 43: return new CityInfo("Tsimkavichy", "05", 53.0672, 26.9902); case 44: return new CityInfo("Tsyelyakhany", "01", 52.5175, 25.8429); case 45: return new CityInfo("Tatarka", "06", 53.2533, 28.8193); case 46: return new CityInfo("Tarasovo", "05", 53.9253, 27.3815); case 47: return new CityInfo("Svislach", "03", 53.03474, 24.09829); case 48: return new CityInfo("Svir", "05", 54.8517, 26.395); case 49: return new CityInfo("Svyetlahorsk", "02", 52.6329, 29.7389); case 50: return new CityInfo("Surazh", "07", 55.4092, 30.7246); case 51: return new CityInfo("Stowbtsy", "05", 53.4785, 26.7434); case 52: return new CityInfo("Stalovichy", "01", 53.2142, 26.0377); case 53: return new CityInfo("Stolin", "01", 51.89115, 26.84597); case 54: return new CityInfo("Staryya Darohi", "05", 53.0402, 28.267); case 55: return new CityInfo("Budsล‚aw", "05", 54.7985, 27.4132); case 56: return new CityInfo("Starobin", "05", 52.7267, 27.4606); case 57: return new CityInfo("Stanโ€™kava", "05", 53.6292, 27.229); case 58: return new CityInfo("Sasnovy Bor", "02", 52.5194, 29.5988); case 59: return new CityInfo("Sapotskin", "03", 53.8329, 23.6598); case 60: return new CityInfo("Soly", "03", 54.51301, 26.19381); case 61: return new CityInfo("Snow", "05", 53.2201, 26.401); case 62: return new CityInfo("Smarhonโ€™", "03", 54.4798, 26.3957); case 63: return new CityInfo("Smolyany", "07", 54.5969, 30.071); case 64: return new CityInfo("Horad Smalyavichy", "05", 54.0249, 28.0894); case 65: return new CityInfo("Smilavichy", "05", 53.7496, 28.0115); case 66: return new CityInfo("Slutsk", "05", 53.0274, 27.5597); case 67: return new CityInfo("Slonim", "03", 53.0869, 25.3163); case 68: return new CityInfo("Slabada", "05", 54.0087, 27.8866); case 69: return new CityInfo("Slawharad", "06", 53.4429, 31.0014); case 70: return new CityInfo("Skoki", "01", 52.15519, 23.6329); case 71: return new CityInfo("Shklow", "06", 54.2131, 30.2877); case 72: return new CityInfo("Shchuchyn", "03", 53.6014, 24.7465); case 73: return new CityInfo("Shchorsy", "03", 53.6344, 26.1855); case 74: return new CityInfo("Sharkawshchyna", "07", 55.3689, 27.4686); case 75: return new CityInfo("Syanno", "07", 54.8108, 29.7086); case 76: return new CityInfo("Syenitsa", "05", 53.8313, 27.5343); case 77: return new CityInfo("Syomkava", "05", 54.0101, 27.441); case 78: return new CityInfo("Sarachy", "05", 52.7867, 28.0186); case 79: return new CityInfo("Samakhvalavichy", "05", 53.7396, 27.5037); case 80: return new CityInfo("Salihorsk", "05", 52.7876, 27.5415); case 81: return new CityInfo("Ruzhany", "01", 52.86322, 24.89357); case 82: return new CityInfo("Rudzyensk", "05", 53.5983, 27.8621); case 83: return new CityInfo("Rudawka", "05", 53.2351, 26.6494); case 84: return new CityInfo("Rasony", "07", 55.9058, 28.8135); case 85: return new CityInfo("Rossโ€™", "03", 53.28411, 24.40721); case 86: return new CityInfo("Rahachow", "02", 53.0934, 30.0495); case 87: return new CityInfo("Rechytsa", "02", 52.3617, 30.3916); case 88: return new CityInfo("Rakaw", "05", 53.9674, 27.0562); case 89: return new CityInfo("Radashkovichy", "05", 54.1554, 27.2412); case 90: return new CityInfo("Pukhavichy", "05", 53.5297, 28.2467); case 91: return new CityInfo("Pruzhany", "01", 52.556, 24.4573); case 92: return new CityInfo("Prawdzinski", "05", 53.5248, 27.8303); case 93: return new CityInfo("Paplavy", "05", 53.8066, 28.8698); case 94: return new CityInfo("Polatsk", "07", 55.4879, 28.7856); case 95: return new CityInfo("Pahost", "05", 53.8482, 29.1491); case 96: return new CityInfo("Plyeshchanitsy", "05", 54.4235, 27.8301); case 97: return new CityInfo("Pinsk", "01", 52.1229, 26.0951); case 98: return new CityInfo("Pyatryshki", "05", 54.0686, 27.2179); case 99: return new CityInfo("Pyetrykaw", "02", 52.1289, 28.4921); case 100: return new CityInfo("Pastavy", "07", 55.11676, 26.83263); case 101: return new CityInfo("Parychy", "02", 52.8042, 29.4176); case 102: return new CityInfo("Azyory", "03", 53.7216, 24.1836); case 103: return new CityInfo("Azyartso", "05", 53.8397, 27.3917); case 104: return new CityInfo("Osveya", "07", 56.0147, 28.11049); case 105: return new CityInfo("Ostrovy", "05", 53.7335, 28.3857); case 106: return new CityInfo("Astravyets", "03", 54.61378, 25.95537); case 107: return new CityInfo("Astrashytski Haradok", "05", 54.0651, 27.695); case 108: return new CityInfo("Asnyezhytsy", "01", 52.1891, 26.1299); case 109: return new CityInfo("Asipovichy", "06", 53.3011, 28.6386); case 110: return new CityInfo("Orsha", "07", 54.5081, 30.4172); case 111: return new CityInfo("Opsa", "07", 55.5359, 26.8238); case 112: return new CityInfo("Aktsyabrski", "02", 52.644, 28.8801); case 113: return new CityInfo("Novy Svyerzhanโ€™", "05", 53.4542, 26.7301); case 114: return new CityInfo("Kadino", "06", 53.88389, 30.52028); case 115: return new CityInfo("Novoselโ€™ye", "05", 53.9162, 27.2009); case 116: return new CityInfo("Novoye Pashkovo", "06", 53.9567, 30.2496); case 117: return new CityInfo("Novolukomlโ€™", "07", 54.66192, 29.15016); case 118: return new CityInfo("Novaya Huta", "02", 52.1032, 30.9837); case 119: return new CityInfo("Nasilava", "05", 54.30441, 26.78209); case 120: return new CityInfo("Nyasvizh", "05", 53.2189, 26.6779); case 121: return new CityInfo("Nyakhachava", "01", 52.644, 25.2027); case 122: return new CityInfo("Nyehorelaye", "05", 53.6104, 27.0733); case 123: return new CityInfo("Navapolatsk", "07", 55.5318, 28.5987); case 124: return new CityInfo("Novogrudok", "03", 53.5942, 25.8191); case 125: return new CityInfo("Narowlya", "02", 51.7961, 29.5004); case 126: return new CityInfo("Narach", "05", 54.9102, 26.708); case 127: return new CityInfo("Narach", "05", 54.5652, 26.7314); case 128: return new CityInfo("Myshkavichy", "06", 53.2172, 29.512); case 129: return new CityInfo("Myadzyel", "05", 54.8789, 26.9371); case 130: return new CityInfo("Mstsislaw", "06", 54.0185, 31.7217); case 131: return new CityInfo("Motalโ€™", "01", 52.3138, 25.6072); case 132: return new CityInfo("Mastok", "06", 53.9794, 30.4592); case 133: return new CityInfo("Mosar", "07", 55.2232, 27.4609); case 134: return new CityInfo("Mir", "03", 53.4544, 26.467); case 135: return new CityInfo("Myory", "07", 55.6222, 27.6281); case 136: return new CityInfo("Minsk", "04", 53.9, 27.56667); case 137: return new CityInfo("Mikashevichy", "01", 52.2173, 27.476); case 138: return new CityInfo("Myazhysyatki", "06", 53.7776, 30.1765); case 139: return new CityInfo("Myezhava", "07", 54.6274, 30.3082); case 140: return new CityInfo("Mazyr", "02", 52.0495, 29.2456); case 141: return new CityInfo("Mosty", "03", 53.4122, 24.5387); case 142: return new CityInfo("Marโ€™โ€™ina Horka", "05", 53.509, 28.147); case 143: return new CityInfo("Malaryta", "01", 51.7905, 24.074); case 144: return new CityInfo("Maladzyechna", "05", 54.3167, 26.854); case 145: return new CityInfo("Mahilyow", "06", 53.9168, 30.3449); case 146: return new CityInfo("Machulishchy", "05", 53.7788, 27.5948); case 147: return new CityInfo("Lyubcha", "03", 53.7522, 26.0603); case 148: return new CityInfo("Lyubanโ€™", "05", 52.7985, 28.0048); case 149: return new CityInfo("Lyntupy", "07", 55.0516, 26.3103); case 150: return new CityInfo("Lyepyelโ€™", "07", 54.8814, 28.699); case 151: return new CityInfo("Lyakhavichy", "01", 53.0388, 26.2656); case 152: return new CityInfo("Luninyets", "01", 52.2472, 26.8047); case 153: return new CityInfo("Luhavaya Slabada", "05", 53.7823, 27.8434); case 154: return new CityInfo("Loyew", "02", 51.9458, 30.7953); case 155: return new CityInfo("Lotva", "06", 54.1013, 30.2639); case 156: return new CityInfo("Loshnitsa", "05", 54.2796, 28.7649); case 157: return new CityInfo("Lahoysk", "05", 54.2064, 27.8512); case 158: return new CityInfo("Lyozna", "07", 55.0247, 30.797); case 159: return new CityInfo("Lida", "03", 53.88333, 25.29972); case 160: return new CityInfo("Lyelโ€™chytsy", "02", 51.7862, 28.3288); case 161: return new CityInfo("Lahishyn", "01", 52.339, 25.9867); case 162: return new CityInfo("Krychaw", "06", 53.7125, 31.717); case 163: return new CityInfo("Krupki", "05", 54.3178, 29.1374); case 164: return new CityInfo("Kruhlaye", "06", 54.2497, 29.7968); case 165: return new CityInfo("Kryvichy", "05", 54.7132, 27.2886); case 166: return new CityInfo("Kreva", "03", 54.3118, 26.2916); case 167: return new CityInfo("Krasnyy Bereg", "06", 53.3291, 30.1929); case 168: return new CityInfo("Krasnaye", "05", 54.2438, 27.0758); case 169: return new CityInfo("Krasnoselโ€™skiy", "03", 53.26494, 24.42398); case 170: return new CityInfo("Krasnapollye", "06", 53.3353, 31.3999); case 171: return new CityInfo("Chyrvonaya Slabada", "05", 52.8522, 27.1698); case 172: return new CityInfo("Kastsyukowka", "02", 52.5387, 30.9173); case 173: return new CityInfo("Kastsyukovichy", "06", 53.3525, 32.0514); case 174: return new CityInfo("Kosava", "01", 52.7583, 25.1554); case 175: return new CityInfo("Korolรซv Stan", "05", 53.9865, 27.7982); case 176: return new CityInfo("Karma", "02", 53.1301, 30.8016); case 177: return new CityInfo("Karanyowka", "02", 52.3506, 31.1121); case 178: return new CityInfo("Karelichy", "03", 53.5648, 26.1406); case 179: return new CityInfo("Kopysโ€™", "07", 54.3221, 30.2897); case 180: return new CityInfo("Kapylโ€™", "05", 53.1516, 27.0913); case 181: return new CityInfo("Konstantinovo", "07", 54.6593, 29.2684); case 182: return new CityInfo("Komsyenichy", "06", 54.1503, 29.8794); case 183: return new CityInfo("Kalodzishchy", "05", 53.944, 27.7823); case 184: return new CityInfo("Kokhanava", "07", 54.4611, 30.0018); case 185: return new CityInfo("Kobryn", "01", 52.2138, 24.3564); case 186: return new CityInfo("Knyazhytsy", "06", 53.9747, 30.1513); case 187: return new CityInfo("Klimavichy", "06", 53.6079, 31.9586); case 188: return new CityInfo("Klichaw", "06", 53.4923, 29.3356); case 189: return new CityInfo("Klyetsk", "05", 53.0635, 26.6321); case 190: return new CityInfo("Kirawsk", "06", 53.2693, 29.4752); case 191: return new CityInfo("Khoyniki", "02", 51.8911, 29.9552); case 192: return new CityInfo("Khotsimsk", "06", 53.4086, 32.578); case 193: return new CityInfo("Kholopenichi", "05", 54.51746, 28.95645); case 194: return new CityInfo("Khodasy", "06", 53.9266, 31.4779); case 195: return new CityInfo("Khalโ€™ch", "02", 52.5643, 31.1364); case 196: return new CityInfo("Kamyanyuki", "01", 52.55757, 23.80525); case 197: return new CityInfo("Kamyennyya Lavy", "06", 54.0898, 30.2962); case 198: return new CityInfo("Kamyanyets", "01", 52.40013, 23.81); case 199: return new CityInfo("Kalinkavichy", "02", 52.1323, 29.3257); case 200: return new CityInfo("Iwye", "03", 53.9299, 25.7727); case 201: return new CityInfo("Ivyanyets", "05", 53.8864, 26.7432); case 202: return new CityInfo("Ivatsevichy", "01", 52.709, 25.3401); case 203: return new CityInfo("Ivanava", "01", 52.1451, 25.5365); case 204: return new CityInfo("Ilโ€™ya", "05", 54.4167, 27.2958); case 205: return new CityInfo("Hrodna", "03", 53.6884, 23.8258); case 206: return new CityInfo("Horki", "06", 54.2862, 30.9863); case 207: return new CityInfo("Homyel'", "02", 52.4345, 30.9754); case 208: return new CityInfo("Hlybokaye", "07", 55.1384, 27.6905); case 209: return new CityInfo("Hantsavichy", "01", 52.758, 26.43); case 210: return new CityInfo("Hotsk", "05", 52.5215, 27.1385); case 211: return new CityInfo("Haradok", "07", 55.4624, 29.9845); case 212: return new CityInfo("Haradzishcha", "06", 54.1893, 30.6231); case 213: return new CityInfo("Haradzishcha", "01", 53.3247, 26.0107); case 214: return new CityInfo("Haradzyeya", "05", 53.3121, 26.538); case 215: return new CityInfo("Harbavichy", "06", 53.8183, 30.7001); case 216: return new CityInfo("Halโ€™shany", "03", 54.2585, 26.0144); case 217: return new CityInfo("Halowchyn", "06", 54.0601, 29.9184); case 218: return new CityInfo("Hlusk", "06", 52.903, 28.6845); case 219: return new CityInfo("Hlusha", "06", 53.0868, 28.8567); case 220: return new CityInfo("Hyeranyony", "03", 54.1159, 25.5773); case 221: return new CityInfo("Hatava", "05", 53.7829, 27.6407); case 222: return new CityInfo("Dzyarzhynsk", "05", 53.6832, 27.138); case 223: return new CityInfo("Dyatlovo", "03", 53.4631, 25.4068); case 224: return new CityInfo("Dukora", "05", 53.6786, 27.94); case 225: return new CityInfo("Dubrowna", "07", 54.5716, 30.691); case 226: return new CityInfo("Drybin", "06", 54.1192, 31.0939); case 227: return new CityInfo("Druya", "07", 55.7906, 27.4505); case 228: return new CityInfo("Drahichyn", "01", 52.1874, 25.1597); case 229: return new CityInfo("Dowsk", "02", 53.1571, 30.4601); case 230: return new CityInfo("Damachava", "01", 51.75, 23.6); case 231: return new CityInfo("Dokshytsy", "07", 54.8918, 27.7667); case 232: return new CityInfo("Dobrush", "02", 52.4089, 31.3237); case 233: return new CityInfo("Dzisna", "07", 55.5676, 28.2076); case 234: return new CityInfo("Davyd-Haradok", "01", 52.0566, 27.2161); case 235: return new CityInfo("Dashkawka", "06", 53.7352, 30.2625); case 236: return new CityInfo("Chervyenโ€™", "05", 53.7059, 28.4313); case 237: return new CityInfo("Charnawchytsy", "01", 52.21948, 23.74043); case 238: return new CityInfo("Cherykaw", "06", 53.5689, 31.3831); case 239: return new CityInfo("Chachersk", "02", 52.9164, 30.9179); case 240: return new CityInfo("Chavusy", "06", 53.8098, 30.9717); case 241: return new CityInfo("Chashniki", "07", 54.8584, 29.1608); case 242: return new CityInfo("Bykhaw", "06", 53.521, 30.2454); case 243: return new CityInfo("Byaroza", "01", 52.5314, 24.9786); case 244: return new CityInfo("Buynichy", "06", 53.8536, 30.2671); case 245: return new CityInfo("Buda-Kashalyova", "02", 52.7179, 30.5701); case 246: return new CityInfo("Brest", "01", 52.09755, 23.68775); case 247: return new CityInfo("Braslaw", "07", 55.6413, 27.0418); case 248: return new CityInfo("Brahin", "02", 51.787, 30.2677); case 249: return new CityInfo("Turets-Bayary", "05", 54.3785, 26.6581); case 250: return new CityInfo("Baruny", "03", 54.3171, 26.1376); case 251: return new CityInfo("Vyaliki Trastsyanets", "05", 53.851, 27.7139); case 252: return new CityInfo("Bolโ€™shoye Stiklevo", "05", 53.8693, 27.7005); case 253: return new CityInfo("Vyalikaya Mashchanitsa", "06", 53.9541, 29.6255); case 254: return new CityInfo("Vyalikaya Byerastavitsa", "03", 53.196, 24.0166); case 255: return new CityInfo("Bobr", "05", 54.342, 29.2736); case 256: return new CityInfo("Blonโ€™", "05", 53.5269, 28.1732); case 257: return new CityInfo("Byarozawka", "03", 53.72406, 25.49709); case 258: return new CityInfo("Byerazino", "05", 53.8391, 28.9879); case 259: return new CityInfo("Byalynichy", "06", 53.9994, 29.7141); case 260: return new CityInfo("Byelaazyorsk", "01", 52.4731, 25.1784); case 261: return new CityInfo("Byelagruda", "03", 53.80128, 25.16711); case 262: return new CityInfo("Byahomlโ€™", "07", 54.7316, 28.0577); case 263: return new CityInfo("Barysaw", "05", 54.2279, 28.505); case 264: return new CityInfo("Baranovichi", "01", 53.1327, 26.0139); case 265: return new CityInfo("Baranโ€™", "07", 54.4784, 30.3159); case 266: return new CityInfo("Babruysk", "06", 53.1384, 29.2214); case 267: return new CityInfo("Ashmyany", "03", 54.421, 25.936); case 268: return new CityInfo("Antopalโ€™", "01", 52.2038, 24.7863); case 269: return new CityInfo("Balbasava", "07", 54.4207, 30.2909); case 270: return new CityInfo("Ryasno, ะ ััะฝะพ, ะ ะฐัะฝะฐ", "06", 53.7115, 30.6176); case 271: return new CityInfo("Novosรซlki", "06", 53.813, 30.3769); case 272: return new CityInfo("Ramanavichy", "06", 53.8653, 30.5597); case 273: return new CityInfo("Palykavichy Pyershyya", "06", 53.9854, 30.36); case 274: return new CityInfo("Horad Kobryn", "01", 52.21611, 24.36639); case 275: return new CityInfo("Horad Luninyets", "01", 52.25028, 26.79944); case 276: return new CityInfo("Horad Pinsk", "01", 52.12139, 26.07278); case 277: return new CityInfo("Horad Orsha", "07", 54.51528, 30.40528); case 278: return new CityInfo("Horad Rechytsa", "02", 52.36389, 30.39472); case 279: return new CityInfo("Horad Krychaw", "06", 53.69889, 31.71417); case 280: return new CityInfo("Fanipol", "05", 53.74998, 27.33338); case 281: return new CityInfo("Natalโ€™yewsk", "05", 53.7275, 28.4325); case 282: return new CityInfo("Gorodishche", "05", 53.9833, 27.8384); case 283: return new CityInfo("Yukhnovka", "05", 53.9753, 27.8586); case 284: return new CityInfo("Khatsyezhyna", "05", 53.9094, 27.3069); case 285: return new CityInfo("Schomyslitsa", "05", 53.8211, 27.4522); case 286: return new CityInfo("Yubilyeyny", "05", 53.8191, 27.5215); case 287: return new CityInfo("Charkasy", "05", 53.7662, 27.3347); case 288: return new CityInfo("Atolina", "05", 53.7817, 27.4346); case 289: return new CityInfo("Pryvolโ€™ny", "05", 53.7969, 27.7967); case 290: return new CityInfo("Enyerhyetykaw", "05", 53.5871, 27.0535); case 291: return new CityInfo("Svislach", "05", 53.6404, 27.9199); case 292: return new CityInfo("Druzhny", "05", 53.6238, 27.8977); case 293: return new CityInfo("Vishnyavyets", "05", 53.3474, 26.6895); case 294: return new CityInfo("Peramoga", "02", 52.3973, 31.071); case 295: return new CityInfo("Borovlyany", "05", 54.0022, 27.6754); case 296: return new CityInfo("Chystโ€™", "05", 54.2698, 27.1067); case 297: return new CityInfo("Lyeskawka", "05", 54.0024, 27.7108); case 298: return new CityInfo("Lyasny", "05", 54.0072, 27.6963); case 299: return new CityInfo("Balโ€™shavik", "05", 54.0036, 27.5669); case 300: return new CityInfo("Usiazh", "05", 54.07598, 28.00698); case 301: return new CityInfo("ะะธะบะพะปะฐะตะฒะบะฐ-2", "06", 53.95295, 30.38278); case 302: return new CityInfo("ะžะบั‚ัะฑั€ัŒัะบะธะน", "05", 54.04059, 28.19813); case 303: return new CityInfo("Michanovichi", "05", 53.73937, 27.69276); default: return new CityInfo("Posรซlok Voskhod", "06", 53.7766, 30.3497); } } } }
John-Leitch/Aphid
Components.Aphid/Library/Geo/cityinfo.BY.amd64.cs
C#
gpl-2.0
130,079
<div id="form" class="alert alert-block alert-new "> <h4 class="alert-heading">้€‰ๆ‹ฉ่ฆๅฑ•็คบ็š„้€š็”จๅˆธ</h4> <table> <tr> <th>ๆ“ไฝœ</th> <td style="width:400px;"> <div class="reply-news-edit-button"> <button class="btn" style="width:100%;" type="button" onclick="$('#modal-module-menus').modal();">้€‰ๆ‹ฉ่ฆๅฑ•็คบ็š„้€š็”จๅˆธ</button> </div> </td> </tr> <tr > <th>้€š็”จๅˆธไฟกๆฏ</th> <td> <div id="entry-preview" class="alert alert-info reply-news-list reply-news-list-first{if (empty($coupons))} hide{/if}" style="width:400px;"> <div class="reply-news-list-cover"><img src="{php echo $this->getPicUrl($paper['logo']) }" alt=""></div> <div class="reply-news-list-detail" style="width:388px;"> <div class="title">{$coupons['name']}</div> <div class="content">{php echo strip_tags(htmlspecialchars_decode($coupons['description']))}</div> </div> </div> <input type="hidden" name="coupons_id" value="{$coupons['id']}"/> </td> </tr> </table> </div> <div id="modal-module-menus" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true" style=" width:600px;"> <div class="modal-header"><button aria-hidden="true" data-dismiss="modal" class="close" type="button">ร—</button><h3>้€‰ๆ‹ฉ่ฆๅฑ•็คบ็š„้€š็”จๅˆธ</h3></div> <div class="modal-body"> <table class="tb"> <tr> <th><label for="">ๆœ็ดขๅ…ณ้”ฎๅญ—</label></th> <td> <div class="input-append" style="display:block;"> <input type="text" class="span3" name="keyword" value="" id="search-kwd" /><button type="button" class="btn" onclick="search_entries();">ๆœ็ดข</button> </div> </td> </tr> </table> <div id="module-menus"></div> </div> <div class="modal-footer"><a href="#" class="btn" data-dismiss="modal" aria-hidden="true">ๅ…ณ้—ญ</a></div> </div> <script type="text/javascript"> search_entries(); function search_entries() { var kwd = $.trim($('#search-kwd').val()); $.post('{php echo $this->createWebUrl('query');}', {keyword: kwd}, function(dat){ $('#module-menus').html(dat); }); } function select_entry(o) { $('#entry-preview img').attr('src', o.logo); $('#entry-preview .title').html(o.name); $('#entry-preview .content').html(o.description); $(':hidden[name="coupons_id"]').val(o.id); $('#entry-preview').show(); } </script>
JoelPub/wordpress-amazon
order/source/modules/izc_strcoupon/template/form.html
HTML
gpl-2.0
2,343
//Ageless House Deed For RunUO SVN //By DxMonkey - AKA - Tresdni //Ultima Eclipse - www.ultimaeclipse.com using System; using Server.Network; using Server.Prompts; using Server.Items; using Server.Targeting; using Server.Multis; namespace Server.Items { public class AgelessHouseTarget : Target { private AgelessHouseDeed m_Deed; public AgelessHouseTarget( AgelessHouseDeed deed ) : base( 1, false, TargetFlags.None ) { m_Deed = deed; } protected override void OnTarget( Mobile from, object target ) { if ( m_Deed.Deleted || m_Deed.RootParent != from ) return; if ( target is HouseSign ) { HouseSign item = (HouseSign)target; if ( item.RestrictDecay == true ) { from.SendMessage ( "This house is already ageless" ); } else { item.RestrictDecay = true; from.SendMessage ( "The house is now ageless for 30 Days" ); Timer m_timer = new AgelessHouseTimer( item ); m_timer.Start(); m_Deed.Delete(); // Delete the ageless house deed } } else { from.SendMessage ( "You must target a house sign!" ); } } } public class AgelessHouseTimer : Timer { private HouseSign sign; public AgelessHouseTimer( HouseSign h ) : base( TimeSpan.FromDays( 30 ) ) { sign = h; Priority = TimerPriority.OneSecond; } protected override void OnTick() { sign.RestrictDecay = false; } } public class AgelessHouseDeed : Item { [Constructable] public AgelessHouseDeed() : base( 0x14F0 ) { Weight = 1.0; Hue = 1159; LootType = LootType.Blessed; Name = "An Ageless House Deed ( 30 Days )"; } public AgelessHouseDeed( Serial serial ) : base( serial ) { } public override void Serialize( GenericWriter writer ) { base.Serialize( writer ); writer.Write( (int) 0 ); // version } public override void Deserialize( GenericReader reader ) { base.Deserialize( reader ); LootType = LootType.Blessed; int version = reader.ReadInt(); } public override void OnDoubleClick( Mobile from ) // Override double click of the deed to call our target { if ( !IsChildOf( from.Backpack ) ) // Make sure its in their pack { from.SendLocalizedMessage( 1042001 ); // That must be in your pack for you to use it. } else { from.SendMessage ( "Which house would you like to make ageless?" ); from.Target = new AgelessHouseTarget( this ); // Call our target } } } }
tbewley10310/Land-of-Archon
Scripts.LV2/Items/Deeds/AgelessHouseDeed.cs
C#
gpl-2.0
2,524
.acm-spotlight .t3-module { padding: 0; } .acm-spotlight .t3-module .module-title { font-size: 14px; margin: 0 0 13px; text-align: left; } .acm-spotlight .t3-module .module-title span { background: #e7181e; color: #ffffff; display: inline-block; padding: 6.5px 13px; } .acm-spotlight .t3-module .container { padding: 0; } .acm-spotlight .t3-module .section-title { display: none; } .acm-spotlight .t3-module .section-inner { padding: 0; } .acm-spotlight > .row > div > div { margin-bottom: 26px; } .ie8 .acm-spotlight .acm-testimonials .container { width: auto; } .acm-spotlight .acm-testimonials .carousel-inner .item { padding: 0; } .acm-spotlight .acm-testimonials.style-3 .carousel-inner { overflow: visible; } @media screen and (max-width: 991px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner .item { padding-left: 60px; } } @media screen and (max-width: 767px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner .item { padding-left: 0; } } .acm-spotlight .acm-testimonials.style-3 .carousel-inner:before { left: -80px; } @media screen and (max-width: 767px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner:before { left: -40px; } } @media (min-width: 768px) and (max-width: 1199px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner:before { left: 0; } } @media (max-width: 1342px) and (min-width: 998px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner:before { left: 0; } } @media (max-width: 1342px) and (min-width: 998px) { .acm-spotlight .acm-testimonials.style-3 .carousel-inner .testimonial-text { padding-left: 80px; } }
ForAEdesWeb/AEW22
templates/uber/local/acm/spotlight/css/themes/red/style.css
CSS
gpl-2.0
1,665
<?php /** * * Password Strength [English] * * @copyright (c) 2016 Matt Friedman * @license GNU General Public License, version 2 (GPL-2.0) * */ /** * DO NOT CHANGE */ if (!defined('IN_PHPBB')) { exit; } if (empty($lang) || !is_array($lang)) { $lang = array(); } // DEVELOPERS PLEASE NOTE // // All language files should use UTF-8 as their encoding and the files must not contain a BOM. // // Placeholders can now contain order information, e.g. instead of // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // translators to re-order the output of data while ensuring it remains correct // // You do not need this where single placeholders are used, e.g. 'Message %d' is fine // equally where a string contains only two placeholders which are used to wrap text // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine $lang = array_merge($lang, array( 'PASSWORD_STRENGTH_TYPE' => 'Password strength algorithm', 'PASSWORD_STRENGTH_TYPE_EXPLAIN' => 'Choose an algorithm for determining the strength of a password.<br/><strong>Complexity</strong> looks for mixed characters, numbers, symbols and length in a password, encouraging complex passwords.<br/><strong>zxcvbn</strong> (by DropBox) calculates how easily a password can be guessed, allowing for strong user-friendly passwords.', 'PASSWORD_STRENGTH_TYPE_COMPLEX' => 'Complexity', 'PASSWORD_STRENGTH_TYPE_ZXCVBN' => 'zxcvbn algorithm', ));
VSEphpbb/passwordstrength
language/en/acp_passwordstrength.php
PHP
gpl-2.0
1,461
<template name="list_posts"> <div class="container pt"> <div class="row"> <div class="col-lg-0 col-lg-offset-2"> <h2>Blog Posts</h2> <a href="/admin/posts/add" class="btn btn-primary">Create Post</a> <br> <br> <table class="table table-striped"> <tr> <th>Post Title</th> <th>Date Created</th> <th></th> </tr> {{#each posts}} <tr> <td>{{title}}</td> <td>{{formatDate updatedAt}}</td> <td><a href="/admin/posts/{{_id}}/edit" class="btn btn-default btn-tiny">Edit</a> <button class="btn btn-default delete_post">Delete</button> </td> </tr> {{else}} <tr> <td>There are no posts</td> </tr> {{/each}} </table> </div> </div> </div> </template>
TimeBandit/meteor-training-apps
codefolio/client/templates/admin/posts/list_post.html
HTML
gpl-2.0
1,181
<?php /** * TOP API: taobao.skus.quantity.update request * * @author auto create * @since 1.0, 2012-11-01 12:40:06 */ class SkusQuantityUpdateRequest { /** * ๅ•†ๅ“ๆ•ฐๅญ—ID๏ผŒๅฟ…ๅกซๅ‚ๆ•ฐ **/ private $numIid; /** * ็‰นๆฎŠๅฏ้€‰๏ผŒskuIdQuantitiesไธบ็ฉบ็š„ๆ—ถๅ€™็”จ่ฏฅๅญ—ๆฎต้€š่ฟ‡outerIdๆฅๆŒ‡ๅฎšskuๅ’Œๅ…ถๅบ“ๅญ˜ไฟฎๆ”นๅ€ผใ€‚ๆ ผๅผไธบouterId:ๅบ“ๅญ˜ไฟฎๆ”นๅ€ผ;outerId:ๅบ“ๅญ˜ไฟฎๆ”นๅ€ผใ€‚ๅฝ“skuIdQuantitiesไธไธบ็ฉบ็š„ๆ—ถๅ€™่ฏฅๅญ—ๆฎตๅคฑๆ•ˆใ€‚ๅฝ“ไธ€ไธชouterIdๅฏนๅบ”ๅคšไธชskuๆ—ถ๏ผŒๆ‰€ๆœ‰ๅŒน้…ๅˆฐ็š„sku้ƒฝไผš่ขซไฟฎๆ”นๅบ“ๅญ˜ใ€‚ๆœ€ๅคšๆ”ฏๆŒ20ไธชSKUๅŒๆ—ถไฟฎๆ”นใ€‚ **/ private $outeridQuantities; /** * skuๅบ“ๅญ˜ๆ‰น้‡ไฟฎๆ”นๅ…ฅๅ‚๏ผŒ็”จไบŽๆŒ‡ๅฎšไธ€ๆ‰นskuๅ’Œๆฏไธชsku็š„ๅบ“ๅญ˜ไฟฎๆ”นๅ€ผ๏ผŒ็‰นๆฎŠๅฏๅกซใ€‚ๆ ผๅผไธบskuId:ๅบ“ๅญ˜ไฟฎๆ”นๅ€ผ;skuId:ๅบ“ๅญ˜ไฟฎๆ”นๅ€ผใ€‚ๆœ€ๅคšๆ”ฏๆŒ20ไธชSKUๅŒๆ—ถไฟฎๆ”นใ€‚ **/ private $skuidQuantities; /** * ๅบ“ๅญ˜ๆ›ดๆ–ฐๆ–นๅผ๏ผŒๅฏ้€‰ใ€‚1ไธบๅ…จ้‡ๆ›ดๆ–ฐ๏ผŒ2ไธบๅขž้‡ๆ›ดๆ–ฐใ€‚ๅฆ‚ๆžœไธๅกซ๏ผŒ้ป˜่ฎคไธบๅ…จ้‡ๆ›ดๆ–ฐใ€‚ๅฝ“้€‰ๆ‹ฉๅ…จ้‡ๆ›ดๆ–ฐๆ—ถ๏ผŒๅฆ‚ๆžœๅบ“ๅญ˜ๆ›ดๆ–ฐๅ€ผไผ ๅ…ฅ็š„ๆ˜ฏ่ดŸๆ•ฐ๏ผŒไผšๅ‡บ้”™ๅนถ่ฟ”ๅ›ž้”™่ฏฏ็ ๏ผ›ๅฝ“้€‰ๆ‹ฉๅขž้‡ๆ›ดๆ–ฐๆ—ถ๏ผŒๅฆ‚ๆžœๅบ“ๅญ˜ๆ›ดๆ–ฐๅ€ผไธบ่ดŸๆ•ฐไธ”็ปๅฏนๅ€ผๅคงไบŽๅฝ“ๅ‰ๅบ“ๅญ˜๏ผŒๅˆ™skuๅบ“ๅญ˜ไผš่ฎพ็ฝฎไธบ0. **/ private $type; private $apiParas = array(); public function setNumIid($numIid) { $this->numIid = $numIid; $this->apiParas["num_iid"] = $numIid; } public function getNumIid() { return $this->numIid; } public function setOuteridQuantities($outeridQuantities) { $this->outeridQuantities = $outeridQuantities; $this->apiParas["outerid_quantities"] = $outeridQuantities; } public function getOuteridQuantities() { return $this->outeridQuantities; } public function setSkuidQuantities($skuidQuantities) { $this->skuidQuantities = $skuidQuantities; $this->apiParas["skuid_quantities"] = $skuidQuantities; } public function getSkuidQuantities() { return $this->skuidQuantities; } public function setType($type) { $this->type = $type; $this->apiParas["type"] = $type; } public function getType() { return $this->type; } public function getApiMethodName() { return "taobao.skus.quantity.update"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->numIid,"numIid"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }
Jeepal/iLogin
API/taobao/top/request/SkusQuantityUpdateRequest.php
PHP
gpl-2.0
2,412
import json import mock import unittest from django.http import HttpResponse, HttpResponseNotFound from pulp.server.exceptions import InputEncodingError, PulpCodedValidationException from pulp.server.webservices.controllers.base import json_encoder as pulp_json_encoder from pulp.server.webservices.views import util from pulp.server.webservices.views.util import (json_body_allow_empty, json_body_required) class TestResponseGenerators(unittest.TestCase): """ Test webservices utilities. """ def test_generate_json_response_default_params(self): """ Make sure that the response is correct under normal conditions. """ test_content = {'foo': 'bar'} response = util.generate_json_response(test_content) self.assertTrue(isinstance(response, HttpResponse)) self.assertEqual(response.status_code, 200) self.assertEqual(response._headers.get('content-type'), ('Content-Type', 'application/json')) response_content = json.loads(response.content) self.assertEqual(response_content, test_content) def test_generate_json_response_not_found(self): """ Test that response is correct for non-base HttpResponses """ response = util.generate_json_response(None, HttpResponseNotFound) self.assertTrue(isinstance(response, HttpResponseNotFound)) self.assertEqual(response.status_code, 404) self.assertEqual(response._headers.get('content-type'), ('Content-Type', 'application/json')) def test_generate_json_response_invalid_response_class(self): """ Test that an invalid response_class raises a TypeError. """ class FakeResponse(): pass self.assertRaises(TypeError, util.generate_json_response, FakeResponse) @mock.patch('pulp.server.webservices.views.util.json') def test_generate_json_response_with_pulp_encoder(self, mock_json): """ Ensure that the shortcut function uses the specified encoder. """ test_content = {'foo': 'bar'} util.generate_json_response_with_pulp_encoder(test_content) mock_json.dumps.assert_called_once_with(test_content, default=pulp_json_encoder) @mock.patch('pulp.server.webservices.views.util.iri_to_uri') def test_generate_redirect_response(self, mock_iri_to_uri): """ Test HttpResponseRedirect. """ test_content = {'foo': 'bar'} href = '/some/url/' response = HttpResponse(content=test_content) redirect_response = util.generate_redirect_response(response, href) self.assertEqual(redirect_response.status_code, 201) self.assertEqual(redirect_response.reason_phrase, 'CREATED') self.assertEqual(redirect_response._headers['location'][1], str(mock_iri_to_uri.return_value)) mock_iri_to_uri.assert_called_once_with(href) class TestMustHaveJSONBody(unittest.TestCase): def test_json_body_required_valid(self): mock_request = mock.MagicMock() mock_request.body = '{"Valid": "JSON"}' @json_body_required def mock_function(self, request): return request final_request = mock_function(self, mock_request) self.assertEqual(final_request.body_as_json, {"Valid": "JSON"}) def test_json_body_required_invalid(self): mock_request = mock.MagicMock() mock_request.body = '{"Invalid": "JSON"' @json_body_required def mock_function(self, request): return request try: mock_function(self, mock_request) except PulpCodedValidationException, response: pass else: raise AssertionError('PulpCodedValidationException shoudl be raised if invalid JSON' ' is passed.') self.assertEqual(response.http_status_code, 400) self.assertEqual(response.error_code.code, 'PLP1009') def test_json_body_required_empty(self): mock_request = mock.MagicMock() mock_request.body = '' @json_body_required def mock_function(self, request): return request try: mock_function(self, mock_request) except PulpCodedValidationException, response: pass else: raise AssertionError('PulpCodedValidationException shoudl be raised if invalid JSON' ' is passed.') self.assertEqual(response.http_status_code, 400) self.assertEqual(response.error_code.code, 'PLP1009') def test_json_body_allow_empty_valid(self): mock_request = mock.MagicMock() mock_request.body = '{"Valid": "JSON"}' @json_body_required def mock_function(self, request): return request final_request = mock_function(self, mock_request) self.assertEqual(final_request.body_as_json, {"Valid": "JSON"}) def test_json_body_allow_empty_no_body(self): mock_request = mock.MagicMock() mock_request.body = '' @json_body_allow_empty def mock_function(self, request): return request final_request = mock_function(self, mock_request) self.assertEqual(final_request.body_as_json, {}) def test_json_body_allow_empty_invalid(self): mock_request = mock.MagicMock() mock_request.body = '{"Invalid": "JSON"' @json_body_required def mock_function(self, request): return request try: mock_function(self, mock_request) except PulpCodedValidationException, response: pass else: raise AssertionError('PulpCodedValidationException shoudl be raised if invalid JSON' ' is passed.') self.assertEqual(response.http_status_code, 400) self.assertEqual(response.error_code.code, 'PLP1009') class TestEnsureInputEncoding(unittest.TestCase): def test_ensure_invalid_input_encoding(self): """ Test invalid input encoding """ input_data = {"invalid": "json\x81"} self.assertRaises(InputEncodingError, util._ensure_input_encoding, input_data) def test_ensure_valid_input_encoding(self): """ Test valid input encoding. """ input = {u'valid': u'json'} response = util._ensure_input_encoding(input) self.assertEqual(response, {'valid': 'json'})
mhrivnak/pulp
server/test/unit/server/webservices/views/test_util.py
Python
gpl-2.0
6,615
/* * Copyright (C) 2005-2015 Team Kodi * http://kodi.tv * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This Program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Kodi; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * http://www.gnu.org/copyleft/gpl.html * */ #include "AutoRecordings.h" #include "Tvheadend.h" #include "tvheadend/Settings.h" #include "tvheadend/utilities/Utilities.h" #include "tvheadend/utilities/Logger.h" using namespace P8PLATFORM; using namespace tvheadend; using namespace tvheadend::entity; using namespace tvheadend::utilities; AutoRecordings::AutoRecordings(CHTSPConnection &conn) : m_conn(conn) { } AutoRecordings::~AutoRecordings() { } void AutoRecordings::Connected() { /* Flag all async fields in case they've been deleted */ for (auto it = m_autoRecordings.begin(); it != m_autoRecordings.end(); ++it) it->second.SetDirty(true); } void AutoRecordings::SyncDvrCompleted() { utilities::erase_if(m_autoRecordings, [](const AutoRecordingMapEntry &entry) { return entry.second.IsDirty(); }); } int AutoRecordings::GetAutorecTimerCount() const { return m_autoRecordings.size(); } void AutoRecordings::GetAutorecTimers(std::vector<PVR_TIMER> &timers) { for (auto tit = m_autoRecordings.begin(); tit != m_autoRecordings.end(); ++tit) { /* Setup entry */ PVR_TIMER tmr; memset(&tmr, 0, sizeof(tmr)); tmr.iClientIndex = tit->second.GetId(); tmr.iClientChannelUid = (tit->second.GetChannel() > 0) ? tit->second.GetChannel() : PVR_TIMER_ANY_CHANNEL; tmr.startTime = tit->second.GetStart(); tmr.endTime = tit->second.GetStop(); if (tmr.startTime == 0) tmr.bStartAnyTime = true; if (tmr.endTime == 0) tmr.bEndAnyTime = true; if (!tmr.bStartAnyTime && tmr.bEndAnyTime) tmr.endTime = tmr.startTime + 60 * 60; // Nominal 1 hour duration if (tmr.bStartAnyTime && !tmr.bEndAnyTime) tmr.startTime = tmr.endTime - 60 * 60; // Nominal 1 hour duration if (tmr.bStartAnyTime && tmr.bEndAnyTime) { tmr.startTime = time(NULL); // now tmr.endTime = tmr.startTime + 60 * 60; // Nominal 1 hour duration } if (tit->second.GetName().empty()) // timers created on backend may not contain a name strncpy(tmr.strTitle, tit->second.GetTitle().c_str(), sizeof(tmr.strTitle) - 1); else strncpy(tmr.strTitle, tit->second.GetName().c_str(), sizeof(tmr.strTitle) - 1); strncpy(tmr.strEpgSearchString, tit->second.GetTitle().c_str(), sizeof(tmr.strEpgSearchString) - 1); strncpy(tmr.strDirectory, tit->second.GetDirectory().c_str(), sizeof(tmr.strDirectory) - 1); strncpy(tmr.strSummary, "", sizeof(tmr.strSummary) - 1); // n/a for repeating timers tmr.state = tit->second.IsEnabled() ? PVR_TIMER_STATE_SCHEDULED : PVR_TIMER_STATE_DISABLED; tmr.iTimerType = TIMER_REPEATING_EPG; tmr.iPriority = tit->second.GetPriority(); tmr.iLifetime = tit->second.GetLifetime(); tmr.iMaxRecordings = 0; // not supported by tvh tmr.iRecordingGroup = 0; // not supported by tvh if (m_conn.GetProtocol() >= 20) tmr.iPreventDuplicateEpisodes = tit->second.GetDupDetect(); else tmr.iPreventDuplicateEpisodes = 0; // not supported by tvh tmr.firstDay = 0; // not supported by tvh tmr.iWeekdays = tit->second.GetDaysOfWeek(); tmr.iEpgUid = PVR_TIMER_NO_EPG_UID; // n/a for repeating timers tmr.iMarginStart = static_cast<unsigned int>(tit->second.GetMarginStart()); tmr.iMarginEnd = static_cast<unsigned int>(tit->second.GetMarginEnd()); tmr.iGenreType = 0; // not supported by tvh? tmr.iGenreSubType = 0; // not supported by tvh? tmr.bFullTextEpgSearch = tit->second.GetFulltext(); tmr.iParentClientIndex = 0; timers.push_back(tmr); } } const unsigned int AutoRecordings::GetTimerIntIdFromStringId(const std::string &strId) const { for (auto tit = m_autoRecordings.begin(); tit != m_autoRecordings.end(); ++tit) { if (tit->second.GetStringId() == strId) return tit->second.GetId(); } Logger::Log(LogLevel::LEVEL_ERROR, "Autorec: Unable to obtain int id for string id %s", strId.c_str()); return 0; } const std::string AutoRecordings::GetTimerStringIdFromIntId(unsigned int intId) const { for (auto tit = m_autoRecordings.begin(); tit != m_autoRecordings.end(); ++tit) { if (tit->second.GetId() == intId) return tit->second.GetStringId(); } Logger::Log(LogLevel::LEVEL_ERROR, "Autorec: Unable to obtain string id for int id %s", intId); return ""; } PVR_ERROR AutoRecordings::SendAutorecAdd(const PVR_TIMER &timer) { return SendAutorecAddOrUpdate(timer, false); } PVR_ERROR AutoRecordings::SendAutorecUpdate(const PVR_TIMER &timer) { if (m_conn.GetProtocol() >= 25) return SendAutorecAddOrUpdate(timer, true); /* Note: there is no "updateAutorec" htsp method for htsp version < 25, thus delete + add. */ PVR_ERROR error = SendAutorecDelete(timer); if (error == PVR_ERROR_NO_ERROR) error = SendAutorecAdd(timer); return error; } PVR_ERROR AutoRecordings::SendAutorecAddOrUpdate(const PVR_TIMER &timer, bool update) { uint32_t u32; const std::string method = update ? "updateAutorecEntry" : "addAutorecEntry"; /* Build message */ htsmsg_t *m = htsmsg_create_map(); if (update) { std::string strId = GetTimerStringIdFromIntId(timer.iClientIndex); if (strId.empty()) { htsmsg_destroy(m); return PVR_ERROR_FAILED; } htsmsg_add_str(m, "id", strId.c_str()); // Autorec DVR Entry ID (string! } htsmsg_add_str(m, "name", timer.strTitle); /* epg search data match string (regexp) */ htsmsg_add_str(m, "title", timer.strEpgSearchString); /* fulltext epg search: */ /* "title" not empty && !fulltext => match strEpgSearchString against episode title only */ /* "title" not empty && fulltext => match strEpgSearchString against episode title, episode */ /* subtitle, episode summary and episode description (HTSPv19) */ if (m_conn.GetProtocol() >= 20) htsmsg_add_u32(m, "fulltext", timer.bFullTextEpgSearch ? 1 : 0); htsmsg_add_s64(m, "startExtra", timer.iMarginStart); htsmsg_add_s64(m, "stopExtra", timer.iMarginEnd); if (m_conn.GetProtocol() >= 25) { htsmsg_add_u32(m, "removal", timer.iLifetime); // remove from disk htsmsg_add_u32(m, "retention", DVR_RET_ONREMOVE); // remove from tvh database htsmsg_add_s64(m, "channelId", timer.iClientChannelUid); // channelId is signed for >= htspv25, -1 = any } else { htsmsg_add_u32(m, "retention", timer.iLifetime); // remove from tvh database if (timer.iClientChannelUid >= 0) htsmsg_add_u32(m, "channelId", timer.iClientChannelUid); // channelId is unsigned for < htspv25, not sending = any } htsmsg_add_u32(m, "daysOfWeek", timer.iWeekdays); if (m_conn.GetProtocol() >= 20) htsmsg_add_u32(m, "dupDetect", timer.iPreventDuplicateEpisodes); htsmsg_add_u32(m, "priority", timer.iPriority); htsmsg_add_u32(m, "enabled", timer.state == PVR_TIMER_STATE_DISABLED ? 0 : 1); /* Note: As a result of internal filename cleanup, for "directory" == "/", */ /* tvh would put recordings into a folder named "-". Not a big issue */ /* but ugly. */ if (strcmp(timer.strDirectory, "/") != 0) htsmsg_add_str(m, "directory", timer.strDirectory); /* bAutorecApproxTime enabled: => start time in kodi = approximate start time in tvh */ /* => 'approximate' = starting window / 2 */ /* */ /* bAutorecApproxTime disabled: => start time in kodi = begin of starting window in tvh */ /* => end time in kodi = end of starting window in tvh */ const Settings &settings = Settings::GetInstance(); if (settings.GetAutorecApproxTime()) { /* Not sending causes server to set start and startWindow to any time */ if (timer.startTime > 0 && !timer.bStartAnyTime) { struct tm *tm_start = localtime(&timer.startTime); int32_t startWindowBegin = tm_start->tm_hour * 60 + tm_start->tm_min - settings.GetAutorecMaxDiff(); int32_t startWindowEnd = tm_start->tm_hour * 60 + tm_start->tm_min + settings.GetAutorecMaxDiff(); /* Past midnight correction */ if (startWindowBegin < 0) startWindowBegin += (24 * 60); if (startWindowEnd > (24 * 60)) startWindowEnd -= (24 * 60); htsmsg_add_s32(m, "start", startWindowBegin); htsmsg_add_s32(m, "startWindow", startWindowEnd); } } else { if (timer.startTime > 0 && !timer.bStartAnyTime) { /* Exact start time (minutes from midnight). */ struct tm *tm_start = localtime(&timer.startTime); htsmsg_add_s32(m, "start", tm_start->tm_hour * 60 + tm_start->tm_min); } else htsmsg_add_s32(m, "start", 25 * 60); // -1 or not sending causes server to set start and startWindow to any time if (timer.endTime > 0 && !timer.bEndAnyTime) { /* Exact stop time (minutes from midnight). */ struct tm *tm_stop = localtime(&timer.endTime); htsmsg_add_s32(m, "startWindow", tm_stop->tm_hour * 60 + tm_stop->tm_min); } else htsmsg_add_s32(m, "startWindow", 25 * 60); // -1 or not sending causes server to set start and startWindow to any time } /* Send and Wait */ { CLockObject lock(m_conn.Mutex()); m = m_conn.SendAndWait(method.c_str(), m); } if (m == NULL) return PVR_ERROR_SERVER_ERROR; /* Check for error */ if (htsmsg_get_u32(m, "success", &u32)) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed %s response: 'success' missing", method.c_str()); u32 = PVR_ERROR_FAILED; } htsmsg_destroy(m); return u32 == 1 ? PVR_ERROR_NO_ERROR : PVR_ERROR_FAILED; } PVR_ERROR AutoRecordings::SendAutorecDelete(const PVR_TIMER &timer) { uint32_t u32; std::string strId = GetTimerStringIdFromIntId(timer.iClientIndex); if (strId.empty()) return PVR_ERROR_FAILED; htsmsg_t *m = htsmsg_create_map(); htsmsg_add_str(m, "id", strId.c_str()); // Autorec DVR Entry ID (string!) /* Send and Wait */ { CLockObject lock(m_conn.Mutex()); m = m_conn.SendAndWait("deleteAutorecEntry", m); } if (m == NULL) return PVR_ERROR_SERVER_ERROR; /* Check for error */ if (htsmsg_get_u32(m, "success", &u32)) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed deleteAutorecEntry response: 'success' missing"); } htsmsg_destroy(m); return u32 == 1 ? PVR_ERROR_NO_ERROR : PVR_ERROR_FAILED; } bool AutoRecordings::ParseAutorecAddOrUpdate(htsmsg_t *msg, bool bAdd) { const char *str; uint32_t u32; int32_t s32; int64_t s64; /* Validate/set mandatory fields */ if ((str = htsmsg_get_str(msg, "id")) == NULL) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd/autorecEntryUpdate: 'id' missing"); return false; } /* Locate/create entry */ AutoRecording &rec = m_autoRecordings[std::string(str)]; rec.SetStringId(std::string(str)); rec.SetDirty(false); /* Validate/set fields mandatory for autorecEntryAdd */ if (!htsmsg_get_u32(msg, "enabled", &u32)) { rec.SetEnabled(u32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'enabled' missing"); return false; } if (m_conn.GetProtocol() >= 25) { if (!htsmsg_get_u32(msg, "removal", &u32)) { rec.SetLifetime(u32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'removal' missing"); return false; } } else { if (!htsmsg_get_u32(msg, "retention", &u32)) { rec.SetLifetime(u32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'retention' missing"); return false; } } if (!htsmsg_get_u32(msg, "daysOfWeek", &u32)) { rec.SetDaysOfWeek(u32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'daysOfWeek' missing"); return false; } if (!htsmsg_get_u32(msg, "priority", &u32)) { rec.SetPriority(u32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'priority' missing"); return false; } if (!htsmsg_get_s32(msg, "start", &s32)) { rec.SetStartWindowBegin(s32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'start' missing"); return false; } if (!htsmsg_get_s32(msg, "startWindow", &s32)) { rec.SetStartWindowEnd(s32); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'startWindow' missing"); return false; } if (!htsmsg_get_s64(msg, "startExtra", &s64)) { rec.SetMarginStart(s64); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'startExtra' missing"); return false; } if (!htsmsg_get_s64(msg, "stopExtra", &s64)) { rec.SetMarginEnd(s64); } else if (bAdd) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'stopExtra' missing"); return false; } if (!htsmsg_get_u32(msg, "dupDetect", &u32)) { rec.SetDupDetect(u32); } else if (bAdd && (m_conn.GetProtocol() >= 20)) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryAdd: 'dupDetect' missing"); return false; } /* Add optional fields */ if ((str = htsmsg_get_str(msg, "title")) != NULL) { rec.SetTitle(str); } if ((str = htsmsg_get_str(msg, "name")) != NULL) { rec.SetName(str); } if ((str = htsmsg_get_str(msg, "directory")) != NULL) { rec.SetDirectory(str); } if ((str = htsmsg_get_str(msg, "owner")) != NULL) { rec.SetOwner(str); } if ((str = htsmsg_get_str(msg, "creator")) != NULL) { rec.SetCreator(str); } if (!htsmsg_get_u32(msg, "channel", &u32)) { rec.SetChannel(u32); } else rec.SetChannel(PVR_TIMER_ANY_CHANNEL); // an empty channel field = any channel if (!htsmsg_get_u32(msg, "fulltext", &u32)) { rec.SetFulltext(u32); } return true; } bool AutoRecordings::ParseAutorecDelete(htsmsg_t *msg) { const char *id; /* Validate/set mandatory fields */ if ((id = htsmsg_get_str(msg, "id")) == NULL) { Logger::Log(LogLevel::LEVEL_ERROR, "malformed autorecEntryDelete: 'id' missing"); return false; } Logger::Log(LogLevel::LEVEL_TRACE, "delete autorec entry %s", id); /* Erase */ m_autoRecordings.erase(std::string(id)); return true; }
xbmcin/XBMCinTC
project/cmake/addons/build/pvr.hts/src/AutoRecordings.cpp
C++
gpl-2.0
15,749
/* * sbcall.c: SBIOS support routines * * Copyright (C) 2000-2002 Sony Computer Entertainment Inc. * * This file is subject to the terms and conditions of the GNU General * Public License Version 2. See the file "COPYING" in the main * directory of this archive for more details. * * $Id: sbcall.c,v 1.1.2.4 2002/04/12 10:20:16 nakamura Exp $ */ #include <linux/config.h> #include <linux/init.h> #include <linux/types.h> #include <linux/sched.h> #include <linux/module.h> #include <asm/io.h> #include <asm/ps2/irq.h> #include <asm/ps2/sifdefs.h> #include <asm/ps2/sbcall.h> #include "ps2.h" static wait_queue_head_t ps2sif_dma_waitq; static spinlock_t ps2sif_dma_lock = SPIN_LOCK_UNLOCKED; EXPORT_SYMBOL(sbios_rpc); EXPORT_SYMBOL(ps2sif_setdma); EXPORT_SYMBOL(ps2sif_dmastat); EXPORT_SYMBOL(__ps2sif_setdma_wait); EXPORT_SYMBOL(__ps2sif_dmastat_wait); EXPORT_SYMBOL(ps2sif_writebackdcache); EXPORT_SYMBOL(ps2sif_bindrpc); EXPORT_SYMBOL(ps2sif_callrpc); EXPORT_SYMBOL(ps2sif_checkstatrpc); EXPORT_SYMBOL(ps2sif_setrpcqueue); EXPORT_SYMBOL(ps2sif_getnextrequest); EXPORT_SYMBOL(ps2sif_execrequest); EXPORT_SYMBOL(ps2sif_registerrpc); EXPORT_SYMBOL(ps2sif_getotherdata); EXPORT_SYMBOL(ps2sif_removerpc); EXPORT_SYMBOL(ps2sif_removerpcqueue); /* * SIF DMA functions */ unsigned int ps2sif_setdma(ps2sif_dmadata_t *sdd, int len) { struct sb_sifsetdma_arg arg; arg.sdd = sdd; arg.len = len; return sbios(SB_SIFSETDMA, &arg); } int ps2sif_dmastat(unsigned int id) { struct sb_sifdmastat_arg arg; arg.id = id; return sbios(SB_SIFDMASTAT, &arg); } #define WAIT_DMA(cond, state) \ do { \ unsigned long flags; \ wait_queue_t wait; \ \ init_waitqueue_entry(&wait, current); \ \ spin_lock_irqsave(&ps2sif_dma_lock, flags); \ add_wait_queue(&ps2sif_dma_waitq, &wait); \ while (cond) { \ set_current_state(state); \ spin_unlock_irq(&ps2sif_dma_lock); \ schedule(); \ spin_lock_irq(&ps2sif_dma_lock); \ if(signal_pending(current) && state == TASK_INTERRUPTIBLE) \ break; \ } \ remove_wait_queue(&ps2sif_dma_waitq, &wait); \ spin_unlock_irqrestore(&ps2sif_dma_lock, flags); \ } while (0) unsigned int __ps2sif_setdma_wait(ps2sif_dmadata_t *sdd, int len, long state) { int res; struct sb_sifsetdma_arg arg; arg.sdd = sdd; arg.len = len; WAIT_DMA(((res = sbios(SB_SIFSETDMA, &arg)) == 0), state); return (res); } int __ps2sif_dmastat_wait(unsigned int id, long state) { int res; struct sb_sifdmastat_arg arg; arg.id = id; WAIT_DMA((0 <= (res = sbios(SB_SIFDMASTAT, &arg))), state); return (res); } void ps2sif_writebackdcache(void *addr, int size) { dma_cache_wback_inv((unsigned long)addr, size); } /* * SIF RPC functions */ int ps2sif_getotherdata(ps2sif_receivedata_t *rd, void *src, void *dest, int size, unsigned int mode, ps2sif_endfunc_t func, void *para) { struct sb_sifgetotherdata_arg arg; arg.rd = rd; arg.src = src; arg.dest = dest; arg.size = size; arg.mode = mode; arg.func = func; arg.para = para; return sbios(SB_SIFGETOTHERDATA, &arg); } int ps2sif_bindrpc(ps2sif_clientdata_t *bd, unsigned int command, unsigned int mode, ps2sif_endfunc_t func, void *para) { struct sb_sifbindrpc_arg arg; arg.bd = bd; arg.command = command; arg.mode = mode; arg.func = func; arg.para = para; return sbios(SB_SIFBINDRPC, &arg); } int ps2sif_callrpc(ps2sif_clientdata_t *bd, unsigned int fno, unsigned int mode, void *send, int ssize, void *receive, int rsize, ps2sif_endfunc_t func, void *para) { struct sb_sifcallrpc_arg arg; arg.bd = bd; arg.fno = fno; arg.mode = mode; arg.send = send; arg.ssize = ssize; arg.receive = receive; arg.rsize = rsize; arg.func = func; arg.para = para; return sbios(SB_SIFCALLRPC, &arg); } int ps2sif_checkstatrpc(ps2sif_rpcdata_t *cd) { struct sb_sifcheckstatrpc_arg arg; arg.cd = cd; return sbios(SB_SIFCHECKSTATRPC, &arg); } void ps2sif_setrpcqueue(ps2sif_queuedata_t *pSrqd, void (*callback)(void*), void *aarg) { struct sb_sifsetrpcqueue_arg arg; arg.pSrqd = pSrqd; arg.callback = callback; arg.arg = aarg; sbios(SB_SIFSETRPCQUEUE, &arg); } void ps2sif_registerrpc(ps2sif_servedata_t *pr, unsigned int command, ps2sif_rpcfunc_t func, void *buff, ps2sif_rpcfunc_t cfunc, void *cbuff, ps2sif_queuedata_t *pq) { struct sb_sifregisterrpc_arg arg; arg.pr = pr; arg.command = command; arg.func = func; arg.buff = buff; arg.cfunc = cfunc; arg.cbuff = cbuff; arg.pq = pq; sbios(SB_SIFREGISTERRPC, &arg); } ps2sif_servedata_t *ps2sif_removerpc(ps2sif_servedata_t *pr, ps2sif_queuedata_t *pq) { struct sb_sifremoverpc_arg arg; arg.pr = pr; arg.pq = pq; return (ps2sif_servedata_t *)sbios(SB_SIFREMOVERPC, &arg); } ps2sif_queuedata_t *ps2sif_removerpcqueue(ps2sif_queuedata_t *pSrqd) { struct sb_sifremoverpcqueue_arg arg; arg.pSrqd = pSrqd; return (ps2sif_queuedata_t *)sbios(SB_SIFREMOVERPCQUEUE, &arg); } ps2sif_servedata_t *ps2sif_getnextrequest(ps2sif_queuedata_t *qd) { struct sb_sifgetnextrequest_arg arg; arg.qd = qd; return (ps2sif_servedata_t *)sbios(SB_SIFGETNEXTREQUEST, &arg); } void ps2sif_execrequest(ps2sif_servedata_t *rdp) { struct sb_sifexecrequest_arg arg; arg.rdp = rdp; sbios(SB_SIFEXECREQUEST, &arg); } /* * SBIOS blocking RPC function */ struct rpc_wait_queue { wait_queue_head_t wq; volatile int woken; spinlock_t lock; }; static void rpc_wakeup(void *p, int result) { struct rpc_wait_queue *rwq = (struct rpc_wait_queue *)p; spin_lock(&rwq->lock); rwq->woken = 1; wake_up(&rwq->wq); spin_unlock(&rwq->lock); } int sbios_rpc(int func, void *arg, int *result) { int ret; unsigned long flags; struct rpc_wait_queue rwq; struct sbr_common_arg carg; DECLARE_WAITQUEUE(wait, current); carg.arg = arg; carg.func = rpc_wakeup; carg.para = &rwq; init_waitqueue_head(&rwq.wq); rwq.woken = 0; spin_lock_init(&rwq.lock); /* * invoke RPC */ do { ret = sbios(func, &carg); switch (ret) { case 0: break; case -SIF_RPCE_SENDP: /* resouce temporarily unavailable */ break; default: /* ret == -SIF_PRCE_GETP (=1) */ *result = ret; printk("sbios_rpc: RPC failed, func=%d result=%d\n", func, ret); return ret; } } while (ret < 0); /* * wait for result */ spin_lock_irqsave(&rwq.lock, flags); add_wait_queue(&rwq.wq, &wait); while (!rwq.woken) { set_current_state(TASK_UNINTERRUPTIBLE); spin_unlock_irq(&rwq.lock); schedule(); spin_lock_irq(&rwq.lock); } remove_wait_queue(&ps2sif_dma_waitq, &wait); spin_unlock_irqrestore(&rwq.lock, flags); *result = carg.result; return 0; } /* * Miscellaneous functions */ void ps2_halt(int mode) { struct sb_halt_arg arg; arg.mode = mode; sbios(SB_HALT, &arg); } /* * SIF interrupt handler */ static void sif0_dma_handler(int irq, void *dev_id, struct pt_regs *regs) { sbios(SB_SIFCMDINTRHDLR, 0); } static void sif1_dma_handler(int irq, void *dev_id, struct pt_regs *regs) { spin_lock(&ps2sif_dma_lock); wake_up(&ps2sif_dma_waitq); spin_unlock(&ps2sif_dma_lock); } /* * Initialize */ int __init ps2sif_init(void) { init_waitqueue_head(&ps2sif_dma_waitq); if (sbios(SB_SIFINIT, 0) < 0) return -1; if (sbios(SB_SIFINITCMD, 0) < 0) return -1; if (request_irq(IRQ_DMAC_5, sif0_dma_handler, SA_INTERRUPT, "SIF0 DMA", NULL)) return -1; if (request_irq(IRQ_DMAC_6, sif1_dma_handler, SA_INTERRUPT, "SIF1 DMA", NULL)) return -1; if (sbios(SB_SIFINITRPC, 0) < 0) return -1; if (ps2sif_initiopheap() < 0) return -1; return 0; } void ps2sif_exit(void) { sbios(SB_SIFEXITRPC, 0); sbios(SB_SIFEXITCMD, 0); free_irq(IRQ_DMAC_5, NULL); sbios(SB_SIFEXIT, 0); }
rickgaiser/linux-2.4.17-ps2
arch/mips/ps2/sbcall.c
C
gpl-2.0
8,089
/* * Driver for USB ethernet port of Conexant CX82310-based ADSL routers * Copyright (C) 2010 by Ondrej Zary * some parts inspired by the cxacru driver * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <linux/module.h> #include <linux/init.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> #include <linux/ethtool.h> #include <linux/workqueue.h> #include <linux/mii.h> #include <linux/usb.h> #include <linux/usb/usbnet.h> enum cx82310_cmd { CMD_START = 0x84, /* no effect? */ CMD_STOP = 0x85, /* no effect? */ CMD_GET_STATUS = 0x90, /* returns nothing? */ CMD_GET_MAC_ADDR = 0x91, /* read MAC address */ CMD_GET_LINK_STATUS = 0x92, /* not useful, link is always up */ CMD_ETHERNET_MODE = 0x99, /* unknown, needed during init */ }; enum cx82310_status { STATUS_UNDEFINED, STATUS_SUCCESS, STATUS_ERROR, STATUS_UNSUPPORTED, STATUS_UNIMPLEMENTED, STATUS_PARAMETER_ERROR, STATUS_DBG_LOOPBACK, }; #define CMD_PACKET_SIZE 64 /* first command after power on can take around 8 seconds */ #define CMD_TIMEOUT 15000 #define CMD_REPLY_RETRY 5 #define CX82310_MTU 1514 #define CMD_EP 0x01 /* * execute control command * - optionally send some data (command parameters) * - optionally wait for the reply * - optionally read some data from the reply */ static int cx82310_cmd(struct usbnet *dev, enum cx82310_cmd cmd, bool reply, u8 *wdata, int wlen, u8 *rdata, int rlen) { int actual_len, retries, ret; struct usb_device *udev = dev->udev; u8 *buf = kzalloc(CMD_PACKET_SIZE, GFP_KERNEL); if (!buf) return -ENOMEM; /* create command packet */ buf[0] = cmd; if (wdata) memcpy(buf + 4, wdata, min_t(int, wlen, CMD_PACKET_SIZE - 4)); /* send command packet */ ret = usb_bulk_msg(udev, usb_sndbulkpipe(udev, CMD_EP), buf, CMD_PACKET_SIZE, &actual_len, CMD_TIMEOUT); if (ret < 0) { dev_err(&dev->udev->dev, "send command %#x: error %d\n", cmd, ret); goto end; } if (reply) { /* wait for reply, retry if it's empty */ for (retries = 0; retries < CMD_REPLY_RETRY; retries++) { ret = usb_bulk_msg(udev, usb_rcvbulkpipe(udev, CMD_EP), buf, CMD_PACKET_SIZE, &actual_len, CMD_TIMEOUT); if (ret < 0) { dev_err(&dev->udev->dev, "reply receive error %d\n", ret); goto end; } if (actual_len > 0) break; } if (actual_len == 0) { dev_err(&dev->udev->dev, "no reply to command %#x\n", cmd); ret = -EIO; goto end; } if (buf[0] != cmd) { dev_err(&dev->udev->dev, "got reply to command %#x, expected: %#x\n", buf[0], cmd); ret = -EIO; goto end; } if (buf[1] != STATUS_SUCCESS) { dev_err(&dev->udev->dev, "command %#x failed: %#x\n", cmd, buf[1]); ret = -EIO; goto end; } if (rdata) memcpy(rdata, buf + 4, min_t(int, rlen, CMD_PACKET_SIZE - 4)); } end: kfree(buf); return ret; } #define partial_len data[0] /* length of partial packet data */ #define partial_rem data[1] /* remaining (missing) data length */ #define partial_data data[2] /* partial packet data */ static int cx82310_bind(struct usbnet *dev, struct usb_interface *intf) { int ret; char buf[15]; struct usb_device *udev = dev->udev; /* avoid ADSL modems - continue only if iProduct is "USB NET CARD" */ if (usb_string(udev, udev->descriptor.iProduct, buf, sizeof(buf)) > 0 && strcmp(buf, "USB NET CARD")) { dev_info(&udev->dev, "ignoring: probably an ADSL modem\n"); return -ENODEV; } ret = usbnet_get_endpoints(dev, intf); if (ret) return ret; /* * this must not include ethernet header as the device can send partial * packets with no header (and sometimes even empty URBs) */ dev->net->hard_header_len = 0; /* we can send at most 1514 bytes of data (+ 2-byte header) per URB */ dev->hard_mtu = CX82310_MTU + 2; /* we can receive URBs up to 4KB from the device */ dev->rx_urb_size = 4096; dev->partial_data = (unsigned long) kmalloc(dev->hard_mtu, GFP_KERNEL); if (!dev->partial_data) return -ENOMEM; /* enable ethernet mode (?) */ ret = cx82310_cmd(dev, CMD_ETHERNET_MODE, true, "\x01", 1, NULL, 0); if (ret) { dev_err(&udev->dev, "unable to enable ethernet mode: %d\n", ret); goto err; } /* get the MAC address */ ret = cx82310_cmd(dev, CMD_GET_MAC_ADDR, true, NULL, 0, dev->net->dev_addr, ETH_ALEN); if (ret) { dev_err(&udev->dev, "unable to read MAC address: %d\n", ret); goto err; } /* start (does not seem to have any effect?) */ ret = cx82310_cmd(dev, CMD_START, false, NULL, 0, NULL, 0); if (ret) goto err; return 0; err: kfree((void *)dev->partial_data); return ret; } static void cx82310_unbind(struct usbnet *dev, struct usb_interface *intf) { kfree((void *)dev->partial_data); } /* * RX is NOT easy - we can receive multiple packets per skb, each having 2-byte * packet length at the beginning. * The last packet might be incomplete (when it crosses the 4KB URB size), * continuing in the next skb (without any headers). * If a packet has odd length, there is one extra byte at the end (before next * packet or at the end of the URB). */ static int cx82310_rx_fixup(struct usbnet *dev, struct sk_buff *skb) { int len; struct sk_buff *skb2; /* * If the last skb ended with an incomplete packet, this skb contains * end of that packet at the beginning. */ if (dev->partial_rem) { len = dev->partial_len + dev->partial_rem; skb2 = alloc_skb(len, GFP_ATOMIC); if (!skb2) return 0; skb_put(skb2, len); memcpy(skb2->data, (void *)dev->partial_data, dev->partial_len); memcpy(skb2->data + dev->partial_len, skb->data, dev->partial_rem); usbnet_skb_return(dev, skb2); skb_pull(skb, (dev->partial_rem + 1) & ~1); dev->partial_rem = 0; if (skb->len < 2) return 1; } /* a skb can contain multiple packets */ while (skb->len > 1) { /* first two bytes are packet length */ len = skb->data[0] | (skb->data[1] << 8); skb_pull(skb, 2); /* if last packet in the skb, let usbnet to process it */ if (len == skb->len || len + 1 == skb->len) { skb_trim(skb, len); break; } if (len > CX82310_MTU) { dev_err(&dev->udev->dev, "RX packet too long: %d B\n", len); return 0; } /* incomplete packet, save it for the next skb */ if (len > skb->len) { dev->partial_len = skb->len; dev->partial_rem = len - skb->len; memcpy((void *)dev->partial_data, skb->data, dev->partial_len); skb_pull(skb, skb->len); break; } skb2 = alloc_skb(len, GFP_ATOMIC); if (!skb2) return 0; skb_put(skb2, len); memcpy(skb2->data, skb->data, len); /* process the packet */ usbnet_skb_return(dev, skb2); skb_pull(skb, (len + 1) & ~1); } /* let usbnet process the last packet */ return 1; } /* TX is easy, just add 2 bytes of length at the beginning */ static struct sk_buff *cx82310_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags) { int len = skb->len; if (skb_headroom(skb) < 2) { struct sk_buff *skb2 = skb_copy_expand(skb, 2, 0, flags); dev_kfree_skb_any(skb); skb = skb2; if (!skb) return NULL; } skb_push(skb, 2); skb->data[0] = len; skb->data[1] = len >> 8; return skb; } static const struct driver_info cx82310_info = { .description = "Conexant CX82310 USB ethernet", .flags = FLAG_ETHER, .bind = cx82310_bind, .unbind = cx82310_unbind, .rx_fixup = cx82310_rx_fixup, .tx_fixup = cx82310_tx_fixup, }; #define USB_DEVICE_CLASS(vend, prod, cl, sc, pr) \ .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \ USB_DEVICE_ID_MATCH_DEV_INFO, \ .idVendor = (vend), \ .idProduct = (prod), \ .bDeviceClass = (cl), \ .bDeviceSubClass = (sc), \ .bDeviceProtocol = (pr) static const struct usb_device_id products[] = { { USB_DEVICE_CLASS(0x0572, 0xcb01, 0xff, 0, 0), .driver_info = (unsigned long) &cx82310_info }, { }, }; MODULE_DEVICE_TABLE(usb, products); static struct usb_driver cx82310_driver = { .name = "cx82310_eth", .id_table = products, .probe = usbnet_probe, .disconnect = usbnet_disconnect, .suspend = usbnet_suspend, .resume = usbnet_resume, }; static int __init cx82310_init(void) { return usb_register(&cx82310_driver); } module_init(cx82310_init); static void __exit cx82310_exit(void) { usb_deregister(&cx82310_driver); } module_exit(cx82310_exit); MODULE_AUTHOR("Ondrej Zary"); MODULE_DESCRIPTION("Conexant CX82310-based ADSL router USB ethernet driver"); MODULE_LICENSE("GPL");
jeffegg/beaglebone
drivers/net/usb/cx82310_eth.c
C
gpl-2.0
9,448
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html id="Html1" lang="pt"> <head id="ctl00_Head1"><meta name="description" content=" Site da responsabilidade da DGLAB para o sector do Livro em Portugal, nomeadamente para as polรญticas de promoรงรฃo do livro, da leitura e dos autores " /><meta name="keywords" content="DGLAB, Direรงรฃo-Geral do Livro dos Arquivos e das Bibliotecas, DGLB, Prรฉmios literรกrios, Dicionรกrio de autores, Apoio ร  ediรงรฃo, Apoio ร  traduรงรฃo, Divulgaรงรฃo de autores, Cooperaรงรฃo, Rede Bibliogrรกfica da Lusofonia, Promoรงรฃo da Leitura, Prรฉmio Nacional de Ilustraรงรฃo, Ilustradores, Editoras, Livrarias, Dias Mundiais, Feiras do Livro, Livros Comissรฃo dos Descobrimentos " /><meta name="google-site-verification" content="YkRjTyQsCra2yrDkdf6yNAcbjkrU0iQnnwyk1zIZRtM" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Expires" content="0" /><title> Biografia </title><link rel="stylesheet" type="text/css" href="/_layouts/2070/styles/HtmlEditorCustomStyles.css?rev=Fbt%2BwJwajXZQra%2BYNhlGpg%3D%3D"/> <link rel="stylesheet" type="text/css" href="/_layouts/2070/styles/HtmlEditorTableFormats.css?rev=EM4WDIMW2vtuMw8r6rIxQw%3D%3D"/> <link rel="stylesheet" type="text/css" href="/sites/DGLB/Style%20Library/pt-PT/Core%20Styles/pesquisa.css"/> <link rel="stylesheet" type="text/css" href="/_layouts/2070/styles/core.css?rev=rai4%2BH5y%2BSYjfODewzpzQg%3D%3D"/> <link rel="stylesheet" type="text/css" href="/sites/DGLB/Style%20Library/pt-pt/Core%20Styles/Dglb.css"/> <!--Styles used for positioning, font and spacing definitions--> <script src="/_layouts/2070/init.js?rev=TygNVtwVRHv5ee0Fh43%2Feg%3D%3D"></script> <!--Placeholder for additional overrides--> <script type="text/javascript"> function returnSearch() { if ( window.event && window.event.keyCode==13 ) { var currentVariation = "Portugues"; if ( currentVariation == "Portugues" ) { window.location = "/sites/DGLB/Portugues/Search/Paginas/Results.aspx?k=" + document.getElementById('ctl00_PlaceHolderSearchArea_tbxSearch').value; } else { window.location = "/sites/DGLB/" + currentVariation + "/Search/Pages/Results.aspx?k=" + document.getElementById('ctl00_PlaceHolderSearchArea_tbxSearch').value; } return false; } else { return true; } } function WebForm_DoPostBackWithOptions(objecto) { } function WebForm_PostBackOptions(objecto) { } function popUp(URL) { title1 =document.title; url1 = document.URL; data1=document.fileCreatedDate; data2=document.fileUpdatedDate; day = new Date(); id = day.getTime(); eval("page" + id + " = window.open('"+URL+"?title="+title1+"&url="+url1+"&data1="+data1+"&data2="+data2+"' , '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width=600,height=250,left = 490,top = 387');"); } </script> </head> <body class="body" onload="javascript:"> <form name="aspnetForm" method="post" action="PesquisaAutores1.aspx?AutorId=3409" id="aspnetForm"> <input type="hidden" name="__REQUESTDIGEST" id="__REQUESTDIGEST" value="0x827237F212AD25A55B6E5713DDD65762717D3F69229147F972AFC73C5CF0719AC7FDF14C4ECC906D2467F1E7F06621A81D3725D3CB4E94FF28835A61AFBB0B4E,03 Jan 2015 23:36:50 -0000" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTgyODA2NjYwOA8WAh4LUmV0dXJuU3RhY2tkFgJmD2QWBGYPZBYCAggPZBYCZg9kFgICAQ8WAh4TUHJldmlvdXNDb250cm9sTW9kZQspiAFNaWNyb3NvZnQuU2hhcmVQb2ludC5XZWJDb250cm9scy5TUENvbnRyb2xNb2RlLCBNaWNyb3NvZnQuU2hhcmVQb2ludCwgVmVyc2lvbj0xMi4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj03MWU5YmNlMTExZTk0MjljAWQCAg9kFgoCAQ9kFgICAw9kFgICAQ8PFgIeB1Zpc2libGVnZBYEAgEPDxYCHwJoZBYcAgEPDxYCHwJoZGQCAw8WAh8CaGQCBQ8PFgIfAmhkZAIHDxYCHwJoZAIJDw8WAh8CaGRkAgsPDxYCHwJoZGQCDQ8PFgIfAmhkZAIPDw8WBB4HRW5hYmxlZGgfAmhkZAIRDw8WAh8CaGRkAhMPDxYEHwNoHwJoZGQCFQ8PFgIfAmhkZAIXDxYCHwJoZAIZDxYCHwJoZAIbDw8WAh8CZ2RkAgMPDxYCHwJnZBYGAgEPDxYCHwJnZGQCAw8PFgYeGHBlcnNpc3RlZEVycm9yQWN0aW9uVHJlZWQeG3BlcnNpc3RlZEVycm9yQWN0aW9uVHJlZUlkc2QfAmdkZAIFDw8WAh8CZ2RkAgMPFgIeBVN0eWxlBUtiYWNrZ3JvdW5kLWltYWdlOiAgdXJsKCcvc2l0ZXMvREdMQi9TaXRlQ29sbGVjdGlvbkltYWdlcy9iYW5uZXJfbGl2cm8uanBnJykWCGYPDxYCHgRUZXh0BRNzw6FiYWRvLCAwMy0wMS0yMDE1ZGQCAQ8PFgIfBwUPIC0tIDIzLjM2LjUwIC0tZGQCAg8WAh8CaBYEAgEPDxYCHwJoZBYCAgIPDxYCHwJnFgIeBXN0eWxlBQ5kaXNwbGF5OmJsb2NrO2QCAw9kFgICAQ8WAh8CaBYCZg9kFgQCAg9kFgICAw8WAh8CaGQCAw8PFgIeCUFjY2Vzc0tleQUBL2RkAgcPEA8WAh4LXyFEYXRhQm91bmRnZBAVAQlQb3J0dWd1ZXMVAQAUKwMBZxYBZmQCCA8PFgIfAmhkZAIJDxYCHwJoZAILD2QWAgIED2QWEgIDDxYCHwELKwQBZAIFDxYCHwELKwQBZAIHDxYCHwJoZAIJDw8WAh8CaGRkAgsPDxYCHwJoZGQCFQ8WAh8CaBYCAgEPFgIfAQsrBAFkAhcQZGQWAmYPDxYCHwJoZGQCGQ8WAh8BCysEAWQCGxBkZBYCZg8PFgIfAmhkZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgUlY3RsMDAkUGxhY2VIb2xkZXJTZWFyY2hBcmVhJGJ0blNlYXJjaAUcY3RsMDAkUGxhY2VIb2xkZXJNYWluJEltYWdlMe4dCjQTFTndIy3wuuTK/AZk6PPb" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBgL+j/vSAQL7jqDVDQLIuuCvBgKQ1MOIDwL6tq39CgLUopTZCxvoNjTsuR6ILhZwTb45+715gCet" /> <div id="master" class="master"> <div id="masterContentArea" class="masterContent"> <div id="designConsoleArea"> </div> <div id="consoleArea" class="console"> <!-- Console --> <span id="ctl00_ctl08_publishingContext1"></span> <!-- Console --> </div> <div id="headerImageArea" class="headerImage"> <div id="logoArea" class="logo"> <a href="/sites/DGLB/"><img src="/sites/DGLB/SiteCollectionImages/dglbLogo.gif" id="ctl00_HeaderImage" alt="Direcรงรฃo Geral do Livro e da Biblioteca" style="border:0px transparent none" /></a> </div> <div id="ctl00_bannerArea" class="banner" Style="background-image: url('/sites/DGLB/SiteCollectionImages/banner_livro.jpg')"> <div id="dateContentArea" class="dateContent"> <span id="ctl00_lblDate">sรกbado, 03-01-2015</span> <span id="ctl00_lblHour" class="hourContent"> -- 23.36.50 --</span> </div> <div id="globalNavArea" class="globalNav" > <div class="topNavItem"> <a href="/sites/DGLB/Portugues/">Inรญcio</a> </div><div class="topNavItem"> <a href="/sites/DGLB/Portugues/mapaSite/Paginas/MapadoSite.aspx">Mapa do sรญtio</a> </div><div class="topNavItem"> <a href="/sites/DGLB/Portugues/contactos/Paginas/Contatos.aspx">Contactos</a> </div><div class="topNavItem"> <a href="/sites/DGLB/Portugues/links/Paginas/Links.aspx">Sรญtios รบteis</a> </div><div class="topNavItem"> <a href="/sites/DGLB/Portugues/faq/Paginas/PerguntasMaisFrequentes.aspx">Perguntas frequentes</a> </div> </div> <div id="variationsMenuArea" class="variationsMenu"> <a href="/sites/DGLB/English"><img src="/sites/DGLB/SiteCollectionImages/InglaterraSelect.gif" id="ctl00_Img4" class="imgFlag" alt="English" title="English" style="border:0px transparent none" /></a> <select name="ctl00$ddlVariations" id="ctl00_ddlVariations" class="variationsDdl" style="display:none;"> <option selected="selected" value="">Portugues</option> </select> <noscript> </noscript> </div> </div> <div id="logoSec"> <a href="http://www.portugal.gov.pt/pt/os-ministerios/primeiro-ministro/secretarios-de-estado/secretario-de-estado-da-cultura.aspx" target="_blank"><img src="../../../SiteCollectionImages/secSup.png" id="ctl00_Img1" alt="Secretรกrio de Estado da Cultura" title="Secretรกrio de Estado da Cultura" style="border:0px transparent none" /></a> </div> </div> <div id="mainArea" class="main"> <div> <div id="leftSeparator0" class="leftSeparator0White">&nbsp;</div> <div id="leftSeparator0" class="leftSeparator0Black">&nbsp;</div> <div id="left" class="leftDiv"> <div id="leftArea" class="leftArea"> <div id="leftSeparator1" class="leftSeparator1"> </div> <div class="search"> <label id="lblPesquisar" for="ctl00_PlaceHolderSearchArea_tbxSearch" style="visibility:hidden; display:none;">Pesquisar:</label> <input name="ctl00$PlaceHolderSearchArea$tbxSearch" type="text" value="Pesquisar" id="ctl00_PlaceHolderSearchArea_tbxSearch" class="searchBox" onkeypress="return returnSearch();" /> <input type="image" name="ctl00$PlaceHolderSearchArea$btnSearch" id="ctl00_PlaceHolderSearchArea_btnSearch" title="Pesquisar" class="searchButton" src="../../../SiteCollectionImages/setaPesquisa.gif" alt="Pesquisar" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$PlaceHolderSearchArea$btnSearch&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" border="0" /> </div> <div id="currNavArea" class="currNav"> <div class="leftNav1"> <a href="/sites/DGLB/Portugues/livro/Paginas/Livro.aspx">Livro</a> </div><div class="leftNavSelected1"> <a href="/sites/DGLB/Portugues/autores/Paginas/PesquisaAutores.aspx">Autores</a> </div><div class="leftNav1"> <a href="/sites/DGLB/Portugues/premios/Paginas/PremiosLiterarios.aspx">Prรฉmios</a> </div><div class="leftNav1"> <a href="/sites/DGLB/Portugues/noticiasEventos/Paginas/NoticiasEventos.aspx">Notรญcias</a> </div><div class="leftNav1"> <a href="/sites/DGLB/Portugues/Agendacultural/Paginas/AgendaCultural.aspx">Agenda Cultural</a> </div> <div class="navSpacer"> </div> </div> <div id="leftBottomArea1" class="leftBottom"> </div> <div id="logoMC" class="logoMc" onclick="window.location='http://dglab.gov.pt/';" style="cursor:pointer;"> </div> </div> </div> <div id="centralArea" class="centralArea"> <div id="mapPath" class="mapPath"> <div id="breadcrumb" class=""> <span id="ctl00_PlaceHolderTitleBreadcrumb_CustomBreadcrumb1" class="breadcrumb"><span><a alt="Autores" href="/sites/DGLB/Portugues/autores/Paginas/PesquisaAutores.aspx">Autores</a></span></span> </div> </div> <div id="ctl00_MSO_ContentDiv" class="mainContainer"> <div id="pageTitleArea" class="pageTitle"> </div> <div id="mainContentArea" class="mainContent"> <link rel="stylesheet" type="text/css" href="/sites/DGLB/Style Library/pt-PT/Core Styles/Pesquisa.css"></link> <h1 style="display:none;"> Biografia </h1> <div class="paginaConteudoDiv"> <div id="paginaConteudoDivTitulo" class="paginaConteudoDivTitulo"> <div class="paginaConteudoTitulo"> Biografia &nbsp; </div> <div class="paginaConteudoVoltar"> <span id="justifyRight">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <img src="/sites/DGLB/SiteCollectionImages/separador.gif" id="ctl00_PlaceHolderMain_printSep2" alt="Separador" /> <input type="image" name="ctl00$PlaceHolderMain$Image1" id="ctl00_PlaceHolderMain_Image1" src="../../../SiteCollectionImages/SetaVoltarTituloPagina.gif" alt="Voltar" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$PlaceHolderMain$Image1&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" border="0" /> <input type="submit" name="ctl00$PlaceHolderMain$Voltar" value="Voltar" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$PlaceHolderMain$Voltar&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" id="ctl00_PlaceHolderMain_Voltar" class="paginaConteudoVoltarLink" /> <img src="/sites/DGLB/SiteCollectionImages/separador.gif" id="ctl00_PlaceHolderMain_printSep3" alt="Separador" /> </div> </div> <div class="paginaConteudoDivQuadrados"> </div> <div id="paginaConteudoWebPart" class="paginaConteudoWebPartDiv"> <div id="MiddleColumnZone" class="AspNet-WebPartZone-Vertical"> <div class="AspNet-WebPart"> <div> Unhandled Exception: Object reference not set to an instance of an object.<br /><br />Source: Dglb.Site </div> </div> </div> </div> <div id="paginaConteudoDivTexto" class="paginaConteudoDivTextoSemImagem"> <div id="ctl00_PlaceHolderMain_RichHtmlField1__ControlWrapper_RichHtmlField" style="display:inline"></div> </div> <div id="paginaConteudoRss" class="paginaConteudoWebPartDiv"> <div id="rssWebPart" class="AspNet-WebPartZone-Vertical"> </div> </div> </div> </div> </div> </div> <div class="cleaner">&nbsp;</div> </div> </div> </div> <div id="rodape" class="rodape"> <div id="rodape1" class="rodapeLeft"> Copyright ยฉ DGLAB 2007-2014 - Todos os direitos reservados | Desenvolvido por ITEN &nbsp;|&nbsp; <a href="#" onclick="javascript:popUp('/sites/DGLB/Portugues/Paginas/referencia.aspx')" accesskey="R" title="Referรชncia Bibliogrรกfica">Referรชncia Bibliogrรกfica</a> </div> <div id="rodape2" class="rodapeRight"> Site optimizado para 1024x768, IE6+, FF2+, Op9.24+ </div> <div class="cleaner">&nbsp;</div> <div id="rodape3" class="rodapeLinha1">&nbsp;</div> <div id="rodape4" class="rodapeLinha2">&nbsp;</div> </div> <div id="acessibilidade" class="acessibilidade"> <img src="../../../SiteCollectionImages/MundoAcessiblidade.gif" id="ctl00_mundoAcessibilidade" alt="Sรญmbolo de Acessibilidade ร  Web" title="Sรญmbolo de Acessibilidade ร  Web" /> [<a href="/sites/DGLB/Portugues/ArquivoGeral/Paginas/DescricaoSimboloAcessibilidadeWeb.aspx" accesskey="D" title="Descriรงรฃo do sรญmbolo de acessibilidade ร  web.">D</a>] <a href="http://www.w3.org/WAI/WCAG1AA-Conformance" target="_blank"><img src="../../../SiteCollectionImages/wcag1AA.png" id="ctl00_DoubleAConformance" style="border:0px transparent none" alt="Level Double-A conformance icon,W3C-WAI Web Content Accessibility Guidelines 1.0" title="Level Double-A conformance icon,W3C-WAI Web Content Accessibility Guidelines 1.0" /></a> &nbsp; <a href="http://www.portugal.gov.pt/pt/os-ministerios/primeiro-ministro/secretarios-de-estado/secretario-de-estado-da-cultura.aspx" target="_blank"><img src="../../../SiteCollectionImages/sec.png" id="ctl00_sec" alt="Secretรกrio de Estado da Cultura" title="Secretรกrio de Estado da Cultura" style="border:0px transparent none" /></a> &nbsp; <a href="http://www.gepac.gov.pt/organismos-sec.aspx" accesskey="O" title="Organismos sob a tutela do Secretรกrio de Estado da Cultura" target="_blank">Organismos sob a tutela do Secretรกrio de Estado da Cultura</a> </div> </div> <script type="text/javascript"> //<![CDATA[ var __wpmExportWarning='This Web Part Page has been personalized. As a result, one or more Web Part properties may contain confidential information. Make sure the properties contain information that is safe for others to read. After exporting this Web Part, view properties in the Web Part description file (.WebPart) by using a text editor such as Microsoft Notepad.';var __wpmCloseProviderWarning='You are about to close this Web Part. It is currently providing data to other Web Parts, and these connections will be deleted if this Web Part is closed. To close this Web Part, click OK. To keep this Web Part, click Cancel.';var __wpmDeleteWarning='You are about to permanently delete this Web Part. Are you sure you want to do this? To delete this Web Part, click OK. To keep this Web Part, click Cancel.';//]]> </script> </form> </body> </html>
transparenciahackday/autores-portugueses
dglb/html-files/3409.html
HTML
gpl-2.0
16,459
/***************************************************************************** * nfs.c: NFS VLC access plug-in ***************************************************************************** * Copyright ยฉ 2016 VLC authors, VideoLAN and VideoLabs * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include <assert.h> #include <errno.h> #include <stdint.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #ifdef HAVE_POLL # include <poll.h> #endif #include <vlc_common.h> #include <vlc_access.h> #include <vlc_dialog.h> #include <vlc_input_item.h> #include <vlc_plugin.h> #include <vlc_url.h> #include <vlc_interrupt.h> #include <nfsc/libnfs.h> #include <nfsc/libnfs-raw.h> #include <nfsc/libnfs-raw-nfs.h> #include <nfsc/libnfs-raw-mount.h> #define AUTO_GUID_TEXT N_("Set NFS uid/guid automatically") #define AUTO_GUID_LONGTEXT N_("If uid/gid are not specified in " \ "the url, this module will try to automatically set a uid/gid.") static int Open(vlc_object_t *); static void Close(vlc_object_t *); vlc_module_begin() set_shortname(N_("NFS")) set_description(N_("NFS input")) set_category(CAT_INPUT) set_subcategory(SUBCAT_INPUT_ACCESS) add_bool("nfs-auto-guid", true, AUTO_GUID_TEXT, AUTO_GUID_LONGTEXT, true) set_capability("access", 2) add_shortcut("nfs") set_callbacks(Open, Close) vlc_module_end() struct access_sys_t { struct rpc_context * p_mount; /* used to to get exports mount point */ struct nfs_context * p_nfs; struct nfs_url * p_nfs_url; struct nfs_stat_64 stat; struct nfsfh * p_nfsfh; struct nfsdir * p_nfsdir; vlc_url_t encoded_url; char * psz_url_decoded; char * psz_url_decoded_slash; bool b_eof; bool b_error; bool b_auto_guid; union { struct { char ** ppsz_names; int i_count; } exports; struct { uint8_t *p_buf; size_t i_len; } read; struct { bool b_done; } seek; } res; }; static bool nfs_check_status(stream_t *p_access, int i_status, const char *psz_error, const char *psz_func) { access_sys_t *sys = p_access->p_sys; if (i_status < 0) { if (i_status != -EINTR) { msg_Err(p_access, "%s failed: %d, '%s'", psz_func, i_status, psz_error); if (!sys->b_error) vlc_dialog_display_error(p_access, _("NFS operation failed"), "%s", psz_error); } else msg_Warn(p_access, "%s interrupted", psz_func); sys->b_error = true; return true; } else return false; } #define NFS_CHECK_STATUS(p_access, i_status, p_data) \ nfs_check_status(p_access, i_status, (const char *)p_data, __func__) static int vlc_rpc_mainloop(stream_t *p_access, struct rpc_context *p_rpc_ctx, bool (*pf_until_cb)(stream_t *)) { access_sys_t *p_sys = p_access->p_sys; while (!p_sys->b_error && !pf_until_cb(p_access)) { struct pollfd p_fds[1]; int i_ret; p_fds[0].fd = rpc_get_fd(p_rpc_ctx); p_fds[0].events = rpc_which_events(p_rpc_ctx); if ((i_ret = vlc_poll_i11e(p_fds, 1, -1)) < 0) { if (errno == EINTR) msg_Warn(p_access, "vlc_poll_i11e interrupted"); else msg_Err(p_access, "vlc_poll_i11e failed"); p_sys->b_error = true; } else if (i_ret > 0 && p_fds[0].revents && rpc_service(p_rpc_ctx, p_fds[0].revents) < 0) { msg_Err(p_access, "nfs_service failed"); p_sys->b_error = true; } } return p_sys->b_error ? -1 : 0; } static int vlc_nfs_mainloop(stream_t *p_access, bool (*pf_until_cb)(stream_t *)) { access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs != NULL); return vlc_rpc_mainloop(p_access, nfs_get_rpc_context(p_sys->p_nfs), pf_until_cb); } static int vlc_mount_mainloop(stream_t *p_access, bool (*pf_until_cb)(stream_t *)) { access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_mount != NULL); return vlc_rpc_mainloop(p_access, p_sys->p_mount, pf_until_cb); } static void nfs_read_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; if (i_status == 0) p_sys->b_eof = true; else { p_sys->res.read.i_len = i_status; memcpy(p_sys->res.read.p_buf, p_data, i_status); } } static bool nfs_read_finished_cb(stream_t *p_access) { access_sys_t *p_sys = p_access->p_sys; return p_sys->res.read.i_len > 0 || p_sys->b_eof; } static ssize_t FileRead(stream_t *p_access, void *p_buf, size_t i_len) { access_sys_t *p_sys = p_access->p_sys; if (p_sys->b_eof) return 0; p_sys->res.read.i_len = 0; p_sys->res.read.p_buf = p_buf; if (nfs_read_async(p_sys->p_nfs, p_sys->p_nfsfh, i_len, nfs_read_cb, p_access) < 0) { msg_Err(p_access, "nfs_read_async failed"); return -1; } if (vlc_nfs_mainloop(p_access, nfs_read_finished_cb) < 0) return -1; return p_sys->res.read.i_len; } static void nfs_seek_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); (void) p_data; if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; p_sys->res.seek.b_done = true; } static bool nfs_seek_finished_cb(stream_t *p_access) { access_sys_t *p_sys = p_access->p_sys; return p_sys->res.seek.b_done; } static int FileSeek(stream_t *p_access, uint64_t i_pos) { access_sys_t *p_sys = p_access->p_sys; p_sys->res.seek.b_done = false; if (nfs_lseek_async(p_sys->p_nfs, p_sys->p_nfsfh, i_pos, SEEK_SET, nfs_seek_cb, p_access) < 0) { msg_Err(p_access, "nfs_seek_async failed"); return VLC_EGENERIC; } if (vlc_nfs_mainloop(p_access, nfs_seek_finished_cb) < 0) return VLC_EGENERIC; return VLC_SUCCESS; } static int FileControl(stream_t *p_access, int i_query, va_list args) { access_sys_t *p_sys = p_access->p_sys; switch (i_query) { case STREAM_CAN_SEEK: *va_arg(args, bool *) = true; break; case STREAM_CAN_FASTSEEK: *va_arg(args, bool *) = false; break; case STREAM_CAN_PAUSE: case STREAM_CAN_CONTROL_PACE: *va_arg(args, bool *) = true; break; case STREAM_GET_SIZE: { *va_arg(args, uint64_t *) = p_sys->stat.nfs_size; break; } case STREAM_GET_PTS_DELAY: *va_arg(args, int64_t *) = var_InheritInteger(p_access, "network-caching"); break; case STREAM_SET_PAUSE_STATE: break; default: return VLC_EGENERIC; } return VLC_SUCCESS; } static char * NfsGetUrl(vlc_url_t *p_url, const char *psz_file) { /* nfs://<psz_host><psz_path><psz_file>?<psz_option> */ char *psz_url; if (asprintf(&psz_url, "nfs://%s%s%s%s%s%s", p_url->psz_host, p_url->psz_path != NULL ? p_url->psz_path : "", p_url->psz_path != NULL && p_url->psz_path[0] != '\0' && p_url->psz_path[strlen(p_url->psz_path) - 1] != '/' ? "/" : "", psz_file, p_url->psz_option != NULL ? "?" : "", p_url->psz_option != NULL ? p_url->psz_option : "") == -1) return NULL; else return psz_url; } static int DirRead(stream_t *p_access, input_item_node_t *p_node) { access_sys_t *p_sys = p_access->p_sys; struct nfsdirent *p_nfsdirent; int i_ret = VLC_SUCCESS; assert(p_sys->p_nfsdir); struct access_fsdir fsdir; access_fsdir_init(&fsdir, p_access, p_node); while (i_ret == VLC_SUCCESS && (p_nfsdirent = nfs_readdir(p_sys->p_nfs, p_sys->p_nfsdir)) != NULL) { char *psz_name_encoded = vlc_uri_encode(p_nfsdirent->name); if (psz_name_encoded == NULL) { i_ret = VLC_ENOMEM; break; } char *psz_url = NfsGetUrl(&p_sys->encoded_url, psz_name_encoded); free(psz_name_encoded); if (psz_url == NULL) { i_ret = VLC_ENOMEM; break; } int i_type; switch (p_nfsdirent->type) { case NF3REG: i_type = ITEM_TYPE_FILE; break; case NF3DIR: i_type = ITEM_TYPE_DIRECTORY; break; default: i_type = ITEM_TYPE_UNKNOWN; } i_ret = access_fsdir_additem(&fsdir, psz_url, p_nfsdirent->name, i_type, ITEM_NET); free(psz_url); } access_fsdir_finish(&fsdir, i_ret == VLC_SUCCESS); return i_ret; } static int MountRead(stream_t *p_access, input_item_node_t *p_node) { access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_mount != NULL && p_sys->res.exports.i_count >= 0); int i_ret = VLC_SUCCESS; struct access_fsdir fsdir; access_fsdir_init(&fsdir, p_access, p_node); for (int i = 0; i < p_sys->res.exports.i_count && i_ret == VLC_SUCCESS; ++i) { char *psz_name = p_sys->res.exports.ppsz_names[i]; char *psz_url = NfsGetUrl(&p_sys->encoded_url, psz_name); if (psz_url == NULL) { i_ret = VLC_ENOMEM; break; } i_ret = access_fsdir_additem(&fsdir, psz_url, psz_name, ITEM_TYPE_DIRECTORY, ITEM_NET); free(psz_url); } access_fsdir_finish(&fsdir, i_ret == VLC_SUCCESS); return i_ret; } static void nfs_opendir_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; p_sys->p_nfsdir = p_data; } static void nfs_open_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; p_sys->p_nfsfh = p_data; } static void nfs_stat64_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; struct nfs_stat_64 *p_stat = p_data; p_sys->stat = *p_stat; if (p_sys->b_auto_guid) { nfs_set_uid(p_sys->p_nfs, p_sys->stat.nfs_uid); nfs_set_gid(p_sys->p_nfs, p_sys->stat.nfs_gid); } if (S_ISDIR(p_sys->stat.nfs_mode)) { msg_Dbg(p_access, "nfs_opendir: '%s'", p_sys->p_nfs_url->file); if (nfs_opendir_async(p_sys->p_nfs, p_sys->p_nfs_url->file, nfs_opendir_cb, p_access) != 0) { msg_Err(p_access, "nfs_opendir_async failed"); p_sys->b_error = true; } } else if (S_ISREG(p_sys->stat.nfs_mode)) { msg_Dbg(p_access, "nfs_open: '%s'", p_sys->p_nfs_url->file); if (nfs_open_async(p_sys->p_nfs, p_sys->p_nfs_url->file, O_RDONLY, nfs_open_cb, p_access) < 0) { msg_Err(p_access, "nfs_open_async failed"); p_sys->b_error = true; } } else { msg_Err(p_access, "nfs_stat64_cb: file type not handled"); p_sys->b_error = true; } } static void nfs_mount_cb(int i_status, struct nfs_context *p_nfs, void *p_data, void *p_private_data) { VLC_UNUSED(p_nfs); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_nfs == p_nfs); (void) p_data; /* If a directory url doesn't end with '/', there is no way to know which * part of the url is the export point and which part is the path. An * example with "nfs://myhost/mnt/data": we can't know if /mnt or /mnt/data * is the export point. Therefore, in case of EACCES error, retry to mount * the url by adding a '/' to the decoded path. */ if (i_status == -EACCES && p_sys->psz_url_decoded_slash == NULL) { vlc_url_t url; vlc_UrlParse(&url, p_sys->psz_url_decoded); if (url.psz_path == NULL || url.psz_path[0] == '\0' || url.psz_path[strlen(url.psz_path) - 1] == '/' || (p_sys->psz_url_decoded_slash = NfsGetUrl(&url, "/")) == NULL) { vlc_UrlClean(&url); NFS_CHECK_STATUS(p_access, i_status, p_data); return; } else { vlc_UrlClean(&url); msg_Warn(p_access, "trying to mount '%s' again by adding a '/'", p_access->psz_url); return; } } if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; if (nfs_stat64_async(p_sys->p_nfs, p_sys->p_nfs_url->file, nfs_stat64_cb, p_access) < 0) { msg_Err(p_access, "nfs_stat64_async failed"); p_sys->b_error = true; } } static bool nfs_mount_open_finished_cb(stream_t *p_access) { access_sys_t *p_sys = p_access->p_sys; return p_sys->p_nfsfh != NULL || p_sys->p_nfsdir != NULL || p_sys->psz_url_decoded_slash != NULL; } static bool nfs_mount_open_slash_finished_cb(stream_t *p_access) { access_sys_t *p_sys = p_access->p_sys; return p_sys->p_nfsfh != NULL || p_sys->p_nfsdir != NULL; } static void mount_export_cb(struct rpc_context *p_ctx, int i_status, void *p_data, void *p_private_data) { VLC_UNUSED(p_ctx); stream_t *p_access = p_private_data; access_sys_t *p_sys = p_access->p_sys; assert(p_sys->p_mount == p_ctx); if (NFS_CHECK_STATUS(p_access, i_status, p_data)) return; exports p_export = *(exports *)p_data; p_sys->res.exports.i_count = 0; /* Dup the export linked list into an array of const char * */ while (p_export != NULL) { p_sys->res.exports.i_count++; p_export = p_export->ex_next; } if (p_sys->res.exports.i_count == 0) return; p_sys->res.exports.ppsz_names = calloc(p_sys->res.exports.i_count, sizeof(char *)); if (p_sys->res.exports.ppsz_names == NULL) { p_sys->b_error = true; return; } p_export = *(exports *)p_data; unsigned int i_idx = 0; while (p_export != NULL) { p_sys->res.exports.ppsz_names[i_idx] = strdup(p_export->ex_dir); if (p_sys->res.exports.ppsz_names[i_idx] == NULL) { for (unsigned int i = 0; i < i_idx; ++i) free(p_sys->res.exports.ppsz_names[i]); free(p_sys->res.exports.ppsz_names); p_sys->res.exports.ppsz_names = NULL; p_sys->res.exports.i_count = 0; p_sys->b_error = true; return; } i_idx++; p_export = p_export->ex_next; } } static bool mount_getexports_finished_cb(stream_t *p_access) { access_sys_t *p_sys = p_access->p_sys; return p_sys->res.exports.i_count != -1; } static int NfsInit(stream_t *p_access, const char *psz_url_decoded) { access_sys_t *p_sys = p_access->p_sys; p_sys->p_nfs = nfs_init_context(); if (p_sys->p_nfs == NULL) { msg_Err(p_access, "nfs_init_context failed"); return -1; } p_sys->p_nfs_url = nfs_parse_url_incomplete(p_sys->p_nfs, psz_url_decoded); if (p_sys->p_nfs_url == NULL || p_sys->p_nfs_url->server == NULL) { msg_Err(p_access, "nfs_parse_url_incomplete failed: '%s'", nfs_get_error(p_sys->p_nfs)); return -1; } return 0; } static int Open(vlc_object_t *p_obj) { stream_t *p_access = (stream_t *)p_obj; access_sys_t *p_sys = vlc_calloc(p_obj, 1, sizeof (*p_sys)); if (unlikely(p_sys == NULL)) return VLC_ENOMEM; p_access->p_sys = p_sys; p_sys->b_auto_guid = var_InheritBool(p_obj, "nfs-auto-guid"); /* nfs_* functions need a decoded url */ p_sys->psz_url_decoded = vlc_uri_decode_duplicate(p_access->psz_url); if (p_sys->psz_url_decoded == NULL) goto error; /* Parse the encoded URL */ vlc_UrlParse(&p_sys->encoded_url, p_access->psz_url); if (p_sys->encoded_url.psz_option) { if (strstr(p_sys->encoded_url.psz_option, "uid") || strstr(p_sys->encoded_url.psz_option, "gid")) p_sys->b_auto_guid = false; } if (NfsInit(p_access, p_sys->psz_url_decoded) == -1) goto error; if (p_sys->p_nfs_url->path != NULL && p_sys->p_nfs_url->file != NULL) { /* The url has a valid path and file, mount the path and open/opendir * the file */ msg_Dbg(p_access, "nfs_mount: server: '%s', path: '%s'", p_sys->p_nfs_url->server, p_sys->p_nfs_url->path); if (nfs_mount_async(p_sys->p_nfs, p_sys->p_nfs_url->server, p_sys->p_nfs_url->path, nfs_mount_cb, p_access) < 0) { msg_Err(p_access, "nfs_mount_async failed"); goto error; } if (vlc_nfs_mainloop(p_access, nfs_mount_open_finished_cb) < 0) goto error; if (p_sys->psz_url_decoded_slash != NULL) { /* Retry to mount by adding a '/' to the path, see comment in * nfs_mount_cb */ nfs_destroy_url(p_sys->p_nfs_url); nfs_destroy_context(p_sys->p_nfs); p_sys->p_nfs_url = NULL; p_sys->p_nfs = NULL; if (NfsInit(p_access, p_sys->psz_url_decoded_slash) == -1 || p_sys->p_nfs_url->path == NULL || p_sys->p_nfs_url->file == NULL) goto error; if (nfs_mount_async(p_sys->p_nfs, p_sys->p_nfs_url->server, p_sys->p_nfs_url->path, nfs_mount_cb, p_access) < 0) { msg_Err(p_access, "nfs_mount_async failed"); goto error; } if (vlc_nfs_mainloop(p_access, nfs_mount_open_slash_finished_cb) < 0) goto error; } if (p_sys->p_nfsfh != NULL) { p_access->pf_read = FileRead; p_access->pf_seek = FileSeek; p_access->pf_control = FileControl; } else if (p_sys->p_nfsdir != NULL) { p_access->pf_readdir = DirRead; p_access->pf_seek = NULL; p_access->pf_control = access_vaDirectoryControlHelper; } else vlc_assert_unreachable(); } else { /* url is just a server: fetch exports point */ nfs_destroy_context(p_sys->p_nfs); p_sys->p_nfs = NULL; p_sys->p_mount = rpc_init_context(); if (p_sys->p_mount == NULL) { msg_Err(p_access, "rpc_init_context failed"); goto error; } p_sys->res.exports.ppsz_names = NULL; p_sys->res.exports.i_count = -1; if (mount_getexports_async(p_sys->p_mount, p_sys->p_nfs_url->server, mount_export_cb, p_access) < 0) { msg_Err(p_access, "mount_getexports_async failed"); goto error; } if (vlc_mount_mainloop(p_access, mount_getexports_finished_cb) < 0) goto error; p_access->pf_readdir = MountRead; p_access->pf_seek = NULL; p_access->pf_control = access_vaDirectoryControlHelper; } return VLC_SUCCESS; error: Close(p_obj); return VLC_EGENERIC; } static void Close(vlc_object_t *p_obj) { stream_t *p_access = (stream_t *)p_obj; access_sys_t *p_sys = p_access->p_sys; if (p_sys->p_nfsfh != NULL) nfs_close(p_sys->p_nfs, p_sys->p_nfsfh); if (p_sys->p_nfsdir != NULL) nfs_closedir(p_sys->p_nfs, p_sys->p_nfsdir); if (p_sys->p_nfs != NULL) nfs_destroy_context(p_sys->p_nfs); if (p_sys->p_mount != NULL) { for (int i = 0; i < p_sys->res.exports.i_count; ++i) free(p_sys->res.exports.ppsz_names[i]); free(p_sys->res.exports.ppsz_names); rpc_destroy_context(p_sys->p_mount); } if (p_sys->p_nfs_url != NULL) nfs_destroy_url(p_sys->p_nfs_url); vlc_UrlClean(&p_sys->encoded_url); free(p_sys->psz_url_decoded); free(p_sys->psz_url_decoded_slash); }
pddthinh/android-vlc
vlc/modules/access/nfs.c
C
gpl-2.0
22,377
<?php /* Smarty version Smarty-3.1.19, created on 2016-03-23 11:46:43 compiled from "C:\wamp\www\atelieshop\admin723qbu3tt\themes\default\template\modal.tpl" */ ?> <?php /*%%SmartyHeaderCode:3070956f2ac537fba85-35210825%%*/if(!defined('SMARTY_DIR')) exit('no direct access allowed'); $_valid = $_smarty_tpl->decodeProperties(array ( 'file_dependency' => array ( '654db402b55732e746432a7b1d9d827589cb6899' => array ( 0 => 'C:\\wamp\\www\\atelieshop\\admin723qbu3tt\\themes\\default\\template\\modal.tpl', 1 => 1452109828, 2 => 'file', ), ), 'nocache_hash' => '3070956f2ac537fba85-35210825', 'function' => array ( ), 'variables' => array ( 'modal_id' => 0, 'modal_class' => 0, 'modal_title' => 0, 'modal_content' => 0, 'modal_actions' => 0, 'action' => 0, ), 'has_nocache_code' => false, 'version' => 'Smarty-3.1.19', 'unifunc' => 'content_56f2ac53ad4aa8_12705353', ),false); /*/%%SmartyHeaderCode%%*/?> <?php if ($_valid && !is_callable('content_56f2ac53ad4aa8_12705353')) {function content_56f2ac53ad4aa8_12705353($_smarty_tpl) {?> <div class="modal fade" id="<?php echo $_smarty_tpl->tpl_vars['modal_id']->value;?> " tabindex="-1"> <div class="modal-dialog <?php if (isset($_smarty_tpl->tpl_vars['modal_class']->value)) {?><?php echo $_smarty_tpl->tpl_vars['modal_class']->value;?> <?php }?>"> <div class="modal-content"> <?php if (isset($_smarty_tpl->tpl_vars['modal_title']->value)) {?> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title"><?php echo $_smarty_tpl->tpl_vars['modal_title']->value;?> </h4> </div> <?php }?> <?php echo $_smarty_tpl->tpl_vars['modal_content']->value;?> <?php if (isset($_smarty_tpl->tpl_vars['modal_actions']->value)) {?> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal"><?php echo smartyTranslate(array('s'=>'Close'),$_smarty_tpl);?> </button> <?php $_smarty_tpl->tpl_vars['action'] = new Smarty_Variable; $_smarty_tpl->tpl_vars['action']->_loop = false; $_from = $_smarty_tpl->tpl_vars['modal_actions']->value; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array');} foreach ($_from as $_smarty_tpl->tpl_vars['action']->key => $_smarty_tpl->tpl_vars['action']->value) { $_smarty_tpl->tpl_vars['action']->_loop = true; ?> <?php if ($_smarty_tpl->tpl_vars['action']->value['type']=='link') {?> <a href="<?php echo $_smarty_tpl->tpl_vars['action']->value['href'];?> " class="btn <?php echo $_smarty_tpl->tpl_vars['action']->value['class'];?> "><?php echo $_smarty_tpl->tpl_vars['action']->value['label'];?> </a> <?php } elseif ($_smarty_tpl->tpl_vars['action']->value['type']=='button') {?> <button type="button" value="<?php echo $_smarty_tpl->tpl_vars['action']->value['value'];?> " class="btn <?php echo $_smarty_tpl->tpl_vars['action']->value['class'];?> "> <?php echo $_smarty_tpl->tpl_vars['action']->value['label'];?> </button> <?php }?> <?php } ?> </div> <?php }?> </div> </div> </div><?php }} ?>
fernandaos12/ateliebambolina
cache/smarty/compile/65/4d/b4/654db402b55732e746432a7b1d9d827589cb6899.file.modal.tpl.php
PHP
gpl-2.0
3,164
<?php /** * GetFeed AJAX handler * * PHP version 7 * * Copyright (C) The National Library of Finland 2015-2018. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * @category VuFind * @package AJAX * @author Samuli Sillanpรครค <samuli.sillanpaa@helsinki.fi> * @author Ere Maijala <ere.maijala@helsinki.fi> * @author Konsta Raunio <konsta.raunio@helsinki.fi> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/development Wiki */ namespace Finna\AjaxHandler; use Finna\Feed\Feed as FeedService; use VuFind\Session\Settings as SessionSettings; use Zend\Config\Config; use Zend\Mvc\Controller\Plugin\Params; use Zend\Mvc\Controller\Plugin\Url; use Zend\View\Renderer\RendererInterface; /** * GetFeed AJAX handler * * @category VuFind * @package AJAX * @author Samuli Sillanpรครค <samuli.sillanpaa@helsinki.fi> * @author Ere Maijala <ere.maijala@helsinki.fi> * @author Konsta Raunio <konsta.raunio@helsinki.fi> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/development Wiki */ class GetFeed extends \VuFind\AjaxHandler\AbstractBase { use FeedTrait; /** * RSS configuration * * @var Config */ protected $config; /** * Feed service * * @var FeedService */ protected $feedService; /** * View renderer * * @var RendererInterface */ protected $renderer; /** * URL helper * * @var Url */ protected $url; /** * Constructor * * @param SessionSettings $ss Session settings * @param Config $config RSS configuration * @param FeedService $fs Feed service * @param RendererInterface $renderer View renderer * @param Url $url URL helper */ public function __construct(SessionSettings $ss, Config $config, FeedService $fs, RendererInterface $renderer, Url $url ) { $this->sessionSettings = $ss; $this->config = $config; $this->feedService = $fs; $this->renderer = $renderer; $this->url = $url; } /** * Handle a request. * * @param Params $params Parameter helper from controller * * @return array [response data, HTTP status code] */ public function handleRequest(Params $params) { $this->disableSessionWrites(); // avoid session write timing bug $id = $params->fromPost('id', $params->fromQuery('id')); if (!$id) { return $this->formatResponse('', self::STATUS_HTTP_BAD_REQUEST); } $touchDevice = $params->fromQuery('touch-device') === '1'; try { $serverHelper = $this->renderer->plugin('serverurl'); $homeUrl = $serverHelper($this->url->fromRoute('home')); $feed = $this->feedService->readFeed($id, $this->url, $homeUrl); } catch (\Exception $e) { return $this->formatResponse($e->getMessage(), self::STATUS_HTTP_ERROR); } if (!$feed) { return $this->formatResponse( 'Error reading feed', self::STATUS_HTTP_ERROR ); } return $this->formatResponse( $this->formatFeed($feed, $this->config, $this->renderer) ); } }
samuli/NDL-VuFind2
module/Finna/src/Finna/AjaxHandler/GetFeed.php
PHP
gpl-2.0
4,022
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ssl::context::load_verify_file</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../ssl__context.html" title="ssl::context"> <link rel="prev" href="impl_type.html" title="ssl::context::impl_type"> <link rel="next" href="load_verify_file/overload1.html" title="ssl::context::load_verify_file (1 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="impl_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="load_verify_file/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.ssl__context.load_verify_file"></a><a class="link" href="load_verify_file.html" title="ssl::context::load_verify_file">ssl::context::load_verify_file</a> </h4></div></div></div> <p> <a class="indexterm" name="id1538234"></a> Load a certification authority file for performing verification. </p> <pre class="programlisting"><span class="keyword">void</span> <a class="link" href="load_verify_file/overload1.html" title="ssl::context::load_verify_file (1 of 2 overloads)">load_verify_file</a><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> <span class="identifier">filename</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="load_verify_file/overload1.html" title="ssl::context::load_verify_file (1 of 2 overloads)">more...</a></em></span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <a class="link" href="load_verify_file/overload2.html" title="ssl::context::load_verify_file (2 of 2 overloads)">load_verify_file</a><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> <span class="identifier">filename</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="load_verify_file/overload2.html" title="ssl::context::load_verify_file (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2011 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="impl_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="load_verify_file/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
charlesDGY/coflo
coflo-0.0.4/third_party/boost_1_48_0/doc/html/boost_asio/reference/ssl__context/load_verify_file.html
HTML
gpl-2.0
4,858
/* Copyright (C) 2006 - 2015 Evan Teran evan.teran@gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "OptionsPage.h" #include <QSettings> #include <QDebug> #include <QFileDialog> #include <QDomDocument> #include "ui_OptionsPage.h" namespace Assembler { //------------------------------------------------------------------------------ // Name: OptionsPage // Desc: //------------------------------------------------------------------------------ OptionsPage::OptionsPage(QWidget *parent) : QWidget(parent), ui(new Ui::OptionsPage) { ui->setupUi(this); QSettings settings; const QString name = settings.value("Assembler/helper", "yasm").toString(); ui->assemblerName->clear(); QFile file(":/debugger/Assembler/xml/assemblers.xml"); if(file.open(QIODevice::ReadOnly | QIODevice::Text)) { QDomDocument xml; xml.setContent(&file); QDomElement root = xml.documentElement(); for(QDomElement assembler = root.firstChildElement("assembler"); !assembler.isNull(); assembler = assembler.nextSiblingElement("assembler")) { const QString name = assembler.attribute("name"); ui->assemblerName->addItem(name); } } const int index = ui->assemblerName->findText(name, Qt::MatchFixedString); if(index == -1 && ui->assemblerName->count() > 0) { ui->assemblerName->setCurrentIndex(0); } else { ui->assemblerName->setCurrentIndex(index); } } //------------------------------------------------------------------------------ // Name: ~OptionsPage // Desc: //------------------------------------------------------------------------------ OptionsPage::~OptionsPage() { delete ui; } //------------------------------------------------------------------------------ // Name: showEvent // Desc: //------------------------------------------------------------------------------ void OptionsPage::showEvent(QShowEvent *event) { Q_UNUSED(event); } //------------------------------------------------------------------------------ // Name: on_assemblerName_currentIndexChanged // Desc: //------------------------------------------------------------------------------ void OptionsPage::on_assemblerName_currentIndexChanged(const QString &text) { QSettings settings; settings.setValue("Assembler/helper", text); } }
Northern-Lights/edb-debugger
plugins/Assembler/OptionsPage.cpp
C++
gpl-2.0
2,851
<?php /** * @copyright Copyright (C) 2009-2011 ACYBA SARL - All rights reserved. * @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL */ defined('_JEXEC') or die('Restricted access'); ?> <?php class UpdateController extends JController{ function __construct($config = array()){ parent::__construct($config); $this->registerDefaultTask('update'); } function install(){ $newConfig = null; $newConfig->installcomplete = 1; $config = acymailing_config(); $config->save($newConfig); $updateHelper = acymailing_get('helper.update'); $updateHelper->initList(); $updateHelper->installNotifications(); $updateHelper->installTemplates(); $updateHelper->installMenu(); $updateHelper->installExtensions(); $updateHelper->installBounceRules(); acymailing_setTitle('AcyMailing','acymailing','dashboard'); $this->_iframe(ACYMAILING_UPDATEURL.'install'); } function update(){ $config = acymailing_config(); if(!acymailing_isAllowed($config->get('acl_config_manage','all'))){ acymailing_display(JText::_('ACY_NOTALLOWED'),'error'); return false; } acymailing_setTitle(JText::_('UPDATE_ABOUT'),'acyupdate','update'); $bar = & JToolBar::getInstance('toolbar'); $bar->appendButton( 'Link', 'back', JText::_('ACY_CLOSE'), acymailing_completeLink('dashboard') ); return $this->_iframe(ACYMAILING_UPDATEURL.'update'); } function _iframe($url){ $config = acymailing_config(); $url .= '&version='.$config->get('version').'&level='.$config->get('level').'&component=acymailing'; ?> <div id="acymailing_div"> <iframe allowtransparency="true" scrolling="auto" height="450px" frameborder="0" width="100%" name="acymailing_frame" id="acymailing_frame" src="<?php echo $url; ?>"> </iframe> </div> <?php } }
caiovdp/EStube
administrator/components/com_acymailing/controllers/update.php
PHP
gpl-2.0
1,821
// event.c // // Example program for bcm2835 library // Event detection of an input pin // // After installing bcm2835, you can build this // with something like: // gcc -o event -l rt event.c -l bcm2835 // sudo ./event // // Or you can test it before installing with: // gcc -o event -l rt -I ../../src ../../src/bcm2835.c event.c // sudo ./event // // Author: Mike McCauley (mikem@open.com.au) // Copyright (C) 2011 Mike McCauley // $Id: RF22.h,v 1.21 2012/05/30 01:51:25 mikem Exp $ #include <bcm2835.h> #include <stdio.h> // Input on RPi pin GPIO 15 #define PIN RPI_GPIO_P1_15 int main(int argc, char **argv) { // If you call this, it will not actually access the GPIO // Use for testing // bcm2835_set_debug(1); if (!bcm2835_init()) return 1; // Set RPI pin P1-15 to be an input bcm2835_gpio_fsel(PIN, BCM2835_GPIO_FSEL_INPT); // with a pullup bcm2835_gpio_set_pud(PIN, BCM2835_GPIO_PUD_UP); // And a low detect enable bcm2835_gpio_len(PIN); while (1) { if (bcm2835_gpio_eds(PIN)) { // Now clear the eds flag by setting it to 1 bcm2835_gpio_set_eds(PIN); printf("low event detect for pin 15\n"); } // wait a bit delay(500); } bcm2835_close(); return 0; }
tomstacey/PiBot-C-Rev-2-Board
src/bcm2835-1.15/examples/event/event.c
C
gpl-2.0
1,252
angular.module('usinApp') //NOTES QUERY .factory('EcuiNotesQuery', function(options, $http){ return { stickNote : function(noteId){ var url = options.ajaxURL, data = {'action': 'ecui_stick_note', 'note_id':noteId, 'nonce':options.ecui_nonce}; return $http({ method : 'get', url : url, params : data }); }, unstickNote : function(noteId){ var url = options.ajaxURL, data = {'action': 'ecui_unstick_note', 'note_id':noteId, 'nonce':options.ecui_nonce}; return $http({ method : 'get', url : url, params : data }); } }; }) //STICKY NOTES CONTROLLER .controller('ecuiStickyNotesCtrl', function($scope, options, EcuiNotesQuery){ var toggleState = function(callback){ if(!$scope.noteLoading){ $scope.startNoteLoading(); callback.call(this, $scope.note.id) .then( function(res){ var data = res.data; $scope.stopNoteLoading(); if(data.success && data.notes){ $scope.updateNotes(data.notes); }else{ $scope.doOnError(data); } }, $scope.doOnError); } }; $scope.stick = function(){ toggleState(EcuiNotesQuery.stickNote); }; $scope.unstick = function(){ toggleState(EcuiNotesQuery.unstickNote); }; }) //GROUP ICONS FILTER .filter('groupTagHtml', ['$sce', 'options', function($sce, options){ var cache = {}; return function(groupId){ if(cache[groupId]){ return cache[groupId]; } var filtered = options.groups.filter(function(group){ return group.key == groupId; }); if(filtered && filtered.length){ var group = filtered[0], html; if(group.icon){ html = $sce.trustAsHtml('<span class="usin-group-tag ecui-icon-tag" title="'+group.val+'" style="color:#'+group.color+';"><i class="fa '+group.icon+'"></i></span>'); }else{ html = $sce.trustAsHtml('<span class="usin-group-tag" title="'+group.val+'" style="background-color:#'+group.color+';">'+group.val+'</span>'); } cache[groupId] = html; return html; } return ''; }; }]);
deni000zz/extended-crm-for-users-insights
js/user-list.js
JavaScript
gpl-2.0
2,091
package x.log; import org.junit.Test; import x.event.LiveList; import static org.junit.Assert.*; public class XLogWriterTest { XLogWriter writer = new XLogWriter(); @Test public void is_a_LiveListSource() { assertTrue(writer instanceof LiveList.Source); } @Test public void log_is_empty_when_nothing_has_been_published() { assertTrue(writer.log.isEmpty()); } @Test public void log_is_not_empty_when_something_has_been_published() { writer.log(null,Object.class,""); assertFalse(writer.log.isEmpty()); } @Test public void published_log_entry_matches_what_was_logged() { Class clazz = getClass(); Object target = new Object(); String message = toString(); writer.log(target,clazz,message,this); XLogEntry entry = writer.log().get(0); assertSame(target,entry.target); assertSame(clazz,entry.clazz); assertSame(message,entry.message); assertSame(this,entry.details[0]); } }
curtcox/OysterCracker
OC1/src/test/java/x/log/XLogWriterTest.java
Java
gpl-2.0
1,034
translations = { "": "Project-Id-Version: eXeLearning 2.1\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2015-04-27 22:58+0200\nPO-Revision-Date: 2008-12-12 16:43+1300\nLast-Translator: Jun IWATA <j_iwata@med.shimane-u.ac.jp>\nLanguage-Team: Jun Iwata <iwata@matsue-ct.ac.jp>\nLanguage: ja\nPlural-Forms: nplurals=1; plural=0\nMIME-Version: 1.0\nContent-Type: text\/plain; charset=utf-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: Babel 1.3\n", "<p>Teachers should keep the following in mind when using this iDevice: <\/p><ol><li>Think about the number of different types of activity planned for your resource that will be visually signalled in the content. Avoid using too many different types or classification of activities otherwise learner may become confused. Usually three or four different types are more than adequate for a teaching resource.<\/li><li>From a visual design perspective, avoid having two iDevices immediately following each other without any text in between. If this is required, rather collapse two questions or events into one iDevice. <\/li><li>Think about activities where the perceived benefit of doing the activity outweighs the time and effort it will take to complete the activity. <\/li><\/ol>": "<p>\u6559\u5e2b\u306f\u3053\u306eiDevice\u3092\u5229\u7528\u3059\u308b\u969b\u306f\u6b21\u306e\u70b9\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p><ol><li>\u6559\u6750\u306b\u5bfe\u3057\u3066\u5229\u7528\u3059\u308b\u6d3b\u52d5\u306e\u7a2e\u985e\u3068\u6570\u306b\u3064\u3044\u3066\u306f\u3001\u3088\u304f\u8003\u3048\u3066\u8a08\u753b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3042\u307e\u308a\u306b\u591a\u304f\u306e\u7a2e\u985e\u3084\u3001\u6570\u3092\u7528\u3044\u305f\u5834\u5408\u3001\u5b66\u7fd2\u8005\u306f\u6df7\u4e71\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u901a\u5e38\uff11\u3064\u306e\u6559\u6750\u306b\u5bfe\u3057\u3066\u3001\uff13\u3001\uff14\u7a2e\u985e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u9069\u5f53\u3067\u3059\u3002<\/li><li>\u8996\u899a\u7684\u30c7\u30b6\u30a4\u30f3\u306e\u70b9\u304b\u3089\u8a00\u3046\u3068\u3001\uff12\u3064\u306eiDevice\u3092\u5229\u7528\u3059\u308b\u969b\u306f\u3001\u9593\u306b\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u308c\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002\u3067\u304d\u308b\u3060\u3051\uff11\u3064\u306eiDevice\u306b\u8907\u6570\u306e\u8cea\u554f\u3084\u5b66\u7fd2\u6d3b\u52d5\u3092\u76db\u308a\u8fbc\u3080\u307b\u3046\u304c\u5b66\u7fd2\u8005\u306b\u3068\u3063\u3066\u898b\u3084\u3059\u3044\u3068\u601d\u308f\u308c\u307e\u3059\u3002 <\/li><li>\u5b66\u7fd2\u8005\u304c\u53d6\u308a\u7d44\u3080\u6d3b\u52d5\u304c\u3001\u305d\u308c\u306b\u304b\u304b\u308b\u6642\u9593\u3068\u52aa\u529b\u306b\u898b\u5408\u3046\u3082\u306e\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3088\u304f\u8003\u616e\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/li><\/ol>", "Title": "\u30bf\u30a4\u30c8\u30eb", "Text Line": "\u30c6\u30ad\u30b9\u30c8\u30e9\u30a4\u30f3", "Xhosa ": "\u30b3\u30fc\u30b5\u8a9e", "Metadata": "\u30e1\u30bf\u30c7\u30fc\u30bf", "Hide\/Show Word": "\u5358\u8a9e\u3092\u96a0\u3059\uff0f\u8868\u793a\u3059\u308b", "Create the case story. A good case is one \nthat describes a controversy or sets the scene by describing the characters \ninvolved and the situation. It should also allow for some action to be taken \nin order to gain resolution of the situation.": "\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u7528\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3088\u3044\u30b9\u30c8\u30fc\u30ea\u30fc\u3068\u306f\u3001\u8ad6\u4e89\u3092\u3057\u3084\u3059\u3044\u72b6\u6cc1\u3092 \n\u8a18\u8ff0\u3057\u305f\u3082\u306e\u3001\u95a2\u308f\u308b\u4eba\u7269\u50cf\u3084\u72b6\u6cc1\u304c\u514b\u660e\u306b\u63cf\u5199\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u3067\u3059\u3002\n\u307e\u305f\u3001\u72b6\u6cc1\u3092\u89e3\u6c7a\u3059\u308b\u305f\u3081\u306b\u4f55\u3089\u304b\u306e\u884c\u52d5\u3092\u53d6\u308b\u5fc5\u8981\u6027\u304c\u3042\u308b\u3088\u3046\u306a\u30b1\u30fc\u30b9\u306e\u8a2d\u5b9a\u3082\u53ef\u80fd\u3067\u3059\u3002", "This is a free text field.": "\u3053\u3053\u306f\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8\u7528\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u3059\u3002", "Portugese Wikipedia Article": "\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Add another option": "\u5225\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0", "Yiddish (formerly ji) ": "\u30a4\u30c7\u30a3\u30c3\u30b7\u30e5\u8a9e", "The majority of a learning resource will be \nestablishing context, delivering instructions and providing general information.\nThis provides the framework within which the learning activities are built and \ndelivered.": "\u5b66\u7fd2\u7528\u306e\u6559\u6750\u306e\u591a\u304f\u306f\u3001\u5b66\u7fd2\u7528\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306e\u4f5c\u6210\u3001\u52a9\u8a00\u3084\u4e00\u822c\u7684\u306a\u60c5\u5831\u63d0\u4f9b\u306e\u305f\u3081\u306b \n\u7528\u3044\u3089\u308c\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u3001\u5b66\u7fd2\u6d3b\u52d5\u306e\u69cb\u6210\u3084\u914d\u4fe1\u306b\u95a2\u3059\u308b\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002", "Although more often used in formal testing \nsituations MCQs can be used as a testing tool to stimulate thought and \ndiscussion on topics students may feel a little reticent in responding to. \n\nWhen designing a MCQ test consider the following:\n<ul>\n<li> What learning outcomes are the questions testing<\/li>\n<li> What intellectual skills are being tested<\/li>\n<li> What are the language skills of the audience<\/li>\n<li> Gender and cultural issues<\/li>\n<li> Avoid grammar language and question structures that might provide \n clues<\/li>\n<\/ul>\n ": "\u300c\u591a\u80a2\u9078\u629e\uff08\u5358\u72ec\u56de\u7b54\uff09\u300d\u306f\u3001\u901a\u5e38\u306e\u30c6\u30b9\u30c8\u3067\u3082\u5229\u7528\u3067\u304d\u307e\u3059\u304c\u3001\u5b66\u7fd2\u8005\u304c\u8fd4\u7b54\u3057\u305f\u304c\u3089\u306a\u3044\u3088\u3046\u306a \n\u30c8\u30d4\u30c3\u30af\u306b\u95a2\u3057\u3066\u8003\u3048\u3055\u305b\u305f\u308a\u3001\u8b70\u8ad6\u3055\u305b\u308b\u305f\u3081\u306e\u30c6\u30b9\u30c8\u7528\u30c4\u30fc\u30eb\u3068\u3057\u3066\u3082\u5229\u7528\u3067\u304d\u307e\u3059\u3002 \n\u300c\u591a\u80a2\u9078\u629e\uff08\u5358\u72ec\u56de\u7b54\uff09\u300d\u3092\u8a2d\u8a08\u3059\u308b\u969b\u306f\u3001\u6b21\u306e\u70b9\u306b\u3064\u3044\u3066\u8003\u616e\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n<ul>\n<li> \u3069\u306e\u3088\u3046\u306a\u5b66\u7fd2\u7d50\u679c\u3092\u8a08\u308b\u306e\u304b\uff1f<\/li>\n<li> \u3069\u306e\u3088\u3046\u306a\u77e5\u8b58\u3084\u6280\u80fd\u3092\u8a08\u308b\u306e\u304b\uff1f<\/li>\n<li> \u5b66\u7fd2\u8005\u306e\u8a00\u8a9e\u80fd\u529b\u306f\u3069\u306e\u7a0b\u5ea6\u304b\uff1f<\/li>\n<li> \u5b66\u7fd2\u8005\u306e\u6027\u5225\u3001\u6587\u5316\u7684\u80cc\u666f<\/li>\n<li> \u6587\u6cd5\u7528\u8a9e\u306e\u5229\u7528\u3001\u89e3\u7b54\u306e\u30d2\u30f3\u30c8\u3092\u4e0e\u3048\u308b\u3088\u3046\u306a\u8cea\u554f\u69cb\u6210\u306b\u3064\u3044\u3066\u306f\u6975\u529b\u907f\u3051\u308b<\/li>\n<\/ul>\n ", "Chichewa; Nyanja ": "\u30c1\u30c1\u30a7\u30ef\u8a9e", "Chuvash ": "\u30c1\u30e5\u30f4\u30a1\u30b7\u8a9e", "Enter a hint here. If you do not want to provide a hint, leave this field blank.": "\u3053\u3053\u306b\u30d2\u30f3\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3082\u3057\u3001\u30d2\u30f3\u30c8\u3092\u63d0\u4f9b\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u3053\u306e\u9818\u57df\u3092\u7a7a\u767d\u306e\u307e\u307e\u306b\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044\u3002", "Multi-select": "\u591a\u80a2\u9078\u629e\uff08\u8907\u6570\u89e3\u7b54\uff09", "Check Caps?": "\u5927\u6587\u5b57\u3068\u5c0f\u6587\u5b57\u306e\u533a\u5225\u3092\u3057\u307e\u3059\u304b", "Tongan ": "\u30c8\u30f3\u30ac\u8a9e", "False": "\u9593\u9055\u3044", "Afrikaans ": "\u30a2\u30d5\u30ea\u30ab\u30fc\u30f3\u30b9\u8a9e", "EXPORT FAILED!": "\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01", "The MP3 iDevice allows you to attach an MP3 media file to your content along with relevant textuallearning instructions.": "MP3\u306eiDevice\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3067\u3001\u95a2\u9023\u3059\u308b\u30c6\u30ad\u30b9\u30c8\u60c5\u5831\u3092\u3064\u3051\u3066MP3\u30d5\u30a1\u30a4\u30eb\u3092\u6559\u6750\u306b\u6dfb\u4ed8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", "Tswana; Setswana ": "\u30c4\u30ef\u30ca\u8a9e", "Add images": "\u753b\u50cf\u3092\u8ffd\u52a0", "Select an MP3": "MP3\u306e\u9078\u629e", "Set the maximum level of zoom, \nas a percentage of the original image size": "\u30aa\u30ea\u30b8\u30ca\u30eb\u306e\u753b\u50cf\u30b5\u30a4\u30ba\u306e%\u306b\u3088\u3063\u3066\u3001\u30ba\u30fc\u30e0\u306e\u6700\u5927\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 ", "Abkhazian ": "\u30a2\u30d6\u30cf\u30fc\u30ba\u8a9e", "Slovenian Wikipedia Article": "\u30b9\u30ed\u30d9\u30cb\u30a2\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Bislama ": "\u30d3\u30fc\u30c1\u30e9\u30de\u30fc\u8a9e", "Show\/Clear Answers": "\u89e3\u7b54\u3092\u8868\u793a\u3059\u308b\uff0f\u30af\u30ea\u30a2\u3059\u308b", "Esperanto ": "\u30a8\u30b9\u30da\u30e9\u30f3\u30c8\u8a9e", "Strict Marking?": "\u53b3\u3057\u304f\u63a1\u70b9\u3057\u307e\u3059\u304b\uff1f", "Persian ": "\u30da\u30eb\u30b7\u30e3\u8a9e", "True": "\u6b63\u3057\u3044", "Delete Image": "\u753b\u50cf\u306e\u524a\u9664", "Hide Feedback": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u96a0\u3059", "Kinyarwanda ": "\u30ad\u30cb\u30e3\u30eb\u30ef\u30f3\u30c0\u8a9e", "Japanese ": "\u65e5\u672c\u8a9e", "Italian Wikipedia Article": "\u30a4\u30bf\u30ea\u30a2\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Label:": "\u30e9\u30d9\u30eb\uff1a", "ERROR: Block.renderViewContent called directly": "ERROR: Block.renderViewContent called directly", "Maltese ": "\u30de\u30eb\u30bf\u8a9e", "ERROR Element.process called directly with %s class": "ERROR Element.process called directly with %s class", "Serbian ": "\u30bb\u30eb\u30d3\u30a2\u8a9e", "Show\/Hide Feedback": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8868\u793a\u3059\u308b\uff0f\u8868\u793a\u3057\u306a\u3044", "Kikuyu ": "\u30ad\u30af\u30fc\u30e6\u8a9e", "Wrong": "\u4e0d\u6b63\u89e3", "Romanian ": "\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e", "Select a font size: ": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u9078\u629e", "Home": "\u30db\u30fc\u30e0", "Swahili ": "\u30b9\u30ef\u30d2\u30ea\u8a9e", "No Images Loaded": "\u753b\u50cf\u304c\u633f\u5165\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f", "Type the question stem. The question \nshould be clear and unambiguous. Avoid negative premises as these can tend to \nbe ambiguous.": "\u57fa\u672c\u3068\u306a\u308b\u8cea\u554f\u3092\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8cea\u554f\u306f\u660e\u78ba\u306b\u3057\u3001\n\u3042\u3044\u307e\u3044\u306b\u306a\u3089\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u9060\u616e\u3092\u3057\u305f\u66f8\u304d\u65b9\u3092\u3059\u308b\u3068\n\u3042\u3044\u307e\u3044\u306a\u8868\u73fe\u306b\u306a\u308a\u3084\u3059\u304f\u306a\u308a\u307e\u3059\u3002", "Couldn't load file, please email file to bugs@exelearning.org": "\u30d5\u30a1\u30a4\u30eb\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002bugs@exelearning.org\u306b\u30e1\u30fc\u30eb\u3067\u9023\u7d61\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "(Afan) Oromo ": "\u30aa\u30ed\u30e2\u8a9e", "Amharic ": "\u30a2\u30e0\u30cf\u30e9\u8a9e", "Add another question": "\u5225\u306e\u8cea\u554f\u3092\u8ffd\u52a0", "ERROR Element.renderEdit called directly with %s class": "ERROR Element.renderEdit called directly with %s class", "Tibetan ": "\u30c1\u30d9\u30c3\u30c8\u8a9e", "Only select .swf (Flash Objects) for \nthis iDevice.": "\u3053\u306eiDevice\u3067\u306f.swf\uff08\u30d5\u30e9\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\uff09\u306e\u307f\u9078\u629e\u3067\u304d\u307e\u3059\u3002", "Malayalam ": "\u30de\u30e9\u30e4\u30fc\u30e9\u30e0\u8a9e", "Polish ": "\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e", "Provide a caption for the image \nyou have just inserted.": "\u633f\u5165\u3057\u305f\u753b\u50cf\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002", "Delete File": "\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664", "IDevice broken": "IDevice\u304c\u58ca\u308c\u3066\u3044\u307e\u3059", "To indicate the correct answer, \nclick the radio button next to the correct option.": "\u6b63\u3057\u3044\u89e3\u7b54\u3092\u793a\u3059\u305f\u3081\u306b\u3001\u6b63\u3057\u3044\u89e3\u7b54\u306e\u6a2a\u306b\n\u3042\u308b\u30e9\u30b8\u30aa\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Select MP3 file": "\uff2d\uff30\uff13\u30d5\u30a1\u30a4\u30eb\u306e\u9078\u629e", "Enter a phrase or term you wish to search \nwithin Wikipedia.": "\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306e\u4e2d\u3067\u691c\u7d22\u3057\u305f\u3044\u30d5\u30ec\u30fc\u30ba\u3084\n\u5358\u8a9e\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Provide instruction on how the cloze activity should be \ncompleted. Default text will be entered if there are no changes to this field.\n": "\u300c\u7a7a\u6240\u88dc\u5145\u300d\u554f\u984c\u306e\u89e3\u7b54\u65b9\u6cd5\u306b\u3064\u3044\u3066\u6307\u793a\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u4f55\u3082\u8a18\u5165\u3057\u306a\u3044\u5834\u5408\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6307\u793a\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n", ". Please use ASCII names.": ". \u30a2\u30b9\u30ad\u30fc\u30cd\u30fc\u30e0\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044.", "Please upload a .ggb file.": "ggb\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Allow auto completion when user filling the gaps.": "\u5b66\u7fd2\u8005\u304c\u7a7a\u6240\u88dc\u5145\u3092\u3059\u3079\u3066\u7d42\u3048\u305f\u969b\u3001\u81ea\u52d5\u7684\u306b\u7d42\u4e86\u3055\u305b\u308b\u3002", "Restart": "\u518d\u8d77\u52d5", "Add Image": "\u753b\u50cf\u306e\u8ffd\u52a0", "Reflection": "\u8003\u5bdf", "Enter the details of the reading including reference details. The \nreferencing style used will depend on the preference of your faculty or \ndepartment.": "\u53c2\u8003\u6587\u732e\u3092\u542b\u3081\u3001\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u5185\u5bb9\u306e\u8a73\u7d30\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u6587\u732e\u5f15\u7528\u306e\u969b\u306e\u30b9\u30bf\u30a4\u30eb\u306f\u3001\u6240\u5c5e\u3059\u308b\u5b66\u90e8\u3084\u5b66\u4f1a\u306e\u5f62\u5f0f\u306b\u5408\u308f\u305b\u3066\u304f\u3060\u3055\u3044\u3002", "---Move To---": "---\u79fb\u52d5\u3057\u307e\u3059---", "Unlike the MCQ the SCORM quiz is used to test \nthe learners knowledge on a topic without providing the learner with feedback \nto the correct answer. The quiz will often be given once the learner has had \ntime to learn and practice using the information or skill.\n ": "\u300c\u591a\u80a2\u9078\u629e\uff08\u5358\u72ec\u89e3\u7b54\uff09\u300d\u3068\u306f\u7570\u306a\u308a\u3001\u300cSCORM\u300d\u30af\u30a4\u30ba\u306f\u3001\u5b66\u7fd2\u8005\u306e\u6b63\u7b54\u306b\u5bfe\u3059\u308b\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092 \n\u63d0\u4f9b\u3057\u306a\u3044\u3067\u3001\u3042\u308b\u30c8\u30d4\u30c3\u30af\u306b\u95a2\u3059\u308b\u5b66\u7fd2\u8005\u306e\u77e5\u8b58\u3092\u30c6\u30b9\u30c8\u3059\u308b\u306e\u306b\u5229\u7528\u3067\u304d\u307e\u3059\u3002\n\u3053\u306e\u30af\u30a4\u30ba\u306f\u3001\u5b66\u7fd2\u8005\u304c\u60c5\u5831\u3084\u6280\u80fd\u3092\u7528\u3044\u3066\u5b66\u7fd2\u3057\u305f\u308a\u6f14\u7fd2\u3092\u3057\u305f\u5f8c\u3001\u3088\u304f\u5229\u7528\u3055\u308c\u307e\u3059\u3002", "Russian ": "\u30ed\u30b7\u30a2\u8a9e", "Panjabi; Punjabi ": "\u30d1\u30f3\u30b8\u30e3\u30d6\u8a9e", "Please enter<br \/>an idevice name.": "<br \/>iDevice\u306e\u540d\u524d\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Delete question": "\u8cea\u554f\u306e\u524a\u9664", "Malay ": "\u30de\u30ec\u30fc\u8a9e", "SAVE FAILED!": "\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01", "Feedback": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af", "Add all the files provided for the applet\nexcept the .txt file one at a time using the add files and upload buttons. The \nfiles, once loaded will be displayed beneath the Applet code field.": "\u30a2\u30d7\u30ec\u30c3\u30c8\u7528\u306e\u30d5\u30a1\u30a4\u30eb\uff08\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb.txt\u4ee5\u5916\uff09\u3092\u3059\u3079\u3066\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u4e00\u5ea6\u306b\u4e00\u3064\u305a\u3064\u300c\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0\u300d\u3068\u300c\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u300d\u30dc\u30bf\u30f3\u3092\u5229\u7528\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u8ffd\u52a0\u3092\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u30d5\u30a1\u30a4\u30eb\u306f\u53d6\u308a\u8fbc\u307e\u308c\u308b\u3068\u30a2\u30d7\u30ec\u30c3\u30c8\u30b3\u30fc\u30c9\u9818\u57df\u306e\u4e0b\u306b\u8868\u793a\u3055\u308c\u307e\u3059\u3002", "Instructions For Learners": "\u5b66\u7fd2\u8005\u3078\u306e\u6307\u793a", "Text": "\u30c6\u30ad\u30b9\u30c8", "Albanian ": "\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e", "Select the size of the magnifying glass": "\u62e1\u5927\u93e1\u306e\u30b5\u30a4\u30ba\u306e\u9078\u629e", "Applet Type": "\u30a2\u30d7\u30ec\u30c3\u30c8\u30bf\u30a4\u30d7\uff1a", "Flash with Text": "\u30c6\u30af\u30b9\u30c8\u4ed8\u30d5\u30e9\u30c3\u30b7\u30e5", "The image magnifier is a magnifying tool enabling\n learners to magnify the view of the image they have been given. Moving the \nmagnifying glass over the image allows larger detail to be studied.": "\u753b\u50cf\u62e1\u5927\u306f\u3001\u5b66\u7fd2\u8005\u304c\u4e0e\u3048\u3089\u308c\u305f\u753b\u50cf\u3092\u62e1\u5927\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u30c4\u30fc\u30eb\u3067\u3059\u3002\n\u753b\u9762\u4e0a\u3067\u62e1\u5927\u93e1\u3092\u79fb\u52d5\u3059\u308b\u3053\u3068\u3067\u753b\u50cf\u306e\u8a73\u7d30\u3092\u5b66\u7fd2\u3067\u304d\u307e\u3059\u3002", "Initial Zoom": "\u30a4\u30cb\u30b7\u30e3\u30eb\u30ba\u30fc\u30e0", "Move Up": "\u4e0a\u306b\u79fb\u52d5", "Lithuanian ": "\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e", "Church Slavic ": "\u6559\u4f1a\u30b9\u30e9\u30d6\u8a9e", "Instant Marking?": "\u5373\u6642\u306b\u63a1\u70b9\u3057\u307e\u3059\u304b\uff1f", "Alignment allows you to \nchoose where on the screen the image will be positioned.": "\u300c\u914d\u7f6e\u300d\u306b\u3088\u308a\u3001\u753b\u9762\u306e\u3069\u306e\u90e8\u5206\u306b\u753b\u50cf\u3092\u914d\u7f6e\u3059\u308b\u304b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", "Sinhalese ": "\u30b7\u30f3\u30cf\u30e9\u8a9e", "Align:": "\u914d\u7f6e\uff1a", "Northern Sami ": "\u5317\u30b5\u30fc\u30e1\u8a9e", "Provide relevant feedback on the \nsituation.": "\u72b6\u6cc1\u306b\u95a2\u9023\u3057\u305f\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Thai ": "\u30bf\u30a4\u8a9e", "Frisian ": "\u30d5\u30ea\u30b8\u30a2\u8a9e", "Provide a caption for the \nMP3 file. This will appear in the players title bar as well.": "MP3\u30d5\u30a1\u30a4\u30eb\u306b\u8868\u984c\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\u3053\u306e\u8868\u984c\u306f\u30d7\u30ec\u30fc\u30e4\u30fc\u306e\u30bf\u30a4\u30c8\u30eb\u30d0\u30fc\u306b\u3082\u8868\u8a18\u3055\u308c\u307e\u3059\u3002", "Move Down": "\u4e0b\u306b\u79fb\u52d5", "Go Forward (Not Available)": "\u9032\u3080\uff08\u5229\u7528\u4e0d\u53ef\uff09", "Pedagogical Tip": "\u6307\u5c0e\u4e0a\u306e\u30d2\u30f3\u30c8", "Feedback:": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\uff1a", "Faroese ": "\u30d5\u30a7\u30ed\u30fc\u8a9e", "Go Forward": "\u9032\u3080", "Sorry, wrong file format:\n%s": "\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u9055\u3063\u3066\u3044\u307e\u3059:\n%s", "The external website iDevice loads an external website \ninto an inline frame in your eXe content rather then opening it in a popup box. \nThis means learners are not having to juggle windows. \nThis iDevice should only be used if your content \nwill be viewed by learners online.": "\u300c\u5916\u90e8\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u300d\u7528iDevice\u306f\u3001\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u958b\u304b\u305a\u306b\u3001\n\u3042\u306a\u305f\u306e\u4f5c\u6210\u3059\u308beXe\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30d5\u30ec\u30fc\u30e0\u5185\u306b\u5916\u90e8\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092 \n\u76db\u308a\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u3063\u3066\u5b66\u7fd2\u8005\u306f\u3001\u8907\u6570\u306e\u30a6\u30a3\u30f3\u30c9\u30a6\u3092 \n\u64cd\u4f5c\u3059\u308b\u5fc5\u8981\u304c\u306a\u304f\u306a\u308a\u307e\u3059\u3002\u3053\u306eiDevice\u306f\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u3092 \n\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u8868\u793a\u3059\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Image with Text": "\u30c6\u30ad\u30b9\u30c8\u4ed8\u753b\u50cf", "University of Auckland": "\u30aa\u30fc\u30af\u30e9\u30f3\u30c9\u5927\u5b66", "Reading Activity 0.11": "\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u6d3b\u52d5\u30000.11", "Arabic ": "\u30a2\u30e9\u30d3\u30a2\u8a9e", "Cornish ": "\u30b3\u30fc\u30f3\u30a6\u30a9\u30fc\u30eb\u8a9e", "Kuanyama ": "Kuanyama ", "EXPORT FAILED!\nLast succesful export is %s.": "\u30a8\u30ad\u30b9\u30dd\u30fc\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n\u6700\u5f8c\u306b\u6210\u529f\u3057\u305f\u30a8\u30ad\u30b9\u30dd\u30fc\u30c8\u306f\u6b21\u306e\u3082\u306e\u3067\u3059 %s.", "Sardinian ": "\u30b5\u30eb\u30c7\u30fc\u30cb\u30e3\u8a9e", "Filename:": "\u30d5\u30a1\u30a4\u30eb\u540d\uff1a", "Allow auto completion when \n user filling the gaps.": "\u5b66\u7fd2\u8005\u304c\u7a7a\u6240\u88dc\u5145\u3092\u3059\u3079\u3066\u7d42\u3048\u305f\u969b\u3001\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u81ea\u52d5\u7684\u306b\u7d42\u4e86\u3055\u305b\u308b\u3002", "Provide instruction on how the True\/False Question should be \ncompleted.": "\u6b63\u8aa4\u554f\u984c\u306e\u89e3\u7b54\u65b9\u6cd5\u306b\u3064\u3044\u3066\u6307\u793a\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Dutch Wikipedia Article": "\u30aa\u30e9\u30f3\u30c0\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Case Study": "\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u30fc", "Put instructions for learners here": "\u5b66\u7fd2\u8005\u3078\u306e\u6307\u793a\u3092\u3053\u3053\u306b\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044", "iDevices": "iDe\uff56ice", "Use this Idevice if you have a lot of images to show.": "\u8868\u793a\u3059\u308b\u753b\u50cf\u304c\u591a\u3044\u3068\u304d\u306b\u306f\u3053\u306eiDevice\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "RSS": "RSS", "Hide": "\u96a0\u3059", "Some emphasis": "\u5f37\u8abf\u3059\u308b", "Kannada ": "\u30ab\u30ca\u30e9\u8a9e", "Interlingua ": "\u30a4\u30f3\u30bf\u30fc\u30ea\u30f3\u30b0\u30a2", "Select a file": "\u30d5\u30a1\u30a4\u30eb\u306e\u9078\u629e", "Set the initial level of zoom \nwhen the IDevice loads, as a percentage of the original image size": "iDevice\u304c\u753b\u50cf\u3092\u53d6\u308a\u8fbc\u3093\u3060\u969b\u306e\u521d\u671f\u306e\u30ba\u30fc\u30e0\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\uff08\u30aa\u30ea\u30b8\u30ca\u30eb\u753b\u50cf\u30b5\u30a4\u30ba\u306e%\u3067\uff09", " <p>If the applet you're adding was generated \nby one of the programs in this drop down, please select it, \nthen add the data\/applet file generated by your program. <\/p>\n<p>eg. For Geogebra applets, select geogebra, then add the .ggb file that \nyou created in Geogebra.<\/p>": " <p>\u8ffd\u52a0\u3059\u308b\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u3053\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u306b\u3042\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u4e00\u3064\u3092\u4f7f\u3063\u3066\u4f5c\u6210 \n\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001\u305d\u308c\u3092\u9078\u629e\u3057\u3001\u305d\u306e\u5f8c\u3001\u3042\u306a\u305f\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u4f5c\u6210\u3057\u305f \n\u30c7\u30fc\u30bf\uff0f\u30a2\u30d7\u30ec\u30c3\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n<p>\u4f8b\uff1a\u3000Geogebra \u30a2\u30d7\u30ec\u30c3\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u5834\u5408\u3001\u300cgeogebra\u300d\u3092\u9078\u629e\u3057\u3001\n\u3042\u306a\u305f\u304cGeogebra\u3067\u4f5c\u6210\u3057\u305f .ggb \u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>", "Tigrinya ": "\u30c6\u30a3\u30b0\u30ea\u30cb\u30e3\u8a9e", "<p>If this option is checked, submitted answers with different capitalization will be marked as incorrect.<\/p>": "<p>\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30c1\u30a7\u30c3\u30af\u3057\u305f\u5834\u5408\u3001\u63d0\u51fa\u3055\u308c\u305f\u89e3\u7b54\u306f,\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u304c\u4e00\u81f4\u3057\u306a\u3044\u5834\u5408\u3001\u300c\u4e0d\u6b63\u89e3\u300d\u3068\u3057\u3066\u63a1\u70b9\u3055\u308c\u307e\u3059\u3002<\/p>", "Add another activity": "\u5225\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30fc\u3092\u8ffd\u52a0", "Tip:": "\u30d2\u30f3\u30c8\uff1a", "Go Back": "\u623b\u308b", "External Web Site": "\u5916\u90e8\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8", "Inuktitut ": "\u30a4\u30cc\u30af\u30c6\u30a3\u30c8\u30c3\u30c8\uff84\u8a9e", "Welsh ": "\u30a6\u30a7\u30fc\u30eb\u30ba\u8a9e", "Show Answers": "\u89e3\u7b54\u3092\u8868\u793a\u3059\u308b", "Display as:": "\u3068\u3057\u3066\u8868\u793a", "Enter an RSS URL for the RSS feed you \nwant to attach to your content. Feeds are often identified by a small graphic\n icon (often like this <img src=\"\/images\/feed-icon.png\" \/>) or the text \"RSS\". Clicking on the \n icon or text label will display an RSS feed right in your browser. You can copy and paste the\nURL into this field. Alternately, right clicking on the link or graphic will open a menu box;\nclick on COPY LINK LOCATION or Copy Shortcut. Back in eXe open the RSS bookmark iDevice and Paste the URL \ninto the RSS URL field and click the LOAD button. This will extract the titles from your feed and\ndisplay them as links in your content. From here you can edit the bookmarks and add\n instructions or additional learning information.": "\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u6dfb\u4ed8\u3059\u308bRSS feed \u306eURL\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\u30d5\u30a3\u30fc\u30c9\u306f\u3001\u901a\u5e38\u30a2\u30a4\u30b3\u30f3\u3084\u30c6\u30ad\u30b9\u30c8\u3067\u8868\u793a\u3055\u308c\u307e\u3059\u3002\n \uff08\u30a2\u30a4\u30b3\u30f3\uff1a<img src=\"\/images\/feed-icon.png\" \/>\u3001\u30c6\u30ad\u30b9\u30c8\uff1a \"RSS\"\uff09 \n\u30a2\u30a4\u30b3\u30f3\u3084\u30c6\u30ad\u30b9\u30c8\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3053\u3068\u3067\u3001RSS \u30d5\u30a3\u30fc\u30c9\u3092\u30d6\u30e9\u30a6\u30b6\u306b\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\nURL\u3092\u30b3\u30d4\u30fc\u3068\u8cbc\u308a\u4ed8\u3051\u3067\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u5165\u529b\u3067\u304d\u307e\u3059\u3002 \u307e\u305f\u3001\u5225\u306e\u65b9\u6cd5\u3068\u3057\u3066\u30ea\u30f3\u30af\u3084\n\u753b\u50cf\u3092\u53f3\u30af\u30ea\u30c3\u30af\u3059\u308b\u3053\u3068\u3067\u30e1\u30cb\u30e5\u30fc\u30dc\u30c3\u30af\u30b9\u304c\u958b\u304d\u307e\u3059\u3002\u300c\u30ea\u30f3\u30af\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30b3\u30d4\u30fc\u300d\u3042\u308b\u3044\u306f\u3001\n\u300c\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u3092\u30b3\u30d4\u30fc\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002eXe\u3067\u306f\u3001RSS\u30d6\u30c3\u30af\u30de\u30fc\u30afidevice\u3092\u958b\u304d\u3001\nRSS\u7528URL\u6b04\u306bURL\u3092\u8cbc\u308a\u4ed8\u3051\u3001\u300c\u30ed\u30fc\u30c9\u300d\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3053\u3046\u3059\u308b\u3053\u3068\u3067\u30d5\u30a3\u30fc\u30c9\u304b\u3089\n\u30bf\u30a4\u30c8\u30eb\u3092\u62bd\u51fa\u3057\u3001\u3042\u306a\u305f\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u4e0a\u3067\u305d\u308c\u3089\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002\u305d\u3053\u3067\u306f\u3001\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u7de8\u96c6\u3001\n\u6307\u793a\u306e\u5165\u529b\u3001\u8ffd\u52a0\u306e\u5b66\u7fd2\u7528\u306e\u60c5\u5831\u63d0\u4f9b\u304c\u3067\u304d\u307e\u3059\u3002", "Type a discussion topic here.": "\u3053\u3053\u306b\u30c7\u30a3\u30b9\u30ab\u30c3\u30b7\u30e7\u30f3\u7528\u306e\u30c8\u30d4\u30c3\u30af\u3092\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "An activity can be defined as a task or set of tasks a learner must\ncomplete. Provide a clear statement of the task and consider any conditions\nthat may help or hinder the learner in the performance of the task.": "\u300c\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30fc\u300d\u306f\u3001\u5b66\u7fd2\u8005\u304c\u53d6\u308a\u7d44\u3080\u30bf\u30b9\u30af\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u307e\u3059\u3002\u30bf\u30b9\u30af\u306e\u8a2d\u5b9a\u306e\u969b\u306f\u3001\n\u660e\u78ba\u306a\u8aac\u660e\u3092\u4e0e\u3048\u3001\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3059\u308b\u4e0a\u3067\u3001\u652f\u63f4\u3059\u308b\u3088\u3046\u306a\u72b6\u6cc1\u3001\u3042\u308b\u3044\u306f\u30bf\u30b9\u30af\u306e\u59a8\u3052\u3068\n\u306a\u308b\u3088\u3046\u306a\u72b6\u6cc1\u306b\u3064\u3044\u3066\u306f\u3001\u3088\u304f\u8003\u616e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Wikibooks Article": "\u30a6\u30a3\u30ad\u30d6\u30c3\u30af\u8a18\u4e8b", "Only select .flv (Flash Video Files) for \nthis iDevice.": "\u3053\u306eiDevice\u3067\u306f.flv\uff08\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc\u30d5\u30a1\u30a4\u30eb\uff09\u306e\u307f\u9078\u629e\u3067\u304d\u307e\u3059\u3002", "Previous": "\u524d\u3078", "Preferences": "\u8a00\u8a9e\u306e\u9078\u629e", "Objectives": "\u76ee\u7684", "Oriya ": "\u30aa\u30ea\u30e4\u30fc\u8a9e", "Next": "\u6b21\u3078", "Extract Package": "\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u958b\u304d\u307e\u3059\u304b\uff1f", "Select Language": "\u8a00\u8a9e\u306e\u9078\u629e", "Somali ": "\u30bd\u30de\u30ea\u8a9e", "Save": "\u4fdd\u5b58", "Ukrainian ": "\u30a6\u30af\u30e9\u30a4\u30ca\u8a9e", "Wikiversity": "Wikiversity", "Medium": "\u4e2d", "Basque ": "\u30d0\u30b9\u30af\u8a9e", "Article": "\u8a18\u4e8b", "None": "None", "Vietnamese ": "\u30d9\u30c8\u30ca\u30e0\u8a9e", "Add Page": "\u30da\u30fc\u30b8\u8ffd\u52a0", "Sanskrit ": "\u30b5\u30f3\u30b9\u30af\u30ea\u30c3\u30c8\u8a9e", "Options": "\u30aa\u30d7\u30b7\u30e7\u30f3", "Delete": "\u524a\u9664", "Rename": "\u540d\u524d\u5909\u66f4", "Choose an MP3 file": "MP3\u30d5\u30a1\u30a4\u30eb\u306e\u9078\u629e", "Slovenian ": "\u30b9\u30ed\u30f4\u30a7\u30cb\u30a2\u8a9e", "Inupiak ": "\u30a4\u30cc\u30d4\u30a2\u30c8\u8a9e", "Wolof ": "\u30a6\u30a9\u30ed\u30d5", "Objectives describe the expected outcomes of the learning and should\ndefine what the learners will be able to do when they have completed the\nlearning tasks.": "\u300c\u76ee\u7684\u300d\u3067\u306f\u3001\u5b66\u7fd2\u8005\u306e\u671f\u5f85\u3055\u308c\u308b\u5b66\u7fd2\u7d50\u679c\u3092\u8a18\u8ff0\u3059\u308b\u3068\u3068\u3082\u306b\u3001\u5b66\u7fd2\u30bf\u30b9\u30af\u306e\n\u7d42\u4e86\u5f8c\u3001\u5b66\u7fd2\u8005\u304c\u4f55\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308b\u304b\u3092\u5b9a\u7fa9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002", "Exported to %s": "\u30a8\u30ad\u30b9\u30dd\u30fc\u30c8\u3059\u308b%s", "This is an example of a user created\niDevice plugin.": "\u3053\u308c\u306f\u30e6\u30fc\u30b6\u30fc\u304c\u4f5c\u6210\u3057\u305fiDevice\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u4f8b\u3067\u3059\u3002", "Enter any feedback you wish to provide \nto the learner. This field may be left blank. if this field is left blank \ndefault feedback will be provided.": "\u5b66\u7fd2\u8005\u306b\u63d0\u4f9b\u3059\u308b\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306f\u7a7a\u767d\u306b\u3057\u3066\u3082\u7d50\u69cb\u3067\u3059\u3002\u7a7a\u767d\u306e\u5834\u5408 \n\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u304c\u63d0\u4f9b\u3055\u308c\u307e\u3059\u3002", "Herero ": "\u30d8\u30ec\u30ed\u8a9e", "Enter the instructions for completion here": "\u3053\u3053\u306b\u89e3\u7b54\u306e\u305f\u3081\u306b\u5fc5\u8981\u306a\u6307\u793a\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044", "Catalan ": "\u30ab\u30bf\u30ed\u30cb\u30a2\u8a9e", "Enter the URL you wish to display\nand select the size of the area to display it in.": "\u8868\u793a\u3057\u305f\u3044URL\u3092\u5165\u529b\u3057\u3001\u305d\u308c\u3092\u8868\u793a\n\u3059\u308b\u305f\u3081\u306e\u9818\u57df\u30b5\u30a4\u30ba\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Auckland University of Technology": "\u30aa\u30fc\u30af\u30e9\u30f3\u30c9\u5de5\u79d1\u5927\u5b66", "Please select a correct answer for each question.": "\u305d\u308c\u305e\u308c\u306e\u8cea\u554f\u306b\u5bfe\u3057\u3066\u6b63\u3057\u3044\u89e3\u7b54\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002", "No Thumbnail Available. Could not load original image.": "\u30b5\u30e0\u30cd\u30a4\u30eb\u304c\u8868\u793a\u3067\u304d\u307e\u305b\u3093\u3002\u30aa\u30ea\u30b8\u30ca\u30eb\u306e\u753b\u50cf\u304c\u633f\u5165\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "Macedonian ": "\u30de\u30bb\u30c9\u30cb\u30a2\u30f3\u8a9e", "Tagalog ": "\u30bf\u30ac\u30ed\u30b0\u8a9e", "Italian ": "\u30a4\u30bf\u30ea\u30a2\u8a9e", "Bosnian ": "\u30dc\u30b9\u30cb\u30a2\u8a9e", "<p>\nThe image with text iDevice can be used in a number of ways to support both\nthe emotional (affective) and learning task (cognitive) dimensions of eXe\ncontent. \n<\/p><p>\n<b>Integrating visuals with verbal summaries<\/b>\n<\/p><p>\nCognitive psychologists indicate that presenting learners with a\nrepresentative image and corresponding verbal summary (that is presented\nsimultaneously) can reduce cognitive load and enhance learning retention.\nThis iDevice can be used to present an image (photograph, diagram or\ngraphic) with a brief verbal summary covering the main points relating to\nthe image. For example, if you were teaching the functions of a four-stroke\ncombustion engine, you could have a visual for each of the four positions of\nthe piston with a brief textual summary of the key aspects of each visual.\n<\/p>": "<p>\n\u300c\u30c6\u30ad\u30b9\u30c8\u4ed8\u753b\u50cf\u300d\u306e iDevice \u306f\u3001eXe\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u304a\u3044\u3066\u3001\u611f\u60c5\uff08\u60c5\u7dd2\uff09\u9762\u3068\n\u5b66\u7fd2(\u8a8d\u77e5)\u9762\u306e\u4e21\u65b9\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3001\u69d8\u3005\u306a\u65b9\u6cd5\u3067\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\n<\/p><p>\n<b>\u8a00\u8449\u306b\u3088\u308b\u8aac\u660e\u3068\u8996\u899a\u306e\u7d71\u5408<\/b>\n<\/p><p>\n\u8a8d\u77e5\u5fc3\u7406\u5b66\u8005\u306f\u3001\u753b\u50cf\u3068\u305d\u308c\u306b\u95a2\u9023\u3059\u308b\u8a00\u8449\u306b\u3088\u308b\u8aac\u660e\u3092\u540c\u6642\u306b\u5b66\u7fd2\u8005\u306b\u63d0\u793a\u3059\u308b\u3053\u3068\u306f\u3001\n\u8a8d\u77e5\u9762\u3067\u306e\u8ca0\u62c5\u3092\u8efd\u6e1b\u3057\u3001\u5b66\u7fd2\u306b\u3088\u308b\u8a18\u61b6\u3092\u9ad8\u3081\u308b\u3068\u6307\u6458\u3057\u3066\u3044\u307e\u3059\u3002\n\u3053\u306eThis iDevice\u306e\u5229\u7528\u306b\u3088\u308a\u3001\u753b\u50cf\uff08\u5199\u771f\u3001\u30b0\u30e9\u30d5\u3001\u56f3\u8868\u3001\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\uff09\u3092\u3001\u753b\u50cf\u306b\u95a2\u9023\u3059\u308b\u7c21\u5358\u306a\u8aac\u660e\n\u3068\u3068\u3082\u306b\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u4f8b\u3048\u3070\u3001\uff14\u6c17\u7b52\u306e\u30a8\u30f3\u30b8\u30f3\u306e\u6a5f\u80fd\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u305f\u3044\u5834\u5408\u3001\n\u30d4\u30b9\u30c8\u30f3\u306e\uff14\u3064\u306e\u4f4d\u7f6e\u306b\u95a2\u3059\u308b\u753b\u50cf\u3068\u3001\u305d\u308c\u305e\u308c\u306e\u753b\u50cf\u306b\u30c6\u30ad\u30b9\u30c8\u306b\u3088\u308b\u8aac\u660e\u3092\u76db\u308a\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n<\/p>", "<p>Cloze exercises are texts or sentences where students must fill in missing words. They are often used for the following purposes:<\/p><ol><li>To check knowledge of core course concepts (this could be a pre-check, formative exercise, or summative check).<\/li><li>To check reading comprehension.<\/li><li>To check vocabulary knowledge.<\/li><li>To check word formation and\/or grammatical competence. <\/li><\/ol>": "<p>\u300c\u7a7a\u6240\u88dc\u5145\u300d\u306f\u3001\u5b66\u7fd2\u8005\u306b\u6587\u4e2d\u306e\u7a7a\u6240\u3092\u88dc\u5145\u3055\u305b\u308b\u5b66\u7fd2\u6d3b\u52d5\u3067\u3059\u3002\u3053\u306e\u6d3b\u52d5\u306f\u901a\u5e38\u6b21\u306e\u69d8\u306a\u76ee\u7684\u3067\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p><ol><li>\u30b3\u30fc\u30b9\u306e\u30b3\u30a2\u6982\u5ff5\u306b\u95a2\u3059\u308b\u77e5\u8b58\u306e\u78ba\u8a8d (\u4e8b\u524d\u30c1\u30a7\u30c3\u30af\u3001\u30d5\u30a9\u30fc\u30de\u30c6\u30a3\u30d6\u30c1\u30a7\u30c3\u30af\u3001\u30b5\u30de\u30c6\u30a3\u30d6\u30c1\u30a7\u30c3\u30af).<\/li><li>\u8aad\u89e3\u529b\u3092\u78ba\u8a8d\u3059\u308b<\/li><li>\u8a9e\u5f59\u306b\u95a2\u3059\u308b\u77e5\u8b58\u306e\u78ba\u8a8d<\/li><li>\u5358\u8a9e\u306e\u6210\u308a\u7acb\u3061\u3084\u6587\u6cd5\u529b\u306e\u78ba\u8a8d<\/li><\/ol>", "Sindhi ": "\u30b7\u30f3\u30c9\u8a9e", "Package extracted to: %s": "\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u6b21\u306e\u5834\u6240\u306b\u89e3\u51cd\u3055\u308c\u307e\u3057\u305f: %s", "No Thumbnail Available. Could not shrink image.": "\u30b5\u30e0\u30cd\u30a4\u30eb\u304c\u8868\u793a\u3067\u304d\u307e\u305b\u3093\u3002\u753b\u50cf\u3092\u7e2e\u5c0f\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "Add a flash video to your iDevice.": "iDevice\u306bFLASH\u30d3\u30c7\u30aa\u3092\u8ffd\u52a0", "Fijian; Fiji ": "\u30d5\u30a3\u30b8\u30fc\u8a9e", "Describe the tasks the learners should complete.": "\u5b66\u7fd2\u8005\u304c\u53d6\u308a\u7d44\u3080\u30bf\u30b9\u30af\u306b\u3064\u3044\u3066\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "http:\/\/en.wikipedia.org\/": "http:\/\/en.wikipedia.org\/", "Unable to download from %s <br\/>Please check the spelling and connection and try again.": "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002 %s\u3000 <br\/>\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306e\u63a5\u7d9a\u3092\u78ba\u8a8d\u3057\u3066\u3082\u3046\u4e00\u5ea6\u8a66\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb", "Swedish ": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u8a9e", "Unit": "\u30e6\u30cb\u30c3\u30c8", "Information": "\u60c5\u5831", "Choose an optional image to be shown to the student on completion of this question": "\u5b66\u751f\u304c\u3053\u306e\u8cea\u554f\u306b\u7b54\u3048\u305f\u5f8c\u3001\u8ffd\u52a0\u3057\u3066\u63d0\u793a\u3057\u305f\u3044\u753b\u50cf\u304c\u3042\u308c\u3070\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044", "SAVE FAILED!\n%s": "\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n%s", "\"%s\" already exists.\nPlease try again with a different filename": "\"%s\"\u306f\u3001\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002\n\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u518d\u5ea6\u304a\u8a66\u3057\u304f\u3060\u3055\u3044", "A hint may be provided to assist the \nlearner in answering the question.": "\u300c\u30d2\u30f3\u30c8\u300d\u306f\u3001\u5b66\u7fd2\u8005\u304c\u8cea\u554f\u306b\u89e3\u7b54\u3059\u308b\u969b\u3001\u89e3\u7b54\u3092\n\u652f\u63f4\u3059\u308b\u76ee\u7684\u3067\u63d0\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", "Submit": "\u63d0\u51fa\u3059\u308b", "Danish ": "\u30c7\u30f3\u30de\u30fc\u30af\u8a9e", "Other": "\u305d\u306e\u4ed6", "Correct": "\u6b63\u89e3", "Czech ": "\u30c1\u30a7\u30b3\u8a9e", "Enter the text you wish to \n associate with the image.": "\u753b\u50cf\u306b\u95a2\u3059\u308b\u5185\u5bb9\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Nepali ": "\u30cd\u30d1\u30fc\u30eb\u8a9e", "Add another Question": "\u5225\u306e\u8cea\u554f\u3092\u8ffd\u52a0", "Icelandic ": "\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9\u8a9e", "Tajik ": "\u30bf\u30b8\u30af\u8a9e", "Cloze Text": "\u7a7a\u6240\u88dc\u5145\u7528\u30c6\u30ad\u30b9\u30c8", "Greek Wikipedia Article": "\u30ae\u30ea\u30b7\u30e3\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Instructions": "\u30ac\u30a4\u30c9", "Get score": "\u30b9\u30b3\u30a2\u3092\u8868\u793a", "Name": "\u540d\u524d", "Package": "\u30d1\u30c3\u30b1\u30fc\u30b8", "Lao; Laotian ": "\u30e9\u30aa\u8a9e", "Swedish Wikipedia Article": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u8a9e\u306e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "newline": "\u65b0\u898f\u306e\u30e9\u30a4\u30f3", "Type the learning objectives for this resource.": "\u3053\u306e\u6559\u6750\u306b\u95a2\u3059\u308b\u5b66\u7fd2\u76ee\u6a19\u3092\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Teachers should keep the following in mind when using this iDevice: <ol><li>Think about the number of different types of activity planned for your resource that will be visually signalled in the content. Avoid using too many different types or classification of activities otherwise learner may become confused. Usually three or four different types are more than adequate for a teaching resource.<\/li><li>From a visual design perspective, avoid having two iDevices immediately following each other without any text in between. If this is required, rather collapse two questions or events into one iDevice. <\/li><li>Think about activities where the perceived benefit of doing the activity outweighs the time and effort it will take to complete the activity. <\/li><\/ol>": "\u6559\u5e2b\u306f\u3053\u306eiDevice\u3092\u5229\u7528\u3059\u308b\u969b\u3001\u6b21\u306e\u70b9\u306b\u7559\u610f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<ol><li>\u6559\u6750\u306b\u5bfe\u3057\u3066\u5229\u7528\u3059\u308b\u5b66\u7fd2\u6d3b\u52d5\u306e\u6570\u3068\u7a2e\u985e\u306b\u3064\u3044\u3066\u3088\u304f\u8003\u3048\u3066\u8a08\u753b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u308c\u3089\u306f\u3059\u3079\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u4e0a\u3067\u8868\u793a\u3055\u308c\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059\u3002\u5b66\u7fd2\u8005\u304c\u6df7\u4e71\u3059\u308b\u306e\u3092\u907f\u3051\u308b\u305f\u3081\u3001\u6d3b\u52d5\u306e\u7a2e\u985e\u3001\u3042\u308b\u3044\u306f\u6d3b\u52d5\u306e\u5206\u985e\u306e\u591a\u7528\u306f\u304a\u3059\u3059\u3081\u3057\u307e\u305b\u3093\u3002\u901a\u5e38\uff11\u3064\u306e\u5b66\u7fd2\u30ea\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\uff13\u3064\u304b\uff14\u3064\u306e\u7570\u306a\u308b\u7a2e\u985e\u3092\u5229\u7528\u3059\u308b\u3068\u5b66\u7fd2\u8005\u306b\u6df7\u4e71\u3092\u304d\u305f\u3059\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002<\/li><li>\u8996\u899a\u7684\u30c7\u30b6\u30a4\u30f3\u306e\u70b9\u304b\u3089\u8a00\u3046\u3068\u3001\uff12\u3064\u306eiDevice\u3092\u5229\u7528\u3059\u308b\u969b\u306f\u3001\u9593\u306b\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u308c\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u304c\u3001\u3082\u3057\u305d\u306e\u5fc5\u8981\u304c\u3042\u308c\u3070\u3001\u3067\u304d\u308b\u3060\u3051\uff11\u3064\u306eiDevice\u306b\u8907\u6570\u306e\u8cea\u554f\u3084\u5b66\u7fd2\u6d3b\u52d5\u3092\u76db\u308a\u8fbc\u3080\u307b\u3046\u304c\u5b66\u7fd2\u8005\u306b\u3068\u3063\u3066\u898b\u3084\u3059\u3044\u3068\u601d\u308f\u308c\u307e\u3059\u3002 <\/li><li>\u5b66\u7fd2\u8005\u304c\u53d6\u308a\u7d44\u3080\u6d3b\u52d5\u304c\u3001\u305d\u308c\u306b\u304b\u304b\u308b\u6642\u9593\u3068\u52aa\u529b\u306b\u898b\u5408\u3046\u3082\u306e\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3088\u304f\u8003\u3048\u3066\u304f\u3060\u3055\u3044\u3002<\/li><\/ol>", "New iDevice": "\u65b0\u3057\u3044 iDe\uff56ice", "Navajo ": "\u30ca\u30f4\u30a1\u30db\u8a9e", "German ": "\u30c9\u30a4\u30c4\u8a9e", "Actions": "\u30a2\u30af\u30b7\u30e7\u30f3", "Slovak ": "\u30b9\u30ed\u30f4\u30a1\u30ad\u30a2\u8a9e", "Read the paragraph below and fill in the missing words.": "\u4e0b\u8a18\u306e\u30d1\u30e9\u30b0\u30e9\u30d5\u3092\u8aad\u307f\u3001\u7a7a\u6240\u3092\u57cb\u3081\u306a\u3055\u3044\u3002", "Reflection is a teaching method often used to \nconnect theory to practice. Reflection tasks often provide learners with an \nopportunity to observe and reflect on their observations before presenting \nthese as a piece of academic work. Journals, diaries, profiles and portfolios \nare useful tools for collecting observation data. Rubrics and guides can be \neffective feedback tools.": "\u300c\u8003\u5bdf\u300d\u306f\u3001\u7406\u8ad6\u3068\u5b9f\u8df5\u3092\u7d50\u3073\u3064\u3051\u308b\u305f\u3081\u306b\u3088\u304f\u7528\u3044\u3089\u308c\u308b\u6307\u5c0e\u65b9\u6cd5\u3067\u3059\u3002\n\u8003\u5bdf\u7528\u306e\u30bf\u30b9\u30af\u3067\u306f\u3001\u5b66\u7fd2\u8005\u306b\u3001\u89b3\u5bdf\u3059\u308b\u6a5f\u4f1a\u3068\u3001\u89b3\u5bdf\u3057\u305f\u5185\u5bb9\u3092\u5b66\u8853\u7684\u306a \n\u4f5c\u54c1\u3068\u3057\u3066\u63d0\u793a\u3059\u308b\u524d\u306b\u3001\u5185\u5bb9\u306b\u3064\u3044\u3066\u8003\u5bdf\u3059\u308b\u6a5f\u4f1a\u3092\u4e0e\u3048\u307e\u3059\u3002\n\u30b8\u30e3\u30fc\u30ca\u30eb\u3001\u65e5\u8a8c\u3001\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u3084\u30dd\u30fc\u30c8\u30d5\u30a9\u30ea\u30aa\u306a\u3069\u306f\u89b3\u5bdf\u3057\u305f\u30c7\u30fc\u30bf\u3092\u96c6\u7d04\u3059\u308b\u306e\u306b \n\u5f79\u7acb\u3061\u307e\u3059\u3002\u8a55\u4fa1\u8868\u3084\u30ac\u30a4\u30c9\u306e\u5229\u7528\u306f\u52b9\u679c\u7684\u306a\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3068\u3057\u3066\u5f79\u7acb\u3061\u307e\u3059\u3002", "Export": "\u30a8\u30ad\u30b9\u30dd\u30fc\u30c8", "Spanish ": "\u30b9\u30da\u30a4\u30f3\u8a9e", "Latin ": "\u30e9\u30c6\u30f3\u8a9e", "French Wikipedia Article": "\u30d5\u30e9\u30f3\u30b9\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Type in the feedback that you want the \nstudent to see when selecting the particular question. If you don't complete\nthis box, eXe will automatically provide default feedback as follows: \n\"Correct answer\" as indicated by the selection for the correct answer; or \n\"Wrong answer\" for the other alternatives.": "\u5b66\u7fd2\u8005\u304c\u7279\u5b9a\u306e\u8cea\u554f\u3092\u9078\u629e\u3057\u305f\u969b\u3001\u5b66\u7fd2\u8005\u306b\u63d0\u4f9b\u3059\u308b\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\u3053\u306e\u30dc\u30c3\u30af\u30b9\u306b\u4f55\u3082\u8a18\u5165\u3057\u306a\u3044\u5834\u5408\u3001eXe\u306f\u6b21\u306e\u69d8\u306a\u30c7\u30d5\u30a9\u30eb\u30c8\uff08\u65e2\u5b9a\uff09\u306e\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092 \n\u81ea\u52d5\u7684\u306b\u63d0\u793a\u3057\u307e\u3059\u3002\n \u6b63\u7b54\u306e\u5834\u5408\u3001\"\u6b63\u89e3\"\u3001\u6b63\u7b54\u4ee5\u5916\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u9078\u3093\u3060\u5834\u5408\u3001\"\u4e0d\u6b63\u89e3\"", "<p>The Wikipedia iDevice allows you to locate \nexisting content from within Wikipedia and download this content into your eXe \nresource. The Wikipedia Article iDevice takes a snapshot copy of the article \ncontent. Changes in Wikipedia will not automatically update individual snapshot \ncopies in eXe, a fresh copy of the article will need to be taken. Likewise, \nchanges made in eXe will not be updated in Wikipedia. <\/p> <p>Wikipedia content \nis covered by the GNU free documentation license.<\/p>": "<p>\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u7528\u306eiDevice\u306e\u5229\u7528\u306b\u3088\u308a\u3001\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306b\u3042\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u691c\u7d22\u3057\u3001\u6559\u6750\u3068\u3057\u3066\u53d6\u308a\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u300c\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b\u300d\u306eiDevice\u3067\u306f\u3001\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306e\u8a18\u4e8b\u3092\u77ac\u6642\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306e\u60c5\u5831\u306f\u5ea6\u3005\u66f4\u65b0\u3055\u308c\u307e\u3059\u304c\u3001eXe\u3067\u53d6\u308a\u8fbc\u3093\u3060\u5185\u5bb9\u306f\u81ea\u52d5\u7684\u306b\u5185\u5bb9\u304c\u66f4\u65b0\u3055\u308c\u308b\u308f\u3051\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u306e\u3067\u3001\u66f4\u65b0\u3055\u308c\u305f\u5185\u5bb9\u3092\u53d6\u308a\u8fbc\u3080\u306b\u306f\u65b0\u898f\u306b\u53d6\u308a\u8fbc\u3080\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u540c\u69d8\u306b\u3001eXe\u3067\u5909\u66f4\u3057\u305f\u5185\u5bb9\u306f\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306b\u53cd\u6620\u3055\u308c\u308b\u308f\u3051\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002<\/p> <p>\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306e\u5185\u5bb9\u306fGNU free documentation license(\u30b0\u30cb\u30e5\u30fc\u30fb\u30d5\u30ea\u30fc\u30fb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30fb\u30e9\u30a4\u30bb\u30f3\u30b9)\u306b\u3088\u3063\u3066\u4fdd\u8b77\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>", "text": "\u30c6\u30ad\u30b9\u30c8", "English Wikipedia Article": "\u82f1\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Button Caption": "\u30dc\u30bf\u30f3\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3", "Attachment %s has no parentNode": "\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb%s \u306feXe\u3067\u306f\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u305b\u3093", "EXTRACT FAILED!\n%s": "\u30d5\u30a1\u30a4\u30eb\u306e\u89e3\u7b54\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n%s", "Add files": "\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0", "Wiki Article": "\u30a6\u30a3\u30ad\u8a18\u4e8b", "Moldavian ": "\u30e2\u30eb\u30c0\u30f4\u30a3\u30a2\u8a9e", "Enter the text you wish to \nassociate with the file.": "\u30d5\u30a1\u30a4\u30eb\u306b\u95a2\u3059\u308b\u5185\u5bb9\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Afar ": "\u30a2\u30d5\u30a1\u30eb\u8a9e", "Self-contained Folder": "\u72ec\u7acb\u30d5\u30a9\u30eb\u30c0", "Polish Wikipedia Article": "\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "ERROR Element.renderView called directly with %s class": "ERROR Element.renderView called directly with %s class", "Geogebra": "Geogebra", "Samoan ": "\u30b5\u30e2\u30a2\u8a9e", "Select a flash video": "\u30d5\u30e9\u30c3\u30b7\u30e5\u30d3\u30c7\u30aa\u306e\u9078\u629e", "Show Feedback": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8868\u793a\u3059\u308b", "Folder name %s already exists. Please choose another one or delete existing one then try again.": "\u30d5\u30a9\u30eb\u30c0\u30fc\u540d\u3000%s \u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002\u4ed6\u306e\u540d\u524d\u306b\u3059\u308b\u304b\u3001\u73fe\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u524a\u9664\u3057\u3001\u518d\u5ea6\u8a66\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Large": "\u5927", "Urdu ": "\u30a6\u30eb\u30c9\u30a5\u30fc\u8a9e", "Move Image Right": "\u753b\u50cf\u3092\u53f3\u306b\u79fb\u52d5", "Frame Height:": "\u30d5\u30ec\u30fc\u30e0\u306e\u9ad8\u3055\uff1a", "Right": "\u53f3", "Provide a caption for the \nimage to be magnified.": "\u62e1\u5927\u3059\u308b\u753b\u50cf\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002", "Uighur ": "\u30a6\u30a4\u30b0\u30eb\u8a9e", "Korean ": "\u97d3\u56fd\u8a9e", "When building an MCQ consider the following: <ul>\n<li> Use phrases that learners are familiar with and have \nencountered in their study <\/li>\n<li> Keep responses concise <\/li>\n<li> There should be some consistency between the stem and the responses <\/li>\n<li> Provide enough options to challenge learners to think about their response\n<\/li>\n<li> Try to make sure that correct responses are not more detailed than the \ndistractors <\/li>\n<li> Distractors should be incorrect but plausible <\/li>\n<\/ul>\n": "\u300c\u591a\u80a2\u9078\u629e\uff08\u5358\u72ec\u56de\u7b54\uff09\u300d\u306e\u69cb\u7bc9\u306e\u969b\u306f\u3001\u6b21\u306e\u70b9\u3092\u8003\u616e\u3057\u3066\u304f\u3060\u3055\u3044\u3002<ul>\n<li> \u5b66\u7fd2\u8005\u306b\u99b4\u67d3\u307f\u306e\u3042\u308b\u3001\u3042\u308b\u3044\u306f\u3001\u3053\u308c\u307e\u3067\u306e\u5b66\u7fd2\u3067\u898b\u805e\u304d\u3057\u305f\u8868\u73fe\u3092\u7528\u3044\u308b<\/li>\n<li> \u9078\u629e\u80a2\u306e\u5185\u5bb9\u306f\u7c21\u6f54\u306a\u3082\u306e\u3068\u3059\u308b <\/li>\n<li> \u8cea\u554f\u3068\u9078\u629e\u80a2\u306b\u306f\u4e00\u8cab\u6027\u3092\u6301\u305f\u305b\u308b <\/li>\n<li> \u5b66\u7fd2\u8005\u304c\u89e3\u7b54\u306e\u969b\u3001\u5341\u5206\u8003\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u3001\u5341\u5206\u306a\u6570\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u63d0\u793a\u3059\u308b<\/li>\n<li> \u6b63\u89e3\u304c\u4ed6\u306e\u9078\u629e\u80a2\u3068\u6bd4\u8f03\u3057\u3066\u3001\u3088\u308a\u8a73\u7d30\u306a\u8a18\u8ff0\u3068\u306a\u3089\u306a\u3044\u3088\u3046\u7559\u610f\u3059\u308b <\/li>\n<li> \u4ed6\u306e\u9078\u629e\u80a2\u306f\u4e0d\u6b63\u89e3\u3067\u3042\u3063\u3066\u3082\u3001\u3082\u3063\u3068\u3082\u3089\u3057\u3044\u5185\u5bb9\u3068\u3059\u308b <\/li>\n<\/ul>\n", "Hiri Motu ": "\u30e2\u30c4\u8a9e", "Question": "\u8cea\u554f", "Prerequisite knowledge refers to the knowledge learners should already\nhave in order to be able to effectively complete the learning. Examples of\npre-knowledge can be: <ul>\n<li> Learners must have level 4 English <\/li>\n<li> Learners must be able to assemble standard power tools <\/li><\/ul>\n": "\u300c\u4e88\u5099\u77e5\u8b58\u300d\u3068\u306f\u3001\u5b66\u7fd2\u8005\u304c\u52b9\u679c\u7684\u306b\u5b66\u7fd2\u3092\u884c\u3046\u305f\u3081\u306b\u5fc5\u8981\u306a\u77e5\u8b58\u3067\u3059\u3002\n\u4f8b\uff1a\u3000<ul>\n<li> \u5b66\u7fd2\u8005\u306f\u30ec\u30d9\u30eb\uff14\u306e\u82f1\u8a9e\u529b\u3092\u5fc5\u8981\u3068\u3059\u308b <\/li>\n<li> \u5b66\u7fd2\u8005\u306f\u57fa\u672c\u7684\u306a\u5de5\u5177\u306e\u7d44\u307f\u7acb\u3066\u304c\u3067\u304d\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044 <\/li><\/ul>\n", "Marshall ": "\u30de\u30fc\u30b7\u30e3\u30eb\u8a9e", "Rhaeto-Romance ": "\u30ec\u30fc\u30c8\u30ed\u30de\u30f3\u30b9\u8a9e", "Dublin Core Metadata": "\u30c0\u30d6\u30ea\u30f3\u30fb\u30b3\u30a2\u30fb\u30e1\u30bf\u30c7\u30fc\u30bf", "Lingala ": "\u30ea\u30f3\u30ac\u30e9\u8a9e", "Portuguese ": "\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e", "Guarani ": "\u30b0\u30a2\u30e9\u30cb\u30fc\u8a9e", "SUBMIT ANSWERS": "\u89e3\u7b54\u3092\u63d0\u51fa", "Spanish Wikipedia Article": "\u30b9\u30da\u30a4\u30f3\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Cannot access directory named ": "\u3068\u3044\u3046\u540d\u524d\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u305b\u3093", "A case study is a device that provides learners \nwith a simulation that has an educational basis. It takes a situation, generally \nbased in reality, and asks learners to demonstrate or describe what action they \nwould take to complete a task or resolve a situation. The case study allows \nlearners apply their own knowledge and experience to completing the tasks \nassigned. when designing a case study consider the following:<ul> \n<li>\tWhat educational points are conveyed in the story<\/li>\n<li>\tWhat preparation will the learners need to do prior to working on the \ncase study<\/li>\n<li>\tWhere the case study fits into the rest of the course<\/li>\n<li>\tHow the learners will interact with the materials and each other e.g.\nif run in a classroom situation can teams be setup to work on different aspects\nof the case and if so how are ideas feed back to the class<\/li><\/ul>": "\u300c\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u300d\u306f\u3001\u6559\u80b2\u7684\u306a\u57fa\u76e4\u3092\u80cc\u666f\u306b\u6301\u3063\u305f\u30b7\u30e5\u30df\u30ec\u30fc\u30b7\u30e7\u30f3\u3092\u5b66\u7fd2\u8005\u306b\u63d0\u4f9b\u3059\u308b\u305f\u3081\u306eiDevice\u3067\u3059\u3002\n\u901a\u5e38\u3001\u4e8b\u5b9f\u306b\u57fa\u3065\u3044\u305f\u72b6\u6cc1\u3092\u5fc5\u8981\u3068\u3057\u3001\u5b66\u7fd2\u8005\u306f\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u3001\u3042\u308b\u3044\u306f\u305d\u306e\u72b6\u6cc1\u3092\u89e3\u6c7a\u3059\u308b\u305f\u3081\u306b\u3001\n\u3069\u306e\u3088\u3046\u306a\u884c\u52d5\u3092\u5f7c\u3089\u304c\u53d6\u308b\u306e\u304b\u306b\u3064\u3044\u3066\u4f8b\u8a3c\u3082\u3057\u304f\u306f\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u6c42\u3081\u3089\u308c\u307e\u3059\u3002\n\u300c\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u300d\u3067\u306f\u3001\u5b66\u7fd2\u8005\u306f\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u30bf\u30b9\u30af\u3092\u3053\u306a\u3059\u305f\u3081\u306b\u3001\u5f7c\u3089\u306e\u77e5\u8b58\u3084\u7d4c\u9a13\u3092\u5fdc\u7528\u3059\u308b\u3053\u3068\u304c\n\u6c42\u3081\u3089\u308c\u307e\u3059\u3002\n\uff62\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u30fc\u300d\u3092\u8a2d\u8a08\u3059\u308b\u969b\u306f\u3001\u6b21\u306e\u70b9\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044<ul> \n<li>\u3069\u306e\u3088\u3046\u6559\u80b2\u7684\u306a\u9762\u304c\u30b9\u30c8\u30fc\u30ea\u30fc\u306b\u3088\u3063\u3066\u5c55\u958b\u3055\u308c\u308b\u306e\u304b<\/li>\n<li>\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u30fc\u306b\u53d6\u308a\u7d44\u3080\u524d\u306b\u3001\u5b66\u7fd2\u8005\u306f\u3069\u306e\u3088\u3046\u306a\u6e96\u5099\u304c\u5fc5\u8981\u304b<\/li>\n<li>\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u3092\u5b66\u7fd2\u30b3\u30fc\u30b9\u306e\u3069\u306e\u90e8\u5206\u3067\u884c\u3046\u306e\u304c\u6700\u3082\u9069\u5f53\u304b<\/li>\n<li>\u5b66\u7fd2\u8005\u304c\u3001\u3069\u306e\u3088\u3046\u306b\u6559\u6750\u3084\u4ed6\u306e\u5b66\u7fd2\u8005\u3068\u5f71\u97ff\u3057\u3042\u3046\u306e\u304b\n\uff08\u4f8b\uff09\u3082\u3057\u6559\u5ba4\u3067\u5b9f\u65bd\u3059\u308b\u5834\u5408\u3001\u7570\u306a\u3063\u305f\u30b1\u30fc\u30b9\u306b\u53d6\u308a\u7d44\u307e\u305b\u308b\u305f\u3081\u30c1\u30fc\u30e0\u304c\u7d50\u6210\u3067\u304d\u308b\u304b\uff1f\n\u3082\u3057\u305d\u308c\u304c\u53ef\u80fd\u306a\u3089\u3001\u3069\u306e\u3088\u3046\u306b\u500b\u3005\u306e\u30c1\u30fc\u30e0\u8003\u3048\u304c\u30af\u30e9\u30b9\u306b\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3055\u308c\u308b\u306e\u304b\uff1f<\/li><\/ul>", "Info": "\u60c5\u5831", "Enter instructions for completion here": "\u3053\u3053\u306b\u89e3\u7b54\u306b\u95a2\u3059\u308b\u6307\u793a\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044", "Read the paragraph below and fill in the missing words": "\u4e0b\u8a18\u306e\u30d1\u30e9\u30b0\u30e9\u30d5\u3092\u8aad\u307f\u3001\u7a7a\u6240\u3092\u57cb\u3081\u306a\u3055\u3044", "Outline": "\u6982\u8981", "Chinese ": "\u4e2d\u56fd\u8a9e", "Upload": "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9", "Breton ": "\u30d6\u30eb\u30c8\u30f3\u8a9e", "Add another Option": "\u5225\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0", "Use this field to enter text. This \niDevice has no emphasis applied although limited formatting can be applied to \ntext through the text editing buttons associated with the field.": "\u30c6\u30ad\u30b9\u30c8\u3092\u633f\u5165\u3059\u308b\u5834\u5408\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\niDevice\u306b\u306f\u5f37\u8abf\u6a5f\u80fd\u304c\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u3042\u308b \n\u30c6\u30ad\u30b9\u30c8\u7de8\u96c6\u30dc\u30bf\u30f3\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3067\u3044\u304f\u3089\u304b\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8 \n\u7de8\u96c6\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", "Byelorussian; Belarusian ": "\u30d9\u30e9\u30eb\u30fc\u30b7\u8a9e", "Enter the text you wish to associate with the downloaded file. You might want to provide instructions on what you require the learner to do once the file is downloaded or how the material should be used.": "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u306b\u95a2\u3057\u3066\u5185\u5bb9\u3092\u8aac\u660e\u3059\u308b\u30c6\u30ad\u30b9\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u5f8c\u5b66\u7fd2\u8005\u304c\u4f55\u3092\u3059\u3079\u304d\u304b\u3001\u3042\u308b\u3044\u306f\u305d\u306e\u6559\u6750\u3092\u3069\u306e\u3088\u3046\u306b\u4f7f\u3046\u304b\u306b\u3064\u3044\u3066\u6307\u793a\u3092\u4e0e\u3048\u3066\u304f\u3060\u3055\u3044\u3002", "File %s does not exist or is not readable.": "\u30d5\u30a1\u30a4\u30eb %s \u306f\u5b58\u5728\u3057\u306a\u3044\u304b\u3001\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002", "Story:": "\u30b9\u30c8\u30fc\u30ea\u30fc\uff1a", "Sundanese ": "\u30b9\u30f3\u30c0\u8a9e", "Cloze Activity": "\u7a7a\u6240\u88dc\u5145", "Zip File": "Zip\u30d5\u30a1\u30a4\u30eb", "Kurdish ": "\u30b1\u30eb\u30c7\u30a3\u30b9\u30bf\u30f3\u8a9e", "Uzbek ": "\u30a6\u30ba\u30d9\u30af\u8a9e", "Enter the label here": "\u30e9\u30d9\u30eb\u3092\u3053\u3053\u306b\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044", "Please enter an idevice name.": "iDevice\u306e\u540d\u524d\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Dutch ": "\u30aa\u30e9\u30f3\u30c0\u8a9e", "Move Image Left": "\u753b\u50cf\u3092\u5de6\u306b\u79fb\u52d5", "Attachment": "\u6dfb\u4ed8", "Select the correct option by clicking \non the radio button.": "\u30e9\u30b8\u30aa\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u6b63\u3057\u3044\n\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Add Field": "\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u8ffd\u52a0", "Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc", "Chechen ": "\u30c1\u30a7\u30c1\u30a7\u30f3\u8a9e", "Ndonga ": "Ndonga ", "Enter the available choices here. \nYou can add options by clicking the \"Add Another Option\" button. Delete options \nby clicking the red \"X\" next to the Option.": "\u3053\u3053\u306b\u9078\u629e\u80a2\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\"\u5225\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\" \u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3053\u3068\u3067 \n\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0\u304c\u3067\u304d\u307e\u3059\u3002\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u6a2a\u306b\u3042\u308b\u8d64\u3044 \"X\" \u3092\u30af\u30ea\u30c3\u30af \n\u3059\u308b\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u524a\u9664\u3067\u304d\u307e\u3059\u3002", "Chinese Wikipedia Article": "\u4e2d\u56fd\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Malagasy ": "\u30de\u30e9\u30ac\u30b7\u8a9e", "Caption:": "\u8868\u984c\uff1a", "<p>The Reading Activity will primarily \nbe used to check a learner's comprehension of a given text. This can be done \nby asking the learner to reflect on the reading and respond to questions about \nthe reading, or by having them complete some other possibly more physical task \nbased on the reading.<\/p>": "<p>\u300c\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u6d3b\u52d5\u300d\u306f\u3001\u4e3b\u306b\u4e0e\u3048\u3089\u308c\u305f\u30c6\u30ad\u30b9\u30c8\u306b\u5bfe\u3059\u308b\u5b66\u7fd2\u8005\u306e\u7406\u89e3\u5ea6\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u6d3b\u52d5\u3067\u3059\u3002\u3053\u306e\u300c\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u6d3b\u52d5\u300d\u3067\u306f\u3001\u5b66\u7fd2\u8005\u306b\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u5185\u5bb9\u306b\u3064\u3044\u3066\u8003\u3048\u3055\u305b\u305f\u308a\u3001\u8cea\u554f\u306b\u7b54\u3048\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u4ed6\u306e\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u306b\u57fa\u3065\u3044\u305f\u5b66\u7fd2\u30bf\u30b9\u30af\u306b\u53d6\u308a\u7d44\u307e\u305b\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059\u3002<\/p>", "Properties": "\u5c5e\u6027", "Java Applet": "Java\u30a2\u30d7\u30ec\u30c3\u30c8", "Image Magnifier": "\u753b\u50cf\u62e1\u5927", "Maximum zoom": "\u6700\u5927\u30ba\u30fc\u30e0", "Avestan ": "\u30a2\u30f4\u30a7\u30b9\u30bf\u30fc\u8a9e", "Size of magnifying glass: ": "\u62e1\u5927\u93e1\u306e\u30b5\u30a4\u30ba", "German Wikipedia Article": "\u30c9\u30a4\u30c4\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Sorry, wrong file format": "\u30d5\u30a1\u30a4\u30eb\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u9055\u3063\u3066\u3044\u307e\u3059", "eXe : elearning XHTML editor": "eXe : \uff45\u30e9\u30fc\u30cb\u30f3\u30b0XHTML\u30a8\u30c7\u30a3\u30bf\u30fc", "Hungarian ": "\u30cf\u30f3\u30ac\u30ea\u30fc\u8a9e", "Bashkir ": "\u30d0\u30b7\u30ad\u30fc\u30eb\u8a9e", "Bulgarian ": "\u30d6\u30eb\u30ac\u30ea\u30a2\u8a9e", "This is an optional field.": "\u3053\u3053\u306f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u9818\u57df\u3067\u3059\u3002", "Done": "\u5b8c\u4e86", "Reading Activity": "\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u6d3b\u52d5", "No emphasis": "\u5f37\u8abf\u3057\u306a\u3044", "Own site": "\u72ec\u81ea\u306e\u30b5\u30a4\u30c8", "Filename %s is a file, cannot replace it": "Filename %s \u306f\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002\u53d6\u308a\u66ff\u3048\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002", "Insert Package": "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u8ffd\u52a0", "Hausa (?) ": "\u30cf\u30a6\u30b5\u8a9e", "Norwegian Nynorsk ": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e\uff08Nynorsk\uff09", "Burmese ": "\u30d3\u30eb\u30de\u8a9e", "<ol> <li>Click &lt;Select an MP3&gt; and browse to the MP3 file you wish to insert<\/li> <li>Click on the dropdown menu to select the position that you want the file displayed on screen.<\/li> <li>Enter an optional caption for your file.<\/li> <li>Associate any relevant text to the MP3 file.<\/li> <li>Choose the type of style you would like the iDevice to display e.g. 'Some emphasis' applies a border and icon to the iDevice content displayed.<\/li><\/ol>": "<ol> <li>&lt;MP3\u306e\u9078\u629e&gt;\u3092\u30af\u30ea\u30c3\u30af\u3057\u3001\u633f\u5165\u3057\u305f\u3044MP3\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002<\/li> <li>\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u30e1\u30cb\u30e5\u30fc\u3092\u30af\u30ea\u30c3\u30af\u3057\u3001\u30b9\u30af\u30ea\u30fc\u30f3\u4e0a\u3067\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u305f\u3044\u5834\u6240\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002<\/li> <li>\u30d5\u30a1\u30a4\u30eb\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002<\/li> <li>MP3\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u306b\u95a2\u9023\u3059\u308b\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/li> <li>iDevice\u3092\u8868\u793a\u3059\u308b\u30b9\u30bf\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\uff08\u4f8b\uff09\u300c\u5f37\u8abf\u3059\u308b\u300d\u306f\u3001\u8868\u793a\u3055\u308c\u308biDevice\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5883\u754c\u7dda\u3084\u30a2\u30a4\u30b3\u30f3\u306b\u53cd\u6620\u3055\u308c\u307e\u3059\u3002<\/li><\/ol>", "Gujarati ": "\u30b0\u30b8\u30e3\u30e9\u30fc\u30c8\u8a9e", "Provide a caption for the flash movie \nyou have just inserted.": "\u633f\u5165\u3057\u305f\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002", "Scots; Gaelic ": "\u30b9\u30b3\u30c3\u30c8\u30e9\u30f3\u30c9\u8a9e\u3001\u30b2\u30fc\u30eb\u8a9e", "Manx ": "\u30de\u30f3\u5cf6\u8a9e", "Shona ": "\u30b7\u30e7\u30ca\u8a9e", "Kirghiz ": "\u30ae\u30eb\u30ae\u30b9\u8a9e", "Select the appropriate language version \nof Wikipedia to search and enter search term.": "\u60c5\u5831\u3092\u691c\u7d22\u3059\u308b\u305f\u3081\u3001\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u306e\u8a00\u8a9e\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Feedback button will not appear if no \ndata is entered into this field.": "\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u30c7\u30fc\u30bf\u304c\u8a18\u5165\u3055\u308c\u306a\u3044\u5834\u5408\u3001\n\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u30dc\u30bf\u30f3\u306f\u8868\u793a\u3055\u308c\u307e\u305b\u3093\u3002", "Enter \nthe text you wish to associate with the file.": "\u30d5\u30a1\u30a4\u30eb\u306b\u95a2\u9023\u3059\u308b\u30c6\u30ad\u30b9\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044", "Irish ": "\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u8a9e", "Describe the prerequisite knowledge learners should have to effectively\ncomplete this learning.": "\u5b66\u7fd2\u8005\u304c\u3053\u306e\u5b66\u7fd2\u3092\u52b9\u679c\u7684\u306b\u884c\u3046\u969b\u3001\u3042\u3089\u304b\u3058\u3081\u5fc5\u8981\u306a\u77e5\u8b58\u306b\u3064\u3044\u3066\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Activity": "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30fc", "True\/false questions present a statement where \nthe learner must decide if the statement is true. This type of question works \nwell for factual information and information that lends itself to either\/or \nresponses.": "\u300c\u6b63\u8aa4\u554f\u984c\u300d\u306f\u3001\u8a18\u8ff0\u3055\u308c\u305f\u5185\u5bb9\u304c\u6b63\u3057\u3044\u304b\u9055\u3063\u3066\u3044\u308b\u304b\u5b66\u7fd2\u8005\u306b\u5224\u65ad\u3055\u305b\u308b\u305f\u3081\u306e \n\u8cea\u554f\u5f62\u5f0f\u3067\u3059\u3002\u3053\u306e\u7a2e\u985e\u306e\u8cea\u554f\u5f62\u5f0f\u306f\u3001\u4e8b\u5b9f\u306b\u57fa\u3065\u3044\u305f\u60c5\u5831\u3084\u3001\u6b63\u3057\u3044\u304b\u9593\u9055\u3063\u3066\n\u3044\u308b\u304b\u306e\u5224\u65ad\u304c\u3057\u3084\u3059\u3044\u60c5\u5831\u3092\u5229\u7528\u3059\u308b\u969b\u306b\u52b9\u679c\u304c\u3042\u308a\u307e\u3059\u3002", "Change Image": "\u753b\u50cf\u306e\u5909\u66f4", "Swati; Siswati ": "\u30b9\u30ef\u30fc\u30c8\u8a9e", "Use feedback to provide a summary of the points covered in the reading, \nor as a starting point for further analysis of the reading by posing a question \nor providing a statement to begin a debate.": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u306f\u3001\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u306b\u95a2\u3059\u308b\u8981\u70b9\u3092\u63d0\u793a\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3067\u304d\u307e\u3059\u3002 \n\u307e\u305f\u3001\u8cea\u554f\u3092\u3057\u305f\u308a\u3001\u8b70\u8ad6\u3092\u59cb\u3081\u308b\u305f\u3081\u306e\u72b6\u6cc1\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3067\u3001\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0 \n\u5185\u5bb9\u306e\u8a73\u7d30\u306a\u5206\u6790\u3092\u4fc3\u3059\u305f\u3081\u306b\u3082\u5229\u7528\u3067\u304d\u307e\u3059\u3002", "Pedagogical Help": "\u6307\u5c0e\u4e0a\u306e\u30d8\u30eb\u30d7", "Javanese ": "\u30b8\u30e3\u30ef\u8a9e", "Quechua ": "\u30b1\u30c1\u30e5\u30a2\u8a9e", "Turkmen ": "\u30c8\u30eb\u30af\u30e1\u30f3\u8a9e", "Norwegian ": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e", "Volap\u00fck; Volapuk ": "\u30f4\u30a9\u30e9\u30d4\u30e5\u30fc\u30af\u8a9e", "Walloon ": "\u30c4\u30a9\u30f3\u30ac\u8a9e", "Kazakh ": "\u30ab\u30b6\u30d5\u8a9e", "Click for completion instructions": "\u30ac\u30a4\u30c9\u3092\u8868\u793a\u3059\u308b\u305f\u3081\u3001\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044", "Click \non the picture below or the \"Add Image\" button to select an image file to be \nmagnified.": "\u4e0b\u306e\u753b\u50cf\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u304b\n\"\u753b\u50cf\u306e\u8ffd\u52a0\" \u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u3001\u62e1\u5927\u3057\u305f\u3044\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Reflective question:": "\u8003\u5bdf\u7528\u8cea\u554f\uff1a", "Emphasis": "\u5f37\u8abf", "Dzongkha; Bhutani ": "\u30be\u30f3\u30ab\u8a9e", "Letzeburgesch ": "\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30b0\u8a9e", "Aymara ": "\u30a2\u30a4\u30de\u30e9\u8a9e", "<dl> <dt>If your goal is to test understanding of core concepts or reading comprehension <\/dt> <dd> <p> Write a summary of the concept or reading long enough to adequately test the target's knowledge, but short enough not to induce fatigue. Less than one typed page is probably adequate, but probably considerably less for young students or beginners. <\/p> <p>Select words in the text thatare key to understanding the concepts. Thesewill probably be verbs, nouns, and key adverbs.Choose alternatives with one clear answer. <\/p> <\/dd> <dt>If your goal is to test vocabulary knowledge <\/dt> <dd><p>Write a text using the target vocabulary. This text should be coherent and cohesive, and be of an appropriate length. Highlight the target words in the text. Choose alternatives with one clear answer.<\/p> <\/dd> <dt>If your goal is to test word formation\/grammar: <\/dt> <dd> <p>Write a text using the target forms. This text should be coherent and cohesive, and be of an appropriate length. Remember that the goal is not vocabulary knowledge, so the core meanings of the stem words should be well known to the students. <\/p> <p>Highlight the target words in the text. Provide alternatives with the same word stem, but different affixes. It is a good idea to get a colleague to test the test\/exercise to make sure there are no surprises! <\/p> <\/dd><\/dl>": "<dl> <dt>\u4e3b\u8981\u306a\u30b3\u30f3\u30bb\u30d7\u30c8\u3042\u308b\u3044\u306f\u8aad\u89e3\u529b\u306e\u30c6\u30b9\u30c8\u304c\u76ee\u7684\u306e\u5834\u5408<\/dt> <dd> <p> \u30b3\u30f3\u30bb\u30d7\u30c8\u306e\u8981\u7d04\u3001\u3082\u3057\u304f\u306f\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u5185\u5bb9\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u9577\u3055\u306f\u3001\u76ee\u6a19\u3068\u3059\u3079\u304d\u77e5\u8b58\u3092\u5f97\u308b\u306e\u306b\u5341\u5206\u306a\u91cf\u304c\u3042\u308a\u3001\u304b\u3064\u8aad\u307f\u75b2\u308c\u306a\u3044\u7a0b\u5ea6\u306b\u7559\u3081\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\uff11\u30da\u30fc\u30b8\u5206\u306e\u30bf\u30a4\u30d7\u3057\u305f\u91cf\u3067\u3042\u308c\u3070\u5341\u5206\u3068\u3044\u3048\u307e\u3059\u304c\u3001\u82e5\u5e74\u5c64\u306e\u5b66\u7fd2\u8005\u3084\u521d\u5fc3\u8005\u306b\u3068\u3063\u3066\u306f\u3082\u3046\u5c11\u3057\u77ed\u3044\u307b\u3046\u304c\u9069\u5f53\u3060\u3068\u601d\u308f\u308c\u307e\u3059\u3002<\/p> <p>\u30b3\u30f3\u30bb\u30d7\u30c8\u3092\u7406\u89e3\u3059\u308b\u305f\u3081\u306b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u52d5\u8a5e\u3001\u540d\u8a5e\u3001\u526f\u8a5e\u306a\u3069\u304c\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u306a\u308b\u3067\u3057\u3087\u3046\u3002\u3072\u3068\u3064\u306e\u660e\u78ba\u306b\u89e3\u7b54\u3068\u306a\u308b\u5358\u8a9e\u3068\u3068\u3082\u306b\u4ed6\u306e\u9078\u629e\u80a2\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002 <\/p><\/dd><dt>\u8a9e\u5f59\u529b\u306e\u30c6\u30b9\u30c8\u304c\u76ee\u7684\u306e\u5834\u5408<\/dt> <dd><p>\u30bf\u30fc\u30b2\u30c3\u30c8\u3068\u3059\u308b\u8a9e\u5f59\u3092\u542b\u3080\u30c6\u30ad\u30b9\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30c6\u30ad\u30b9\u30c8\u306f\u9996\u5c3e\u4e00\u8cab\u3057\u3001\u9069\u5ea6\u306e\u9577\u3055\u3092\u3082\u3063\u305f\u3082\u306e\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002\u30c6\u30ad\u30b9\u30c8\u4e2d\u306e\u30bf\u30fc\u30b2\u30c3\u30c8\u3068\u306a\u308b\u5358\u8a9e\u306f\u5f37\u8abf\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u660e\u78ba\u306b\u89e3\u7b54\u3068\u306a\u308b\u5358\u8a9e\u3068\u3068\u3082\u306b\u4ed6\u306e\u9078\u629e\u80a2\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002<\/p> <\/dd> <dt>\u5358\u8a9e\u306e\u5f62\u6210\u3084\u6587\u6cd5\u529b\u306e\u30c6\u30b9\u30c8\u3092\u76ee\u7684\u3068\u3059\u308b\u5834\u5408 <\/dt> <dd> <p>\u30bf\u30fc\u30b2\u30c3\u30c8\u3068\u306a\u308b\u8a9e\u306e\u5f62\u6210\u3092\u542b\u3080\u30c6\u30ad\u30b9\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30c6\u30ad\u30b9\u30c8\u306f\u5185\u5bb9\u304c\u9996\u5c3e\u4e00\u8cab\u3057\u3001\u9069\u5ea6\u306e\u9577\u3055\u304c\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002\u76ee\u7684\u306f\u8a9e\u5f59\u529b\u3092\u8a66\u3059\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u306e\u3067\u3001\u5b66\u7fd2\u8005\u304c\u5358\u8a9e\u306e\u8a9e\u5e79\u3068\u306a\u308b\u8a9e\u306e\u610f\u5473\u3092\u77e5\u3063\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p> <p>\u30c6\u30ad\u30b9\u30c8\u4e2d\u306e\u30bf\u30fc\u30b2\u30c3\u30c8\u3068\u306a\u308b\u5358\u8a9e\u306f\u5f37\u8abf\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u540c\u3058\u8a9e\u5e79\u3092\u3082\u3061\u3001\u63a5\u8f9e\u306e\u7570\u306a\u308b\u5358\u8a9e\u3092\u9078\u629e\u80a2\u3068\u3057\u3066\u6e96\u5099\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5185\u5bb9\u306b\u9593\u9055\u3044\u304c\u306a\u3044\u3088\u3046\u306b\u3001\u4e8b\u524d\u306b\u540c\u50da\u306b\u30c6\u30b9\u30c8\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3082\u3089\u3046\u3068\u3088\u3044\u3067\u3057\u3087\u3046 <\/p> <\/dd><\/dl>", "The flash with text idevice allows you to \nassociate additional textual information to a flash file. This may be useful \nwhere you wish to provide educational instruction regarding the flash file \nthe learners will view.": "\u30c6\u30ad\u30b9\u30c8\u4ed8\u306e\u30d5\u30e9\u30c3\u30b7\u30e5\u306e\u5229\u7528\u306b\u3088\u308a\u3001\u30d5\u30e9\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb\u306b\u8ffd\u52a0\u3067\u30c6\u30ad\u30b9\u30c8\u60c5\u5831\u3092\u8a18\u5165\u3067\u304d\u307e\u3059 \n\u5b66\u7fd2\u8005\u304c\u898b\u308b\u30d5\u30e9\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb\u306b\u95a2\u3057\u3066\u5b66\u7fd2\u306b\u5f79\u7acb\u3064\u6307\u793a\u3092\u4e0e\u3048\u305f\u3044\u5834\u5408\u306b\u4fbf\u5229\u306a\u6a5f\u80fd\u3067\u3059\u3002", "Telugu ": "\u30c6\u30eb\u30b0\u8a9e", "What to read": "\u8aad\u307f\u7269", "Provide a caption for the flash you \n have just inserted.": "\u633f\u5165\u3057\u305f\u30d5\u30e9\u30c3\u30b7\u30e5\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002", "Zhuang ": "Zhuang ", "Corsican ": "\u30b3\u30eb\u30b7\u30ab\u65b9\u8a00", "The mathematical language LATEX has been \n used to enable your to insert mathematical formula \n into your content. It does this by translating \n LATEX into an image which is then displayed\n within your eXe content. We would recommend that \n you use the Free Text iDevice to provide \n explanatory notes and learning instruction around \n this graphic.": "\u6570\u5b66\u7528\u306e\u8a00\u8a9eLATEX\u306f\u3001\u3042\u306a\u305f\u306e\u4f5c\u6210\u3059\u308b\u6559\u6750\u3067\u6570\u5f0f\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b \n\u4f7f\u308f\u308c\u307e\u3059\u3002LATEX\u3092\u753b\u50cf\u30a4\u30e1\u30fc\u30b8\u306b\u5909\u63db\u3057,eXe\u5185\u3067\u6559\u793a\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002\n\u305d\u306e\u969b\u306f\u3001\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8iDevice\u3092\u5229\u7528\u3057\u3066\u8aac\u660e\u6587\u3092\u8a18\u5165\u3057\u3001\u753b\u50cf\u306e\u5468\u8fba\u306b \n\u5b66\u7fd2\u7528\u306e\u6307\u793a\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002", "Enter an answer option. Provide \na range of plausible distractors (usually 3-4) as well as the correct answer. \nClick on the &lt;Add another option&gt; button to add another answer.": "\u89e3\u7b54\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u6b63\u7b54\u3068\u3068\u3082\u306b\u3001\u3082\u3063\u3068\u3082\u3089\u3057\u3044\u9078\u629e\u80a2\u3092\uff08\uff13~\uff14\u3064\uff09 \n\u6e96\u5099\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305f\u306e\u89e3\u7b54\u3092\u8ffd\u52a0\u3059\u308b\u5834\u5408\u306f &lt;\u5225\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0&gt;\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Georgian ": "\u30b0\u30ea\u30b8\u30a2\u8a9e", "Example Example": "\u4f8b", "English ": "\u82f1\u8a9e", "Example": "\u4f8b", "French ": "\u30d5\u30e9\u30f3\u30b9\u8a9e", "This is a free text field general learning content can be entered.": "\u3053\u3053\u306f\u5b66\u7fd2\u6559\u6750\u3092\u5165\u529b\u3059\u308b\u305f\u3081\u306e\u30c6\u30ad\u30b9\u30c8\u7528\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u3059\u3002", "OK": "OK", "Croatian ": "\u30af\u30ed\u30a2\u30c1\u30a2\u8a9e", "Khmer; Cambodian ": "\u30af\u30e1\u30fc\u30eb\u8a9e", "Topic": "\u30c8\u30d4\u30c3\u30af", "Assamese ": "\u30a2\u30c3\u30b5\u30e0\u8a9e", "Interlingue ": "\u30a4\u30f3\u30bf\u30fc\u30ea\u30f3\u30ac", "Enter a question for learners \nto reflect upon.": "\u8003\u5bdf\u306b\u5f79\u7acb\u3064\u3088\u3046\u306a\u8cea\u554f\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Select Flash Object": "\u30d5\u30e9\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u9078\u629e", "Enter the question stem. \nThe quest should be clear and unambiguous. Avoid negative premises \nas these can tend to be ambiguous.": "\u57fa\u672c\u3068\u306a\u308b\u8cea\u554f\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u8cea\u554f\u306f\u660e\u78ba\u306b\u3001\u307e\u305f\u3042\u3044\u307e\u3044\u306b\u306a\u3089\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u6d88\u6975\u7684\u306a\u8868\u73fe\u306f\u907f\u3051\u3001\n\u3042\u3044\u307e\u3044\u306a\u8868\u73fe\u306b\u306a\u3089\u306a\u3044\u3088\u3046\u306b\u3001\u660e\u78ba\u306b\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Section": "\u30bb\u30af\u30b7\u30e7\u30f3", "\"Find the .txt file (in the applet file) \nand open it. Copy the contents of this file <ctrl A, ctrl C> into the applet \ncode field.": "\"\u30a2\u30d7\u30ec\u30c3\u30c8\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u63a2\u3057\u3001\u958b\u3044\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u306e\u30d5\u30a1\u30a4\u30eb\u304b\u3089\n\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30a2\u30d7\u30ec\u30c3\u30c8\u30b3\u30fc\u30c9\u9818\u57df\u306b\u30b3\u30d4\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002<ctrl A, ctrl C>", "Cloze": "\u7a7a\u6240\u88dc\u5145", "Preknowledge": "\u4e88\u5099\u77e5\u8b58", "MP3": "MP3", "Select pass rate: ": "\u30d1\u30b9\u30ec\u30fc\u30c8\u306e\u9078\u629e\uff1a", "Option": "\u30aa\u30d7\u30b7\u30e7\u30f3", "Gallegan; Galician ": "\u30ac\u30ea\u30b7\u30a2\u8a9e", "Text Box": "\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9", "Sango; Sangro ": "\u30b5\u30f3\u30b4\u8a9e", "Maths": "\u7b97\u6570\u30fb\u6570\u5b66", "Rundi; Kirundi ": "\u30eb\u30f3\u30c7\u30a3\u8a9e", "Description:": "\u8a18\u8ff0\uff1a", "Question:": "\u8cea\u554f\uff1a", "EXPORT FAILED!\n%s": "\u30a8\u30ad\u30b9\u30dd\u30fc\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n%s", "The RSS iDevice is used \nto provide new content to an individual users machine. Using this\niDevice you can provide links from a feed you select for learners to view.": "\u300cRSS\u300d\u306f\u3001\u5b66\u7fd2\u8005\u500b\u3005\u306e\u30e6\u30fc\u30b6\u30fc\u30de\u30b7\u30f3\u306b\u65b0\u3057\u3044\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3055\u308c\u307e\u3059\u3002\u3053\u306eiDevice\u306b\u3088\u308a\u3001\u3042\u306a\u305f\u304c\u5b66\u7fd2\u8005\u7528\u306b\u9078\u3093\u3060feed\u304b\u3089\u30ea\u30f3\u30af\u3092\u63d0\u4f9b\u3067\u304d\u307e\u3059\u3002", "Tamil ": "\u30bf\u30df\u30eb\u8a9e", "Maori ": "\u30de\u30aa\u30ea\u8a9e", "Describe how learners will assess how \nthey have done in the exercise. (Rubrics are useful devices for providing \nreflective feedback.)": "\u5b66\u7fd2\u8005\u304c\u81ea\u5206\u304c\u884c\u3063\u305f\u5b66\u7fd2\u6d3b\u52d5\u306e\u8a55\u4fa1\u65b9\u6cd5\u306b\u3064\u3044\u3066\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002\uff08Rubrics\u300c\u8a55\u4fa1\u8868\u300d\u306f\u3001\u8003\u5bdf\u76ee\u7684\u306e\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u4e0e\u3048\u308b\u969b\u6709\u52b9\u306a\u65b9\u6cd5\u3067\u3059\u3002\uff09", "Describe the activity tasks relevant \nto the case story provided. These could be in the form of questions or \ninstructions for activity which may lead the learner to resolving a dilemma \npresented. ": "\u63d0\u4f9b\u3059\u308b\u30b1\u30fc\u30b9\u30b9\u30bf\u30c7\u30a3\u30fc\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u306b\u95a2\u3059\u308b\u5b66\u7fd2\u30bf\u30b9\u30af\u3092\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u4e0e\u3048\u3089\u308c\u305f\u30b8\u30ec\u30f3\u30de\u306e\u89e3\u6c7a\u3092\u624b\u52a9\u3051\u3059\u308b\u3088\u3046\u306a\u8cea\u554f\u3084\u6307\u793a\u3092\u4e0e\u3048\u308b\u3068\u5b66\u7fd2\u8005\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002", "Enter any feedback you wish to provide the learner with-in the feedback field. This field can be left blank.": "\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u306e\u9818\u57df\u306b\u3042\u306a\u305f\u304c\u5b66\u7fd2\u8005\u306b\u63d0\u4f9b\u3057\u305f\u3044\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5fc5\u8981\u306e\u306a\u3044\u5834\u5408\u306f\u7a7a\u767d\u306e\u307e\u307e\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Image": "\u753b\u50cf", "iDevice %s has no package": "iDevice %s \u306f\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u3082\u3063\u3066\u3044\u307e\u305b\u3093", "Type in the feedback that you want the \nstudent to see when selecting the particular option. If you don't complete this \nbox, eXe will automatically provide default feedback as follows: \"Correct \nanswer\" as indicated by the selection for the correct answer; or \"Wrong answer\"\nfor the other options.": "\u5b66\u7fd2\u8005\u304c\u7279\u5b9a\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u9078\u629e\u3057\u305f\u969b\u306b\u63d0\u4f9b\u3059\u308b\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\u3053\u306e\u30dc\u30c3\u30af\u30b9\u306b\u4f55\u3082\u8a18\u5165\u3057\u306a\u3044\u5834\u5408\u3001eXe\u306f\u6b21\u306e\u69d8\u306a\u30c7\u30d5\u30a9\u30eb\u30c8\uff08\u65e2\u5b9a\uff09\u306e\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092 \n\u81ea\u52d5\u7684\u306b\u63d0\u793a\u3057\u307e\u3059\u3002\n \u6b63\u7b54\u306e\u5834\u5408\u3001\"\u6b63\u89e3\"\u3001\u6b63\u7b54\u4ee5\u5916\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u9078\u3093\u3060\u5834\u5408\u3001\"\u4e0d\u6b63\u89e3\"", "Applet Code:": "\u30a2\u30d7\u30ec\u30c3\u30c8\u30b3\u30fc\u30c9\uff1a", "Azerbaijani ": "\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3\u8a9e", "Tahitian ": "\u30bf\u30d2\u30c1\u8a9e", "Marathi ": "\u30de\u30e9\u30fc\u30c6\u30a3\u30fc\u8a9e", "Bihari ": "\u30d3\u30cf\u30fc\u30eb\u8a9e", "?????": "?????", "Icons": "\u30a2\u30a4\u30b3\u30f3", "<p>Select symbols from the text editor below or enter LATEX manually to create mathematical formula. To preview your LATEX as it will display use the &lt;Preview&gt; button below.<\/p>": "<p>\u6570\u5f0f\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u4e0b\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u30fc\u304b\u3089\u8a18\u53f7\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002\u305d\u308c\u305e\u308c\u306e\u8a18\u53f7\u306f\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u4e0a\u3067\u3001\u4e0b\u306e&lt;\u30d7\u30ec\u30d3\u30e5\u30fc&gt;\u30dc\u30bf\u30f3\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3067\u3001\u6570\u5b66\u7528\u8a00\u8a9eLATEX\u3067\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/P>", "Komi ": "\u30b3\u30df\u8a9e", "Web Site": "\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8", "Hindi ": "\u30d2\u30f3\u30c7\u30a3\u30fc\u8a9e", "Click <strong>Select a file<\/strong>, browse to the file you want to attach and select it.": "<strong>\u30d5\u30a1\u30a4\u30eb\u306e\u9078\u629e<\/strong>\u3092\u30af\u30ea\u30c3\u30af\u3057, \u6dfb\u4ed8\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u63a2\u3057\u3001\u305d\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "SCORM Quiz": "SCORM \u30af\u30a4\u30ba", "Click on Preview button to convert \n the latex into an image.": "LATEX\u3092\u8a18\u53f7\u30a4\u30e1\u30fc\u30b8\u306b\u5909\u63db\u3059\u308b\u305f\u3081\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u300c\u30d7\u30ec\u30d3\u30e5\u30fc\u30dc\u30bf\u30f3\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Turkish ": "\u30c8\u30eb\u30b3\u8a9e", "Finnish ": "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9\u8a9e", "You can use the toolbar or enter latex manually into the textarea. ": "\u30c4\u30fc\u30eb\u30d0\u30fc\u3092\u5229\u7528\u306b\u3088\u3063\u3066\u3001\u3082\u3057\u304f\u306f\u624b\u52d5\u3067\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u306bLATEX\u3092\u633f\u5165\u3067\u304d\u307e\u3059\u3002", "Authoring": "\u7de8\u96c6", "Describe the tasks related to the reading learners should undertake. \nThis helps demonstrate relevance for learners.": "\u5b66\u7fd2\u8005\u304c\u53d6\u308a\u7d44\u3080\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u306b\u95a2\u3059\u308b\u30bf\u30b9\u30af\u3092\u8a18\u8ff0\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5b66\u7fd2\u8005\u306b\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u306b\u95a2\u9023\u3057\u305f\u5185\u5bb9\u3092\u8aac\u660e\u3059\u308b\u306e\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002", "Enter the text you wish to \n associate with the image.": "\u753b\u50cf\u306b\u95a2\u3059\u308b\u30c6\u30ad\u30b9\u30c8\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Twi ": "\u30c1\u30e5\u30a4\u8a9e", "file %s has no parentNode": "\u30d5\u30a1\u30a4\u30eb %s \u306fparentNode\u3092\u6301\u3063\u3066\u3044\u307e\u305b\u3093", "Indonesian (formerly in) ": "\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u8a9e", "Extra large": "\u7279\u5927", "Typically, a Rights element will contain a rights management statement for the resource, or reference a service providing such information. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions can be made about the status of these and other rights with respect to the resource.": "\u4e00\u822c\u7684\u306b\u300c\u6a29\u5229\u300d\u90e8\u5206\u306f\u3001\u30ea\u30bd\u30fc\u30b9\u306b\u95a2\u3059\u308b\u6a29\u5229\u306e\u7ba1\u7406\u3001\u3042\u308b\u3044\u306f\u305d\u306e\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b\u30b5\u30fc\u30d3\u30b9\u306e\u6587\u732e\u3092\u542b\u307f\u307e\u3059\u3002\u6a29\u5229\u306b\u95a2\u3059\u308b\u60c5\u5831\u306f\u901a\u5e38\u3001\u77e5\u7684\u6240\u6709\u6a29(IPR)\u3001\u8457\u4f5c\u6a29\uff08Copyright\uff09\u3001\u305d\u3057\u3066\u591a\u69d8\u306a\u6240\u6709\u306b\u95a2\u3059\u308b\u6a29\u5229\u3092\u542b\u307f\u307e\u3059\u3002\uff62\u6a29\u5229\u300d\u90e8\u5206\u306b\u8a18\u5165\u304c\u306a\u3044\u5834\u5408\u3001\u30ea\u30bd\u30fc\u30b9\u306b\u95a2\u3059\u308b\u3053\u308c\u3089\u306e\u6a29\u5229\u306e\u4f4d\u7f6e\u3065\u3051\u3084\u4ed6\u306e\u6a29\u5229\u3064\u3044\u3066\u5224\u65ad\u3067\u304d\u306a\u3044\u3053\u3068\u306b\u306a\u308a\u307e\u3059\u3002", "Alignment allows you to \nchoose where on the screen the media player will be positioned.": "\u300c\u914d\u7f6e\u300d\u306b\u3088\u308a\u3001\u753b\u9762\u306e\u3069\u306e\u90e8\u5206\u306b\u30e1\u30c7\u30a3\u30a2\u30d7\u30ec\u30fc\u30e4\u30fc\u3092\u914d\u7f6e\u3059\u308b\u304b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002", "Chamorro ": "\u30c1\u30e3\u30e2\u30ed\u8a9e", "Choose the size you want \nyour image to display at. The measurements are in pixels. Generally, 100 \npixels equals approximately 3cm. Leave both fields blank if you want the \nimage to display at its original size.": "\u753b\u50cf\u3092\u8868\u793a\u3057\u305f\u3044\u30b5\u30a4\u30ba\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5927\u304d\u3055\u306f\u30d4\u30af\u30bb\u30eb\u3067\u8868\u793a\u3055\u308c\u307e\u3059\u3002\u4e00\u822c\u7684\u306b\u306f\n100\u30d4\u30af\u30bb\u30eb\u304c\u304a\u304a\u3088\u305d3cm\u56db\u65b9\u306e\u753b\u50cf\u3068\u306a\u308a\u307e\u3059\u3002\u753b\u50cf\u3092\u30aa\u30ea\u30b8\u30ca\u30eb\u306e\u30b5\u30a4\u30ba\u3067\u8868\u793a\u3057\u305f\u3044\u5834\u5408\u306f\u3001\n\u4e21\u65b9\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u7a7a\u767d\u306e\u307e\u307e\u306b\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002", "Estonian ": "\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e", "Choose an Image": "\u753b\u50cf\u306e\u9078\u629e", "Latvian; Lettish ": "\u30e9\u30c8\u30f4\u30a3\u30a2\u8a9e", "Small": "\u5c0f", "Click on the Add images button to select an image file. The image will appear below where you will be able to label it. It's always good practice to put the file size in the label.": "\u300c\u753b\u50cf\u306e\u8ffd\u52a0\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3001\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u753b\u50cf\u304c\u4e0b\u306b\u8868\u793a\u3055\u308c\u3001\u30e9\u30d9\u30eb\u306e\u8a18\u5165\u304c\u3067\u304d\u307e\u3059\u3002\u30e9\u30d9\u30eb\u306b\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba\u3092\u8a18\u5165\u3057\u3066\u304a\u304f\u3068\u5229\u7528\u8005\u306b\u3068\u3063\u3066\u4fbf\u5229\u3067\u3059\u3002", "Greek ": "\u30ae\u30ea\u30b7\u30e3\u8a9e", "Mongolian ": "\u30e2\u30f3\u30b4\u30eb\u8a9e", "Left": "\u5de6", "Load": "\u30ed\u30fc\u30c9", "Enter a title for the gallery": "\u753b\u50cf\u96c6\u306b\u30bf\u30a4\u30c8\u30eb\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Image Gallery": "\u753b\u50cf\u96c6", "Close": "\u9589\u3058\u308b", "Enter a hint here. If you\ndo not want to provide a hint, leave this field blank.": "\u3053\u3053\u306b\u30d2\u30f3\u30c8\u3092\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3082\u3057\u30d2\u30f3\u30c8\u3092\u63d0\u4f9b\u3057\u306a\u3044\n\u306a\u3089\u3070\u3001\u3053\u306e\u9818\u57df\u306f\u7a7a\u767d\u306e\u307e\u307e\u306b\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002", "This iDevice only supports the Flash Video File (.FLV) format, and will not\naccept other video formats. You can however convert other movie formats\n(e.g. mov, wmf etc) into the .FLV format using third party encoders. These\nare not supplied with eXe. Users will also need to download the Flash 8\nplayer from http:\/\/www.macromedia.com\/ to play the video.": "\u3053\u306eiDevice\u306f\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc\u30d5\u30a1\u30a4\u30eb(.FLV)\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306e\u307f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\n\u4ed6\u306e\u30d3\u30c7\u30aa\u7528\u30e0\u30fc\u30d3\u30fc\u30d5\u30a9\u30fc\u30de\u30c3\u30c8(\u4f8b\uff1a mov, wmf \u306a\u3069)\u304b\u3089\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc\n\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u5909\u63db\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30a8\u30f3\u30b3\u30fc\u30c0\u30fc\u306b\u3064\u3044\u3066\u306f\u3001eXe\u3067\u306f\u6271\u3063\u3066\u3044\u307e\u305b\u3093\u3002\n\u307e\u305f\u3001\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc\u3092\u518d\u751f\u3059\u308b\u306b\u306fFlash 8 player\u3092\u6b21\u306e\u30b5\u30a4\u30c8\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\n\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002http:\/\/www.macromedia.com", "Free Text": "\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8", "blank for original size": "\u30aa\u30ea\u30b8\u30ca\u30eb\u306e\u30b5\u30a4\u30ba\u306b\u3059\u308b\u305f\u3081\u7a7a\u767d", "Hint": "\u30d2\u30f3\u30c8", "Ossetian; Ossetic ": "\u30aa\u30bb\u30c3\u30c8\u8a9e", "Japanese Wikipedia Article": "\u65e5\u672c\u8a9e\u30a6\u30a3\u30ad\u30da\u30c7\u30a3\u30a2\u8a18\u4e8b", "Kalaallisut; Greenlandic ": "\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9\u8a9e", "Tsonga ": "\u30c4\u30a9\u30f3\u30ac\u8a9e", "Tatar ": "\u30bf\u30bf\u30fc\u30eb\u8a9e", "URL:": "URL:", "Yoruba ": "\u30e8\u30eb\u30d0\u8a9e", "Description": "\u8a18\u8ff0", "This chooses the initial size \nof the magnifying glass": "\u3053\u308c\u306f\u62e1\u5927\u93e1\u306e\u521d\u671f\u30b5\u30a4\u30ba\u3092\u6c7a\u5b9a\u3057\u307e\u3059\u3002", "iDevice Editor": "\uff49\uff24\uff45\uff56\uff49\uff43\uff45\u7de8\u96c6", "Delete option": "\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u524a\u9664", "Enter the flash display \ndimensions (in pixels) and determine the alignment of the image on screen. \nThe width and height dimensions will alter proportionally.": "\u30d5\u30e9\u30c3\u30b7\u30e5\u3092\u8868\u793a\u3059\u308b\u9818\u57df\uff08\u30d4\u30af\u30bb\u30eb\uff09\u3092\u5165\u529b\u3057\u3001\n\u30b9\u30af\u30ea\u30fc\u30f3\u4e0a\u306e\u914d\u7f6e\u3092\u6c7a\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u5e45\u3068\u9ad8\u3055\u306f\u81ea\u52d5\u7684\u306b\u6bd4\u4f8b\u3057\u3066\u5909\u63db\u3055\u308c\u307e\u3059\u3002", "Flash Movie": "\u30d5\u30e9\u30c3\u30b7\u30e5\u30e0\u30fc\u30d3\u30fc", "Hebrew (formerly iw) ": "\u30d8\u30d6\u30e9\u30a4\u8a9e", "Purpose": "\u76ee\u7684", "Norwegian Bokm\u00e5l ": "\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e\uff08Bokm\u00e5 \uff09", "Wikieducator Content": "\u30a6\u30a3\u30ad\u30a8\u30c7\u30e5\u30b1\u30fc\u30bf\u30fc\u30fb\u30b3\u30f3\u30c6\u30f3\u30c4", "Nauru ": "\u30ca\u30a6\u30eb\u8a9e", "Wiktionary": "Wiktionary", "SAVE FAILED!\nLast succesful save is %s.": "\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n\u6700\u5f8c\u306b\u3046\u307e\u304f\u4fdd\u5b58\u3067\u304d\u305f\u306e\u306f\u6b21\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002 %s.", "True-False Question": "\u6b63\u8aa4\u554f\u984c", "Edit": "\u7de8\u96c6", "Occitan; Proven\u00e7al ": "\u30aa\u30af\u30b7\u30bf\u30f3\u8a9e", "Ido ": "\u30a4\u30c9\u8a9e", "Multi-choice": "\u591a\u80a2\u9078\u629e\uff08\u5358\u72ec\u89e3\u7b54\uff09", "Armenian ": "\u30a2\u30eb\u30e1\u30cb\u30a2\u8a9e", "MimeTeX compile failed!\n%s": "MimeTex\u306e\u30b3\u30f3\u30d1\u30a4\u30eb\u306b\u5931\u6557\u3057\u307e\u3057\u305f\uff01\n%s", "No Thumbnail Available. Could not shrink original image.": "\u30b5\u30e0\u30cd\u30a4\u30eb\u304c\u8868\u793a\u3067\u304d\u307e\u305b\u3093\u3002\u30aa\u30ea\u30b8\u30ca\u30eb\u753b\u50cf\u3092\u7e2e\u5c0f\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "Select an image": "\u753b\u50cf\u306e\u9078\u629e", "Site": "\u30b5\u30a4\u30c8", "<p>Where you have a number of images that relate \nto each other or to a particular learning exercise you may wish to display \nthese in a gallery context rather then individually.<\/p>": "<p>\u76f8\u4e92\u306b\u95a2\u9023\u304c\u3042\u308b\u753b\u50cf\u3001\u3042\u308b\u3044\u306f\u7279\u5b9a\u306e\u5b66\u7fd2\u6d3b\u52d5\u306b\u95a2\u9023\u3059\u308b\u753b\u50cf\u304c\u305f\u304f\u3055\u3093\u3042\u308b\u5834\u5408\u3001\u753b\u50cf\u3092\u500b\u5225\u306b\u8868\u793a\u3059\u308b\u3088\u308a\u3001\u30ae\u30e3\u30e9\u30ea\u30fc\u5f62\u5f0f\u3067\u8868\u793a\u3059\u308b\u3068\u4fbf\u5229\u3067\u3059\u3002<\/p>", "Kashmiri ": "\u30ab\u30b7\u30df\u30fc\u30eb\u8a9e", "<p>The reading activity, as the name \nsuggests, should ask the learner to perform some form of activity. This activity \nshould be directly related to the text the learner has been asked to read. \nFeedback to the activity where appropriate, can provide the learner with some \nreflective guidance.<\/p>": "<p>\u300c\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u6d3b\u52d5\u300d\u306f\u3001\u305d\u306e\u540d\u304c\u793a\u3059\u3088\u3046\u306b\u3001\u5b66\u7fd2\u8005\u306b\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0\u3057\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u5b66\u7fd2\u6d3b\u52d5\u3092\u3055\u305b\u308b\u3082\u306e\u3067\u3059\u3002\u9069\u6240\u3067\u30d5\u30a3\u30fc\u30c9\u30d0\u30c3\u30af\u3092\u4e0e\u3048\u308b\u3053\u3068\u3067\u3001\u5b66\u7fd2\u8005\u306b\u5b66\u7fd2\u5185\u5bb9\u306b\u3064\u3044\u3066\u8003\u5bdf\u3055\u305b\u308b\u3053\u3068\u3067\u304d\u307e\u3059\u3002<\/p>", "Bengali; Bangla ": "\u30d9\u30f3\u30ac\u30eb\u8a9e", "Pali ": "\u30d1\u30fc\u30ea\u8a9e", "Package saved to: %s": "\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u6b21\u306e\u5834\u6240\u306b\u4fdd\u5b58\u3055\u308c\u307e\u3057\u305f: %s" };
UstadMobile/exelearning-extjs5-mirror
exe/jsui/scripts/i18n/ja.js
JavaScript
gpl-2.0
102,368
<footer> <div class="small-3 medium-3 large-4 columns"><p>ยฉ Copyright ASP - Edition Hackathon. <em>Version <?php echo $maVersion; ?></em></p> </div> <div class="small-9 medium-9 large-8 columns"> <ul class="inline-list right"> <li><a href="/app/mentions-legales/mentions-legales.php">Mentions lรฉgales</a></li> <li><a href="/app/conditions-generales/conditions-generales.php">Conditions gรฉnรฉrales</a></li> <li><a href="/app/cookies/miam-miam.php">A propos des Cookies</a></li> </ul> </div> <div class="row"> <div class="small-12 medium-5 large-3 columns hide-for-small-down" style="margin-bottom: -90px;"> <a rel="author" href="/humans.txt"><figure><img src="/img/Certification/humanstxt-isolated-blank.png" alt="je suis un humain" STYLE="height: 20px; width: 80px;"/></figure></a> <a data-tooltip aria-haspopup="true" class="has-tip tip-left radius" data-options="show_on:large; hover_delay: 50;" title="Licence Creative Commons Attribution - Pas dโ€™Utilisation Commerciale - Partage dans les Mรชmes Conditions 4.0 International"><figure><img src="/img/Certification/cc_80x15.png" alt="Licence Creative Commons" style="border-width:0; margin: -37px 0px 0px 0px;"/></figure></a> </div> <div class="medium-7 large-7 columns hide-for-small-down"> <ul class="inline-list center grid cs-style-3"> <li><figure><img src="/img/Icone/logotype_005577.png" alt="je suis l'asp" width="30px" height="5px"/><figcaption><a href="#">OK</a></figcaption></figure></li> <li><figure><img src="/img/Icone/email_005577.png" alt="je suis mel" style="width:32px; height:31px;"/><figcaption><a href="#">OK</a></figcaption></figure></li> <li><figure><img src="/img/Icone/twitter_005577.png" alt="je suis twitter" style="width:32px; height:30px;"/><figcaption><a href="https://twitter.com/mesaidespub">OK</a></figcaption></figure></li> <li><figure><img src="/img/Icone/wikipedia_005577.png" alt="je suis wikipedia" style="width:32px; height:30px;"/><figcaption><a href="#">OK</a></figcaption></figure></li> <li><figure><img src="/img/Icone/rss_005577.png" alt="je suis rss" width="30px" height="5px"/><figcaption><a href="/feed/flux.xml">OK</a></figcaption></figure> </li> </ul> </div> </div> </footer>
lhadjadj/MesAidesPubliques
app/block/footer.php
PHP
gpl-2.0
2,290
/* * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "LoginDatabase.h" void LoginDatabaseConnection::DoPrepareStatements() { if (!m_reconnecting) m_stmts.resize(MAX_LOGINDATABASE_STATEMENTS); PrepareStatement(LOGIN_SEL_REALMLIST, "SELECT id, name, address, localAddress, localSubnetMask, port, icon, flag, timezone, allowedSecurityLevel, population, gamebuild FROM realmlist WHERE flag <> 3 ORDER BY name", CONNECTION_SYNCH); PrepareStatement(LOGIN_DEL_EXPIRED_IP_BANS, "DELETE FROM ip_banned WHERE unbandate<>bandate AND unbandate<=UNIX_TIMESTAMP()", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_EXPIRED_ACCOUNT_BANS, "UPDATE account_banned SET active = 0 WHERE active = 1 AND unbandate<>bandate AND unbandate<=UNIX_TIMESTAMP()", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_IP_BANNED, "SELECT * FROM ip_banned WHERE ip = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_INS_IP_AUTO_BANNED, "INSERT INTO ip_banned (ip, bandate, unbandate, bannedby, banreason) VALUES (?, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()+?, 'Trinity Auth', 'Failed login autoban')", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_IP_BANNED_ALL, "SELECT ip, bandate, unbandate, bannedby, banreason FROM ip_banned WHERE (bandate = unbandate OR unbandate > UNIX_TIMESTAMP()) ORDER BY unbandate", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_IP_BANNED_BY_IP, "SELECT ip, bandate, unbandate, bannedby, banreason FROM ip_banned WHERE (bandate = unbandate OR unbandate > UNIX_TIMESTAMP()) AND ip LIKE CONCAT('%%', ?, '%%') ORDER BY unbandate", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_BANNED, "SELECT bandate, unbandate FROM account_banned WHERE id = ? AND active = 1", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_BANNED_ALL, "SELECT account.id, username FROM account, account_banned WHERE account.id = account_banned.id AND active = 1 GROUP BY account.id", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_BANNED_BY_USERNAME, "SELECT account.id, username FROM account, account_banned WHERE account.id = account_banned.id AND active = 1 AND username LIKE CONCAT('%%', ?, '%%') GROUP BY account.id", CONNECTION_SYNCH); PrepareStatement(LOGIN_INS_ACCOUNT_AUTO_BANNED, "INSERT INTO account_banned VALUES (?, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()+?, 'Trinity Auth', 'Failed login autoban', 1)", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_ACCOUNT_BANNED, "DELETE FROM account_banned WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_SESSIONKEY, "SELECT a.sessionkey, a.id, aa.gmlevel FROM account a LEFT JOIN account_access aa ON (a.id = aa.id) WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_UPD_VS, "UPDATE account SET v = ?, s = ? WHERE username = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_LOGONPROOF, "UPDATE account SET sessionkey = ?, last_ip = ?, last_login = NOW(), locale = ?, failed_logins = 0, os = ? WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_LOGONCHALLENGE, "SELECT a.sha_pass_hash, a.id, a.locked, a.lock_country, a.last_ip, aa.gmlevel, a.v, a.s, a.token_key FROM account a LEFT JOIN account_access aa ON (a.id = aa.id) WHERE a.username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_LOGON_COUNTRY, "SELECT country FROM ip2nation WHERE ip < ? ORDER BY ip DESC LIMIT 0,1", CONNECTION_SYNCH); PrepareStatement(LOGIN_UPD_FAILEDLOGINS, "UPDATE account SET failed_logins = failed_logins + 1 WHERE username = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_FAILEDLOGINS, "SELECT id, failed_logins FROM account WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_ID_BY_NAME, "SELECT id FROM account WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_LIST_BY_NAME, "SELECT id, username FROM account WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_INFO_BY_NAME, "SELECT id, sessionkey, last_ip, locked, expansion, mutetime, locale, recruiter, os FROM account WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_LIST_BY_EMAIL, "SELECT id, username FROM account WHERE email = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_NUM_CHARS_ON_REALM, "SELECT numchars FROM realmcharacters WHERE realmid = ? AND acctid= ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_BY_IP, "SELECT id, username FROM account WHERE last_ip = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_BY_ID, "SELECT 1 FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_INS_IP_BANNED, "INSERT INTO ip_banned (ip, bandate, unbandate, bannedby, banreason) VALUES (?, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()+?, ?, ?)", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_IP_NOT_BANNED, "DELETE FROM ip_banned WHERE ip = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_ACCOUNT_BANNED, "INSERT INTO account_banned VALUES (?, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()+?, ?, ?, 1)", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_ACCOUNT_NOT_BANNED, "UPDATE account_banned SET active = 0 WHERE id = ? AND active != 0", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_REALM_CHARACTERS_BY_REALM, "DELETE FROM realmcharacters WHERE acctid = ? AND realmid = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_REALM_CHARACTERS, "DELETE FROM realmcharacters WHERE acctid = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_REALM_CHARACTERS, "INSERT INTO realmcharacters (numchars, acctid, realmid) VALUES (?, ?, ?)", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_SUM_REALM_CHARACTERS, "SELECT SUM(numchars) FROM realmcharacters WHERE acctid = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_ACCOUNT, "INSERT INTO account(username, sha_pass_hash, reg_mail, email, joindate) VALUES(?, ?, ?, ?, NOW())", CONNECTION_SYNCH); PrepareStatement(LOGIN_INS_REALM_CHARACTERS_INIT, "INSERT INTO realmcharacters (realmid, acctid, numchars) SELECT realmlist.id, account.id, 0 FROM realmlist, account LEFT JOIN realmcharacters ON acctid=account.id WHERE acctid IS NULL", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_EXPANSION, "UPDATE account SET expansion = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_ACCOUNT_LOCK, "UPDATE account SET locked = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_ACCOUNT_LOCK_CONTRY, "UPDATE account SET lock_country = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_LOG, "INSERT INTO logs (time, realm, type, level, string) VALUES (?, ?, ?, ?, ?)", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_USERNAME, "UPDATE account SET v = 0, s = 0, username = ?, sha_pass_hash = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_PASSWORD, "UPDATE account SET v = 0, s = 0, sha_pass_hash = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_EMAIL, "UPDATE account SET email = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_REG_EMAIL, "UPDATE account SET reg_mail = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_MUTE_TIME, "UPDATE account SET mutetime = ? , mutereason = ? , muteby = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_MUTE_TIME_LOGIN, "UPDATE account SET mutetime = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_LAST_IP, "UPDATE account SET last_ip = ? WHERE username = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_LAST_ATTEMPT_IP, "UPDATE account SET last_attempt_ip = ? WHERE username = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_ACCOUNT_ONLINE, "UPDATE account SET online = 1 WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_UPD_UPTIME_PLAYERS, "UPDATE uptime SET uptime = ?, maxplayers = ? WHERE realmid = ? AND starttime = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_OLD_LOGS, "DELETE FROM logs WHERE (time + ?) < ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_ACCOUNT_ACCESS, "DELETE FROM account_access WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_ACCOUNT_ACCESS_BY_REALM, "DELETE FROM account_access WHERE id = ? AND (RealmID = ? OR RealmID = -1)", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_ACCOUNT_ACCESS, "INSERT INTO account_access (id,gmlevel,RealmID) VALUES (?, ?, ?)", CONNECTION_ASYNC); PrepareStatement(LOGIN_GET_ACCOUNT_ID_BY_USERNAME, "SELECT id FROM account WHERE username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_GET_ACCOUNT_ACCESS_GMLEVEL, "SELECT gmlevel FROM account_access WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_GET_GMLEVEL_BY_REALMID, "SELECT gmlevel FROM account_access WHERE id = ? AND (RealmID = ? OR RealmID = -1)", CONNECTION_SYNCH); PrepareStatement(LOGIN_GET_USERNAME_BY_ID, "SELECT username FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_CHECK_PASSWORD, "SELECT 1 FROM account WHERE id = ? AND sha_pass_hash = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_CHECK_PASSWORD_BY_NAME, "SELECT 1 FROM account WHERE username = ? AND sha_pass_hash = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_PINFO, "SELECT a.username, aa.gmlevel, a.email, a.reg_mail, a.last_ip, DATE_FORMAT(a.last_login, '%Y-%m-%d %T'), a.mutetime, a.mutereason, a.muteby, a.failed_logins, a.locked, a.OS FROM account a LEFT JOIN account_access aa ON (a.id = aa.id AND (aa.RealmID = ? OR aa.RealmID = -1)) WHERE a.id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_PINFO_BANS, "SELECT unbandate, bandate = unbandate, bannedby, banreason FROM account_banned WHERE id = ? AND active ORDER BY bandate ASC LIMIT 1", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_GM_ACCOUNTS, "SELECT a.username, aa.gmlevel FROM account a, account_access aa WHERE a.id=aa.id AND aa.gmlevel >= ? AND (aa.realmid = -1 OR aa.realmid = ?)", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_INFO, "SELECT a.username, a.last_ip, aa.gmlevel, a.expansion FROM account a LEFT JOIN account_access aa ON (a.id = aa.id) WHERE a.id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_ACCESS_GMLEVEL_TEST, "SELECT 1 FROM account_access WHERE id = ? AND gmlevel > ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_ACCESS, "SELECT a.id, aa.gmlevel, aa.RealmID FROM account a LEFT JOIN account_access aa ON (a.id = aa.id) WHERE a.username = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_RECRUITER, "SELECT 1 FROM account WHERE recruiter = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_BANS, "SELECT 1 FROM account_banned WHERE id = ? AND active = 1 UNION SELECT 1 FROM ip_banned WHERE ip = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_ACCOUNT_WHOIS, "SELECT username, email, last_ip FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_LAST_ATTEMPT_IP, "SELECT last_attempt_ip FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_LAST_IP, "SELECT last_ip FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_REALMLIST_SECURITY_LEVEL, "SELECT allowedSecurityLevel from realmlist WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_DEL_ACCOUNT, "DELETE FROM account WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_IP2NATION_COUNTRY, "SELECT c.country FROM ip2nationCountries c, ip2nation i WHERE i.ip < ? AND c.code = i.country ORDER BY i.ip DESC LIMIT 0,1", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_AUTOBROADCAST, "SELECT id, weight, text FROM autobroadcast WHERE realmid = ? OR realmid = -1", CONNECTION_SYNCH); PrepareStatement(LOGIN_GET_EMAIL_BY_ID, "SELECT email FROM account WHERE id = ?", CONNECTION_SYNCH); // 0: uint32, 1: uint32, 2: uint8, 3: uint32, 4: string // Complete name: "Login_Insert_AccountLoginDeLete_IP_Logging" PrepareStatement(LOGIN_INS_ALDL_IP_LOGGING, "INSERT INTO logs_ip_actions (account_id,character_guid,type,ip,systemnote,unixtime,time) VALUES (?, ?, ?, (SELECT last_ip FROM account WHERE id = ?), ?, unix_timestamp(NOW()), NOW())", CONNECTION_ASYNC); // 0: uint32, 1: uint32, 2: uint8, 3: uint32, 4: string // Complete name: "Login_Insert_FailedAccountLogin_IP_Logging" PrepareStatement(LOGIN_INS_FACL_IP_LOGGING, "INSERT INTO logs_ip_actions (account_id,character_guid,type,ip,systemnote,unixtime,time) VALUES (?, ?, ?, (SELECT last_attempt_ip FROM account WHERE id = ?), ?, unix_timestamp(NOW()), NOW())", CONNECTION_ASYNC); // 0: uint32, 1: uint32, 2: uint8, 3: string, 4: string // Complete name: "Login_Insert_CharacterDelete_IP_Logging" PrepareStatement(LOGIN_INS_CHAR_IP_LOGGING, "INSERT INTO logs_ip_actions (account_id,character_guid,type,ip,systemnote,unixtime,time) VALUES (?, ?, ?, ?, ?, unix_timestamp(NOW()), NOW())", CONNECTION_ASYNC); // 0: string, 1: string, 2: string // Complete name: "Login_Insert_Failed_Account_Login_due_password_IP_Logging" PrepareStatement(LOGIN_INS_FALP_IP_LOGGING, "INSERT INTO logs_ip_actions (account_id,character_guid,type,ip,systemnote,unixtime,time) VALUES ((SELECT id FROM account WHERE username = ?), 0, 1, ?, ?, unix_timestamp(NOW()), NOW())", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_ACCOUNT_ACCESS_BY_ID, "SELECT gmlevel, RealmID FROM account_access WHERE id = ? and (RealmID = ? OR RealmID = -1) ORDER BY gmlevel desc", CONNECTION_SYNCH); PrepareStatement(LOGIN_SEL_RBAC_ACCOUNT_PERMISSIONS, "SELECT permissionId, granted FROM rbac_account_permissions WHERE accountId = ? AND (realmId = ? OR realmId = -1) ORDER BY permissionId, realmId", CONNECTION_SYNCH); PrepareStatement(LOGIN_INS_RBAC_ACCOUNT_PERMISSION, "INSERT INTO rbac_account_permissions (accountId, permissionId, granted, realmId) VALUES (?, ?, ?, ?) ON DUPLICATE KEY UPDATE granted = VALUES(granted)", CONNECTION_ASYNC); PrepareStatement(LOGIN_DEL_RBAC_ACCOUNT_PERMISSION, "DELETE FROM rbac_account_permissions WHERE accountId = ? AND permissionId = ? AND (realmId = ? OR realmId = -1)", CONNECTION_ASYNC); PrepareStatement(LOGIN_INS_ACCOUNT_MUTE, "INSERT INTO account_muted VALUES (?, UNIX_TIMESTAMP(), ?, ?, ?)", CONNECTION_ASYNC); PrepareStatement(LOGIN_SEL_ACCOUNT_MUTE_INFO, "SELECT mutedate, mutetime, mutereason, mutedby FROM account_muted WHERE guid = ? ORDER BY mutedate ASC", CONNECTION_SYNCH); PrepareStatement(LOGIN_LOAD_VIP, "SELECT vip, mg, votes FROM account WHERE id = ?", CONNECTION_SYNCH); PrepareStatement(LOGIN_SET_VIP, "UPDATE account SET vip = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_SET_MG, "UPDATE account SET mg = ? WHERE id = ?", CONNECTION_ASYNC); PrepareStatement(LOGIN_SET_VOTES, "UPDATE account SET votes = ? WHERE id = ?", CONNECTION_ASYNC); }
BlackWolfsDen/BWD_335a
src/server/shared/Database/Implementation/LoginDatabase.cpp
C++
gpl-2.0
15,318
/* * This file is part of the ZoRa project: http://www.photozora.org. * * ZoRa is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * ZoRa is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ZoRa; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * (c) 2009-2018 Berthold Daum */ package com.bdaum.zoom.ui.views; import java.io.IOException; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.widgets.Event; import org.eclipse.ui.IWorkbenchWindow; import com.bdaum.zoom.cat.model.asset.Asset; import com.bdaum.zoom.ui.internal.IKiosk; public interface IMediaViewer extends IKiosk { /** * Initializes and configures the viewer * * @param window * - the parent workbench window * @param kind * - PRIMARY if this is a primary viewer, LEFT or RIGHT if it is a * subviewer * @param bwmode * - RGB value if images are to be displayed as grayscale images, * null otherwise. The RGB value is used as a filter * @param cropmode * - ZImage.CROPPED, ZImage.CROPMASK, ZImage.ORIGINAL */ void init(IWorkbenchWindow window, int kind, RGB bwmode, int cropmode); /** * Creates the GUI if not already created Opens the specified images * * @param assets * - the images to be displayed * @throws IOException */ void open(Asset[] assets) throws IOException; /** * Retrieves the viewers name * * @return viewers name */ String getName(); /** * Retrieves the viewers ID * * @return ID */ String getId(); /** * Sets the viewers ID * * @param id * - ID */ void setId(String id); /** * Sets the viewers name * * @param name * - Name */ void setName(String name); /** * Indicates if the image viewer can handle remote files * * @return - true if the image viewer can handle remote files */ boolean canHandleRemote(); /** * Notifies of a key released * @param e - key event */ void releaseKey(Event e); /** * True if this viewer is not a valid internal viewer * Default: false * @return */ boolean isDummy(); }
bdaum/zoraPD
com.bdaum.zoom.ui/src/com/bdaum/zoom/ui/views/IMediaViewer.java
Java
gpl-2.0
2,645
import os import sys import re from setuptools import setup, find_packages with open("README.md", "rb") as f: long_descr = f.read().decode("utf-8") version = re.search( r'^__version__\s*=\s*"(.*)"', open('src/wfuzz/__init__.py').read(), re.M ).group(1) docs_requires = [ "Sphinx", ] dev_requires = [ 'mock', 'coverage', 'codecov', 'netaddr', # tests/api/test_payload.py uses ipranges payload 'pip-tools', 'flake8==3.8.3', 'black==19.10b0;python_version>"3.5"', 'pytest', ] install_requires = [ 'pycurl', 'pyparsing<2.4.2;python_version<="3.4"', 'pyparsing>=2.4*;python_version>="3.5"', 'six', 'configparser;python_version<"3.5"', 'chardet', ] if sys.platform.startswith("win"): install_requires += ["colorama>=0.4.0"] try: os.symlink('../../docs/user/advanced.rst', 'src/wfuzz/advanced.rst') setup( name="wfuzz", packages=find_packages(where='src'), package_dir={'wfuzz': 'src/wfuzz'}, include_package_data=True, package_data={'wfuzz': ['*.rst']}, entry_points={ 'console_scripts': [ 'wfuzz = wfuzz.wfuzz:main', 'wfpayload = wfuzz.wfuzz:main_filter', 'wfencode = wfuzz.wfuzz:main_encoder', ], 'gui_scripts': [ 'wxfuzz = wfuzz.wfuzz:main_gui', ] }, version=version, description="Wfuzz - The web fuzzer", long_description=long_descr, long_description_content_type='text/markdown', author="Xavi Mendez (@x4vi_mendez)", author_email="xmendez@edge-security.com", url="http://wfuzz.org", license="GPLv2", install_requires=install_requires, extras_require={ 'dev': dev_requires, 'docs': docs_requires, }, python_requires=">=2.6", classifiers=( 'Development Status :: 4 - Beta', 'Natural Language :: English', 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ), ) finally: os.unlink('src/wfuzz/advanced.rst')
xmendez/wfuzz
setup.py
Python
gpl-2.0
2,529
/////////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2006-2015 Esper Team. All rights reserved. / // http://esper.codehaus.org / // ---------------------------------------------------------------------------------- / // The software in this package is published under the terms of the GPL license / // a copy of which has been included with this distribution in the license.txt file. / /////////////////////////////////////////////////////////////////////////////////////// using System; using System.Collections.Generic; using System.Xml; using Avro.Generic; using com.espertech.esper.common.@internal.support; using com.espertech.esper.compat.collections; using com.espertech.esper.regressionlib.framework; using com.espertech.esper.regressionlib.support.bean; using com.espertech.esper.regressionlib.support.@event; using NEsper.Avro.Core; using NEsper.Avro.Extensions; using NUnit.Framework; using static com.espertech.esper.regressionlib.support.@event.SupportEventInfra; using static com.espertech.esper.regressionlib.support.@event.ValueWithExistsFlag; using SupportBeanComplexProps = com.espertech.esper.regressionlib.support.bean.SupportBeanComplexProps; namespace com.espertech.esper.regressionlib.suite.@event.infra { public class EventInfraPropertyDynamicNestedDeep : RegressionExecution { public static readonly string XML_TYPENAME = nameof(EventInfraPropertyDynamicNestedDeep) + "XML"; public static readonly string MAP_TYPENAME = nameof(EventInfraPropertyDynamicNestedDeep) + "Map"; public static readonly string OA_TYPENAME = nameof(EventInfraPropertyDynamicNestedDeep) + "OA"; public static readonly string AVRO_TYPENAME = nameof(EventInfraPropertyDynamicNestedDeep) + "Avro"; private static readonly FunctionSendEvent FAVRO = ( env, value, typename) => { var schema = AvroSchemaUtil.ResolveAvroSchema( env.Runtime.EventTypeService.GetEventTypePreconfigured(AVRO_TYPENAME)); var itemSchema = schema.GetField("Item").Schema; var itemDatum = new GenericRecord(itemSchema.AsRecordSchema()); itemDatum.Put("Nested", value); var datum = new GenericRecord(schema.AsRecordSchema()); datum.Put("Item", itemDatum); env.SendEventAvro(datum, typename); }; public void Run(RegressionEnvironment env) { var notExists = MultipleNotExists(6); // Bean var beanOne = SupportBeanComplexProps.MakeDefaultBean(); var n1v = beanOne.Nested.NestedValue; var n1nv = beanOne.Nested.NestedNested.NestedNestedValue; var beanTwo = SupportBeanComplexProps.MakeDefaultBean(); beanTwo.Nested.NestedValue = "nested1"; beanTwo.Nested.NestedNested.NestedNestedValue = "nested2"; Pair<object, object>[] beanTests = { new Pair<object, object>(new SupportBeanDynRoot(beanOne), AllExist(n1v, n1v, n1nv, n1nv, n1nv, n1nv)), new Pair<object, object>( new SupportBeanDynRoot(beanTwo), AllExist("nested1", "nested1", "nested2", "nested2", "nested2", "nested2")), new Pair<object, object>(new SupportBeanDynRoot("abc"), notExists) }; RunAssertion(env, "SupportBeanDynRoot", FBEAN, null, beanTests, typeof(object)); // Map IDictionary<string, object> mapOneL2 = new Dictionary<string, object>(); mapOneL2.Put("NestedNestedValue", 101); IDictionary<string, object> mapOneL1 = new Dictionary<string, object>(); mapOneL1.Put("NestedNested", mapOneL2); mapOneL1.Put("NestedValue", 100); IDictionary<string, object> mapOneL0 = new Dictionary<string, object>(); mapOneL0.Put("Nested", mapOneL1); var mapOne = Collections.SingletonDataMap("Item", mapOneL0); Pair<object, object>[] mapTests = { new Pair<object, object>(mapOne, AllExist(100, 100, 101, 101, 101, 101)), new Pair<object, object>(Collections.EmptyDataMap, notExists) }; RunAssertion(env, MAP_TYPENAME, FMAP, null, mapTests, typeof(object)); // Object-Array object[] oaOneL2 = {101}; object[] oaOneL1 = {oaOneL2, 100}; object[] oaOneL0 = {oaOneL1}; object[] oaOne = {oaOneL0}; Pair<object, object>[] oaTests = { new Pair<object, object>(oaOne, AllExist(100, 100, 101, 101, 101, 101)), new Pair<object, object>(new object[] {null}, notExists) }; RunAssertion(env, OA_TYPENAME, FOA, null, oaTests, typeof(object)); // XML Pair<object, object>[] xmlTests = { new Pair<object, object>( "<Item>\n" + "\t<Nested NestedValue=\"100\">\n" + "\t\t<NestedNested NestedNestedValue=\"101\">\n" + "\t\t</NestedNested>\n" + "\t</Nested>\n" + "</Item>\n", AllExist("100", "100", "101", "101", "101", "101")), new Pair<object, object>("<item/>", notExists) }; RunAssertion(env, XML_TYPENAME, FXML, xmlToValue, xmlTests, typeof(XmlNode)); // Avro var schema = AvroSchemaUtil.ResolveAvroSchema(env.Runtime.EventTypeService.GetEventTypePreconfigured(AVRO_TYPENAME)); var nestedSchema = AvroSchemaUtil.FindUnionRecordSchemaSingle( schema .GetField("Item") .Schema.AsRecordSchema() .GetField("Nested") .Schema); var nestedNestedSchema = AvroSchemaUtil.FindUnionRecordSchemaSingle( nestedSchema.GetField("NestedNested").Schema); var nestedNestedDatum = new GenericRecord(nestedNestedSchema.AsRecordSchema()); nestedNestedDatum.Put("NestedNestedValue", 101); var nestedDatum = new GenericRecord(nestedSchema.AsRecordSchema()); nestedDatum.Put("NestedValue", 100); nestedDatum.Put("NestedNested", nestedNestedDatum); var emptyDatum = new GenericRecord(SchemaBuilder.Record(AVRO_TYPENAME)); Pair<object, object>[] avroTests = { new Pair<object, object>(nestedDatum, AllExist(100, 100, 101, 101, 101, 101)), new Pair<object, object>(emptyDatum, notExists), new Pair<object, object>(null, notExists) }; RunAssertion(env, AVRO_TYPENAME, FAVRO, null, avroTests, typeof(object)); } private void RunAssertion( RegressionEnvironment env, string typename, FunctionSendEvent send, Func<object, object> optionalValueConversion, Pair<object, object>[] tests, Type expectedPropertyType) { RunAssertionSelectNested(env, typename, send, optionalValueConversion, tests, expectedPropertyType); RunAssertionBeanNav(env, typename, send, tests[0].First); } private void RunAssertionBeanNav( RegressionEnvironment env, string typename, FunctionSendEvent send, object underlyingComplete) { var stmtText = "@Name('s0') select * from " + typename; env.CompileDeploy(stmtText).AddListener("s0"); send.Invoke(env, underlyingComplete, typename); var @event = env.Listener("s0").AssertOneGetNewAndReset(); SupportEventTypeAssertionUtil.AssertConsistency(@event); env.UndeployAll(); } private void RunAssertionSelectNested( RegressionEnvironment env, string typename, FunctionSendEvent send, Func<object, object> optionalValueConversion, Pair<object, object>[] tests, Type expectedPropertyType) { var stmtText = "@Name('s0') select " + " Item.Nested?.NestedValue as n1, " + " exists(Item.Nested?.NestedValue) as exists_n1, " + " Item.Nested?.NestedValue? as n2, " + " exists(Item.Nested?.NestedValue?) as exists_n2, " + " Item.Nested?.NestedNested.NestedNestedValue as n3, " + " exists(Item.Nested?.NestedNested.NestedNestedValue) as exists_n3, " + " Item.Nested?.NestedNested?.NestedNestedValue as n4, " + " exists(Item.Nested?.NestedNested?.NestedNestedValue) as exists_n4, " + " Item.Nested?.NestedNested.NestedNestedValue? as n5, " + " exists(Item.Nested?.NestedNested.NestedNestedValue?) as exists_n5, " + " Item.Nested?.NestedNested?.NestedNestedValue? as n6, " + " exists(Item.Nested?.NestedNested?.NestedNestedValue?) as exists_n6 " + " from " + typename; env.CompileDeploy(stmtText).AddListener("s0"); var propertyNames = new [] { "n1","n2","n3","n4","n5","n6" }; var eventType = env.Statement("s0").EventType; foreach (var propertyName in propertyNames) { Assert.AreEqual(expectedPropertyType, eventType.GetPropertyType(propertyName)); Assert.AreEqual(typeof(bool?), eventType.GetPropertyType("exists_" + propertyName)); } foreach (var pair in tests) { send.Invoke(env, pair.First, typename); var @event = env.Listener("s0").AssertOneGetNewAndReset(); AssertValuesMayConvert( @event, propertyNames, (ValueWithExistsFlag[]) pair.Second, optionalValueConversion); } env.UndeployAll(); } } } // end of namespace
espertechinc/nesper
tst/NEsper.Regression/suite/event/infra/EventInfraPropertyDynamicNestedDeep.cs
C#
gpl-2.0
10,628
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>sites/all/themes/zen/layouts/two_sidebars/zen-two-sidebars.tpl.php File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.8 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>sites/all/themes/zen/layouts/two_sidebars/zen-two-sidebars.tpl.php File Reference</h1><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Variables</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="16767ac2e2b027ec00a0c12535d2ba7a"></a><!-- doxytag: member="zen&#45;two&#45;sidebars.tpl.php::$content" ref="16767ac2e2b027ec00a0c12535d2ba7a" args="['content']" --> if(!empty($css_id)) print&nbsp;</td><td class="memItemRight" valign="bottom"><b>$content</b> ['content']</td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="8fbe76276dfb5a084cc042c32e8e6394"></a><!-- doxytag: member="zen&#45;two&#45;sidebars.tpl.php::$content" ref="8fbe76276dfb5a084cc042c32e8e6394" args="['sidebar_first']" --> print&nbsp;</td><td class="memItemRight" valign="bottom"><b>$content</b> ['sidebar_first']</td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="4f8fb8ae436a00e7bdfe8b16bc3f0dd4"></a><!-- doxytag: member="zen&#45;two&#45;sidebars.tpl.php::$content" ref="4f8fb8ae436a00e7bdfe8b16bc3f0dd4" args="['sidebar_second']" --> print&nbsp;</td><td class="memItemRight" valign="bottom"><b>$content</b> ['sidebar_second']</td></tr> </table> <hr><a name="_details"></a><h2>Detailed Description</h2> Template for a 1 row, 2 column Zen-based panel layout.<p> This template provides a two column panel display layout, with additional areas for the top and the bottom.<p> Variables:<ul> <li>$css_id: An optional CSS id to use for the layout.</li><li>$content: An array of content, each item in the array is keyed to one panel of the layout. This layout supports the following sections:<ul> <li>$content['content']: Content in the main column.</li><li>$content['sidebar_first']: Content in the first column.</li><li>$content['sidebar_second']: Content in the second column. </li></ul> </li></ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Sat Feb 12 18:59:45 2011 by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> </body> </html>
sheldonrampton/sheldonrampton
html/zen-two-sidebars_8tpl_8php.html
HTML
gpl-2.0
3,345
#include "ocra/optim/SumOfLinearFunctions.h" #include "ocra/optim/SolverUtilities.h" #include "ocra/optim/VariableMapping.h" namespace ocra { SumOfLinearFunctions::SumOfLinearFunctions(int dimension) : NamedInstance("sum of linear functions") , AbilitySet(PARTIAL_X) , CoupledInputOutputSize(false) , LinearFunction(*new CompositeVariable("SumOfLinearFunctionsVariable"), dimension) , _variable("SumOfLinearFunctionsVariable") , _offset(VectorXd::Zero(dimension)) { static_cast<CompositeVariable&>(x).add( const_cast<CompositeVariable&>(_variable.getVariable()) ); _b.setZero(); } SumOfLinearFunctions::~SumOfLinearFunctions() { while(!_functions.empty()) removeFunction(*_functions.back().first); disconnectVariable(); // since... (see two line below) delete &x; // we allocated it ourselves } SumOfLinearFunctions& SumOfLinearFunctions::addFunction(LinearFunction& f, double scale) { if(f.getDimension() != _dim) throw std::runtime_error("[ocra::SumOfLinearFunctions::addFunction] f must have the dimension set at construction"); for (size_t i=0; i<_functions.size(); ++i) { if (_functions[i].first == &f) { _functions[i].second += scale; return *this; } } _functions.push_back(std::make_pair(&f,scale)); _variable.insert(&f.getVariable()); _variable.recomputeVariable(); f.connect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateAll); f.connect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateb); f.connect<EVT_RESIZE>(*this, &SumOfLinearFunctions::checkThatFunctionsDimensionDoNotChange); invalidateAll(); invalidateb(-1); return *this; } SumOfLinearFunctions& SumOfLinearFunctions::removeFunction(LinearFunction& f, double scale) { for (size_t i=0; i<_functions.size(); ++i) { if (_functions[i].first == &f) { _functions[i].second -= scale; if (std::abs(_functions[i].second) < 1.e-8) { f.disconnect<EVT_RESIZE>(*this, &SumOfLinearFunctions::checkThatFunctionsDimensionDoNotChange); f.disconnect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateb); f.disconnect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateAll); _variable.remove(&f.getVariable()); _variable.recomputeVariable(); _functions.erase(_functions.begin() + i); } invalidateAll(); invalidateb(-1); return *this; } } ocra_assert(false && "the function to remove was not found"); return *this; } SumOfLinearFunctions& SumOfLinearFunctions::removeFunction(LinearFunction& f) { for (size_t i=0;i<_functions.size(); ++i) { if (_functions[i].first == &f) { f.disconnect<EVT_RESIZE>(*this, &SumOfLinearFunctions::checkThatFunctionsDimensionDoNotChange); f.disconnect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateb); f.disconnect<EVT_CHANGE_VALUE>(*this, &SumOfLinearFunctions::invalidateAll); _variable.remove(&f.getVariable()); _variable.recomputeVariable(); _functions.erase(_functions.begin() + i); invalidateAll(); invalidateb(-1); return *this; } } ocra_assert(false && "the function to remove was not found"); return *this; } void SumOfLinearFunctions::updateJacobian() const { if(!_variable.isVariableUpToDate()) _variable.recomputeVariable(); _jacobian.setZero(); for (size_t i=0; i<_functions.size(); ++i) utils::addCompressedByCol(_functions[i].first->getJacobian(), _jacobian, _variable.find(&_functions[i].first->getVariable())->getMapping(), _functions[i].second); } void SumOfLinearFunctions::updateb() const { _b = _offset; for (size_t i=0; i<_functions.size(); ++i) _b += _functions[i].second * _functions[i].first->getb(); } void SumOfLinearFunctions::doUpdateInputSizeBegin() { // does nothing : this overload allows to resize } void SumOfLinearFunctions::doChangeA(const MatrixXd& A) { throw std::runtime_error("[ocra::SumOfLinearFunctions::changeA] invalid operation on SumOfLinearFunctions"); } void SumOfLinearFunctions::doChangeb(const VectorXd& b) { ocra_assert(b.size()==getDimension() && "Wrong size for b in sum of linear function"); _offset = b; invalidateb(-1); } void SumOfLinearFunctions::checkThatFunctionsDimensionDoNotChange(int timestamp) { for (size_t i=0; i<_functions.size(); ++i) if(_functions[i].first->getDimension() != _dim) throw std::runtime_error("[ocra::SumOfLinearFunctions::checkThatFunctionsDimensionDoNotChange] Dimension of function " + _functions[i].first->getName() + " changed!"); } } // cmake:sourcegroup=Function
ocra-recipes/ocra-recipes
ocra/src/optim/SumOfLinearFunctions.cpp
C++
gpl-2.0
4,997
package ow::auth_vdomain; # # auth_vdomain.pl - authenticate virtual user on vm-pop3d+postfix system # # 2003/03/03 tung.AT.turtle.ee.ncku.edu.tw # ########## No configuration required from here ################### use strict; use Fcntl qw(:DEFAULT :flock); require "modules/filelock.pl"; require "modules/tool.pl"; my %conf; if (($_=ow::tool::find_configfile('etc/auth_vdomain.conf', 'etc/defaults/auth_vdomain.conf')) ne '') { my ($ret, $err)=ow::tool::load_configfile($_, \%conf); die $err if ($ret<0); } # the user for all virtual users mailbox by default my $local_uid=getpwnam($conf{'virtualuser'}||'nobody'); ########## end init ############################################## # 0 : ok # -2 : parameter format error # -3 : authentication system/internal error # -4 : user doesn't exist sub get_userinfo { my ($r_config, $user_domain)=@_; return(-2, 'Not valid user@domain format') if ($user_domain !~ /(.+)[\@:!](.+)/); my ($user, $domain)=($1, $2); my ($localuser, $uid, $gid, $realname, $homedir) = (getpwuid($local_uid))[0,2,3,6,7]; return(-3, "Uid $local_uid doesn't exist") if ($uid eq ""); my $pwdfile="${$r_config}{'vdomain_vmpop3_pwdpath'}/$domain/${$r_config}{'vdomain_vmpop3_pwdname'}"; return(-2, "Passwd file for domain $domain doesn't exist ") if (!-f $pwdfile); # check if virtual user exists in vdomain passwd file ow::filelock::lock($pwdfile, LOCK_SH) or return (-3, "Couldn't get read lock on $pwdfile"); if (!open(PASSWD, $pwdfile)) { ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Couldn't get open $pwdfile"); } my $found=0; while (<PASSWD>) { if (/^$user:/) { $found=1; last; } } close(PASSWD); ow::filelock::lock($pwdfile, LOCK_UN); return(-4, "User $user_domain doesn't exist") if (!$found); my $domainhome="$homedir/$domain"; if ( ${$r_config}{'use_syshomedir'} && -d $homedir) { # mkdir domainhome so openwebmail.pl can create user homedir under this domainhome if (! -d $domainhome) { my $mailgid=getgrnam('mail'); $domainhome = ow::tool::untaint($domainhome); mkdir($domainhome, 0750); return(-3, "Couldn't create domain homedir $domainhome") if (! -d $domainhome); chown($uid, $mailgid, $domainhome); } } # get other gid for the localuser in /etc/group while (my @gr=getgrent()) { $gid.=' '.$gr[2] if ($gr[3]=~/\b$localuser\b/ && $gid!~/\b$gr[2]\b/); } return(0, '', $user, $uid, $gid, "$domainhome/$user"); } # 0 : ok # -1 : function not supported # -3 : authentication system/internal error sub get_userlist { # only used by openwebmail-tool.pl -a my $r_config=$_[0]; my @userlist=(); my $line; foreach my $domain (vdomainlist($r_config)) { my $pwdfile="${$r_config}{'vdomain_vmpop3_pwdpath'}/$domain/${$r_config}{'vdomain_vmpop3_pwdname'}"; ow::filelock::lock($pwdfile, LOCK_SH) or return (-3, "Couldn't get read lock on $pwdfile"); if (! open(PASSWD, $pwdfile)) { ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Couldn't get open $pwdfile"); } while (defined($line=<PASSWD>)) { next if ($line=~/^#/); chomp($line); push(@userlist, (split(/:/, $line))[0]."\@$domain"); } close(PASSWD); ow::filelock::lock($pwdfile, LOCK_UN); } return(0, '', @userlist); } # 0 : ok # -2 : parameter format error # -3 : authentication system/internal error # -4 : password incorrect sub check_userpassword { my ($r_config, $user_domain, $password)=@_; return (-2, "User or password is null") if ($user_domain eq '' || $password eq ''); return (-2, 'Not valid user@domain format') if ($user_domain !~ /(.+)[\@:!](.+)/); my ($user, $domain)=($1, $2); my $pwdfile="${$r_config}{'vdomain_vmpop3_pwdpath'}/$domain/${$r_config}{'vdomain_vmpop3_pwdname'}"; return (-4, "Passwd file $pwdfile doesn't exist") if (! -f $pwdfile); ow::filelock::lock($pwdfile, LOCK_SH) or return (-3, "Couldn't get read lock on $pwdfile"); if ( ! open(PASSWD, $pwdfile) ) { ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Couldn't open $pwdfile"); } my ($line, $u, $p); while (defined($line=<PASSWD>)) { chomp($line); ($u, $p) = (split(/:/, $line))[0,1]; last if ($u eq $user); # We've found the user in virtual domain passwd file } close(PASSWD); ow::filelock::lock($pwdfile, LOCK_UN); return(-4, "User $user_domain doesn't exist") if ($u ne $user); return(-4, "Password incorrect") if (crypt($password,$p) ne $p); return (0, ''); } # 0 : ok # -1 : function not supported # -2 : parameter format error # -3 : authentication system/internal error # -4 : password incorrect sub change_userpassword { my ($r_config, $user_domain, $oldpassword, $newpassword)=@_; return (-2, "User or password is null") if ($user_domain eq '' || $oldpassword eq '' || $newpassword eq ''); return (-2, 'Not valid user@domain format') if ($user_domain !~ /(.+)[\@:!](.+)/); my ($user, $domain)=($1, $2); my $pwdfile="${$r_config}{'vdomain_vmpop3_pwdpath'}/$domain/${$r_config}{'vdomain_vmpop3_pwdname'}"; return (-4, "Passwd file $pwdfile doesn't exist") if (! -f $pwdfile); my ($u, $p, $encrypted); my $content=""; my $line; ow::filelock::lock($pwdfile, LOCK_EX) or return (-3, "Couldn't get write lock on $pwdfile"); if ( ! open(PASSWD, $pwdfile) ) { ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Couldn't open $pwdfile"); } while (defined($line=<PASSWD>)) { $content .= $line; chomp($line); ($u, $p) = split(/:/, $line) if ($u ne $user); } close(PASSWD); if ($u ne $user) { ow::filelock::lock($pwdfile, LOCK_UN); return (-4, "User $user_domain doesn't exist"); } if (crypt($oldpassword,$p) ne $p) { ow::filelock::lock($pwdfile, LOCK_UN); return (-4, "Incorrect password"); } my @salt_chars = ('a'..'z','A'..'Z','0'..'9'); my $salt = $salt_chars[rand(62)] . $salt_chars[rand(62)]; if ($p =~ /^\$1\$/) { # if orig encryption is MD5, keep using it $salt = '$1$'. $salt; } $encrypted= crypt($newpassword, $salt); my $oldline="$u:$p"; my $newline="$u:$encrypted"; if ($content !~ s/\Q$oldline\E/$newline/) { ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Unable to match entry for modification"); } my $tmpfile=ow::tool::untaint("$pwdfile.tmp.$$.".rand()); sysopen(TMP, $tmpfile, O_WRONLY|O_TRUNC|O_CREAT) or goto authsys_error; print TMP $content or goto authsys_error; close(TMP) or goto authsys_error; # automic update passwd by rename my ($fmode, $fuid, $fgid) = (stat($pwdfile))[2,4,5]; chown($fuid, $fgid, $tmpfile); chmod($fmode, $tmpfile); rename($tmpfile, $pwdfile) or goto authsys_error; ow::filelock::lock($pwdfile, LOCK_UN); return (0, ''); authsys_error: unlink($tmpfile); ow::filelock::lock($pwdfile, LOCK_UN); return (-3, "Unable to write $pwdfile"); } ########## misc support routine ################################## sub vdomainlist { my $r_config=$_[0]; my (@domainlist, $dir); opendir(D, ${$r_config}{'vdomain_vmpop3_pwdpath'}); while (defined($dir=readdir(D))) { next if ($dir eq "." || $dir eq ".."); # does domain passwd file exist? if ( -f "${$r_config}{'vdomain_vmpop3_pwdpath'}/$dir/${$r_config}{'vdomain_vmpop3_pwdname'}" ) { push(@domainlist, $dir); } } closedir(D); return(@domainlist); } 1;
adiabuk/random_scripts
websites/admin.amroxonline.com/cgi-bin/openwebmail/auth/auth_vdomain.pl
Perl
gpl-2.0
7,604
<?php /** * @package Joomla.Administrator * @subpackage com_fields * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Fields\Administrator\Controller; defined('_JEXEC') or die; use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\MVC\Controller\FormController; use Joomla\CMS\MVC\Model\BaseDatabaseModel; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\Component\Fields\Administrator\Helper\FieldsHelper; use Joomla\Registry\Registry; use Joomla\CMS\Language\Text; use Joomla\CMS\Session\Session; use Joomla\CMS\Factory; /** * The Field controller * * @since 3.7.0 */ class FieldController extends FormController { private $internalContext; private $component; /** * The prefix to use with controller messages. * * @var string * @since 3.7.0 */ protected $text_prefix = 'COM_FIELDS_FIELD'; /** * Constructor. * * @param array $config An optional associative array of configuration settings. * Recognized key values include 'name', 'default_task', 'model_path', and * 'view_path' (this list is not meant to be comprehensive). * @param MVCFactoryInterface $factory The factory. * @param CMSApplication $app The JApplication for the dispatcher * @param \JInput $input Input * * @since 3.7.0 */ public function __construct($config = array(), MVCFactoryInterface $factory = null, $app = null, $input = null) { parent::__construct($config, $factory, $app, $input); $this->internalContext = Factory::getApplication()->getUserStateFromRequest('com_fields.fields.context', 'context', 'com_content.article', 'CMD'); $parts = FieldsHelper::extract($this->internalContext); $this->component = $parts ? $parts[0] : null; } /** * Method override to check if you can add a new record. * * @param array $data An array of input data. * * @return boolean * * @since 3.7.0 */ protected function allowAdd($data = array()) { return Factory::getUser()->authorise('core.create', $this->component); } /** * Method override to check if you can edit an existing record. * * @param array $data An array of input data. * @param string $key The name of the key for the primary key. * * @return boolean * * @since 3.7.0 */ protected function allowEdit($data = array(), $key = 'id') { $recordId = (int) isset($data[$key]) ? $data[$key] : 0; $user = Factory::getUser(); // Zero record (id:0), return component edit permission by calling parent controller method if (!$recordId) { return parent::allowEdit($data, $key); } // Check edit on the record asset (explicit or inherited) if ($user->authorise('core.edit', $this->component . '.field.' . $recordId)) { return true; } // Check edit own on the record asset (explicit or inherited) if ($user->authorise('core.edit.own', $this->component . '.field.' . $recordId)) { // Existing record already has an owner, get it $record = $this->getModel()->getItem($recordId); if (empty($record)) { return false; } // Grant if current user is owner of the record return $user->id == $record->created_by; } return false; } /** * Method to run batch operations. * * @param object $model The model. * * @return boolean True if successful, false otherwise and internal error is set. * * @since 3.7.0 */ public function batch($model = null) { Session::checkToken() or jexit(Text::_('JINVALID_TOKEN')); // Set the model $model = $this->getModel('Field'); // Preset the redirect $this->setRedirect('index.php?option=com_fields&view=fields&context=' . $this->internalContext); return parent::batch($model); } /** * Gets the URL arguments to append to an item redirect. * * @param integer $recordId The primary key id for the item. * @param string $urlVar The name of the URL variable for the id. * * @return string The arguments to append to the redirect URL. * * @since 3.7.0 */ protected function getRedirectToItemAppend($recordId = null, $urlVar = 'id') { return parent::getRedirectToItemAppend($recordId) . '&context=' . $this->internalContext; } /** * Gets the URL arguments to append to a list redirect. * * @return string The arguments to append to the redirect URL. * * @since 3.7.0 */ protected function getRedirectToListAppend() { return parent::getRedirectToListAppend() . '&context=' . $this->internalContext; } /** * Function that allows child controller access to model data after the data has been saved. * * @param BaseDatabaseModel $model The data model object. * @param array $validData The validated data. * * @return void * * @since 3.7.0 */ protected function postSaveHook(BaseDatabaseModel $model, $validData = array()) { $item = $model->getItem(); if (isset($item->params) && is_array($item->params)) { $registry = new Registry; $registry->loadArray($item->params); $item->params = (string) $registry; } return; } }
joomla-projects/media-manager-improvement
administrator/components/com_fields/Controller/FieldController.php
PHP
gpl-2.0
5,250
/* Main code for remote server for GDB. Copyright (C) 1989, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "server.h" #if HAVE_UNISTD_H #include <unistd.h> #endif #if HAVE_SIGNAL_H #include <signal.h> #endif #if HAVE_SYS_WAIT_H #include <sys/wait.h> #endif #if HAVE_MALLOC_H #include <malloc.h> #endif ptid_t cont_thread; ptid_t general_thread; ptid_t step_thread; int server_waiting; static int extended_protocol; static int response_needed; static int exit_requested; int multi_process; int non_stop; static char **program_argv, **wrapper_argv; /* Enable miscellaneous debugging output. The name is historical - it was originally used to debug LinuxThreads support. */ int debug_threads; /* Enable debugging of h/w breakpoint/watchpoint support. */ int debug_hw_points; int pass_signals[TARGET_SIGNAL_LAST]; jmp_buf toplevel; const char *gdbserver_xmltarget; /* The PID of the originally created or attached inferior. Used to send signals to the process when GDB sends us an asynchronous interrupt (user hitting Control-C in the client), and to wait for the child to exit when no longer debugging it. */ unsigned long signal_pid; #ifdef SIGTTOU /* A file descriptor for the controlling terminal. */ int terminal_fd; /* TERMINAL_FD's original foreground group. */ pid_t old_foreground_pgrp; /* Hand back terminal ownership to the original foreground group. */ static void restore_old_foreground_pgrp (void) { tcsetpgrp (terminal_fd, old_foreground_pgrp); } #endif /* Set if you want to disable optional thread related packets support in gdbserver, for the sake of testing GDB against stubs that don't support them. */ int disable_packet_vCont; int disable_packet_Tthread; int disable_packet_qC; int disable_packet_qfThreadInfo; /* Last status reported to GDB. */ static struct target_waitstatus last_status; static ptid_t last_ptid; static char *own_buf; static unsigned char *mem_buf; /* Structure holding information relative to a single stop reply. We keep a queue of these (really a singly-linked list) to push to GDB in non-stop mode. */ struct vstop_notif { /* Pointer to next in list. */ struct vstop_notif *next; /* Thread or process that got the event. */ ptid_t ptid; /* Event info. */ struct target_waitstatus status; }; /* The pending stop replies list head. */ static struct vstop_notif *notif_queue = NULL; /* Put a stop reply to the stop reply queue. */ static void queue_stop_reply (ptid_t ptid, struct target_waitstatus *status) { struct vstop_notif *new_notif; new_notif = malloc (sizeof (*new_notif)); new_notif->next = NULL; new_notif->ptid = ptid; new_notif->status = *status; if (notif_queue) { struct vstop_notif *tail; for (tail = notif_queue; tail && tail->next; tail = tail->next) ; tail->next = new_notif; } else notif_queue = new_notif; if (remote_debug) { int i = 0; struct vstop_notif *n; for (n = notif_queue; n; n = n->next) i++; fprintf (stderr, "pending stop replies: %d\n", i); } } /* Place an event in the stop reply queue, and push a notification if we aren't sending one yet. */ void push_event (ptid_t ptid, struct target_waitstatus *status) { queue_stop_reply (ptid, status); /* If this is the first stop reply in the queue, then inform GDB about it, by sending a Stop notification. */ if (notif_queue->next == NULL) { char *p = own_buf; strcpy (p, "Stop:"); p += strlen (p); prepare_resume_reply (p, notif_queue->ptid, &notif_queue->status); putpkt_notif (own_buf); } } /* Get rid of the currently pending stop replies for PID. If PID is -1, then apply to all processes. */ static void discard_queued_stop_replies (int pid) { struct vstop_notif *prev = NULL, *reply, *next; for (reply = notif_queue; reply; reply = next) { next = reply->next; if (pid == -1 || ptid_get_pid (reply->ptid) == pid) { if (reply == notif_queue) notif_queue = next; else prev->next = reply->next; free (reply); } else prev = reply; } } /* If there are more stop replies to push, push one now. */ static void send_next_stop_reply (char *own_buf) { if (notif_queue) prepare_resume_reply (own_buf, notif_queue->ptid, &notif_queue->status); else write_ok (own_buf); } static int target_running (void) { return all_threads.head != NULL; } static int start_inferior (char **argv) { char **new_argv = argv; if (wrapper_argv != NULL) { int i, count = 1; for (i = 0; wrapper_argv[i] != NULL; i++) count++; for (i = 0; argv[i] != NULL; i++) count++; new_argv = alloca (sizeof (char *) * count); count = 0; for (i = 0; wrapper_argv[i] != NULL; i++) new_argv[count++] = wrapper_argv[i]; for (i = 0; argv[i] != NULL; i++) new_argv[count++] = argv[i]; new_argv[count] = NULL; } #ifdef SIGTTOU signal (SIGTTOU, SIG_DFL); signal (SIGTTIN, SIG_DFL); #endif signal_pid = create_inferior (new_argv[0], new_argv); /* FIXME: we don't actually know at this point that the create actually succeeded. We won't know that until we wait. */ fprintf (stderr, "Process %s created; pid = %ld\n", argv[0], signal_pid); fflush (stderr); #ifdef SIGTTOU signal (SIGTTOU, SIG_IGN); signal (SIGTTIN, SIG_IGN); terminal_fd = fileno (stderr); old_foreground_pgrp = tcgetpgrp (terminal_fd); tcsetpgrp (terminal_fd, signal_pid); atexit (restore_old_foreground_pgrp); #endif if (wrapper_argv != NULL) { struct thread_resume resume_info; ptid_t ptid; resume_info.thread = pid_to_ptid (signal_pid); resume_info.kind = resume_continue; resume_info.sig = 0; ptid = mywait (pid_to_ptid (signal_pid), &last_status, 0, 0); if (last_status.kind != TARGET_WAITKIND_STOPPED) return signal_pid; do { (*the_target->resume) (&resume_info, 1); mywait (pid_to_ptid (signal_pid), &last_status, 0, 0); if (last_status.kind != TARGET_WAITKIND_STOPPED) return signal_pid; } while (last_status.value.sig != TARGET_SIGNAL_TRAP); return signal_pid; } /* Wait till we are at 1st instruction in program, return new pid (assuming success). */ last_ptid = mywait (pid_to_ptid (signal_pid), &last_status, 0, 0); return signal_pid; } static int attach_inferior (int pid) { /* myattach should return -1 if attaching is unsupported, 0 if it succeeded, and call error() otherwise. */ if (myattach (pid) != 0) return -1; fprintf (stderr, "Attached; pid = %d\n", pid); fflush (stderr); /* FIXME - It may be that we should get the SIGNAL_PID from the attach function, so that it can be the main thread instead of whichever we were told to attach to. */ signal_pid = pid; if (!non_stop) { last_ptid = mywait (pid_to_ptid (pid), &last_status, 0, 0); /* GDB knows to ignore the first SIGSTOP after attaching to a running process using the "attach" command, but this is different; it's just using "target remote". Pretend it's just starting up. */ if (last_status.kind == TARGET_WAITKIND_STOPPED && last_status.value.sig == TARGET_SIGNAL_STOP) last_status.value.sig = TARGET_SIGNAL_TRAP; } return 0; } extern int remote_debug; /* Decode a qXfer read request. Return 0 if everything looks OK, or -1 otherwise. */ static int decode_xfer_read (char *buf, char **annex, CORE_ADDR *ofs, unsigned int *len) { /* Extract and NUL-terminate the annex. */ *annex = buf; while (*buf && *buf != ':') buf++; if (*buf == '\0') return -1; *buf++ = 0; /* After the read marker and annex, qXfer looks like a traditional 'm' packet. */ decode_m_packet (buf, ofs, len); return 0; } /* Write the response to a successful qXfer read. Returns the length of the (binary) data stored in BUF, corresponding to as much of DATA/LEN as we could fit. IS_MORE controls the first character of the response. */ static int write_qxfer_response (char *buf, const void *data, int len, int is_more) { int out_len; if (is_more) buf[0] = 'm'; else buf[0] = 'l'; return remote_escape_output (data, len, (unsigned char *) buf + 1, &out_len, PBUFSIZ - 2) + 1; } /* Handle all of the extended 'Q' packets. */ void handle_general_set (char *own_buf) { if (strncmp ("QPassSignals:", own_buf, strlen ("QPassSignals:")) == 0) { int numsigs = (int) TARGET_SIGNAL_LAST, i; const char *p = own_buf + strlen ("QPassSignals:"); CORE_ADDR cursig; p = decode_address_to_semicolon (&cursig, p); for (i = 0; i < numsigs; i++) { if (i == cursig) { pass_signals[i] = 1; if (*p == '\0') /* Keep looping, to clear the remaining signals. */ cursig = -1; else p = decode_address_to_semicolon (&cursig, p); } else pass_signals[i] = 0; } strcpy (own_buf, "OK"); return; } if (strcmp (own_buf, "QStartNoAckMode") == 0) { if (remote_debug) { fprintf (stderr, "[noack mode enabled]\n"); fflush (stderr); } noack_mode = 1; write_ok (own_buf); return; } if (strncmp (own_buf, "QNonStop:", 9) == 0) { char *mode = own_buf + 9; int req = -1; char *req_str; if (strcmp (mode, "0") == 0) req = 0; else if (strcmp (mode, "1") == 0) req = 1; else { /* We don't know what this mode is, so complain to GDB. */ fprintf (stderr, "Unknown non-stop mode requested: %s\n", own_buf); write_enn (own_buf); return; } req_str = req ? "non-stop" : "all-stop"; if (start_non_stop (req) != 0) { fprintf (stderr, "Setting %s mode failed\n", req_str); write_enn (own_buf); return; } non_stop = req; if (remote_debug) fprintf (stderr, "[%s mode enabled]\n", req_str); write_ok (own_buf); return; } /* Otherwise we didn't know what packet it was. Say we didn't understand it. */ own_buf[0] = 0; } static const char * get_features_xml (const char *annex) { /* gdbserver_xmltarget defines what to return when looking for the "target.xml" file. Its contents can either be verbatim XML code (prefixed with a '@') or else the name of the actual XML file to be used in place of "target.xml". This variable is set up from the auto-generated init_registers_... routine for the current target. */ if (gdbserver_xmltarget && strcmp (annex, "target.xml") == 0) { if (*gdbserver_xmltarget == '@') return gdbserver_xmltarget + 1; else annex = gdbserver_xmltarget; } #ifdef USE_XML { extern const char *const xml_builtin[][2]; int i; /* Look for the annex. */ for (i = 0; xml_builtin[i][0] != NULL; i++) if (strcmp (annex, xml_builtin[i][0]) == 0) break; if (xml_builtin[i][0] != NULL) return xml_builtin[i][1]; } #endif return NULL; } void monitor_show_help (void) { monitor_output ("The following monitor commands are supported:\n"); monitor_output (" set debug <0|1>\n"); monitor_output (" Enable general debugging messages\n"); monitor_output (" set debug-hw-points <0|1>\n"); monitor_output (" Enable h/w breakpoint/watchpoint debugging messages\n"); monitor_output (" set remote-debug <0|1>\n"); monitor_output (" Enable remote protocol debugging messages\n"); monitor_output (" exit\n"); monitor_output (" Quit GDBserver\n"); } /* Subroutine of handle_search_memory to simplify it. */ static int handle_search_memory_1 (CORE_ADDR start_addr, CORE_ADDR search_space_len, gdb_byte *pattern, unsigned pattern_len, gdb_byte *search_buf, unsigned chunk_size, unsigned search_buf_size, CORE_ADDR *found_addrp) { /* Prime the search buffer. */ if (read_inferior_memory (start_addr, search_buf, search_buf_size) != 0) { warning ("Unable to access target memory at 0x%lx, halting search.", (long) start_addr); return -1; } /* Perform the search. The loop is kept simple by allocating [N + pattern-length - 1] bytes. When we've scanned N bytes we copy the trailing bytes to the start and read in another N bytes. */ while (search_space_len >= pattern_len) { gdb_byte *found_ptr; unsigned nr_search_bytes = (search_space_len < search_buf_size ? search_space_len : search_buf_size); found_ptr = memmem (search_buf, nr_search_bytes, pattern, pattern_len); if (found_ptr != NULL) { CORE_ADDR found_addr = start_addr + (found_ptr - search_buf); *found_addrp = found_addr; return 1; } /* Not found in this chunk, skip to next chunk. */ /* Don't let search_space_len wrap here, it's unsigned. */ if (search_space_len >= chunk_size) search_space_len -= chunk_size; else search_space_len = 0; if (search_space_len >= pattern_len) { unsigned keep_len = search_buf_size - chunk_size; CORE_ADDR read_addr = start_addr + chunk_size + keep_len; int nr_to_read; /* Copy the trailing part of the previous iteration to the front of the buffer for the next iteration. */ memcpy (search_buf, search_buf + chunk_size, keep_len); nr_to_read = (search_space_len - keep_len < chunk_size ? search_space_len - keep_len : chunk_size); if (read_inferior_memory (read_addr, search_buf + keep_len, nr_to_read) != 0) { warning ("Unable to access target memory at 0x%lx, halting search.", (long) read_addr); return -1; } start_addr += chunk_size; } } /* Not found. */ return 0; } /* Handle qSearch:memory packets. */ static void handle_search_memory (char *own_buf, int packet_len) { CORE_ADDR start_addr; CORE_ADDR search_space_len; gdb_byte *pattern; unsigned int pattern_len; /* NOTE: also defined in find.c testcase. */ #define SEARCH_CHUNK_SIZE 16000 const unsigned chunk_size = SEARCH_CHUNK_SIZE; /* Buffer to hold memory contents for searching. */ gdb_byte *search_buf; unsigned search_buf_size; int found; CORE_ADDR found_addr; int cmd_name_len = sizeof ("qSearch:memory:") - 1; pattern = malloc (packet_len); if (pattern == NULL) { error ("Unable to allocate memory to perform the search"); strcpy (own_buf, "E00"); return; } if (decode_search_memory_packet (own_buf + cmd_name_len, packet_len - cmd_name_len, &start_addr, &search_space_len, pattern, &pattern_len) < 0) { free (pattern); error ("Error in parsing qSearch:memory packet"); strcpy (own_buf, "E00"); return; } search_buf_size = chunk_size + pattern_len - 1; /* No point in trying to allocate a buffer larger than the search space. */ if (search_space_len < search_buf_size) search_buf_size = search_space_len; search_buf = malloc (search_buf_size); if (search_buf == NULL) { free (pattern); error ("Unable to allocate memory to perform the search"); strcpy (own_buf, "E00"); return; } found = handle_search_memory_1 (start_addr, search_space_len, pattern, pattern_len, search_buf, chunk_size, search_buf_size, &found_addr); if (found > 0) sprintf (own_buf, "1,%lx", (long) found_addr); else if (found == 0) strcpy (own_buf, "0"); else strcpy (own_buf, "E00"); free (search_buf); free (pattern); } #define require_running(BUF) \ if (!target_running ()) \ { \ write_enn (BUF); \ return; \ } /* Handle monitor commands not handled by target-specific handlers. */ static void handle_monitor_command (char *mon) { if (strcmp (mon, "set debug 1") == 0) { debug_threads = 1; monitor_output ("Debug output enabled.\n"); } else if (strcmp (mon, "set debug 0") == 0) { debug_threads = 0; monitor_output ("Debug output disabled.\n"); } else if (strcmp (mon, "set debug-hw-points 1") == 0) { debug_hw_points = 1; monitor_output ("H/W point debugging output enabled.\n"); } else if (strcmp (mon, "set debug-hw-points 0") == 0) { debug_hw_points = 0; monitor_output ("H/W point debugging output disabled.\n"); } else if (strcmp (mon, "set remote-debug 1") == 0) { remote_debug = 1; monitor_output ("Protocol debug output enabled.\n"); } else if (strcmp (mon, "set remote-debug 0") == 0) { remote_debug = 0; monitor_output ("Protocol debug output disabled.\n"); } else if (strcmp (mon, "help") == 0) monitor_show_help (); else if (strcmp (mon, "exit") == 0) exit_requested = 1; else { monitor_output ("Unknown monitor command.\n\n"); monitor_show_help (); write_enn (own_buf); } } static void handle_threads_qxfer_proper (struct buffer *buffer) { struct inferior_list_entry *thread; buffer_grow_str (buffer, "<threads>\n"); for (thread = all_threads.head; thread; thread = thread->next) { ptid_t ptid = thread_to_gdb_id ((struct thread_info *)thread); char ptid_s[100]; int core = -1; char core_s[21]; write_ptid (ptid_s, ptid); if (the_target->core_of_thread) core = (*the_target->core_of_thread) (ptid); if (core != -1) { sprintf (core_s, "%d", core); buffer_xml_printf (buffer, "<thread id=\"%s\" core=\"%s\"/>\n", ptid_s, core_s); } else { buffer_xml_printf (buffer, "<thread id=\"%s\"/>\n", ptid_s); } } buffer_grow_str0 (buffer, "</threads>\n"); } static int handle_threads_qxfer (const char *annex, unsigned char *readbuf, CORE_ADDR offset, int length) { static char *result = 0; static unsigned int result_length = 0; if (annex && strcmp (annex, "") != 0) return 0; if (offset == 0) { struct buffer buffer; /* When asked for data at offset 0, generate everything and store into 'result'. Successive reads will be served off 'result'. */ if (result) free (result); buffer_init (&buffer); handle_threads_qxfer_proper (&buffer); result = buffer_finish (&buffer); result_length = strlen (result); buffer_free (&buffer); } if (offset >= result_length) { /* We're out of data. */ free (result); result = NULL; result_length = 0; return 0; } if (length > result_length - offset) length = result_length - offset; memcpy (readbuf, result + offset, length); return length; } /* Handle all of the extended 'q' packets. */ void handle_query (char *own_buf, int packet_len, int *new_packet_len_p) { static struct inferior_list_entry *thread_ptr; /* Reply the current thread id. */ if (strcmp ("qC", own_buf) == 0 && !disable_packet_qC) { ptid_t gdb_id; require_running (own_buf); if (!ptid_equal (general_thread, null_ptid) && !ptid_equal (general_thread, minus_one_ptid)) gdb_id = general_thread; else { thread_ptr = all_threads.head; gdb_id = thread_to_gdb_id ((struct thread_info *)thread_ptr); } sprintf (own_buf, "QC"); own_buf += 2; own_buf = write_ptid (own_buf, gdb_id); return; } if (strcmp ("qSymbol::", own_buf) == 0) { if (target_running () && the_target->look_up_symbols != NULL) (*the_target->look_up_symbols) (); strcpy (own_buf, "OK"); return; } if (!disable_packet_qfThreadInfo) { if (strcmp ("qfThreadInfo", own_buf) == 0) { ptid_t gdb_id; require_running (own_buf); thread_ptr = all_threads.head; *own_buf++ = 'm'; gdb_id = thread_to_gdb_id ((struct thread_info *)thread_ptr); write_ptid (own_buf, gdb_id); thread_ptr = thread_ptr->next; return; } if (strcmp ("qsThreadInfo", own_buf) == 0) { ptid_t gdb_id; require_running (own_buf); if (thread_ptr != NULL) { *own_buf++ = 'm'; gdb_id = thread_to_gdb_id ((struct thread_info *)thread_ptr); write_ptid (own_buf, gdb_id); thread_ptr = thread_ptr->next; return; } else { sprintf (own_buf, "l"); return; } } } if (the_target->read_offsets != NULL && strcmp ("qOffsets", own_buf) == 0) { CORE_ADDR text, data; require_running (own_buf); if (the_target->read_offsets (&text, &data)) sprintf (own_buf, "Text=%lX;Data=%lX;Bss=%lX", (long)text, (long)data, (long)data); else write_enn (own_buf); return; } if (the_target->qxfer_spu != NULL && strncmp ("qXfer:spu:read:", own_buf, 15) == 0) { char *annex; int n; unsigned int len; CORE_ADDR ofs; unsigned char *spu_buf; require_running (own_buf); strcpy (own_buf, "E00"); if (decode_xfer_read (own_buf + 15, &annex, &ofs, &len) < 0) return; if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; spu_buf = malloc (len + 1); if (!spu_buf) return; n = (*the_target->qxfer_spu) (annex, spu_buf, NULL, ofs, len + 1); if (n < 0) write_enn (own_buf); else if (n > len) *new_packet_len_p = write_qxfer_response (own_buf, spu_buf, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, spu_buf, n, 0); free (spu_buf); return; } if (the_target->qxfer_spu != NULL && strncmp ("qXfer:spu:write:", own_buf, 16) == 0) { char *annex; int n; unsigned int len; CORE_ADDR ofs; unsigned char *spu_buf; require_running (own_buf); strcpy (own_buf, "E00"); spu_buf = malloc (packet_len - 15); if (!spu_buf) return; if (decode_xfer_write (own_buf + 16, packet_len - 16, &annex, &ofs, &len, spu_buf) < 0) { free (spu_buf); return; } n = (*the_target->qxfer_spu) (annex, NULL, (unsigned const char *)spu_buf, ofs, len); if (n < 0) write_enn (own_buf); else sprintf (own_buf, "%x", n); free (spu_buf); return; } if (the_target->read_auxv != NULL && strncmp ("qXfer:auxv:read:", own_buf, 16) == 0) { unsigned char *data; int n; CORE_ADDR ofs; unsigned int len; char *annex; require_running (own_buf); /* Reject any annex; grab the offset and length. */ if (decode_xfer_read (own_buf + 16, &annex, &ofs, &len) < 0 || annex[0] != '\0') { strcpy (own_buf, "E00"); return; } /* Read one extra byte, as an indicator of whether there is more. */ if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; data = malloc (len + 1); if (data == NULL) { write_enn (own_buf); return; } n = (*the_target->read_auxv) (ofs, data, len + 1); if (n < 0) write_enn (own_buf); else if (n > len) *new_packet_len_p = write_qxfer_response (own_buf, data, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, data, n, 0); free (data); return; } if (strncmp ("qXfer:features:read:", own_buf, 20) == 0) { CORE_ADDR ofs; unsigned int len, total_len; const char *document; char *annex; require_running (own_buf); /* Grab the annex, offset, and length. */ if (decode_xfer_read (own_buf + 20, &annex, &ofs, &len) < 0) { strcpy (own_buf, "E00"); return; } /* Now grab the correct annex. */ document = get_features_xml (annex); if (document == NULL) { strcpy (own_buf, "E00"); return; } total_len = strlen (document); if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; if (ofs > total_len) write_enn (own_buf); else if (len < total_len - ofs) *new_packet_len_p = write_qxfer_response (own_buf, document + ofs, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, document + ofs, total_len - ofs, 0); return; } if (strncmp ("qXfer:libraries:read:", own_buf, 21) == 0) { CORE_ADDR ofs; unsigned int len, total_len; char *document, *p; struct inferior_list_entry *dll_ptr; char *annex; require_running (own_buf); /* Reject any annex; grab the offset and length. */ if (decode_xfer_read (own_buf + 21, &annex, &ofs, &len) < 0 || annex[0] != '\0') { strcpy (own_buf, "E00"); return; } /* Over-estimate the necessary memory. Assume that every character in the library name must be escaped. */ total_len = 64; for (dll_ptr = all_dlls.head; dll_ptr != NULL; dll_ptr = dll_ptr->next) total_len += 128 + 6 * strlen (((struct dll_info *) dll_ptr)->name); document = malloc (total_len); if (document == NULL) { write_enn (own_buf); return; } strcpy (document, "<library-list>\n"); p = document + strlen (document); for (dll_ptr = all_dlls.head; dll_ptr != NULL; dll_ptr = dll_ptr->next) { struct dll_info *dll = (struct dll_info *) dll_ptr; char *name; strcpy (p, " <library name=\""); p = p + strlen (p); name = xml_escape_text (dll->name); strcpy (p, name); free (name); p = p + strlen (p); strcpy (p, "\"><segment address=\""); p = p + strlen (p); sprintf (p, "0x%lx", (long) dll->base_addr); p = p + strlen (p); strcpy (p, "\"/></library>\n"); p = p + strlen (p); } strcpy (p, "</library-list>\n"); total_len = strlen (document); if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; if (ofs > total_len) write_enn (own_buf); else if (len < total_len - ofs) *new_packet_len_p = write_qxfer_response (own_buf, document + ofs, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, document + ofs, total_len - ofs, 0); free (document); return; } if (the_target->qxfer_osdata != NULL && strncmp ("qXfer:osdata:read:", own_buf, 18) == 0) { char *annex; int n; unsigned int len; CORE_ADDR ofs; unsigned char *workbuf; strcpy (own_buf, "E00"); if (decode_xfer_read (own_buf + 18, &annex, &ofs, &len) < 0) return; if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; workbuf = malloc (len + 1); if (!workbuf) return; n = (*the_target->qxfer_osdata) (annex, workbuf, NULL, ofs, len + 1); if (n < 0) write_enn (own_buf); else if (n > len) *new_packet_len_p = write_qxfer_response (own_buf, workbuf, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, workbuf, n, 0); free (workbuf); return; } if (the_target->qxfer_siginfo != NULL && strncmp ("qXfer:siginfo:read:", own_buf, 19) == 0) { unsigned char *data; int n; CORE_ADDR ofs; unsigned int len; char *annex; require_running (own_buf); /* Reject any annex; grab the offset and length. */ if (decode_xfer_read (own_buf + 19, &annex, &ofs, &len) < 0 || annex[0] != '\0') { strcpy (own_buf, "E00"); return; } /* Read one extra byte, as an indicator of whether there is more. */ if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; data = malloc (len + 1); if (!data) return; n = (*the_target->qxfer_siginfo) (annex, data, NULL, ofs, len + 1); if (n < 0) write_enn (own_buf); else if (n > len) *new_packet_len_p = write_qxfer_response (own_buf, data, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, data, n, 0); free (data); return; } if (the_target->qxfer_siginfo != NULL && strncmp ("qXfer:siginfo:write:", own_buf, 20) == 0) { char *annex; int n; unsigned int len; CORE_ADDR ofs; unsigned char *data; require_running (own_buf); strcpy (own_buf, "E00"); data = malloc (packet_len - 19); if (!data) return; if (decode_xfer_write (own_buf + 20, packet_len - 20, &annex, &ofs, &len, data) < 0) { free (data); return; } n = (*the_target->qxfer_siginfo) (annex, NULL, (unsigned const char *)data, ofs, len); if (n < 0) write_enn (own_buf); else sprintf (own_buf, "%x", n); free (data); return; } if (strncmp ("qXfer:threads:read:", own_buf, 19) == 0) { unsigned char *data; int n; CORE_ADDR ofs; unsigned int len; char *annex; require_running (own_buf); /* Reject any annex; grab the offset and length. */ if (decode_xfer_read (own_buf + 19, &annex, &ofs, &len) < 0 || annex[0] != '\0') { strcpy (own_buf, "E00"); return; } /* Read one extra byte, as an indicator of whether there is more. */ if (len > PBUFSIZ - 2) len = PBUFSIZ - 2; data = malloc (len + 1); if (!data) return; n = handle_threads_qxfer (annex, data, ofs, len + 1); if (n < 0) write_enn (own_buf); else if (n > len) *new_packet_len_p = write_qxfer_response (own_buf, data, len, 1); else *new_packet_len_p = write_qxfer_response (own_buf, data, n, 0); free (data); return; } /* Protocol features query. */ if (strncmp ("qSupported", own_buf, 10) == 0 && (own_buf[10] == ':' || own_buf[10] == '\0')) { char *p = &own_buf[10]; /* Process each feature being provided by GDB. The first feature will follow a ':', and latter features will follow ';'. */ if (*p == ':') for (p = strtok (p + 1, ";"); p != NULL; p = strtok (NULL, ";")) { if (strcmp (p, "multiprocess+") == 0) { /* GDB supports and wants multi-process support if possible. */ if (target_supports_multi_process ()) multi_process = 1; } } sprintf (own_buf, "PacketSize=%x;QPassSignals+", PBUFSIZ - 1); /* We do not have any hook to indicate whether the target backend supports qXfer:libraries:read, so always report it. */ strcat (own_buf, ";qXfer:libraries:read+"); if (the_target->read_auxv != NULL) strcat (own_buf, ";qXfer:auxv:read+"); if (the_target->qxfer_spu != NULL) strcat (own_buf, ";qXfer:spu:read+;qXfer:spu:write+"); if (the_target->qxfer_siginfo != NULL) strcat (own_buf, ";qXfer:siginfo:read+;qXfer:siginfo:write+"); /* We always report qXfer:features:read, as targets may install XML files on a subsequent call to arch_setup. If we reported to GDB on startup that we don't support qXfer:feature:read at all, we will never be re-queried. */ strcat (own_buf, ";qXfer:features:read+"); if (transport_is_reliable) strcat (own_buf, ";QStartNoAckMode+"); if (the_target->qxfer_osdata != NULL) strcat (own_buf, ";qXfer:osdata:read+"); if (target_supports_multi_process ()) strcat (own_buf, ";multiprocess+"); if (target_supports_non_stop ()) strcat (own_buf, ";QNonStop+"); strcat (own_buf, ";qXfer:threads:read+"); return; } /* Thread-local storage support. */ if (the_target->get_tls_address != NULL && strncmp ("qGetTLSAddr:", own_buf, 12) == 0) { char *p = own_buf + 12; CORE_ADDR parts[2], address = 0; int i, err; ptid_t ptid = null_ptid; require_running (own_buf); for (i = 0; i < 3; i++) { char *p2; int len; if (p == NULL) break; p2 = strchr (p, ','); if (p2) { len = p2 - p; p2++; } else { len = strlen (p); p2 = NULL; } if (i == 0) ptid = read_ptid (p, NULL); else decode_address (&parts[i - 1], p, len); p = p2; } if (p != NULL || i < 3) err = 1; else { struct thread_info *thread = find_thread_ptid (ptid); if (thread == NULL) err = 2; else err = the_target->get_tls_address (thread, parts[0], parts[1], &address); } if (err == 0) { sprintf (own_buf, "%llx", address); return; } else if (err > 0) { write_enn (own_buf); return; } /* Otherwise, pretend we do not understand this packet. */ } /* Handle "monitor" commands. */ if (strncmp ("qRcmd,", own_buf, 6) == 0) { char *mon = malloc (PBUFSIZ); int len = strlen (own_buf + 6); if (mon == NULL) { write_enn (own_buf); return; } if ((len % 2) != 0 || unhexify (mon, own_buf + 6, len / 2) != len / 2) { write_enn (own_buf); free (mon); return; } mon[len / 2] = '\0'; write_ok (own_buf); if (the_target->handle_monitor_command == NULL || (*the_target->handle_monitor_command) (mon) == 0) /* Default processing. */ handle_monitor_command (mon); free (mon); return; } if (strncmp ("qSearch:memory:", own_buf, sizeof ("qSearch:memory:") - 1) == 0) { require_running (own_buf); handle_search_memory (own_buf, packet_len); return; } if (strcmp (own_buf, "qAttached") == 0 || strncmp (own_buf, "qAttached:", sizeof ("qAttached:") - 1) == 0) { struct process_info *process; if (own_buf[sizeof ("qAttached") - 1]) { int pid = strtoul (own_buf + sizeof ("qAttached:") - 1, NULL, 16); process = (struct process_info *) find_inferior_id (&all_processes, pid_to_ptid (pid)); } else { require_running (own_buf); process = current_process (); } if (process == NULL) { write_enn (own_buf); return; } strcpy (own_buf, process->attached ? "1" : "0"); return; } /* Otherwise we didn't know what packet it was. Say we didn't understand it. */ own_buf[0] = 0; } /* Parse vCont packets. */ void handle_v_cont (char *own_buf) { char *p, *q; int n = 0, i = 0; struct thread_resume *resume_info; struct thread_resume default_action = {{0}}; /* Count the number of semicolons in the packet. There should be one for every action. */ p = &own_buf[5]; while (p) { n++; p++; p = strchr (p, ';'); } resume_info = malloc (n * sizeof (resume_info[0])); if (resume_info == NULL) goto err; p = &own_buf[5]; while (*p) { p++; if (p[0] == 's' || p[0] == 'S') resume_info[i].kind = resume_step; else if (p[0] == 'c' || p[0] == 'C') resume_info[i].kind = resume_continue; else if (p[0] == 't') resume_info[i].kind = resume_stop; else goto err; if (p[0] == 'S' || p[0] == 'C') { int sig; sig = strtol (p + 1, &q, 16); if (p == q) goto err; p = q; if (!target_signal_to_host_p (sig)) goto err; resume_info[i].sig = target_signal_to_host (sig); } else { resume_info[i].sig = 0; p = p + 1; } if (p[0] == 0) { resume_info[i].thread = minus_one_ptid; default_action = resume_info[i]; /* Note: we don't increment i here, we'll overwrite this entry the next time through. */ } else if (p[0] == ':') { ptid_t ptid = read_ptid (p + 1, &q); if (p == q) goto err; p = q; if (p[0] != ';' && p[0] != 0) goto err; resume_info[i].thread = ptid; i++; } } if (i < n) resume_info[i] = default_action; /* Still used in occasional places in the backend. */ if (n == 1 && !ptid_equal (resume_info[0].thread, minus_one_ptid) && resume_info[0].kind != resume_stop) cont_thread = resume_info[0].thread; else cont_thread = minus_one_ptid; set_desired_inferior (0); if (!non_stop) enable_async_io (); (*the_target->resume) (resume_info, n); free (resume_info); if (non_stop) write_ok (own_buf); else { last_ptid = mywait (minus_one_ptid, &last_status, 0, 1); prepare_resume_reply (own_buf, last_ptid, &last_status); disable_async_io (); } return; err: write_enn (own_buf); free (resume_info); return; } /* Attach to a new program. Return 1 if successful, 0 if failure. */ int handle_v_attach (char *own_buf) { int pid; pid = strtol (own_buf + 8, NULL, 16); if (pid != 0 && attach_inferior (pid) == 0) { /* Don't report shared library events after attaching, even if some libraries are preloaded. GDB will always poll the library list. Avoids the "stopped by shared library event" notice on the GDB side. */ dlls_changed = 0; if (non_stop) { /* In non-stop, we don't send a resume reply. Stop events will follow up using the normal notification mechanism. */ write_ok (own_buf); } else prepare_resume_reply (own_buf, last_ptid, &last_status); return 1; } else { write_enn (own_buf); return 0; } } /* Run a new program. Return 1 if successful, 0 if failure. */ static int handle_v_run (char *own_buf) { char *p, *next_p, **new_argv; int i, new_argc; new_argc = 0; for (p = own_buf + strlen ("vRun;"); p && *p; p = strchr (p, ';')) { p++; new_argc++; } new_argv = calloc (new_argc + 2, sizeof (char *)); if (new_argv == NULL) { write_enn (own_buf); return 0; } i = 0; for (p = own_buf + strlen ("vRun;"); *p; p = next_p) { next_p = strchr (p, ';'); if (next_p == NULL) next_p = p + strlen (p); if (i == 0 && p == next_p) new_argv[i] = NULL; else { /* FIXME: Fail request if out of memory instead of dying. */ new_argv[i] = xmalloc (1 + (next_p - p) / 2); unhexify (new_argv[i], p, (next_p - p) / 2); new_argv[i][(next_p - p) / 2] = '\0'; } if (*next_p) next_p++; i++; } new_argv[i] = NULL; if (new_argv[0] == NULL) { /* GDB didn't specify a program to run. Use the program from the last run with the new argument list. */ if (program_argv == NULL) { /* FIXME: new_argv memory leak */ write_enn (own_buf); return 0; } new_argv[0] = strdup (program_argv[0]); if (new_argv[0] == NULL) { /* FIXME: new_argv memory leak */ write_enn (own_buf); return 0; } } /* Free the old argv and install the new one. */ freeargv (program_argv); program_argv = new_argv; start_inferior (program_argv); if (last_status.kind == TARGET_WAITKIND_STOPPED) { prepare_resume_reply (own_buf, last_ptid, &last_status); /* In non-stop, sending a resume reply doesn't set the general thread, but GDB assumes a vRun sets it (this is so GDB can query which is the main thread of the new inferior. */ if (non_stop) general_thread = last_ptid; return 1; } else { write_enn (own_buf); return 0; } } /* Kill process. Return 1 if successful, 0 if failure. */ int handle_v_kill (char *own_buf) { int pid; char *p = &own_buf[6]; if (multi_process) pid = strtol (p, NULL, 16); else pid = signal_pid; if (pid != 0 && kill_inferior (pid) == 0) { last_status.kind = TARGET_WAITKIND_SIGNALLED; last_status.value.sig = TARGET_SIGNAL_KILL; last_ptid = pid_to_ptid (pid); discard_queued_stop_replies (pid); write_ok (own_buf); return 1; } else { write_enn (own_buf); return 0; } } /* Handle a 'vStopped' packet. */ static void handle_v_stopped (char *own_buf) { /* If we're waiting for GDB to acknowledge a pending stop reply, consider that done. */ if (notif_queue) { struct vstop_notif *head; if (remote_debug) fprintf (stderr, "vStopped: acking %s\n", target_pid_to_str (notif_queue->ptid)); head = notif_queue; notif_queue = notif_queue->next; free (head); } /* Push another stop reply, or if there are no more left, an OK. */ send_next_stop_reply (own_buf); } /* Handle all of the extended 'v' packets. */ void handle_v_requests (char *own_buf, int packet_len, int *new_packet_len) { if (!disable_packet_vCont) { if (strncmp (own_buf, "vCont;", 6) == 0) { require_running (own_buf); handle_v_cont (own_buf); return; } if (strncmp (own_buf, "vCont?", 6) == 0) { strcpy (own_buf, "vCont;c;C;s;S;t"); return; } } if (strncmp (own_buf, "vFile:", 6) == 0 && handle_vFile (own_buf, packet_len, new_packet_len)) return; if (strncmp (own_buf, "vAttach;", 8) == 0) { if (!multi_process && target_running ()) { fprintf (stderr, "Already debugging a process\n"); write_enn (own_buf); return; } handle_v_attach (own_buf); return; } if (strncmp (own_buf, "vRun;", 5) == 0) { if (!multi_process && target_running ()) { fprintf (stderr, "Already debugging a process\n"); write_enn (own_buf); return; } handle_v_run (own_buf); return; } if (strncmp (own_buf, "vKill;", 6) == 0) { if (!target_running ()) { fprintf (stderr, "No process to kill\n"); write_enn (own_buf); return; } handle_v_kill (own_buf); return; } if (strncmp (own_buf, "vStopped", 8) == 0) { handle_v_stopped (own_buf); return; } /* Otherwise we didn't know what packet it was. Say we didn't understand it. */ own_buf[0] = 0; return; } /* Resume inferior and wait for another event. In non-stop mode, don't really wait here, but return immediatelly to the event loop. */ void myresume (char *own_buf, int step, int sig) { struct thread_resume resume_info[2]; int n = 0; int valid_cont_thread; set_desired_inferior (0); valid_cont_thread = (!ptid_equal (cont_thread, null_ptid) && !ptid_equal (cont_thread, minus_one_ptid)); if (step || sig || valid_cont_thread) { resume_info[0].thread = ((struct inferior_list_entry *) current_inferior)->id; if (step) resume_info[0].kind = resume_step; else resume_info[0].kind = resume_continue; resume_info[0].sig = sig; n++; } if (!valid_cont_thread) { resume_info[n].thread = minus_one_ptid; resume_info[n].kind = resume_continue; resume_info[n].sig = 0; n++; } if (!non_stop) enable_async_io (); (*the_target->resume) (resume_info, n); if (non_stop) write_ok (own_buf); else { last_ptid = mywait (minus_one_ptid, &last_status, 0, 1); prepare_resume_reply (own_buf, last_ptid, &last_status); disable_async_io (); } } /* Callback for for_each_inferior. Make a new stop reply for each stopped thread. */ static int queue_stop_reply_callback (struct inferior_list_entry *entry, void *arg) { int pid = * (int *) arg; if (pid == -1 || ptid_get_pid (entry->id) == pid) { struct target_waitstatus status; status.kind = TARGET_WAITKIND_STOPPED; status.value.sig = TARGET_SIGNAL_TRAP; /* Pass the last stop reply back to GDB, but don't notify. */ queue_stop_reply (entry->id, &status); } return 0; } /* Status handler for the '?' packet. */ static void handle_status (char *own_buf) { struct target_waitstatus status; status.kind = TARGET_WAITKIND_STOPPED; status.value.sig = TARGET_SIGNAL_TRAP; /* In non-stop mode, we must send a stop reply for each stopped thread. In all-stop mode, just send one for the first stopped thread we find. */ if (non_stop) { int pid = -1; discard_queued_stop_replies (pid); find_inferior (&all_threads, queue_stop_reply_callback, &pid); /* The first is sent immediatly. OK is sent if there is no stopped thread, which is the same handling of the vStopped packet (by design). */ send_next_stop_reply (own_buf); } else { if (all_threads.head) prepare_resume_reply (own_buf, all_threads.head->id, &status); else strcpy (own_buf, "W00"); } } static void gdbserver_version (void) { printf ("GNU gdbserver %s%s\n" "Copyright (C) 2010 Free Software Foundation, Inc.\n" "gdbserver is free software, covered by the GNU General Public License.\n" "This gdbserver was configured as \"%s\"\n", PKGVERSION, version, host_name); } static void gdbserver_usage (FILE *stream) { fprintf (stream, "Usage:\tgdbserver [OPTIONS] COMM PROG [ARGS ...]\n" "\tgdbserver [OPTIONS] --attach COMM PID\n" "\tgdbserver [OPTIONS] --multi COMM\n" "\n" "COMM may either be a tty device (for serial debugging), or \n" "HOST:PORT to listen for a TCP connection.\n" "\n" "Options:\n" " --debug Enable general debugging output.\n" " --remote-debug Enable remote protocol debugging output.\n" " --version Display version information and exit.\n" " --wrapper WRAPPER -- Run WRAPPER to start new programs.\n"); if (REPORT_BUGS_TO[0] && stream == stdout) fprintf (stream, "Report bugs to \"%s\".\n", REPORT_BUGS_TO); } static void gdbserver_show_disableable (FILE *stream) { fprintf (stream, "Disableable packets:\n" " vCont \tAll vCont packets\n" " qC \tQuerying the current thread\n" " qfThreadInfo\tThread listing\n" " Tthread \tPassing the thread specifier in the T stop reply packet\n" " threads \tAll of the above\n"); } #undef require_running #define require_running(BUF) \ if (!target_running ()) \ { \ write_enn (BUF); \ break; \ } static int first_thread_of (struct inferior_list_entry *entry, void *args) { int pid = * (int *) args; if (ptid_get_pid (entry->id) == pid) return 1; return 0; } static void kill_inferior_callback (struct inferior_list_entry *entry) { struct process_info *process = (struct process_info *) entry; int pid = ptid_get_pid (process->head.id); kill_inferior (pid); discard_queued_stop_replies (pid); } /* Callback for for_each_inferior to detach or kill the inferior, depending on whether we attached to it or not. We inform the user whether we're detaching or killing the process as this is only called when gdbserver is about to exit. */ static void detach_or_kill_inferior_callback (struct inferior_list_entry *entry) { struct process_info *process = (struct process_info *) entry; int pid = ptid_get_pid (process->head.id); if (process->attached) detach_inferior (pid); else kill_inferior (pid); discard_queued_stop_replies (pid); } /* for_each_inferior callback for detach_or_kill_for_exit to print the pids of started inferiors. */ static void print_started_pid (struct inferior_list_entry *entry) { struct process_info *process = (struct process_info *) entry; if (! process->attached) { int pid = ptid_get_pid (process->head.id); fprintf (stderr, " %d", pid); } } /* for_each_inferior callback for detach_or_kill_for_exit to print the pids of attached inferiors. */ static void print_attached_pid (struct inferior_list_entry *entry) { struct process_info *process = (struct process_info *) entry; if (process->attached) { int pid = ptid_get_pid (process->head.id); fprintf (stderr, " %d", pid); } } /* Call this when exiting gdbserver with possible inferiors that need to be killed or detached from. */ static void detach_or_kill_for_exit (void) { /* First print a list of the inferiors we will be killing/detaching. This is to assist the user, for example, in case the inferior unexpectedly dies after we exit: did we screw up or did the inferior exit on its own? Having this info will save some head-scratching. */ if (have_started_inferiors_p ()) { fprintf (stderr, "Killing process(es):"); for_each_inferior (&all_processes, print_started_pid); fprintf (stderr, "\n"); } if (have_attached_inferiors_p ()) { fprintf (stderr, "Detaching process(es):"); for_each_inferior (&all_processes, print_attached_pid); fprintf (stderr, "\n"); } /* Now we can kill or detach the inferiors. */ for_each_inferior (&all_processes, detach_or_kill_inferior_callback); } static void join_inferiors_callback (struct inferior_list_entry *entry) { struct process_info *process = (struct process_info *) entry; /* If we are attached, then we can exit. Otherwise, we need to hang around doing nothing, until the child is gone. */ if (!process->attached) join_inferior (ptid_get_pid (process->head.id)); } int main (int argc, char *argv[]) { int bad_attach; int pid; char *arg_end, *port; char **next_arg = &argv[1]; int multi_mode = 0; int attach = 0; int was_running; while (*next_arg != NULL && **next_arg == '-') { if (strcmp (*next_arg, "--version") == 0) { gdbserver_version (); exit (0); } else if (strcmp (*next_arg, "--help") == 0) { gdbserver_usage (stdout); exit (0); } else if (strcmp (*next_arg, "--attach") == 0) attach = 1; else if (strcmp (*next_arg, "--multi") == 0) multi_mode = 1; else if (strcmp (*next_arg, "--wrapper") == 0) { next_arg++; wrapper_argv = next_arg; while (*next_arg != NULL && strcmp (*next_arg, "--") != 0) next_arg++; if (next_arg == wrapper_argv || *next_arg == NULL) { gdbserver_usage (stderr); exit (1); } /* Consume the "--". */ *next_arg = NULL; } else if (strcmp (*next_arg, "--debug") == 0) debug_threads = 1; else if (strcmp (*next_arg, "--remote-debug") == 0) remote_debug = 1; else if (strcmp (*next_arg, "--disable-packet") == 0) { gdbserver_show_disableable (stdout); exit (0); } else if (strncmp (*next_arg, "--disable-packet=", sizeof ("--disable-packet=") - 1) == 0) { char *packets, *tok; packets = *next_arg += sizeof ("--disable-packet=") - 1; for (tok = strtok (packets, ","); tok != NULL; tok = strtok (NULL, ",")) { if (strcmp ("vCont", tok) == 0) disable_packet_vCont = 1; else if (strcmp ("Tthread", tok) == 0) disable_packet_Tthread = 1; else if (strcmp ("qC", tok) == 0) disable_packet_qC = 1; else if (strcmp ("qfThreadInfo", tok) == 0) disable_packet_qfThreadInfo = 1; else if (strcmp ("threads", tok) == 0) { disable_packet_vCont = 1; disable_packet_Tthread = 1; disable_packet_qC = 1; disable_packet_qfThreadInfo = 1; } else { fprintf (stderr, "Don't know how to disable \"%s\".\n\n", tok); gdbserver_show_disableable (stderr); exit (1); } } } else { fprintf (stderr, "Unknown argument: %s\n", *next_arg); exit (1); } next_arg++; continue; } if (setjmp (toplevel)) { fprintf (stderr, "Exiting\n"); exit (1); } port = *next_arg; next_arg++; if (port == NULL || (!attach && !multi_mode && *next_arg == NULL)) { gdbserver_usage (stderr); exit (1); } bad_attach = 0; pid = 0; /* --attach used to come after PORT, so allow it there for compatibility. */ if (*next_arg != NULL && strcmp (*next_arg, "--attach") == 0) { attach = 1; next_arg++; } if (attach && (*next_arg == NULL || (*next_arg)[0] == '\0' || (pid = strtoul (*next_arg, &arg_end, 0)) == 0 || *arg_end != '\0' || next_arg[1] != NULL)) bad_attach = 1; if (bad_attach) { gdbserver_usage (stderr); exit (1); } initialize_inferiors (); initialize_async_io (); initialize_low (); own_buf = xmalloc (PBUFSIZ + 1); mem_buf = xmalloc (PBUFSIZ); if (pid == 0 && *next_arg != NULL) { int i, n; n = argc - (next_arg - argv); program_argv = xmalloc (sizeof (char *) * (n + 1)); for (i = 0; i < n; i++) program_argv[i] = xstrdup (next_arg[i]); program_argv[i] = NULL; /* Wait till we are at first instruction in program. */ start_inferior (program_argv); /* We are now (hopefully) stopped at the first instruction of the target process. This assumes that the target process was successfully created. */ } else if (pid != 0) { if (attach_inferior (pid) == -1) error ("Attaching not supported on this target"); /* Otherwise succeeded. */ } else { last_status.kind = TARGET_WAITKIND_EXITED; last_status.value.integer = 0; last_ptid = minus_one_ptid; } /* Don't report shared library events on the initial connection, even if some libraries are preloaded. Avoids the "stopped by shared library event" notice on gdb side. */ dlls_changed = 0; if (setjmp (toplevel)) { detach_or_kill_for_exit (); exit (1); } if (last_status.kind == TARGET_WAITKIND_EXITED || last_status.kind == TARGET_WAITKIND_SIGNALLED) was_running = 0; else was_running = 1; if (!was_running && !multi_mode) { fprintf (stderr, "No program to debug. GDBserver exiting.\n"); exit (1); } while (1) { noack_mode = 0; multi_process = 0; non_stop = 0; remote_open (port); if (setjmp (toplevel) != 0) { /* An error occurred. */ if (response_needed) { write_enn (own_buf); putpkt (own_buf); } } /* Wait for events. This will return when all event sources are removed from the event loop. */ start_event_loop (); /* If an exit was requested (using the "monitor exit" command), terminate now. The only other way to get here is for getpkt to fail; close the connection and reopen it at the top of the loop. */ if (exit_requested) { detach_or_kill_for_exit (); exit (0); } else fprintf (stderr, "Remote side has terminated connection. " "GDBserver will reopen the connection.\n"); } } /* Event loop callback that handles a serial event. The first byte in the serial buffer gets us here. We expect characters to arrive at a brisk pace, so we read the rest of the packet with a blocking getpkt call. */ static void process_serial_event (void) { char ch; int i = 0; int signal; unsigned int len; CORE_ADDR mem_addr; int pid; unsigned char sig; int packet_len; int new_packet_len = -1; /* Used to decide when gdbserver should exit in multi-mode/remote. */ static int have_ran = 0; if (!have_ran) have_ran = target_running (); disable_async_io (); response_needed = 0; packet_len = getpkt (own_buf); if (packet_len <= 0) { target_async (0); remote_close (); return; } response_needed = 1; i = 0; ch = own_buf[i++]; switch (ch) { case 'q': handle_query (own_buf, packet_len, &new_packet_len); break; case 'Q': handle_general_set (own_buf); break; case 'D': require_running (own_buf); if (multi_process) { i++; /* skip ';' */ pid = strtol (&own_buf[i], NULL, 16); } else pid = ptid_get_pid (((struct inferior_list_entry *) current_inferior)->id); fprintf (stderr, "Detaching from process %d\n", pid); if (detach_inferior (pid) != 0) write_enn (own_buf); else { discard_queued_stop_replies (pid); write_ok (own_buf); if (extended_protocol) { /* Treat this like a normal program exit. */ last_status.kind = TARGET_WAITKIND_EXITED; last_status.value.integer = 0; last_ptid = pid_to_ptid (pid); current_inferior = NULL; } else { putpkt (own_buf); remote_close (); /* If we are attached, then we can exit. Otherwise, we need to hang around doing nothing, until the child is gone. */ for_each_inferior (&all_processes, join_inferiors_callback); exit (0); } } break; case '!': extended_protocol = 1; write_ok (own_buf); break; case '?': handle_status (own_buf); break; case 'H': if (own_buf[1] == 'c' || own_buf[1] == 'g' || own_buf[1] == 's') { ptid_t gdb_id, thread_id; int pid; require_running (own_buf); gdb_id = read_ptid (&own_buf[2], NULL); pid = ptid_get_pid (gdb_id); if (ptid_equal (gdb_id, null_ptid) || ptid_equal (gdb_id, minus_one_ptid)) thread_id = null_ptid; else if (pid != 0 && ptid_equal (pid_to_ptid (pid), gdb_id)) { struct thread_info *thread = (struct thread_info *) find_inferior (&all_threads, first_thread_of, &pid); if (!thread) { write_enn (own_buf); break; } thread_id = ((struct inferior_list_entry *)thread)->id; } else { thread_id = gdb_id_to_thread_id (gdb_id); if (ptid_equal (thread_id, null_ptid)) { write_enn (own_buf); break; } } if (own_buf[1] == 'g') { if (ptid_equal (thread_id, null_ptid)) { /* GDB is telling us to choose any thread. Check if the currently selected thread is still valid. If it is not, select the first available. */ struct thread_info *thread = (struct thread_info *) find_inferior_id (&all_threads, general_thread); if (thread == NULL) thread_id = all_threads.head->id; } general_thread = thread_id; set_desired_inferior (1); } else if (own_buf[1] == 'c') cont_thread = thread_id; else if (own_buf[1] == 's') step_thread = thread_id; write_ok (own_buf); } else { /* Silently ignore it so that gdb can extend the protocol without compatibility headaches. */ own_buf[0] = '\0'; } break; case 'g': { struct regcache *regcache; require_running (own_buf); set_desired_inferior (1); regcache = get_thread_regcache (current_inferior, 1); registers_to_string (regcache, own_buf); } break; case 'G': { struct regcache *regcache; require_running (own_buf); set_desired_inferior (1); regcache = get_thread_regcache (current_inferior, 1); registers_from_string (regcache, &own_buf[1]); write_ok (own_buf); } break; case 'm': require_running (own_buf); decode_m_packet (&own_buf[1], &mem_addr, &len); if (read_inferior_memory (mem_addr, mem_buf, len) == 0) convert_int_to_ascii (mem_buf, own_buf, len); else write_enn (own_buf); break; case 'M': require_running (own_buf); decode_M_packet (&own_buf[1], &mem_addr, &len, mem_buf); if (write_inferior_memory (mem_addr, mem_buf, len) == 0) write_ok (own_buf); else write_enn (own_buf); break; case 'X': require_running (own_buf); if (decode_X_packet (&own_buf[1], packet_len - 1, &mem_addr, &len, mem_buf) < 0 || write_inferior_memory (mem_addr, mem_buf, len) != 0) write_enn (own_buf); else write_ok (own_buf); break; case 'C': require_running (own_buf); convert_ascii_to_int (own_buf + 1, &sig, 1); if (target_signal_to_host_p (sig)) signal = target_signal_to_host (sig); else signal = 0; myresume (own_buf, 0, signal); break; case 'S': require_running (own_buf); convert_ascii_to_int (own_buf + 1, &sig, 1); if (target_signal_to_host_p (sig)) signal = target_signal_to_host (sig); else signal = 0; myresume (own_buf, 1, signal); break; case 'c': require_running (own_buf); signal = 0; myresume (own_buf, 0, signal); break; case 's': require_running (own_buf); signal = 0; myresume (own_buf, 1, signal); break; case 'Z': /* insert_ ... */ /* Fallthrough. */ case 'z': /* remove_ ... */ { char *lenptr; char *dataptr; CORE_ADDR addr = strtoul (&own_buf[3], &lenptr, 16); int len = strtol (lenptr + 1, &dataptr, 16); char type = own_buf[1]; int res; const int insert = ch == 'Z'; /* Default to unrecognized/unsupported. */ res = 1; switch (type) { case '0': /* software-breakpoint */ case '1': /* hardware-breakpoint */ case '2': /* write watchpoint */ case '3': /* read watchpoint */ case '4': /* access watchpoint */ require_running (own_buf); if (insert && the_target->insert_point != NULL) res = (*the_target->insert_point) (type, addr, len); else if (!insert && the_target->remove_point != NULL) res = (*the_target->remove_point) (type, addr, len); break; default: break; } if (res == 0) write_ok (own_buf); else if (res == 1) /* Unsupported. */ own_buf[0] = '\0'; else write_enn (own_buf); break; } case 'k': response_needed = 0; if (!target_running ()) /* The packet we received doesn't make sense - but we can't reply to it, either. */ return; fprintf (stderr, "Killing all inferiors\n"); for_each_inferior (&all_processes, kill_inferior_callback); /* When using the extended protocol, we wait with no program running. The traditional protocol will exit instead. */ if (extended_protocol) { last_status.kind = TARGET_WAITKIND_EXITED; last_status.value.sig = TARGET_SIGNAL_KILL; return; } else { exit (0); break; } case 'T': { ptid_t gdb_id, thread_id; require_running (own_buf); gdb_id = read_ptid (&own_buf[1], NULL); thread_id = gdb_id_to_thread_id (gdb_id); if (ptid_equal (thread_id, null_ptid)) { write_enn (own_buf); break; } if (mythread_alive (thread_id)) write_ok (own_buf); else write_enn (own_buf); } break; case 'R': response_needed = 0; /* Restarting the inferior is only supported in the extended protocol. */ if (extended_protocol) { if (target_running ()) for_each_inferior (&all_processes, kill_inferior_callback); fprintf (stderr, "GDBserver restarting\n"); /* Wait till we are at 1st instruction in prog. */ if (program_argv != NULL) start_inferior (program_argv); else { last_status.kind = TARGET_WAITKIND_EXITED; last_status.value.sig = TARGET_SIGNAL_KILL; } return; } else { /* It is a request we don't understand. Respond with an empty packet so that gdb knows that we don't support this request. */ own_buf[0] = '\0'; break; } case 'v': /* Extended (long) request. */ handle_v_requests (own_buf, packet_len, &new_packet_len); break; default: /* It is a request we don't understand. Respond with an empty packet so that gdb knows that we don't support this request. */ own_buf[0] = '\0'; break; } if (new_packet_len != -1) putpkt_binary (own_buf, new_packet_len); else putpkt (own_buf); response_needed = 0; if (!extended_protocol && have_ran && !target_running ()) { /* In non-stop, defer exiting until GDB had a chance to query the whole vStopped list (until it gets an OK). */ if (!notif_queue) { fprintf (stderr, "GDBserver exiting\n"); remote_close (); exit (0); } } } /* Event-loop callback for serial events. */ void handle_serial_event (int err, gdb_client_data client_data) { if (debug_threads) fprintf (stderr, "handling possible serial event\n"); /* Really handle it. */ process_serial_event (); /* Be sure to not change the selected inferior behind GDB's back. Important in the non-stop mode asynchronous protocol. */ set_desired_inferior (1); } /* Event-loop callback for target events. */ void handle_target_event (int err, gdb_client_data client_data) { if (debug_threads) fprintf (stderr, "handling possible target event\n"); last_ptid = mywait (minus_one_ptid, &last_status, TARGET_WNOHANG, 1); if (last_status.kind != TARGET_WAITKIND_IGNORE) { /* Something interesting. Tell GDB about it. */ push_event (last_ptid, &last_status); } /* Be sure to not change the selected inferior behind GDB's back. Important in the non-stop mode asynchronous protocol. */ set_desired_inferior (1); }
myri/lanai-gdb
gdb/gdbserver/server.c
C
gpl-2.0
64,712
๏ปฟusing System.Collections.Immutable; using System.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; namespace VSDiagnostics.Diagnostics.General.TypeToVar { [DiagnosticAnalyzer(LanguageNames.CSharp)] public class TypeToVarAnalyzer : DiagnosticAnalyzer { private const string DiagnosticId = nameof(TypeToVarAnalyzer); private const DiagnosticSeverity Severity = DiagnosticSeverity.Hidden; private static readonly string Category = VSDiagnosticsResources.GeneralCategory; private static readonly string Message = VSDiagnosticsResources.TypeToVarAnalyzerMessage; private static readonly string Title = VSDiagnosticsResources.TypeToVarAnalyzerTitle; internal static DiagnosticDescriptor Rule => new DiagnosticDescriptor(DiagnosticId, Title, Message, Category, Severity, true); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Rule); public override void Initialize(AnalysisContext context) { context.RegisterSyntaxNodeAction(AnalyzeSymbol, SyntaxKind.LocalDeclarationStatement); } private void AnalyzeSymbol(SyntaxNodeAnalysisContext context) { var localDeclaration = context.Node as LocalDeclarationStatementSyntax; if (localDeclaration?.Declaration == null) { return; } var declaredType = localDeclaration.Declaration.Type; if (declaredType.IsVar) { return; } if (localDeclaration.Modifiers.Any(m => m.IsKind(SyntaxKind.ConstKeyword))) { return; } // can't have more than one implicitly-typed variable in a statement var variable = localDeclaration.Declaration.Variables.FirstOrDefault(); if (variable?.Initializer == null) { return; } var variableType = context.SemanticModel.GetTypeInfo(declaredType).Type; var initializerType = context.SemanticModel.GetTypeInfo(variable.Initializer.Value).Type; if (Equals(variableType, initializerType)) { context.ReportDiagnostic(Diagnostic.Create(Rule, declaredType.GetLocation())); } } } }
nemec/VSDiagnostics
VSDiagnostics/VSDiagnostics/VSDiagnostics/Diagnostics/General/TypeToVar/TypeToVarAnalyzer.cs
C#
gpl-2.0
2,464
/* * Copyright 1997-1998 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package javax.swing; import java.awt.*; import java.awt.event.*; /** * The editor component used for JComboBox components. * * @author Arnaud Weber */ public interface ComboBoxEditor { /** Return the component that should be added to the tree hierarchy for * this editor */ public Component getEditorComponent(); /** Set the item that should be edited. Cancel any editing if necessary **/ public void setItem(Object anObject); /** Return the edited item **/ public Object getItem(); /** Ask the editor to start editing and to select everything **/ public void selectAll(); /** Add an ActionListener. An action event is generated when the edited item changes **/ public void addActionListener(ActionListener l); /** Remove an ActionListener **/ public void removeActionListener(ActionListener l); }
TheTypoMaster/Scaper
openjdk/jdk/src/share/classes/javax/swing/ComboBoxEditor.java
Java
gpl-2.0
2,048
@charset "UTF-8"; /*! Theme Name: Unicorn Tears Theme URI: https://github.com/monkstudio/unicorn-tears Author: Jaclyn Tan Author Email: jaclyn@monk.com.au Author URI: http://monk.com.au Description: Boilerplate Wordpress theme Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Text Domain: www.monk.com.au .^====^. =( ^--^ )= / \ /~ +( | | )// This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others. Monk is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc. Underscores is distributed under the terms of the GNU GPL v2 or later. Normalizing styles have been helped along thanks to the fine work of Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ */ 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, 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 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button, input, select, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button { overflow: visible; } button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button, select { text-transform: none; } button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button, html input[type="button"], html select[type="button"], input[type="reset"], select[type="reset"], input[type="submit"], select[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], .btn[disabled], .button[disabled], html input[disabled], html select[disabled] { cursor: default; } button::-moz-focus-inner, .btn::-moz-focus-inner, .gform_wrapper .button::-moz-focus-inner, .gform_wrapper .button[type="submit"]::-moz-focus-inner, .button::-moz-focus-inner, input::-moz-focus-inner, select::-moz-focus-inner { border: 0; padding: 0; } input, select { line-height: normal; } input[type="checkbox"], select[type="checkbox"], input[type="radio"], select[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, select[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button, select[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"]::-webkit-search-cancel-button, select[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration, select[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /*-------------------------------------------------------------- # Woocommerce --------------------------------------------------------------*/ .alignleft { display: inline; float: left; margin-right: 1.5em; } .alignright { display: inline; float: right; margin-left: 1.5em; } .aligncenter { clear: both; margin: 0 auto; } body, button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button, input, select, select, textarea { color: #333333; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 27.2px; font-size: 1.6rem; line-height: 1.4; } h1, h2, h3, h4, h5, h6 { clear: both; font-weight: normal; margin-top: 0; } h1 { font-size: 61.2px; font-size: 3.6rem; margin: 1em 0; } h2 { font-size: 51px; font-size: 3rem; } h3 { font-size: 44.2px; font-size: 2.6rem; } h4 { font-size: 37.4px; font-size: 2.2rem; } h5 { font-size: 32.3px; font-size: 1.9rem; } h6 { font-size: 27.2px; font-size: 1.6rem; } p { margin-bottom: 1.5em; margin-top: 0; } dfn, cite, em, i { font-style: italic; } blockquote { margin: 0 1.5em; } address { margin: 0 0 1.5em; } pre { background: #eee; font-family: "Courier 10 Pitch", Courier, monospace; font-size: 15.9375px; font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; overflow: auto; padding: 1.6em; } code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; font-size: 15.9375px; font-size: 0.9375rem; } abbr, acronym { border-bottom: 1px dotted red; cursor: help; } mark, ins { background: #fff9c0; text-decoration: none; } big { font-size: 125%; } .font-light { font-weight: 300; } .font-regular { font-weight: 500; } .font-heavy { font-weight: 700; } .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-break { word-break: break-all; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: white; } @font-face { font-family: 'fontello'; src: url("assets/fonts/fontello/fontello.eot?30005759"); src: url("assets/fonts/fontello/fontello.eot?30005759#iefix") format("embedded-opentype"), url("assets/fonts/fontello/fontello.woff2?30005759") format("woff2"), url("assets/fonts/fontello/fontello.woff?30005759") format("woff"), url("assets/fonts/fontello/fontello.ttf?30005759") format("truetype"), url("assets/fonts/fontello/fontello.svg?30005759#fontello") format("svg"); font-weight: normal; font-style: normal; } /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ /* @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'fontello'; src: url('../font/fontello.svg?30005759#fontello') format('svg'); } } */ [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "fontello"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; /* opacity: .8; */ /* For safety - reset parent styles, that can break glyph codes*/ font-variant: normal; text-transform: none; /* fix buttons height, for twitter bootstrap */ line-height: 1em; /* Animation center compensation - margins should be symmetric */ /* remove if not needed */ margin-left: .2em; /* you can be more comfortable with increased icons size */ /* font-size: 120%; */ /* Font smoothing. That was taken from TWBS */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } .icon-heart:before { content: '\e800'; } /* '๎ €' */ .icon-heart-empty:before { content: '\e801'; } /* '๎ ' */ .icon-share:before { content: '\e802'; } /* '๎ ‚' */ .icon-link:before { content: '\e803'; } /* '๎ ƒ' */ .icon-export:before { content: '\e804'; } /* '๎ „' */ .icon-globe:before { content: '\e805'; } /* '๎ …' */ .icon-down-open-big:before { content: '\e806'; } /* '๎ †' */ .icon-left-open-big:before { content: '\e807'; } /* '๎ ‡' */ .icon-right-open-big:before { content: '\e808'; } /* '๎ ˆ' */ .icon-up-open-big:before { content: '\e809'; } /* '๎ ‰' */ .icon-list:before { content: '\e80a'; } /* '๎ Š' */ .icon-resize-full-alt:before { content: '\e80b'; } /* '๎ ‹' */ .icon-menu:before { content: '\e80c'; } /* '๎ Œ' */ .icon-thumbs-up:before { content: '\e80e'; } /* '๎ Ž' */ .icon-thumbs-down:before { content: '\e80f'; } /* '๎ ' */ .icon-dot-3:before { content: '\e810'; } /* '๎ ' */ .icon-down:before { content: '\e811'; } /* '๎ ‘' */ .icon-left:before { content: '\e812'; } /* '๎ ’' */ .icon-right:before { content: '\e813'; } /* '๎ “' */ .icon-up:before { content: '\e814'; } /* '๎ ”' */ .icon-help-circled:before { content: '\e815'; } /* '๎ •' */ .icon-help-circled-alt:before { content: '\e816'; } /* '๎ –' */ .icon-cancel:before { content: '\e817'; } /* '๎ —' */ .icon-ok:before { content: '\e818'; } /* '๎ ˜' */ .icon-star-empty:before { content: '\e819'; } /* '๎ ™' */ .icon-star:before { content: '\e81a'; } /* '๎ š' */ .icon-down-open:before { content: '\f004'; } /* '๏€„' */ .icon-up-open:before { content: '\f005'; } /* '๏€…' */ .icon-right-open:before { content: '\f006'; } /* '๏€†' */ .icon-left-open:before { content: '\f007'; } /* '๏€‡' */ .icon-menu-1:before { content: '\f008'; } /* '๏€ˆ' */ .icon-th-list:before { content: '\f009'; } /* '๏€‰' */ .icon-th-thumb:before { content: '\f00a'; } /* '๏€Š' */ .icon-th-thumb-empty:before { content: '\f00b'; } /* '๏€‹' */ .icon-download:before { content: '\f02e'; } /* '๏€ฎ' */ .icon-upload:before { content: '\f02f'; } /* '๏€ฏ' */ .icon-location:before { content: '\f031'; } /* '๏€ฑ' */ .icon-eye:before { content: '\f082'; } /* '๏‚‚' */ .icon-info-circled:before { content: '\f085'; } /* '๏‚…' */ .icon-info-circled-alt:before { content: '\f086'; } /* '๏‚†' */ .icon-twitter:before { content: '\f099'; } /* '๏‚™' */ .icon-facebook:before { content: '\f09a'; } /* '๏‚š' */ .icon-rss:before { content: '\f09e'; } /* '๏‚ž' */ .icon-gplus:before { content: '\f0d5'; } /* '๏ƒ•' */ .icon-mail-alt:before { content: '\f0e0'; } /* '๏ƒ ' */ .icon-linkedin:before { content: '\f0e1'; } /* '๏ƒก' */ .icon-angle-left:before { content: '\f104'; } /* '๏„„' */ .icon-angle-right:before { content: '\f105'; } /* '๏„…' */ .icon-angle-up:before { content: '\f106'; } /* '๏„†' */ .icon-angle-down:before { content: '\f107'; } /* '๏„‡' */ .icon-calendar-empty:before { content: '\f133'; } /* '๏„ณ' */ .icon-youtube-squared:before { content: '\f166'; } /* '๏…ฆ' */ .icon-youtube:before { content: '\f167'; } /* '๏…ง' */ .icon-youtube-play:before { content: '\f16a'; } /* '๏…ช' */ .icon-instagram:before { content: '\f16d'; } /* '๏…ญ' */ .icon-tumblr:before { content: '\f173'; } /* '๏…ณ' */ .icon-tumblr-squared:before { content: '\f174'; } /* '๏…ด' */ .icon-vimeo-squared:before { content: '\f194'; } /* '๏†”' */ .icon-google:before { content: '\f1a0'; } /* '๏† ' */ .icon-behance:before { content: '\f1b4'; } /* '๏†ด' */ .icon-facebook-official:before { content: '\f230'; } /* '๏ˆฐ' */ .icon-pinterest:before { content: '\f231'; } /* '๏ˆฑ' */ .icon-trademark:before { content: '\f25c'; } /* '๏‰œ' */ .icon-registered:before { content: '\f25d'; } /* '๏‰' */ .icon-creative-commons:before { content: '\f25e'; } /* '๏‰ž' */ .icon-commenting-o:before { content: '\f27b'; } /* '๏‰ป' */ .icon-vimeo:before { content: '\f27d'; } /* '๏‰ฝ' */ .icon-twitter-squared:before { content: '\f304'; } /* '๏Œ„' */ .icon-facebook-squared:before { content: '\f308'; } /* '๏Œˆ' */ .icon-linkedin-squared:before { content: '\f30c'; } /* '๏ŒŒ' */ /* Animation example, for spinners */ .animate-spin { -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; display: inline-block; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } html { box-sizing: border-box; font-size: 62.5%; } *, *:before, *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ box-sizing: inherit; } body { background-color: #fff; /* Fallback for when there is no custom background color defined. */ } blockquote, q { quotes: "" ""; margin: 20px 0 20px 50px; border-left: 10px solid #f2f2f2; padding: 0 50px; } blockquote:before, blockquote:after, q:before, q:after { content: ""; } hr { background-color: #f2f2f2; border: 0; height: 1px; margin: 30px 0; } ul, ol { margin-top: 0; margin-bottom: 1.5em; } ul ul, ul ol, ol ul, ol ol { margin-bottom: 0; } ul { list-style: disc; } ol { list-style: decimal; } li > ul, li > ol { margin-bottom: 0; margin-left: 0; } dt { font-weight: bold; } dd { margin: 0 1.5em 1.5em; } img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; /* Adhere to container width. */ } .feature.image, .feature.video, .feature.slider .slide, .card .img { background-size: cover; background-position: center; background-repeat: no-repeat; } .width-100 { width: 100%; } .width-75 { width: 75%; } .width-50 { width: 50%; } .width-25 { width: 25%; } .padding { padding: 40px; } .padding-left { padding-left: 40px; } @media (max-width: 768px) { .padding-left { padding: 0; } } .padding-right { padding-right: 40px; } @media (max-width: 768px) { .padding-right { padding: 0; } } .padding-top { padding-top: 40px; } @media (max-width: 768px) { .padding-top { padding: 0; } } .padding-bottom { padding-bottom: 40px; } @media (max-width: 768px) { .padding-bottom { padding: 0; } } .margin-left { margin-left: 40px; } @media (max-width: 768px) { .margin-left { margin: 0; } } .margin-right { margin-right: 40px; } @media (max-width: 768px) { .margin-right { margin: 0; } } .margin-top { margin-top: 40px; } @media (max-width: 768px) { .margin-top { margin: 0; } } .margin-bottom { margin-bottom: 40px; } @media (max-width: 768px) { .margin-bottom { margin: 0; } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } table { margin: 0 0 1.5em; width: 100%; } .icon { position: relative; } .icon:before, .icon:after { content: ''; position: absolute; display: block; } .arrow, .arrow-down, .arrow-up, .arrow-left, .arrow-right { border: 1px solid pink; border-width: 0 0 1px 1px; width: 10px; height: 10px; margin: 5px; display: inline-block; } .arrow-down { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .arrow-up { -webkit-transform: rotate(130deg); transform: rotate(130deg); } .arrow-left { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .arrow-right { -webkit-transform: rotate(-140deg); transform: rotate(-140deg); } .play.icon { margin-left: 5px; margin-top: 4px; width: 1px; height: 13px; background-color: pink; } .play.icon:before, .play.icon:after { left: 1px; width: 12px; height: 1px; background-color: pink; } .play.icon:before { top: 0; -webkit-transform-origin: left top; transform-origin: left top; -webkit-transform: rotate(30deg); transform: rotate(30deg); } .play.icon:after { bottom: 0; -webkit-transform-origin: left bottom; transform-origin: left bottom; -webkit-transform: rotate(-30deg); transform: rotate(-30deg); } .play-filled.icon { margin-left: 5px; margin-top: 3px; width: 0; height: 0; border-left: solid 11px pink; border-top: solid 7px transparent; border-bottom: solid 7px transparent; } button, .btn, .gform_wrapper .button, .gform_wrapper .button[type="submit"], .button, input[type="button"], select[type="button"], input[type="reset"], select[type="reset"], input[type="submit"], select[type="submit"] { -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; padding: 6px 15px; transition: .3s ease all; background-color: pink; color: #FFF; border-radius: 0; display: inline-block; margin: 10px; } button:visited, .btn:visited, .button:visited, input[type="button"]:visited, select[type="button"]:visited, input[type="reset"]:visited, select[type="reset"]:visited, input[type="submit"]:visited, select[type="submit"]:visited { color: #FFF; } button:hover, .btn:hover, .button:hover, input[type="button"]:hover, select[type="button"]:hover, input[type="reset"]:hover, select[type="reset"]:hover, input[type="submit"]:hover, select[type="submit"]:hover { background-color: red; color: #FFF; transition: .3s ease all; cursor: pointer; } button:hover .arrow-left, .btn:hover .arrow-left, .button:hover .arrow-left, button:hover .arrow-right, .btn:hover .arrow-right, .button:hover .arrow-right, input[type="button"]:hover .arrow-left, select[type="button"]:hover .arrow-left, input[type="button"]:hover .arrow-right, select[type="button"]:hover .arrow-right, input[type="reset"]:hover .arrow-left, select[type="reset"]:hover .arrow-left, input[type="reset"]:hover .arrow-right, select[type="reset"]:hover .arrow-right, input[type="submit"]:hover .arrow-left, select[type="submit"]:hover .arrow-left, input[type="submit"]:hover .arrow-right, select[type="submit"]:hover .arrow-right { border-color: #FFF; } .btn .arrow-left, .gform_wrapper .button .arrow-left, .btn .arrow-right, .gform_wrapper .button .arrow-right, .button .arrow-left, .button .arrow-right { margin: 1px 3px; } input[type="text"], select[type="text"], input[type="email"], select[type="email"], input[type="url"], select[type="url"], input[type="password"], select[type="password"], input[type="search"], select[type="search"], input[type="number"], select[type="number"], input[type="tel"], select[type="tel"], input[type="range"], select[type="range"], input[type="date"], select[type="date"], input[type="month"], select[type="month"], input[type="week"], select[type="week"], input[type="time"], select[type="time"], input[type="datetime"], select[type="datetime"], input[type="datetime-local"], select[type="datetime-local"], input[type="color"], select[type="color"], textarea { color: pink; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; border: 1px solid pink; border-radius: 0; padding: 5px; margin: .3em 0; background-color: transparent; } input[type="text"]:focus, select[type="text"]:focus, input[type="email"]:focus, select[type="email"]:focus, input[type="url"]:focus, select[type="url"]:focus, input[type="password"]:focus, select[type="password"]:focus, input[type="search"]:focus, select[type="search"]:focus, input[type="number"]:focus, select[type="number"]:focus, input[type="tel"]:focus, select[type="tel"]:focus, input[type="range"]:focus, select[type="range"]:focus, input[type="date"]:focus, select[type="date"]:focus, input[type="month"]:focus, select[type="month"]:focus, input[type="week"]:focus, select[type="week"]:focus, input[type="time"]:focus, select[type="time"]:focus, input[type="datetime"]:focus, select[type="datetime"]:focus, input[type="datetime-local"]:focus, select[type="datetime-local"]:focus, input[type="color"]:focus, select[type="color"]:focus, textarea:focus { color: pink; } input[type="radio"], select[type="radio"] { display: inline-block; } select { border-radius: 0; border: 1px solid pink; } textarea { padding: 5px; width: 100%; } label { font-size: 23.8px; font-size: 1.4rem; margin: 1em 0 0.2em; display: block; font-weight: bold; } .gform_ajax_spinner { display: none; } .gform_wrapper { margin-bottom: 1em; } .gform_wrapper input[type="text"], .gform_wrapper select[type="text"], .gform_wrapper input[type="email"], .gform_wrapper select[type="email"], .gform_wrapper input[type="url"], .gform_wrapper select[type="url"], .gform_wrapper input[type="password"], .gform_wrapper select[type="password"], .gform_wrapper input[type="search"], .gform_wrapper select[type="search"], .gform_wrapper input[type="number"], .gform_wrapper select[type="number"], .gform_wrapper input[type="tel"], .gform_wrapper select[type="tel"], .gform_wrapper input[type="range"], .gform_wrapper select[type="range"], .gform_wrapper input[type="date"], .gform_wrapper select[type="date"], .gform_wrapper input[type="month"], .gform_wrapper select[type="month"], .gform_wrapper input[type="week"], .gform_wrapper select[type="week"], .gform_wrapper input[type="time"], .gform_wrapper select[type="time"], .gform_wrapper input[type="datetime"], .gform_wrapper select[type="datetime"], .gform_wrapper input[type="datetime-local"], .gform_wrapper select[type="datetime-local"], .gform_wrapper input[type="color"], .gform_wrapper select[type="color"], .gform_wrapper textarea, .gform_wrapper select { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; margin: 0; } .gform_fields { padding: 0; list-style: none; } .gform_heading { margin-bottom: 1em; } .gform_body { margin-bottom: 1em; } .gform_body .gfield.gform_validation_container { display: none !important; } .gform_body .gfield_label { font-weight: bold; } .gform_body .gfield_required { position: relative; top: -2px; right: -2px; color: pink; } .gform_body .gfield_error .validation_message { background-color: pink; color: #FFF; font-size: 80%; padding: 5px 15px; } .gform_body .gfield_checkbox, .gform_body .gfield_radio { list-style: none; margin: 0; padding: 0; } .gform_body .gfield_checkbox > li, .gform_body .gfield_radio > li { padding-left: 0; margin-left: 0; } .gform_body .gfield_checkbox > li label, .gform_body .gfield_radio > li label { margin-left: 0; } .gform_body .ginput_container_textarea { line-height: 0; } .gform_body .ginput_complex { display: table; table-layout: fixed; width: 100%; content: ""; display: table; table-layout: fixed; } .gform_body .ginput_complex > span { display: table-cell; vertical-align: top; padding-right: 15px; width: 100%; } .gform_body .ginput_complex > span:last-of-type { padding-right: 0; } .gform_body .ginput_complex > .ginput_full { display: block; width: 100%; padding-right: 0; } .gform_body .ginput_complex > .ginput_left { display: block; float: left; width: 50%; } .gform_body .ginput_complex > .ginput_right { display: block; float: right; width: 50%; } .gform_body .validation_message { background-color: pink; color: #FFF; padding: 5px; } .gform_page_footer { background: #f2f2f2; content: ""; display: table; table-layout: fixed; } .gform_next_button { float: right; } .gform_prev_button { float: left; } .gform .validation_error { font-size: 80%; margin: 1.5em 0; } .gform_ajax_spinner { display: none; } #ui-datepicker-div { background: white; padding: 10px; text-align: center; border: 2px solid red; display: none; margin: -2px auto; box-shadow: 0px 2px 15px rgba(51, 51, 51, 0.6); } #ui-datepicker-div select { padding: 2px 10px; margin: 10px 5px; } .form_saved_message_emailform form { padding: 2em 0 0; flex-wrap: wrap; display: flex; } .form_saved_message_emailform form input[type="email"], .form_saved_message_emailform form select[type="email"] { width: 60%; } @media (max-width: 480px) { .form_saved_message_emailform form input[type="email"], .form_saved_message_emailform form select[type="email"] { width: 57%; } } .validation_message { flex-basis: 100%; font-size: 80%; } /*! โ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™ก โ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅ Credit Card โ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅโ™ฅ โ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™กโ™ก */ .ls-nav-right a:before, .ls-nav-left a:before, .wc_payment_method label:before, label[for="stripe-card-number"]:after, label[for="stripe-card-cvc"]:after, .ui-icon:after, .ui-icon:before, .gform_card_icon_container div:before, .ginput_card_security_code_icon:before { font-family: 'icomoon'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .ginput_container_creditcard { background: #f2f2f2; padding: 20px; } .ginput_container_creditcard input, .ginput_container_creditcard select, .ginput_container_creditcard select { background: white; width: 48%; } .ginput_cardinfo_left { width: 50%; } @media (max-width: 480px) { .ginput_cardinfo_left { width: 100%; } } .gform_card_icon_container div { font-size: 2em; float: left; text-indent: -99em; position: relative; display: block; } .gform_card_icon_container div:before { position: absolute; left: 0; top: 0; text-indent: 0; } .gform_card_icon_container div { font-size: 2em; float: left; text-indent: -99em; position: relative; display: block; width: 1.5em; color: #333333; } .ginput_card_security_code_icon:before { content: "\e911"; } .icon-cc-paypal:before { content: "\e913"; } .gform_card_icon_amex:before { content: "\e914"; } .gform_card_icon_discover:before { content: "\e915"; } .gform_card_icon_mastercard:before { content: "\e916"; } .gform_card_icon_visa:before { content: "\e917"; } .ginput_cardinfo_left, .ginput_cardinfo_right { float: left; } .ginput_cardinfo_right { margin-left: 10px; width: calc(50% - 10px); } @media (max-width: 480px) { .ginput_cardinfo_right { margin: 0; width: 100%; } } span.ginput_card_security_code_icon { font-size: 1.5em; float: left; color: #666; line-height: 1.2; } .gfield_creditcard_warning_message { background: #bf0421; color: white; padding: 1em .75em; border-radius: 3px; font-size: 80%; margin-bottom: 1em; } .gfield_error .ginput_container_creditcard label { color: black; } .ginput_container_creditcard .ginput_full { clear: both; display: block; } .field_sublabel_above .ginput_container_creditcard .ginput_full:first-of-type { margin-bottom: 2em; } .sunshine li { margin: 1em 0em 0em; position: relative; } .sunshine li input:not([type=checkbox]):not([type=radio]), .sunshine li select:not([type=checkbox]):not([type=radio]), .sunshine li textarea { width: 100%; color: red; padding: 25px 10px 5px; } .sunshine li label { position: absolute; width: 100%; height: 100%; text-align: left; pointer-events: none; display: inline-block; vertical-align: middle; padding: 15px 10px; width: 100%; color: pink; font-weight: bold; -webkit-font-smoothing: antialiased; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; transition: .3s ease all; font-size: 23.8px; font-size: 1.4rem; } .sunshine li label:before, .sunshine li label:after { content: ''; position: absolute; left: 0; z-index: -1; width: 100%; transition: -webkit-transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; } .sunshine li label:before { top: 0; } .sunshine li label:after { bottom: 0; } .sunshine li label .label-content { transition: -webkit-transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; } .sunshine li.active label { -webkit-transform: translate3d(5px, 0px, 0); transform: translate3d(5px, 0px, 0); padding: 5px; font-size: 92%; transition: .3s ease all; color: #f2f2f2; font-size: 70%; } /*-------------------------------------------------------------- ## Links --------------------------------------------------------------*/ a { color: pink; text-decoration: none; } a:visited { color: pink; } a:hover, a:active { color: red; text-decoration: none; } a:focus { outline: thin dotted; text-decoration: none; } a:hover, a:active { outline: 0; } /*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/ .main-navigation { display: block; text-align: right; transition: .5s linear all; } @media (max-width: 768px) { .main-navigation { text-align: right; } } .main-navigation ul { list-style: none; margin: 0; padding: 0; } .main-navigation ul ul { box-shadow: 0 3px 10px rgba(51, 51, 51, 0.3); float: left; position: absolute; top: 60px; left: -999em; z-index: 99999; background-color: #FFF; padding-left: 10px; min-width: 200px; } @media (max-width: 768px) { .main-navigation ul ul { position: relative; float: none; left: auto; top: auto; } } .main-navigation ul ul ul { left: -999em; top: 0; } @media (max-width: 768px) { .main-navigation ul ul ul { left: initial; } } .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul { left: 100%; } @media (max-width: 768px) { .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul { left: initial; } } .main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul { left: auto; } .main-navigation li { position: relative; text-align: left; display: inline-block; vertical-align: top; } @media (max-width: 768px) { .main-navigation li { width: 100%; } } .main-navigation li:hover > a, .main-navigation li.focus > a { background-color: red; color: pink; } .main-navigation a { display: inline-block; vertical-align: middle; text-decoration: none; padding: 15px; border: none; width: 100%; } .main-navigation .sub-menu { width: 200px; padding: 0; margin: 0; } @media (max-width: 768px) { .main-navigation .sub-menu { width: 100%; } } .main-navigation .sub-menu li { width: 100%; } @media (max-width: 768px) { .main-navigation ul.sub-menu, .main-navigation ul.children { display: none; } .main-navigation ul.sub-menu.toggled-on, .main-navigation ul.children.toggled-on { display: block; } } .main-navigation .dropdown-toggle { background-color: transparent; padding: 0; width: 100%; text-align: left; position: relative; cursor: pointer; } .main-navigation .dropdown-toggle .arrow-down { position: absolute; right: 10px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); visibility: hidden; } @media (max-width: 768px) { .main-navigation .dropdown-toggle .arrow-down { visibility: visible; } } .main-navigation .dropdown-toggle.toggled-on .arrow-down { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation { margin: 0 0 1.5em; overflow: hidden; } .comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous { float: left; } .comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next { float: right; text-align: right; } @media (min-width: 769px) { #mobile-menu { display: none; } .main-navigation ul { display: block; } } button#mobile-menu, #mobile-menu.btn, #mobile-menu.button { position: relative; z-index: 101; margin: 20px auto; } @media (max-width: 768px) { button#mobile-menu, #mobile-menu.btn, #mobile-menu.button { display: table; } } .toggled { transition: .5s linear all; } /* .menu-toggle, .main-navigation.toggled ul { display: inline-block; } */ @media (max-width: 768px) { .slideleft { transition: .6s; position: fixed; top: 0; right: 0; padding: 0; z-index: -1; width: 0; height: 100%; overflow-x: hidden; background-color: pink; transition-delay: .2s; } .slideleft .overlay-content { position: relative; width: 100%; text-align: center; height: 100%; display: table; opacity: 0; visibility: hidden; transition: .5s ease all; } .slideleft .menu-main-menu-container { display: table-cell; vertical-align: middle; } } .toggled .slideleft { background-color: pink; transition: .6s; z-index: 100; width: 100%; height: 100%; overflow-x: visible; } @media (max-height: 300px) { .toggled .slideleft { overflow-y: auto; } } .toggled .slideleft .overlay-content { opacity: 1; visibility: visible; transition: .5s ease all; transition-delay: .3s; } /*! * Hamburgers * @description Tasty CSS-animated hamburgers * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */ .hamburger { padding: 15px 15px; display: inline-block; cursor: pointer; transition-property: opacity, -webkit-filter; transition-property: opacity, filter; transition-property: opacity, filter, -webkit-filter; transition-duration: 0.15s; transition-timing-function: linear; font: inherit; color: inherit; text-transform: none; background-color: transparent; border: 0; margin: 0; overflow: visible; } .hamburger:hover { opacity: 0.7; } .hamburger:hover .hamburger-inner { background-color: #999; } .hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after { background-color: #999; } .hamburger.is-active:hover { opacity: 0.7; } .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after { background-color: #000; } .hamburger-box { width: 40px; height: 24px; display: inline-block; vertical-align: middle; position: relative; } .hamburger-inner { display: block; top: 50%; margin-top: -2px; } .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { width: 40px; height: 4px; background-color: #000; border-radius: 4px; position: absolute; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; transition-duration: 0.15s; transition-timing-function: ease; } .hamburger-inner::before, .hamburger-inner::after { content: ""; display: block; } .hamburger-inner::before { top: -10px; } .hamburger-inner::after { bottom: -10px; } /* * 3DX */ .hamburger--3dx .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dx .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dx.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .hamburger--3dx.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dx.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * 3DX Reverse */ .hamburger--3dx-r .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dx-r .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dx-r.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .hamburger--3dx-r.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dx-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * 3DY */ .hamburger--3dy .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dy .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dy.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateX(-180deg); transform: rotateX(-180deg); } .hamburger--3dy.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dy.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * 3DY Reverse */ .hamburger--3dy-r .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dy-r .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dy-r.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateX(180deg); transform: rotateX(180deg); } .hamburger--3dy-r.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dy-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * 3DXY */ .hamburger--3dxy .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dxy .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dxy.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateX(180deg) rotateY(180deg); transform: rotateX(180deg) rotateY(180deg); } .hamburger--3dxy.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dxy.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * 3DXY Reverse */ .hamburger--3dxy-r .hamburger-box { -webkit-perspective: 80px; perspective: 80px; } .hamburger--3dxy-r .hamburger-inner { transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after { transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } .hamburger--3dxy-r.is-active .hamburger-inner { background-color: transparent !important; -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); } .hamburger--3dxy-r.is-active .hamburger-inner::before { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--3dxy-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); } /* * Arrow */ .hamburger--arrow.is-active .hamburger-inner::before { -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); } .hamburger--arrow.is-active .hamburger-inner::after { -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); } /* * Arrow Right */ .hamburger--arrow-r.is-active .hamburger-inner::before { -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); } .hamburger--arrow-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); } /* * Arrow Alt */ .hamburger--arrowalt .hamburger-inner::before { transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } .hamburger--arrowalt .hamburger-inner::after { transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } .hamburger--arrowalt.is-active .hamburger-inner::before { top: 0; -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1); transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } .hamburger--arrowalt.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1); transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } /* * Arrow Alt Right */ .hamburger--arrowalt-r .hamburger-inner::before { transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } .hamburger--arrowalt-r .hamburger-inner::after { transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } .hamburger--arrowalt-r.is-active .hamburger-inner::before { top: 0; -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1); transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } .hamburger--arrowalt-r.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1); transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } /* * Arrow Turn */ .hamburger--arrowturn.is-active .hamburger-inner { -webkit-transform: rotate(-180deg); transform: rotate(-180deg); } .hamburger--arrowturn.is-active .hamburger-inner::before { -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); } .hamburger--arrowturn.is-active .hamburger-inner::after { -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); } /* * Arrow Turn Right */ .hamburger--arrowturn-r.is-active .hamburger-inner { -webkit-transform: rotate(-180deg); transform: rotate(-180deg); } .hamburger--arrowturn-r.is-active .hamburger-inner::before { -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); } .hamburger--arrowturn-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); } /* * Boring */ .hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after { transition-property: none; } .hamburger--boring.is-active .hamburger-inner { -webkit-transform: rotate(45deg); transform: rotate(45deg); } .hamburger--boring.is-active .hamburger-inner::before { top: 0; opacity: 0; } .hamburger--boring.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } /* * Collapse */ .hamburger--collapse .hamburger-inner { top: auto; bottom: 0; transition-duration: 0.13s; transition-delay: 0.13s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--collapse .hamburger-inner::after { top: -20px; transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; } .hamburger--collapse .hamburger-inner::before { transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--collapse.is-active .hamburger-inner { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); transition-delay: 0.22s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--collapse.is-active .hamburger-inner::after { top: 0; opacity: 0; transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; } .hamburger--collapse.is-active .hamburger-inner::before { top: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Collapse Reverse */ .hamburger--collapse-r .hamburger-inner { top: auto; bottom: 0; transition-duration: 0.13s; transition-delay: 0.13s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--collapse-r .hamburger-inner::after { top: -20px; transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; } .hamburger--collapse-r .hamburger-inner::before { transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--collapse-r.is-active .hamburger-inner { -webkit-transform: translate3d(0, -10px, 0) rotate(45deg); transform: translate3d(0, -10px, 0) rotate(45deg); transition-delay: 0.22s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--collapse-r.is-active .hamburger-inner::after { top: 0; opacity: 0; transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; } .hamburger--collapse-r.is-active .hamburger-inner::before { top: 0; -webkit-transform: rotate(90deg); transform: rotate(90deg); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Elastic */ .hamburger--elastic .hamburger-inner { top: 2px; transition-duration: 0.275s; transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); } .hamburger--elastic .hamburger-inner::before { top: 10px; transition: opacity 0.125s 0.275s ease; } .hamburger--elastic .hamburger-inner::after { top: 20px; transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); } .hamburger--elastic.is-active .hamburger-inner { -webkit-transform: translate3d(0, 10px, 0) rotate(135deg); transform: translate3d(0, 10px, 0) rotate(135deg); transition-delay: 0.075s; } .hamburger--elastic.is-active .hamburger-inner::before { transition-delay: 0s; opacity: 0; } .hamburger--elastic.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg); transform: translate3d(0, -20px, 0) rotate(-270deg); transition-delay: 0.075s; } /* * Elastic Reverse */ .hamburger--elastic-r .hamburger-inner { top: 2px; transition-duration: 0.275s; transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); } .hamburger--elastic-r .hamburger-inner::before { top: 10px; transition: opacity 0.125s 0.275s ease; } .hamburger--elastic-r .hamburger-inner::after { top: 20px; transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); } .hamburger--elastic-r.is-active .hamburger-inner { -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg); transform: translate3d(0, 10px, 0) rotate(-135deg); transition-delay: 0.075s; } .hamburger--elastic-r.is-active .hamburger-inner::before { transition-delay: 0s; opacity: 0; } .hamburger--elastic-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -20px, 0) rotate(270deg); transform: translate3d(0, -20px, 0) rotate(270deg); transition-delay: 0.075s; } /* * Emphatic */ .hamburger--emphatic { overflow: hidden; } .hamburger--emphatic .hamburger-inner { transition: background-color 0.125s 0.175s ease-in; } .hamburger--emphatic .hamburger-inner::before { left: 0; transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); } .hamburger--emphatic .hamburger-inner::after { top: 10px; right: 0; transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); } .hamburger--emphatic.is-active .hamburger-inner { transition-delay: 0s; transition-timing-function: ease-out; background-color: transparent !important; } .hamburger--emphatic.is-active .hamburger-inner::before { left: -80px; top: -80px; -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg); transform: translate3d(80px, 80px, 0) rotate(45deg); transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } .hamburger--emphatic.is-active .hamburger-inner::after { right: -80px; top: -80px; -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg); transform: translate3d(-80px, 80px, 0) rotate(-45deg); transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } /* * Emphatic Reverse */ .hamburger--emphatic-r { overflow: hidden; } .hamburger--emphatic-r .hamburger-inner { transition: background-color 0.125s 0.175s ease-in; } .hamburger--emphatic-r .hamburger-inner::before { left: 0; transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); } .hamburger--emphatic-r .hamburger-inner::after { top: 10px; right: 0; transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); } .hamburger--emphatic-r.is-active .hamburger-inner { transition-delay: 0s; transition-timing-function: ease-out; background-color: transparent !important; } .hamburger--emphatic-r.is-active .hamburger-inner::before { left: -80px; top: 80px; -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg); transform: translate3d(80px, -80px, 0) rotate(-45deg); transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } .hamburger--emphatic-r.is-active .hamburger-inner::after { right: -80px; top: 80px; -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg); transform: translate3d(-80px, -80px, 0) rotate(45deg); transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } /* * Minus */ .hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after { transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; } .hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after { opacity: 0; transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; } .hamburger--minus.is-active .hamburger-inner::before { top: 0; } .hamburger--minus.is-active .hamburger-inner::after { bottom: 0; } /* * Slider */ .hamburger--slider .hamburger-inner { top: 2px; } .hamburger--slider .hamburger-inner::before { top: 10px; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; transition-timing-function: ease; transition-duration: 0.15s; } .hamburger--slider .hamburger-inner::after { top: 20px; } .hamburger--slider.is-active .hamburger-inner { -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--slider.is-active .hamburger-inner::before { -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0); transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0); opacity: 0; } .hamburger--slider.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg); transform: translate3d(0, -20px, 0) rotate(-90deg); } /* * Slider Reverse */ .hamburger--slider-r .hamburger-inner { top: 2px; } .hamburger--slider-r .hamburger-inner::before { top: 10px; transition-property: opacity, -webkit-transform; transition-property: transform, opacity; transition-property: transform, opacity, -webkit-transform; transition-timing-function: ease; transition-duration: 0.15s; } .hamburger--slider-r .hamburger-inner::after { top: 20px; } .hamburger--slider-r.is-active .hamburger-inner { -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg); transform: translate3d(0, 10px, 0) rotate(-45deg); } .hamburger--slider-r.is-active .hamburger-inner::before { -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0); transform: rotate(45deg) translate3d(5.71429px, -6px, 0); opacity: 0; } .hamburger--slider-r.is-active .hamburger-inner::after { -webkit-transform: translate3d(0, -20px, 0) rotate(90deg); transform: translate3d(0, -20px, 0) rotate(90deg); } /* * Spin */ .hamburger--spin .hamburger-inner { transition-duration: 0.22s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spin .hamburger-inner::before { transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; } .hamburger--spin .hamburger-inner::after { transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spin.is-active .hamburger-inner { -webkit-transform: rotate(225deg); transform: rotate(225deg); transition-delay: 0.12s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--spin.is-active .hamburger-inner::before { top: 0; opacity: 0; transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; } .hamburger--spin.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Spin Reverse */ .hamburger--spin-r .hamburger-inner { transition-duration: 0.22s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spin-r .hamburger-inner::before { transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; } .hamburger--spin-r .hamburger-inner::after { transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spin-r.is-active .hamburger-inner { -webkit-transform: rotate(-225deg); transform: rotate(-225deg); transition-delay: 0.12s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--spin-r.is-active .hamburger-inner::before { top: 0; opacity: 0; transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; } .hamburger--spin-r.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(90deg); transform: rotate(90deg); transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Spring */ .hamburger--spring .hamburger-inner { top: 2px; transition: background-color 0s 0.13s linear; } .hamburger--spring .hamburger-inner::before { top: 10px; transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spring .hamburger-inner::after { top: 20px; transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spring.is-active .hamburger-inner { transition-delay: 0.22s; background-color: transparent !important; } .hamburger--spring.is-active .hamburger-inner::before { top: 0; transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 10px, 0) rotate(45deg); transform: translate3d(0, 10px, 0) rotate(45deg); } .hamburger--spring.is-active .hamburger-inner::after { top: 0; transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg); transform: translate3d(0, 10px, 0) rotate(-45deg); } /* * Spring Reverse */ .hamburger--spring-r .hamburger-inner { top: auto; bottom: 0; transition-duration: 0.13s; transition-delay: 0s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spring-r .hamburger-inner::after { top: -20px; transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; } .hamburger--spring-r .hamburger-inner::before { transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--spring-r.is-active .hamburger-inner { -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg); transform: translate3d(0, -10px, 0) rotate(-45deg); transition-delay: 0.22s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--spring-r.is-active .hamburger-inner::after { top: 0; opacity: 0; transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; } .hamburger--spring-r.is-active .hamburger-inner::before { top: 0; -webkit-transform: rotate(90deg); transform: rotate(90deg); transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Stand */ .hamburger--stand .hamburger-inner { transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand .hamburger-inner::before { transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand .hamburger-inner::after { transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand.is-active .hamburger-inner { -webkit-transform: rotate(90deg); transform: rotate(90deg); background-color: transparent !important; transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1); transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--stand.is-active .hamburger-inner::before { top: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--stand.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Stand Reverse */ .hamburger--stand-r .hamburger-inner { transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand-r .hamburger-inner::before { transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand-r .hamburger-inner::after { transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--stand-r.is-active .hamburger-inner { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); background-color: transparent !important; transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1); transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--stand-r.is-active .hamburger-inner::before { top: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--stand-r.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Squeeze */ .hamburger--squeeze .hamburger-inner { transition-duration: 0.075s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--squeeze .hamburger-inner::before { transition: top 0.075s 0.12s ease, opacity 0.075s ease; } .hamburger--squeeze .hamburger-inner::after { transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); } .hamburger--squeeze.is-active .hamburger-inner { -webkit-transform: rotate(45deg); transform: rotate(45deg); transition-delay: 0.12s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } .hamburger--squeeze.is-active .hamburger-inner::before { top: 0; opacity: 0; transition: top 0.075s ease, opacity 0.075s 0.12s ease; } .hamburger--squeeze.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } /* * Vortex */ .hamburger--vortex .hamburger-inner { transition-duration: 0.2s; transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after { transition-duration: 0s; transition-delay: 0.1s; transition-timing-function: linear; } .hamburger--vortex .hamburger-inner::before { transition-property: top, opacity; } .hamburger--vortex .hamburger-inner::after { transition-property: bottom, -webkit-transform; transition-property: bottom, transform; transition-property: bottom, transform, -webkit-transform; } .hamburger--vortex.is-active .hamburger-inner { -webkit-transform: rotate(765deg); transform: rotate(765deg); transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after { transition-delay: 0s; } .hamburger--vortex.is-active .hamburger-inner::before { top: 0; opacity: 0; } .hamburger--vortex.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(90deg); transform: rotate(90deg); } /* * Vortex Reverse */ .hamburger--vortex-r .hamburger-inner { transition-duration: 0.2s; transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after { transition-duration: 0s; transition-delay: 0.1s; transition-timing-function: linear; } .hamburger--vortex-r .hamburger-inner::before { transition-property: top, opacity; } .hamburger--vortex-r .hamburger-inner::after { transition-property: bottom, -webkit-transform; transition-property: bottom, transform; transition-property: bottom, transform, -webkit-transform; } .hamburger--vortex-r.is-active .hamburger-inner { -webkit-transform: rotate(-765deg); transform: rotate(-765deg); transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after { transition-delay: 0s; } .hamburger--vortex-r.is-active .hamburger-inner::before { top: 0; opacity: 0; } .hamburger--vortex-r.is-active .hamburger-inner::after { bottom: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } .feature { height: 100vh; } @media (max-width: 768px) { .feature { height: 250px; } } .feature.image { width: 100%; } .feature.video { position: relative; } .feature.video .play { background-color: #FFF; height: 50px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .feature.video .play:before, .feature.video .play:after { width: 50px; background-color: #FFF; } .feature.slider .slide { height: 100vh; } @media (max-width: 768px) { .feature.slider .slide { height: 250px; } } .feature .img { height: 100vh; width: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: center; object-position: center; } .card .img { height: 300px; } /* Video Overlay */ .vid-overlay { background-color: #f2f2f2; height: 700px; left: 0; position: relative; transition: background-color 300ms ease; width: 100%; overflow: hidden; } @media (max-width: 1200px) { .vid-overlay { height: 550px; } } @media (max-width: 992px) { .vid-overlay { height: 320px; } } @media (max-width: 768px) { .vid-overlay { height: 180px; } } .fade { background-color: rgba(0, 0, 0, 0.85) !important; } a.title-link { display: block; border-bottom: 3px solid red; text-transform: uppercase; font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif; text-align: center; font-size: 40.8px; font-size: 2.4rem; letter-spacing: .07em; color: pink; font-weight: 800; } @media (max-width: 992px) { a.title-link { font-size: 37.4px; font-size: 2.2rem; } } a.title-link.collapsed { color: pink; } a.title-link.collapsed .plus:after { content: ""; } a.title-link .close-wrapper { border: 2px solid red; border-radius: 50%; padding: 3px; display: block; margin-right: 30px; text-align: center; width: 32px; height: 32px; } .inverse a.title-link .close-wrapper { border-color: #FFF; } a.title-link .plus { border-color: #FFF; margin-right: 30px; display: table; } a.title-link .plus:after { content: none; } .panel-title-wrapper { display: flex; align-items: center; background-color: #f2f2f2; padding: 7px 10px; } .panel-body { font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif; padding: 10px 25px; font-weight: 800; -webkit-column-break-inside: avoid; break-inside: avoid; } .site-header { display: flex; justify-content: space-between; align-items: center; } .logo { width: 220px; margin: 20px auto; display: table; } .social i { font-size: 34px; font-size: 2rem; } /* Text meant only for screen readers. */ .screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ } .screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; -webkit-clip-path: none; clip-path: none; color: #21759b; display: block; font-size: 14.875px; font-size: 0.875rem; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar. */ } /* Do not show the outline on the skip link target. */ #content[tabindex="-1"]:focus { outline: 0; } /*-------------------------------------------------------------- # Clearings --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Widgets --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Content --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Posts and pages --------------------------------------------------------------*/ .sticky { display: block; } .hentry { margin: 0 0 1.5em; } .byline, .updated:not(.published) { display: none; } .single .byline, .group-blog .byline { display: inline; } .page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; } .page-links { clear: both; margin: 0 0 1.5em; } /*-------------------------------------------------------------- ## Asides --------------------------------------------------------------*/ .blog .format-aside .entry-title, .archive .format-aside .entry-title { display: none; } /*-------------------------------------------------------------- ## Comments --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Widgets --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Infinite scroll --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Media --------------------------------------------------------------*/ .page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley { border: none; margin-bottom: 0; margin-top: 0; padding: 0; } /* Make sure embeds and iframes fit their containers. */ embed, iframe, object { max-width: 100%; } /*-------------------------------------------------------------- ## Captions --------------------------------------------------------------*/ .wp-caption { margin-bottom: 1.5em; max-width: 100%; } .wp-caption .wp-caption-text { margin: 0.8em 0; } .wp-caption-text { text-align: center; font-size: 80%; } /*-------------------------------------------------------------- ## Galleries --------------------------------------------------------------*/ .gallery { margin-bottom: 1.5em; } .gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33.33%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-caption { display: block; } /*-------------------------------------------------------------- ## Slick --------------------------------------------------------------*/ /* Slider */ .slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .slick-track { position: relative; left: 0; top: 0; display: block; } .slick-track:before, .slick-track:after { content: ""; display: table; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { float: left; height: 100%; min-height: 1px; display: none; } [dir="rtl"] .slick-slide { float: right; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; } /* Slider */ .slick-loading .slick-list { background: #fff url("./assets/images/svg-loaders/puff.svg") center center no-repeat; } /* Icons */ @font-face { font-family: "slick"; src: url("./assets/fonts/slick/slick.eot"); src: url("./assets/fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./assets/fonts/slick/slick.woff") format("woff"), url("./assets/fonts/slick/slick.ttf") format("truetype"), url("./assets/fonts/slick/slick.svg#slick") format("svg"); font-weight: normal; font-style: normal; } /* Arrows */ .slick-prev, .slick-next { position: absolute; display: block; height: 20px; width: 20px; line-height: 0px; font-size: 0px; cursor: pointer; background: transparent; color: transparent; top: 50%; -webkit-transform: translate(0, -50%); transform: translate(0, -50%); padding: 0; border: none; outline: none; } .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus { outline: none; background: transparent; color: transparent; } .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before { opacity: 1; } .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before { opacity: 0.25; } .slick-prev:before, .slick-next:before { font-family: "slick"; font-size: 20px; line-height: 1; color: white; opacity: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-prev { left: -25px; } [dir="rtl"] .slick-prev { left: auto; right: -25px; } .slick-prev:before { content: "โ†"; } [dir="rtl"] .slick-prev:before { content: "โ†’"; } .slick-next { right: -25px; } [dir="rtl"] .slick-next { left: -25px; right: auto; } .slick-next:before { content: "โ†’"; } [dir="rtl"] .slick-next:before { content: "โ†"; } /* Dots */ .slick-dotted.slick-slider { margin-bottom: 30px; } .slick-dots { position: absolute; bottom: -20px; list-style: none; display: block; text-align: center; padding: 0; margin: 0; width: 100%; } .slick-dots li { position: relative; display: inline-block; height: 12px; width: 12px; margin: 0 5px; padding: 0; cursor: pointer; } .slick-dots li button, .slick-dots li .btn, .slick-dots li .gform_wrapper .button[type="submit"], .gform_wrapper .slick-dots li .button[type="submit"], .slick-dots li .button { border: 1px solid pink; border-radius: 50%; background: transparent; display: block; height: 12px; width: 12px; outline: none; line-height: 0px; font-size: 0px; color: transparent; padding: 5px; cursor: pointer; } .slick-dots li button:hover, .slick-dots li .btn:hover, .slick-dots li .button:hover, .slick-dots li button:focus, .slick-dots li .btn:focus, .slick-dots li .button:focus { outline: none; background-color: pink; } .slick-dots li button:hover:before, .slick-dots li .btn:hover:before, .slick-dots li .button:hover:before, .slick-dots li button:focus:before, .slick-dots li .btn:focus:before, .slick-dots li .button:focus:before { opacity: 1; } .slick-dots li.slick-active button, .slick-dots li.slick-active .btn, .slick-dots li.slick-active .button { background-color: pink; } /*-------------------------------------------------------------- ## Medium lightbox --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Swipebox --------------------------------------------------------------*/ /*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */ .swipebox-html { overflow: hidden; } html.swipebox-html.swipebox-touch { overflow: hidden !important; } #swipebox-overlay img { border: none !important; } #swipebox-overlay { width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 999999 !important; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #swipebox-container { position: relative; width: 100%; height: 100%; } #swipebox-slider { transition: -webkit-transform 0.4s ease; transition: transform 0.4s ease; transition: transform 0.4s ease, -webkit-transform 0.4s ease; height: 100%; left: 0; top: 0; width: 100%; white-space: nowrap; position: absolute; display: none; cursor: pointer; } #swipebox-slider .slide { height: 100%; width: 100%; line-height: 1px; text-align: center; display: inline-block; } #swipebox-slider .slide:before { content: ""; display: inline-block; height: 50%; width: 1px; margin-right: -1px; } #swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide .swipebox-inline-container { display: inline-block; max-height: 100%; max-width: 100%; margin: 0; padding: 0; width: auto; height: auto; vertical-align: middle; } #swipebox-slider .slide .swipebox-video-container { background: none; max-width: 1140px; max-height: 100%; width: 100%; padding: 5%; box-sizing: border-box; } #swipebox-slider .slide .swipebox-video-container .swipebox-video { width: 100%; height: 0; padding-bottom: 56.25%; overflow: hidden; position: relative; } #swipebox-slider .slide .swipebox-video-container .swipebox-video iframe { width: 100% !important; height: 100% !important; position: absolute; top: 0; left: 0; } #swipebox-slider .slide-loading { background: url("assets/images/svg-loaders/puff.svg") no-repeat center center; } #swipebox-bottom-bar, #swipebox-top-bar { transition: 0.5s; position: absolute; left: 0; z-index: 999999; height: 50px; width: 100%; } #swipebox-bottom-bar { bottom: -50px; } #swipebox-bottom-bar.visible-bars { -webkit-transform: translate3d(0, -50px, 0); transform: translate3d(0, -50px, 0); } #swipebox-top-bar { top: -50px; } #swipebox-top-bar.visible-bars { -webkit-transform: translate3d(0, 50px, 0); transform: translate3d(0, 50px, 0); } #swipebox-title { display: block; width: 100%; text-align: center; } #swipebox-prev, #swipebox-next, #swipebox-close { background-image: url("assets/images/icons/icons.svg"); background-repeat: no-repeat; border: none !important; text-decoration: none !important; cursor: pointer; background-size: 250%; width: 50px; height: 50px; top: 0; } #swipebox-arrows { display: block; margin: 0 auto; width: 100%; height: 50px; } #swipebox-prev { background-position: -32px 13px; float: left; } #swipebox-next { background-position: -105px 13px; float: right; } #swipebox-close { top: 0; right: 0; position: absolute; z-index: 999999; background-position: 15px 12px; } .swipebox-no-close-button #swipebox-close { display: none; } #swipebox-prev.disabled, #swipebox-next.disabled { opacity: 0.3; } .swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider { -webkit-animation: rightSpring 0.3s; animation: rightSpring 0.3s; } .swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider { -webkit-animation: leftSpring 0.3s; animation: leftSpring 0.3s; } .swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after { -webkit-backface-visibility: hidden; backface-visibility: hidden; transition: all .3s ease; content: ' '; position: absolute; z-index: 999999; top: 0; height: 100%; width: 20px; opacity: 0; } .swipebox-touch #swipebox-container:before { left: 0; box-shadow: inset 10px 0px 10px -8px #656565; } .swipebox-touch #swipebox-container:after { right: 0; box-shadow: inset -10px 0px 10px -8px #656565; } .swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before { opacity: 1; } .swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after { opacity: 1; } @-webkit-keyframes rightSpring { 0% { left: 0; } 50% { left: -30px; } 100% { left: 0; } } @keyframes rightSpring { 0% { left: 0; } 50% { left: -30px; } 100% { left: 0; } } @-webkit-keyframes leftSpring { 0% { left: 0; } 50% { left: 30px; } 100% { left: 0; } } @keyframes leftSpring { 0% { left: 0; } 50% { left: 30px; } 100% { left: 0; } } @media screen and (min-width: 800px) { #swipebox-close { right: 10px; } #swipebox-arrows { width: 92%; max-width: 800px; } } /* Skin --------------------------*/ #swipebox-overlay { background: rgba(255, 192, 203, 0.9); } #swipebox-bottom-bar, #swipebox-top-bar { background: rgba(255, 192, 203, 0.9); } #swipebox-top-bar { color: white !important; } /*-------------------------------------------------------------- ## Pattern Fills --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Light gallery --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Browser Hacks --------------------------------------------------------------*/ /*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLmNzcyIsInN0eWxlLnNjc3MiLCJfbm9ybWFsaXplLnNjc3MiLCJtb2R1bGVzL19hbGlnbm1lbnRzLnNjc3MiLCJ0eXBvZ3JhcGh5L190eXBvZ3JhcGh5LnNjc3MiLCJ2YXJpYWJsZXMtc2l0ZS9fY29sb3JzLnNjc3MiLCJ2YXJpYWJsZXMtc2l0ZS9fdHlwb2dyYXBoeS5zY3NzIiwibWl4aW5zL19taXhpbnMtbWFzdGVyLnNjc3MiLCJ0eXBvZ3JhcGh5L19oZWFkaW5ncy5zY3NzIiwidHlwb2dyYXBoeS9fY29weS5zY3NzIiwidHlwb2dyYXBoeS9mb250cy9fZm9udHMuc2NzcyIsInR5cG9ncmFwaHkvZm9udHMvX2ZvbnRlbGxvLWNvZGVzLnNjc3MiLCJ0eXBvZ3JhcGh5L2ZvbnRzL19hbmltYXRpb25zLnNjc3MiLCJlbGVtZW50cy9fZWxlbWVudHMuc2NzcyIsImVsZW1lbnRzL19saXN0cy5zY3NzIiwiZWxlbWVudHMvX3JldXNhYmxlLnNjc3MiLCJtaXhpbnMvX2luY2x1ZGVtZWRpYS5zY3NzIiwiZWxlbWVudHMvX3RhYmxlcy5zY3NzIiwiZWxlbWVudHMvX2ljb25zLnNjc3MiLCJmb3Jtcy9fYnV0dG9ucy5zY3NzIiwiZm9ybXMvX2ZpZWxkcy5zY3NzIiwiZm9ybXMvX2dmb3Jtcy5zY3NzIiwiZm9ybXMvYWNjZXNzaWJpbGl0eS9fc3Vuc2hpbmUuc2NzcyIsIm5hdmlnYXRpb24vX25hdmlnYXRpb24uc2NzcyIsIm5hdmlnYXRpb24vX2xpbmtzLnNjc3MiLCJuYXZpZ2F0aW9uL19tZW51cy5zY3NzIiwibmF2aWdhdGlvbi9tZW51cy9fc2xpZGVsZWZ0LnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS9faGFtYnVyZ2Vycy5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvX2Jhc2Uuc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL18zZHguc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL18zZHgtci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvXzNkeS5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvXzNkeS1yLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fM2R4eS5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvXzNkeHktci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2Fycm93LnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fYXJyb3ctci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2Fycm93YWx0LnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fYXJyb3dhbHQtci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2Fycm93dHVybi5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2Fycm93dHVybi1yLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fYm9yaW5nLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fY29sbGFwc2Uuc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL19jb2xsYXBzZS1yLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fZWxhc3RpYy5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2VsYXN0aWMtci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX2VtcGhhdGljLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fZW1waGF0aWMtci5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX21pbnVzLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fc2xpZGVyLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fc2xpZGVyLXIuc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL19zcGluLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fc3Bpbi1yLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fc3ByaW5nLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fc3ByaW5nLXIuc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL19zdGFuZC5zY3NzIiwibmF2aWdhdGlvbi9tb2JpbGUvdHlwZXMvX3N0YW5kLXIuc2NzcyIsIm5hdmlnYXRpb24vbW9iaWxlL3R5cGVzL19zcXVlZXplLnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fdm9ydGV4LnNjc3MiLCJuYXZpZ2F0aW9uL21vYmlsZS90eXBlcy9fdm9ydGV4LXIuc2NzcyIsImxheW91dC9fcGFnZWxheW91dHMuc2NzcyIsImxheW91dC9faGVhZGVyLnNjc3MiLCJsYXlvdXQvX2NvbnRlbnQuc2NzcyIsIm1vZHVsZXMvX2FjY2Vzc2liaWxpdHkuc2NzcyIsInNpdGUvX3NpdGUuc2NzcyIsInNpdGUvcHJpbWFyeS9fcG9zdHMtYW5kLXBhZ2VzLnNjc3MiLCJzaXRlL3ByaW1hcnkvX2FzaWRlcy5zY3NzIiwibWVkaWEvX21lZGlhLnNjc3MiLCJtZWRpYS9fY2FwdGlvbnMuc2NzcyIsIm1lZGlhL19nYWxsZXJpZXMuc2NzcyIsInZhcmlhYmxlcy1zaXRlL192YXJpYWJsZXMtc2l0ZS5zY3NzIiwibWVkaWEvc2xpY2svX3NsaWNrLnNjc3MiLCJtZWRpYS9zbGljay9fc2xpY2stdGhlbWUuc2NzcyIsIm1lZGlhL19zd2lwZWJveC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGlCQUFpQjtBQ0FqQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0VBMkJFO0FDM0JGO0VBQ0ksd0JBQXVCO0VBQ3ZCLCtCQUE4QjtFQUM5QiwyQkFBMEI7Q0FDN0I7O0FBRUQ7RUFDSSxVQUFTO0NBQ1o7O0FBRUQ7Ozs7Ozs7Ozs7OztFQVlJLGVBQWM7Q0FDakI7O0FBRUQ7Ozs7RUFJSSxzQkFBcUI7RUFDckIseUJBQXdCO0NBQzNCOztBQUVEO0VBQ0ksY0FBYTtFQUNiLFVBQVM7Q0FDWjs7QUYrQkQ7O0VFM0JJLGNBQWE7Q0FDaEI7O0FBRUQ7RUFDSSw4QkFBNkI7Q0FDaEM7O0FBRUQ7O0VBRUksV0FBVTtDQUNiOztBQUVEO0VBQ0ksMEJBQXlCO0NBQzVCOztBQUVEOztFQUVJLGtCQUFpQjtDQUNwQjs7QUFFRDtFQUNJLG1CQUFrQjtDQUNyQjs7QUFFRDtFQUNJLGVBQWM7RUFDZCxpQkFBZ0I7Q0FDbkI7O0FBRUQ7RUFDSSxpQkFBZ0I7RUFDaEIsWUFBVztDQUNkOztBQUVEO0VBQ0ksZUFBYztDQUNqQjs7QUFFRDs7RUFFSSxlQUFjO0VBQ2QsZUFBYztFQUNkLG1CQUFrQjtFQUNsQix5QkFBd0I7Q0FDM0I7O0FBRUQ7RUFDSSxZQUFXO0NBQ2Q7O0FBRUQ7RUFDSSxnQkFBZTtDQUNsQjs7QUFFRDtFQUNJLFVBQVM7Q0FDWjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLHdCQUF1QjtFQUN2QixVQUFTO0NBQ1o7O0FBRUQ7RUFDSSxlQUFjO0NBQ2pCOztBQUVEOzs7O0VBSUksa0NBQWlDO0VBQ2pDLGVBQWM7Q0FDakI7O0FBRUQ7Ozs7Ozs7RUFLSSxlQUFjO0VBQ2QsY0FBYTtFQUNiLFVBQVM7Q0FDWjs7QUFSRDs7RUFXSSxrQkFBaUI7Q0FDcEI7O0FBWkQ7OztFQWdCSSxxQkFBb0I7Q0FDdkI7O0FBakJEOzs7Ozs7OztFQXVCSSwyQkFBMEI7RUFDMUIsZ0JBQWU7Q0FDbEI7O0FBRUQ7Ozs7RUFFSSxnQkFBZTtDQUNsQjs7QUFFRDs7OztFQUVJLFVBQVM7RUFDVCxXQUFVO0NBQ2I7OztBQW5DRDs7RUFzQ0ksb0JBQW1CO0NBQ3RCOztBQUVEOzs7RUFFSSx1QkFBc0I7RUFDdEIsV0FBVTtDQUNiOztBQUVEOzs7RUFFSSxhQUFZO0NBQ2Y7O0FBRUQ7OztFQUVJLHlCQUF3QjtDQUMzQjs7QUFFRDtFQUNJLDBCQUF5QjtFQUN6QixjQUFhO0VBQ2IsK0JBQThCO0NBQ2pDOztBQUVEO0VBQ0ksVUFBUztFQUNULFdBQVU7Q0FDYjs7QUFFRDtFQUNJLGVBQWM7Q0FDakI7O0FBRUQ7RUFDSSxrQkFBaUI7Q0FDcEI7O0FBRUQ7RUFDSSwwQkFBeUI7RUFDekIsa0JBQWlCO0NBQ3BCOztBQUVEOztFQUVJLFdBQVU7Q0FDYjs7QURyS0Q7O2dFQUVnRTtBRTlDaEU7RUFDQyxnQkFBZTtFQUNmLFlBQVc7RUFDWCxvQkFBbUI7Q0FDbkI7O0FBRUQ7RUFDQyxnQkFBZTtFQUNmLGFBQVk7RUFDWixtQkFBa0I7Q0FDbEI7O0FBRUQ7RUFDQyxZQUFXO0VBQ1gsZUFBYztDQUNkOztBQ2ZEOzs7Ozs7RUFLQyxlQ0ZpQztFREdqQyw0SEVMMEg7RUNFdkgsa0JBQWtDO0VBQ2xDLGtCQUE0QjtFSEkvQixpQkVEMkI7Q0ZFM0I7O0FJVEQ7RUFDQyxZQUFXO0VBQ1Isb0JBQW1CO0VBQ25CLGNBQWE7Q0FDaEI7O0FONkREO0VLOURJLGtCQUFrQztFQUNsQyxrQkFBNEI7RUNJNUIsY0FBYTtDQUNoQjs7QUFFRDtFRFJJLGdCQUFrQztFQUNsQyxnQkFBNEI7Q0NTL0I7O0FBRUQ7RURaSSxrQkFBa0M7RUFDbEMsa0JBQTRCO0NDYS9COztBQUVEO0VEaEJJLGtCQUFrQztFQUNsQyxrQkFBNEI7Q0NpQi9COztBQUVEO0VEcEJJLGtCQUFrQztFQUNsQyxrQkFBNEI7Q0NxQi9COztBQUVEO0VEeEJJLGtCQUFrQztFQUNsQyxrQkFBNEI7Q0N5Qi9COztBQzdCRDtFQUNJLHFCQUFvQjtFQUNwQixjQUFhO0NBQ2hCOztBQUVEOzs7O0VBSUksbUJBQWtCO0NBQ3JCOztBQUVEO0VBQ0ksZ0JBQWU7Q0FDbEI7O0FBRUQ7RUFDSSxrQkFBaUI7Q0FDcEI7O0FQOEZEO0VPM0ZJLGlCSkx3QjtFSU14QixvREhoQjhDO0VDSDlDLHFCQUFrQztFQUNsQyxxQkFBNEI7RUVvQjVCLGlCSGhCdUI7RUdpQnZCLHFCQUFvQjtFQUNwQixnQkFBZTtFQUNmLGVBQWM7RUFDZCxlQUFjO0NBQ2pCOztBQUVEOzs7O0VBSUksNEVIOUJ1RTtFQ0Z2RSxxQkFBa0M7RUFDbEMscUJBQTRCO0NFaUMvQjs7QUFFRDs7RUFFSSw4QkpsQ2dCO0VJbUNoQixhQUFZO0NBQ2Y7O0FBRUQ7O0VBRUksb0JKOUIyQjtFSStCM0Isc0JBQXFCO0NBQ3hCOztBQUVEO0VBQ0ksZ0JBQWU7Q0FDbEI7O0FBR0Q7RUFDSSxpQkgvQ1k7Q0dnRGY7O0FBRUQ7RUFDSSxpQkhsRGM7Q0dtRGpCOztBQUVEO0VBQ0ksaUJIckRZO0NHc0RmOztBQUlEO0VBQ0ksaUJBQWdCO0NBQ25COztBQUVEO0VBQ0ksa0JBQWlCO0NBQ3BCOztBQUVEO0VBQ0ksbUJBQWtCO0NBQ3JCOztBQUVEO0VBQ0ksb0JBQW1CO0NBQ3RCOztBQUVEO0VBQ0ksb0JBQW1CO0NBQ3RCOztBQUVEO0VBQ0ksc0JBQXFCO0NBQ3hCOztBQUdEO0VBQ0ksMEJBQXlCO0NBQzVCOztBQUVEO0VBQ0ksMEJBQXlCO0NBQzVCOztBQUVEO0VBQ0ksMkJBQTBCO0NBQzdCOztBQUdEO0VBQ0ksYUpyR3FDO0NJc0d4Qzs7QUM3R0Q7RUFDSSx3QkFBdUI7RUFDdkIsd0RBQTBEO0VBQzFELHNYQUlpRjtFQUNqRixvQkFBbUI7RUFDbkIsbUJBQWtCO0NWZ2JyQjs7QVU1YUQsaUdBQWlHO0FBR2pHLDRGQUE0RjtBQUc1Rjs7Ozs7OztFQU9FO0FWMmFGOztFVXBhSSx3QkFBdUI7RUFDdkIsbUJBQWtCO0VBQ2xCLG9CQUFtQjtFQUNuQixZQUFXO0VBQ1gsc0JBQXFCO0VBQ3JCLHlCQUF3QjtFQUN4QixXQUFVO0VBQ1YsbUJBQWtCO0VBQ2xCLG1CQUFrQjtFQUNsQixrQkFBa0I7RUFDbEIsaUVBQWlFO0VBQ2pFLHFCQUFvQjtFQUNwQixxQkFBb0I7RUFDcEIsK0NBQStDO0VBQy9DLGlCQUFnQjtFQUNoQixpRUFBaUU7RUFDakUsMEJBQTBCO0VBQzFCLGtCQUFpQjtFQUNqQiwyREFBMkQ7RUFDM0Qsc0JBQXNCO0VBQ3RCLDhDQUE4QztFQUM5QyxvQ0FBbUM7RUFDbkMsbUNBQWtDO0VBQ2xDLDZCQUE2QjtFQUM3Qix3REFBd0Q7Q0FDM0Q7O0FDMUREO0VBQXFCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDekM7RUFBMkIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMvQztFQUFxQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ3pDO0VBQW9CLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDeEM7RUFBc0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMxQztFQUFxQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ3pDO0VBQTZCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDakQ7RUFBNkIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUNqRDtFQUE4QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2xEO0VBQTJCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDL0M7RUFBb0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN4QztFQUErQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ25EO0VBQW9CLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDeEM7RUFBeUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM3QztFQUEyQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQy9DO0VBQXFCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDekM7RUFBb0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN4QztFQUFvQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ3hDO0VBQXFCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDekM7RUFBa0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN0QztFQUE0QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2hEO0VBQWdDLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDcEQ7RUFBc0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMxQztFQUFrQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ3RDO0VBQTBCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDOUM7RUFBb0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN4QztFQUF5QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzdDO0VBQXVCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDM0M7RUFBMEIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM5QztFQUF5QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzdDO0VBQXNCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDMUM7RUFBdUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMzQztFQUF3QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzVDO0VBQThCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDbEQ7RUFBd0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM1QztFQUFzQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzFDO0VBQXdCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDNUM7RUFBbUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN2QztFQUE0QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2hEO0VBQWdDLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDcEQ7RUFBdUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMzQztFQUF3QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzVDO0VBQW1CLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDdkM7RUFBcUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUN6QztFQUF3QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzVDO0VBQXdCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDNUM7RUFBMEIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM5QztFQUEyQixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQy9DO0VBQXdCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDNUM7RUFBMEIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM5QztFQUE4QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2xEO0VBQStCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDbkQ7RUFBdUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMzQztFQUE0QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2hEO0VBQXlCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDN0M7RUFBc0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMxQztFQUE4QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2xEO0VBQTZCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDakQ7RUFBc0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUMxQztFQUF1QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzNDO0VBQWlDLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDckQ7RUFBeUIsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUM3QztFQUF5QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQzdDO0VBQTBCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDOUM7RUFBZ0MsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUNwRDtFQUE0QixpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ2hEO0VBQXFCLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUFDekM7RUFBK0IsaUJBQWdCO0NBQUk7O0FBQUEsU0FBQTtBQUNuRDtFQUFnQyxpQkFBZ0I7Q0FBSTs7QUFBQSxTQUFBO0FBQ3BEO0VBQWdDLGlCQUFnQjtDQUFJOztBQUFBLFNBQUE7QUN0RXBEOztFQUVFO0FBRUY7RUFDSSwyQ0FBa0M7VUFBbEMsbUNBQWtDO0VBQ2xDLHNCQUFxQjtDQUN4Qjs7QUFFRDtFQUNJO0lBQ0ksZ0NBQXVCO1lBQXZCLHdCQUF1QjtHWmkwQjVCO0VZL3pCQztJQUNJLGtDQUF5QjtZQUF6QiwwQkFBeUI7R1ppMEI5QjtDQUNGOztBWXYwQkQ7RUFDSTtJQUNJLGdDQUF1QjtZQUF2Qix3QkFBdUI7R1ppMEI1QjtFWS96QkM7SUFDSSxrQ0FBeUI7WUFBekIsMEJBQXlCO0daaTBCOUI7Q0FDRjs7QUVoMUJEO0VXQ0MsdUJBQXNCO0VBQ25CLGlCQUFlO0NBQ2xCOztBQUVEOzs7RUFFVSxzTUFBc007RUFDL00sb0JBQW1CO0NBQ25COztBWEhEO0VXTUMsdUJSQTRCO0VRQWUsb0VBQW9FO0NBQy9HOztBQXdCRDtFQUNDLGNBQWE7RUFDVix5QkFBd0I7RUFDeEIsZ0NSdEMrQjtFUXVDL0IsZ0JBQWU7Q0FLbEI7O0FBVEQ7RUFPRSxZQUFXO0NBQ1g7O0FYOERGO0VXMURDLDBCUi9Da0M7RVFnRGxDLFVBQVM7RUFDVCxZQUFXO0VBQ1gsZUFBYztDQUNkOztBQ3BERDs7RUFFSSxjQUFhO0VBQ2IscUJBQW9CO0NBS3ZCOztBQVJEOzs7O0VBTVEsaUJBQWdCO0NBQ25COztBQUdMO0VBQ0ksaUJBQWdCO0NBQ25COztBQUVEO0VBQ0ksb0JBQW1CO0NBQ3RCOztBQUVEOztFQUVJLGlCQUFnQjtFQUNoQixlQUFjO0NBQ2pCOztBQUVEO0VBQ0ksa0JBQWlCO0NBQ3BCOztBQUVEO0VBQ0ksc0JBQXFCO0NBQ3hCOztBWmdFRDtFV3JDQyxhQUFZO0VBQUUsNENBQTRDO0VBQzFELGdCQUFlO0VBQUUsZ0NBQWdDO0NBQ2pEOztBRWhERDtFQUNJLHVCQUFzQjtFQUN0Qiw0QkFBMkI7RUFDM0IsNkJBQTRCO0NBQy9COztBQUlEO0VBQ0ksWUFDSjtDQUFDOztBQUVEO0VBQ0ksV0FBVTtDQUNiOztBQUVEO0VBQ0ksV0FBVTtDQUNiOztBQUVEO0VBQ0ksV0FBVTtDQUNiOztBQUlEO0VBQ0ksY0FGVTtDQW1DYjs7QUEvQkc7RUFDSSxtQkFMTTtDQVVUOztBQ3FnQkQ7RUQzZ0JBO0lBSVEsV0FBVTtHQUVqQjtDZms1Qko7O0FlaDVCRztFQUNJLG9CQWJNO0NBa0JUOztBQzZmRDtFRG5nQkE7SUFJUSxXQUFVO0dBRWpCO0NmbzVCSjs7QWVsNUJHO0VBQ0ksa0JBckJNO0NBMEJUOztBQ3FmRDtFRDNmQTtJQUlRLFdBQVU7R0FFakI7Q2ZzNUJKOztBZXA1Qkc7RUFDSSxxQkE3Qk07Q0FrQ1Q7O0FDNmVEO0VEbmZBO0lBSVEsV0FBVTtHQUVqQjtDZnc1Qko7O0FlajVCRztFQUNJLGtCQUpLO0NBU1I7O0FDZ2VEO0VEdGVBO0lBSVEsVUFBUztHQUVoQjtDZnE1Qko7O0FlbjVCRztFQUNJLG1CQVpLO0NBaUJSOztBQ3dkRDtFRDlkQTtJQUlRLFVBQVM7R0FFaEI7Q2Z1NUJKOztBZXI1Qkc7RUFDSSxpQkFwQks7Q0F5QlI7O0FDZ2REO0VEdGRBO0lBSVEsVUFBUztHQUVoQjtDZnk1Qko7O0FldjVCRztFQUNJLG9CQTVCSztDQWlDUjs7QUN3Y0Q7RUQ5Y0E7SUFJUSxVQUFTO0dBRWhCO0NmMjVCSjs7QWV2NUJEO0VBQ0ksbUJBQWtCO0VBQ2xCLFdBQVU7RUFDVixZQUFXO0VBQ1gsV0FBVTtFQUNWLGFBQVk7RUFDWixpQkFBZ0I7RUFDaEIsdUJBQW1CO0VBQ25CLFVBQVM7Q0FDWjs7QWJnRkQ7RWV4TUMsa0JBQWlCO0VBQ2pCLFlBQVc7Q0FDWDs7QUNERDtFQUNJLG1CQUFrQjtDQUNyQjs7QUFDRDtFQUNJLFlBQVc7RUFDWCxtQkFBa0I7RUFDbEIsZUFBYztDQUNqQjs7QUFHRDtFQUNDLHVCYlBtQjtFYVFuQiwwQkFBeUI7RUFDekIsWUFBVztFQUNYLGFBQVk7RUFDWixZQUFVO0VBQ1Ysc0JBQXFCO0NBa0JyQjs7QUFoQkE7RUFFQyxrQ0FBeUI7VUFBekIsMEJBQXlCO0NBQ3pCOztBQUNEO0VBRUMsa0NBQXlCO1VBQXpCLDBCQUF5QjtDQUN6Qjs7QUFDRDtFQUVDLGlDQUF3QjtVQUF4Qix5QkFBd0I7Q0FDeEI7O0FBQ0Q7RUFFQyxtQ0FBMEI7VUFBMUIsMkJBQTBCO0NBQzFCOztBQUdGO0VBQ0ksaUJBQWdCO0VBQ2hCLGdCQUFlO0VBQ2YsV0FBVTtFQUNWLGFBQVk7RUFDWix1QmJyQ2dCO0NhMERuQjs7QUExQkQ7RUFTUSxVQUFTO0VBQ1QsWUFBVztFQUNYLFlBQVc7RUFDWCx1QmI1Q1k7Q2E2Q2Y7O0FBYkw7RUFnQlEsT0FBTTtFQUNOLG1DQUEwQjtVQUExQiwyQkFBMEI7RUFDMUIsaUNBQXdCO1VBQXhCLHlCQUF3QjtDQUMzQjs7QUFuQkw7RUFzQlEsVUFBUztFQUNULHNDQUE2QjtVQUE3Qiw4QkFBNkI7RUFDN0Isa0NBQXlCO1VBQXpCLDBCQUF5QjtDQUM1Qjs7QUFHTDtFQUNJLGlCQUFnQjtFQUNoQixnQkFBZTtFQUNmLFNBQVE7RUFDUixVQUFTO0VBQ1QsNkJiakVnQjtFYWtFaEIsa0NBQWlDO0VBQ2pDLHFDQUFvQztDQUN2Qzs7QWhCa0REOzs7Ozs7OztFaUJ4SEkseUJBQWdCO0tBQWhCLHNCQUFnQjtVQUFoQixpQkFBZ0I7RUFDbkIsYUFBVztFQUNYLGtCQUFpQjtFQUNqQix5QkFBdUI7RUFDdkIsdUJkRm1CO0VjR25CLFlBQVU7RUFDVixpQkFBZ0I7RUFDaEIsc0JBQXFCO0VBQ3JCLGFBQVk7Q0F1Qlo7O0FBbkNEOzs7Ozs7OztFQWVFLFlBQVc7Q0FDWDs7QUFoQkY7Ozs7Ozs7O0VBbUJFLHNCZFprQjtFY2FsQixZQUFVO0VBQ1YseUJBQXVCO0VBQ3ZCLGdCQUFjO0NBTWQ7O0FBNUJGOzs7Ozs7Ozs7Ozs7Ozs7O0VBMEJZLG1CQUFrQjtDQUNyQjs7QUFXVDs7Ozs7RUFrQlEsZ0JBQWU7Q0FDbEI7O0FDekRMOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFnQkMsWWZWbUI7RWVXaEIseUJBQWdCO0tBQWhCLHNCQUFnQjtVQUFoQixpQkFBZ0I7RUFDaEIsYUFBWTtFQUNmLHVCZmJtQjtFZWNuQixpQkFBZ0I7RUFDaEIsYUFBWTtFQUNaLGVBQWM7RUFDWCw4QkFBNkI7Q0FTaEM7O0FBaENEOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUEwQkUsWWZwQmtCO0NleUJsQjs7O0FsQndJRjs7RWtCcElJLHNCQUFxQjtDQUN4Qjs7QUFFRDtFQUdJLGlCQUFnQjtFQUNuQix1QmZwQ21CO0NlcUNuQjs7QWxCc0pEO0VrQm5KQyxhQUFZO0VBQ1osWUFBVztDQUNYOztBQUVEO0ViL0NJLGtCQUFrQztFQUNsQyxrQkFBNEI7RWFnRDVCLG9CQUFtQjtFQUNuQixlQUFjO0VBQ2Qsa0JBQWlCO0NBQ3BCOztBQ3ZERDtFQUNJLGNBQWE7Q0FDaEI7O0FBSUc7RUFDSSxtQkFBa0I7Q0FrQ3JCOztBQW5DQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztFQTRCTyx5QkFBZ0I7S0FBaEIsc0JBQWdCO1VBQWhCLGlCQUFnQjtFQUNoQixZQUFXO0VBQ1gsVUFBUztDQUNaOztBQU1MO0VBQ0ksV0FBVTtFQUVWLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLG1CQUFrQjtDQUNyQjs7QUFNRDtFQUNJLG1CQUFrQjtDQStGckI7O0FBaEdBO0VBV1cseUJBQXdCO0NBQzNCOztBQVpSO0VBY1csa0JBQWlCO0NBQ3BCOztBQWZSO0VBaUJXLG1CQUFrQjtFQUNsQixVQUFTO0VBQ1QsWUFBVztFQUNYLFloQnZFSTtDZ0J3RVA7O0FBckJSO0VBeUJlLHVCaEI1RUE7RWdCNkVBLFlBQVc7RUFDWCxlQUFjO0VBRWQsa0JBQWlCO0NBSXBCOztBQWpDWjtFQXNDVyxpQkFBZ0I7RUFDaEIsVUFBUztFQUNULFdBQVU7Q0FTYjs7QUFqRFI7RUEyQ2UsZ0JBQWU7RUFDZixlQUFjO0NBSWpCOztBQWhEWjtFQThDbUIsZUFBYztDQUNqQjs7QUEvQ2hCO0VBc0RlLGVBQWM7Q0FDakI7O0FBdkRaO0VBMERXLGVBQWM7RUFDZCxvQkFBbUI7RUFDbkIsWUFBVztFZC9FdkIsWUFBVztFQUNYLGVBQWM7RUFDZCxvQkFBbUI7Q2N5R1Y7O0FBeEZSO0VBK0RlLG9CQUFtQjtFQUNuQixvQkFBbUI7RUFDbkIsb0JBQW1CO0VBQ25CLFlBQVc7Q0FJZDs7QUF0RVo7RUFvRW1CLGlCQUFnQjtDQUNuQjs7QUFyRWhCO0VBeUVtQixlQUFjO0VBQ2QsWUFBVztFQUNYLGlCQUFnQjtDQUNuQjs7QUE1RWhCO0VBOEVtQixlQUFjO0VBQ2QsWUFBVztFQUNYLFdBQVU7Q0FDYjs7QUFqRmhCO0VBbUZtQixlQUFjO0VBQ2QsYUFBWTtFQUNaLFdBQVU7Q0FDYjs7QUF0RmhCO0VBNEZPLHVCaEIvSVE7RWdCZ0pSLFlBQVc7RUFDWCxhQUFZO0NBQ2Y7O0FBRUw7RUFDSSxvQmhCekoyQjtFRW9DL0IsWUFBVztFQUNYLGVBQWM7RUFDZCxvQkFBbUI7Q2N3SGxCOztBQUNEO0VBQ0ksYUFBWTtDQUNmOztBQUNEO0VBQ0ksWUFBVztDQUNkOztBQWxLTDtFQXFLUSxlQUFjO0VBQ2QsZ0JBQWU7Q0FDbEI7O0FBM0tMO0VBOEtJLGNBQWE7Q0FDaEI7O0FBRUQ7RUFDSSxrQkFBaUI7RUFDakIsY0FBYTtFQUNiLG1CQUFrQjtFQUNsQixzQmhCOUtnQjtFZ0IrS2hCLGNBQWE7RUFDYixrQkFBaUI7RUFDakIsK0NoQnJMOEI7Q2dCNkxqQzs7QUFmRDtFQVNRLGtCQUFpQjtFQUNqQixpQkFBZ0I7Q0FDbkI7O0FBTUw7RUFDSSxpQkFBZ0I7RUFDaEIsZ0JBQWU7RUFDZixjQUFhO0NBT2hCOztBQVZEO0VBS1EsV0FBVTtDQUliOztBTHlXRDtFS2xYSjtJQU9ZLFdBQVU7R0FFakI7Q3JCaXdDSjs7QXFCOXZDRDtFQUNJLGlCQUFnQjtFQUNoQixlQUFjO0NBQ2pCOztBQUdEOzs7Ozs7RUFNRTtBQU1GOzs7Ozs7Ozs7RUFTSSx1QkFBc0I7RUFDdEIsWUFBVztFQUNYLG1CQUFrQjtFQUNsQixvQkFBbUI7RUFDbkIscUJBQW9CO0VBQ3BCLHFCQUFvQjtFQUNwQixlQUFjO0VBQ2Qsb0NBQW1DO0VBQ25DLG1DQUNKO0NBQUM7O0FBd0ZEO0VBQ0ksb0JoQnpVK0I7RWdCMFUvQixjQUFhO0NBQ2hCOztBQUVEOztFQUVJLGtCQUFpQjtFQUNqQixXQUFVO0NBQ2I7O0FBRUQ7RUFDSSxXQUFVO0NBSWI7O0FMME5HO0VLL05KO0lBR1EsWUFBVztHQUVsQjtDckJ1cUNBOztBcUJycUNEO0VBQ0ksZUFBYztFQUNkLFlBQVc7RUFDWCxtQkFBa0I7RUFDbEIsbUJBQWtCO0VBQ2xCLGVBQWM7Q0FDakI7O0FBRUQ7RUFDSSxtQkFBa0I7RUFDbEIsUUFBTztFQUNQLE9BQU07RUFDTixlQUFjO0NBQ2pCOztBQWJEO0VBZ0JJLGVBQWM7RUFDZCxZQUFXO0VBQ1gsbUJBQWtCO0VBQ2xCLG1CQUFrQjtFQUNsQixlQUFjO0VBQ2QsYUFBWTtFQUNaLGVoQi9XOEI7Q2dCZ1hqQzs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDtFQUNJLGlCQUFnQjtDQUNuQjs7QUFFRDs7RUFFSSxZQUFXO0NBQ2Q7O0FBRUQ7RUFDSSxrQkFBaUI7RUFDakIsd0JBQXVCO0NBSzFCOztBTDJKRztFS2xLSjtJQUlRLFVBQVM7SUFDVCxZQUFXO0dBRWxCO0NyQjBxQ0E7O0FxQnhxQ0Q7RUFDSSxpQkFBZ0I7RUFDaEIsWUFBVztFQUNYLFlBQVc7RUFDWCxpQkFBZ0I7Q0FDbkI7O0FBRUQ7RUFDSSxvQkFBbUI7RUFDbkIsYUFBWTtFQUNaLG1CQUFrQjtFQUNsQixtQkFBa0I7RUFDbEIsZUFBYztFQUNkLG1CQUFrQjtDQUNyQjs7QUFFRDtFQUNJLGFBQVk7Q0FDZjs7QUFFRDtFQUNJLFlBQVc7RUFDWCxlQUFjO0NBQ2pCOztBQUVEO0VBQ0ksbUJBQWtCO0NBQ3JCOztBQ3JiRDtFQUNDLG9CQUFtQjtFQUNoQixtQkFBa0I7Q0ErRHJCOztBQWpFRDs7RUFPUSxZQUFXO0VBRVgsV2pCSFk7RWlCSVosdUJBQXNCO0NBQ3pCOztBQVhMO0VBY1EsbUJBQWtCO0VBQ2xCLFlBQVc7RUFDWCxhQUFZO0VBQ1osaUJBQWdCO0VBQ2hCLHFCQUFvQjtFQUNwQixzQkFBcUI7RUFDckIsdUJBQXNCO0VBQ3RCLG1CQUFrQjtFQUNsQixZQUFXO0VBQ1gsWWpCbEJZO0VpQm1CWixrQkFBaUI7RUFDakIsb0NBQW1DO0VBQ25DLDBCQUFpQjtLQUFqQix1QkFBaUI7TUFBakIsc0JBQWlCO1VBQWpCLGtCQUFpQjtFQUNqQix5QkFBd0I7RWZ6QjVCLGtCQUFrQztFQUNsQyxrQkFBNEI7Q2VnRDNCOztBQW5ETDtFQWdDWSxZQUFXO0VBQ1gsbUJBQWtCO0VBQ2xCLFFBQU87RUFDUCxZQUFXO0VBQ1gsWUFBVztFQUNYLG1DQUEwQjtFQUExQiwyQkFBMEI7RUFBMUIsbURBQTBCO0NBQzdCOztBQXRDVDtFQXlDWSxPQUFNO0NBQ1Q7O0FBMUNUO0VBNkNZLFVBQVM7Q0FDWjs7QUE5Q1Q7RUFpRFksbUNBQTBCO0VBQTFCLDJCQUEwQjtFQUExQixtREFBMEI7Q0FDN0I7O0FBbERUO0VBeURZLDRDQUFtQztVQUFuQyxvQ0FBbUM7RUFDbkMsYUFBWTtFQUNaLGVBQWM7RUFDZCx5QkFBd0I7RUFDeEIsZWpCNUR1QjtFaUI2RHZCLGVBQWM7Q0FDakI7O0FDaEVUOztnRUFFZ0U7QXJCeUNoRTtFc0IxQ0MsWW5CS21CO0VtQkpoQixzQkFBcUI7Q0FrQnhCOztBQXBCRDtFQUtFLFluQkNrQjtDbUJBbEI7O0FBTkY7RUFTRSxXbkJGa0I7RW1CR1osc0JBQXFCO0NBQzNCOztBQVhGO0VBYUUscUJBQW9CO0VBQ2Qsc0JBQXFCO0NBQzNCOztBQWZGO0VBa0JFLFdBQVU7Q0FDVjs7QURkRjs7Z0VBRWdFO0FFUGhFO0VBQ0MsZUFBYztFQUNkLGtCQUFpQjtFQUNqQiwyQkFBeUI7Q0FzSnpCOztBVDJaRztFU3BqQko7SUFNUSxrQkFBaUI7R0FtSnhCO0N6QjZpREE7O0F5QnRzREQ7RUFVRSxpQkFBZ0I7RUFDaEIsVUFBUztFQUNILFdBQVU7Q0F5RGhCOztBQXJFRjtFQWVHLDZDcEJaK0I7RW9CYS9CLFlBQVc7RUFDWCxtQkFBa0I7RUFDbEIsVUFBUztFQUNULGFBQVk7RUFDWixlQUFjO0VBQ0wsdUJBQXNCO0VBQ3RCLG1CQUFrQjtFQUNsQixpQkFBZ0I7Q0F3Q3pCOztBVHFmQztFU3BqQko7SUEwQmdCLG1CQUFrQjtJQUNsQixZQUFXO0lBQ1gsV0FBVTtJQUNWLFVBQVM7R0FrQ3RCO0N6QmtxREY7O0F5Qmp1REQ7RUFpQ0ksYUFBWTtFQUNaLE9BQU07Q0FLTjs7QVQ2Z0JBO0VTcGpCSjtJQXFDb0IsY0FBYTtHQUU3QjtDekJxc0RIOztBeUI1dUREOztFQTRDSyxXQUFVO0NBS1Y7O0FUbWdCRDtFU3BqQko7O0lBK0N3QixjQUFhO0dBRWhDO0N6QnVzREo7O0F5Qnh2REQ7O0VBbUVHLFdBQVU7Q0FDVjs7QUFwRUg7RUF3RUUsbUJBQWtCO0VBQ1osaUJBQWdCO0VBQ2hCLHNCQUFxQjtFQUNyQixvQkFBbUI7Q0FZekI7O0FUNmRFO0VTcGpCSjtJQStFWSxZQUFXO0dBUXJCO0N6Qm1yREQ7O0F5QjF3REQ7O0VBb0ZZLHNCcEI3RVE7RW9COEVSLFlwQi9FUTtDb0JnRmpCOztBQXRGSDtFQTJGRSxzQkFBcUI7RUFDZix1QkFBc0I7RUFDNUIsc0JBQXFCO0VBQ2YsY0FBYTtFQUNiLGFBQVk7RUFDWixZQUFXO0NBQ2pCOztBQWpHRjtFQTBHUSxhQUFZO0VBQ1osV0FBVTtFQUNWLFVBQVM7Q0FRWjs7QVRnY0Q7RVNwakJKO0lBOEdZLFlBQVc7R0FNbEI7Q3pCaXJESjs7QXlCcnlERDtFQWtIWSxZQUFXO0NBQ2Q7O0FUaWNMO0VTcGpCSjs7SUF5SFksY0FBYTtHQUtoQjtFQTlIVDs7SUE0SGdCLGVBQWM7R0FDakI7Q3pCdXJEWjs7QXlCcHpERDtFQW1JUSw4QkFBNkI7RUFDN0IsV0FBVTtFQUNWLFlBQVc7RUFDWCxpQkFBZ0I7RUFDaEIsbUJBQWtCO0VBQ2xCLGdCQUFlO0NBZ0JsQjs7QUF4Skw7RUE0SVksbUJBQWtCO0VBQ2xCLFlBQVc7RUFDWCxrQ0FBeUI7VUFBekIsMEJBQXlCO0VBQ3pCLG1CQUFrQjtDQUtyQjs7QVRnYUw7RVNwakJKO0lBa0pnQixvQkFBbUI7R0FFMUI7Q3pCc3JEUjs7QXlCMTBERDtFQXNKWSxrQ0FBeUI7VUFBekIsMEJBQXlCO0NBQzVCOztBQXlCUjs7O0VBQ0Msa0JBQWlCO0VBQ2pCLGlCQUFnQjtDQUNoQjs7QUFQRjs7O0VBVUUsWUFBVztDQUVYOztBQVpGOzs7RUFlRSxhQUFZO0VBQ1osa0JBQWlCO0NBRWpCOztBVHNYRTtFUzdXQTtJQUNGLGNBQWE7R0FDYjtFQXpNRjtJQTJNRSxlQUFjO0dBQ2Q7Q3pCK3BERDs7QXlCdHBERDs7RUFDQyxtQkFBa0I7RUFDbEIsYUFBWTtFQUNULGtCQUFpQjtDQU1wQjs7QVRzVkc7RVMvVko7O0lBTVEsZUFBYztHQUdyQjtDekIycERBOztBeUIxcEREO0VBQ0MsMkJBQXlCO0NBQ3pCOztBQ2hPRDs7Ozs7O0VBTUU7QVY2aUJFO0VVM2lCSjtJQUlFLGdCQUFjO0lBQ2QsZ0JBQWU7SUFDZixPQUFLO0lBQ0wsU0FBTztJQUNQLFdBQVM7SUFDVCxZQUFXO0lBQ1gsU0FBUTtJQUNSLGFBQVk7SUFDWixtQkFBaUI7SUFDakIsdUJBQXFCO0lBQ2Ysc0JBQXFCO0dBdUM1QjtFQXJERDtJQWlCWSxtQkFBa0I7SUFDbEIsWUFBVztJQUNYLG1CQUFrQjtJQUNsQixhQUFZO0lBQ1osZUFBYztJQUNkLFdBQVU7SUFDVixtQkFBa0I7SUFDbEIseUJBQXdCO0dBQzNCO0VBekJUO0lBNEJZLG9CQUFtQjtJQUNuQix1QkFBc0I7R0FDekI7QzFCMjNEUjs7QTBCdjNEQTtFQUNDLHVCQUFxQjtFQUNyQixnQkFBYztFQUNkLGFBQVk7RUFDWixZQUFXO0VBQ1gsYUFBWTtFQUNaLG9CQUFtQjtDQVluQjs7QUFWQTtFQVJEO0lBU0UsaUJBQWdCO0dBU2pCO0MxQm8zREQ7O0EwQnQ0REE7RUFhVyxXQUFVO0VBQ1Ysb0JBQW1CO0VBQ25CLHlCQUF3QjtFQUN4QixzQkFBcUI7Q0FDeEI7O0FDM0RUOzs7Ozs7R0FNRztBQ0xIO0VBQ0ksbUJEUWlDO0VDUGpDLHNCQUFxQjtFQUNyQixnQkFBZTtFQUVmLDZDQUFvQztFQUFwQyxxQ0FBb0M7RUFBcEMscURBQW9DO0VBQ3BDLDJCQUEwQjtFQUMxQixtQ0FBa0M7RUFHbEMsY0FBYTtFQUNiLGVBQWM7RUFDZCxxQkFBb0I7RUFDcEIsOEJBQTZCO0VBQzdCLFVBQVM7RUFDVCxVQUFTO0VBQ1Qsa0JBQWlCO0NBc0NwQjs7QUF0REQ7RUF3QlksYURQd0I7Q0NrQi9COztBQW5DTDtFQTRCWSx1QkRieUI7Q0NtQjVCOztBQWxDVDtFQWdDZ0IsdUJEakJxQjtDQ2tCeEI7O0FBakNiO0VBNENnQixhRDNCb0I7Q0M2QjNCOztBQTlDVDs7O0VBbURZLHVCRHJDeUI7Q0NzQzVCOztBQUlUO0VBQ0ksWUQ5Q2lDO0VDK0NqQyxhQUFrRTtFQUNsRSxzQkFBcUI7RUFDckIsdUJBQXNCO0VBQ3RCLG1CQUFrQjtDQUNyQjs7QUFFRDtFQUNJLGVBQWM7RUFDZCxTQUFRO0VBQ1IsaUJBQXdDO0NBNEIzQzs7QUEvQkQ7RUFRUSxZRDdENkI7RUM4RDdCLFlEN0Q0QjtFQzhENUIsdUJENUQ2QjtFQzZEN0IsbUJEM0Q0QjtFQzRENUIsbUJBQWtCO0VBQ2xCLHVDQUE4QjtFQUE5QiwrQkFBOEI7RUFBOUIsa0RBQThCO0VBQzlCLDJCQUEwQjtFQUMxQixpQ0FBZ0M7Q0FDbkM7O0FBaEJMO0VBb0JRLFlBQVc7RUFDWCxlQUFjO0NBQ2pCOztBQXRCTDtFQXlCUSxXQUE4RDtDQUNqRTs7QUExQkw7RUE2QlEsY0FBaUU7Q0FDcEU7O0FDL0ZIOztLQUVHO0FBQ0g7RUFFSSwwQkFBdUM7VUFBdkMsa0JBQXVDO0NBQ3hDOztBQUhIO0VBTUksd0lBQ3lFO0VBRHpFLGdJQUN5RTtFQUR6RSw4TEFDeUU7Q0FNMUU7O0FBYkg7RUFXTSwyRUFBa0U7RUFBbEUsbUVBQWtFO0VBQWxFLG1JQUFrRTtDQUNuRTs7QUFaTDtFQWlCTSx5Q0FBd0M7RUFDeEMsbUNBQTBCO1VBQTFCLDJCQUEwQjtDQVMzQjs7QUEzQkw7RUFxQlEseURBQThGO1VBQTlGLGlEQUE4RjtDQUMvRjs7QUF0QlA7RUF5QlEsMkRBQXNHO1VBQXRHLG1EQUFzRztDQUN2Rzs7QUM3QlA7O0tBRUc7QUFDSDtFQUVJLDBCQUF1QztVQUF2QyxrQkFBdUM7Q0FDeEM7O0FBSEg7RUFNSSx3SUFDeUU7RUFEekUsZ0lBQ3lFO0VBRHpFLDhMQUN5RTtDQU0xRTs7QUFiSDtFQVdNLDJFQUFrRTtFQUFsRSxtRUFBa0U7RUFBbEUsbUlBQWtFO0NBQ25FOztBQVpMO0VBaUJNLHlDQUF3QztFQUN4QyxvQ0FBMkI7VUFBM0IsNEJBQTJCO0NBUzVCOztBQTNCTDtFQXFCUSx5REFBOEY7VUFBOUYsaURBQThGO0NBQy9GOztBQXRCUDtFQXlCUSwyREFBc0c7VUFBdEcsbURBQXNHO0NBQ3ZHOztBQzdCUDs7S0FFRztBQUNIO0VBRUksMEJBQXVDO1VBQXZDLGtCQUF1QztDQUN4Qzs7QUFISDtFQU1JLHdJQUN5RTtFQUR6RSxnSUFDeUU7RUFEekUsOExBQ3lFO0NBTTFFOztBQWJIO0VBV00sMkVBQWtFO0VBQWxFLG1FQUFrRTtFQUFsRSxtSUFBa0U7Q0FDbkU7O0FBWkw7RUFpQk0seUNBQXdDO0VBQ3hDLG9DQUEyQjtVQUEzQiw0QkFBMkI7Q0FTNUI7O0FBM0JMO0VBcUJRLHlEQUE4RjtVQUE5RixpREFBOEY7Q0FDL0Y7O0FBdEJQO0VBeUJRLDJEQUFzRztVQUF0RyxtREFBc0c7Q0FDdkc7O0FDN0JQOztLQUVHO0FBQ0g7RUFFSSwwQkFBdUM7VUFBdkMsa0JBQXVDO0NBQ3hDOztBQUhIO0VBTUksd0lBQ3lFO0VBRHpFLGdJQUN5RTtFQUR6RSw4TEFDeUU7Q0FNMUU7O0FBYkg7RUFXTSwyRUFBa0U7RUFBbEUsbUVBQWtFO0VBQWxFLG1JQUFrRTtDQUNuRTs7QUFaTDtFQWlCTSx5Q0FBd0M7RUFDeEMsbUNBQTBCO1VBQTFCLDJCQUEwQjtDQVMzQjs7QUEzQkw7RUFxQlEseURBQThGO1VBQTlGLGlEQUE4RjtDQUMvRjs7QUF0QlA7RUF5QlEsMkRBQXNHO1VBQXRHLG1EQUFzRztDQUN2Rzs7QUM3QlA7O0tBRUc7QUFDSDtFQUVJLDBCQUF1QztVQUF2QyxrQkFBdUM7Q0FDeEM7O0FBSEg7RUFNSSx3SUFDeUU7RUFEekUsZ0lBQ3lFO0VBRHpFLDhMQUN5RTtDQU0xRTs7QUFiSDtFQVdNLDJFQUFrRTtFQUFsRSxtRUFBa0U7RUFBbEUsbUlBQWtFO0NBQ25FOztBQVpMO0VBaUJNLHlDQUF3QztFQUN4QyxtREFBMEM7VUFBMUMsMkNBQTBDO0NBUzNDOztBQTNCTDtFQXFCUSx5REFBOEY7VUFBOUYsaURBQThGO0NBQy9GOztBQXRCUDtFQXlCUSwyREFBc0c7VUFBdEcsbURBQXNHO0NBQ3ZHOztBQzdCUDs7S0FFRztBQUNIO0VBRUksMEJBQXVDO1VBQXZDLGtCQUF1QztDQUN4Qzs7QUFISDtFQU1JLHdJQUN5RTtFQUR6RSxnSUFDeUU7RUFEekUsOExBQ3lFO0NBTTFFOztBQWJIO0VBV00sMkVBQWtFO0VBQWxFLG1FQUFrRTtFQUFsRSxtSUFBa0U7Q0FDbkU7O0FBWkw7RUFpQk0seUNBQXdDO0VBQ3hDLG9FQUEyRDtVQUEzRCw0REFBMkQ7Q0FTNUQ7O0FBM0JMO0VBcUJRLHlEQUE4RjtVQUE5RixpREFBOEY7Q0FDL0Y7O0FBdEJQO0VBeUJRLDJEQUFzRztVQUF0RyxtREFBc0c7Q0FDdkc7O0FDN0JQOztLQUVHO0FBQ0g7RUFHTSx3RUFBd0Y7VUFBeEYsZ0VBQXdGO0NBQ3pGOztBQUpMO0VBT00sdUVBQXVGO1VBQXZGLCtEQUF1RjtDQUN4Rjs7QUNYTDs7S0FFRztBQUNIO0VBR00sc0VBQXNGO1VBQXRGLDhEQUFzRjtDQUN2Rjs7QUFKTDtFQU9NLHVFQUF1RjtVQUF2RiwrREFBdUY7Q0FDeEY7O0FDWEw7O0tBRUc7QUFDSDtFQUdNLDBGQUM2RDtFQUQ3RCxrRkFDNkQ7RUFEN0QsNklBQzZEO0NBQzlEOztBQUxMO0VBUU0sNkZBQzZEO0VBRDdELHFGQUM2RDtFQUQ3RCxnSkFDNkQ7Q0FDOUQ7O0FBVkw7RUFnQlEsT0FBTTtFQUNOLDRFQUFxSDtVQUFySCxvRUFBcUg7RUFDckgsOEZBQ3NFO0VBRHRFLHNGQUNzRTtFQUR0RSwwSkFDc0U7Q0FDdkU7O0FBcEJQO0VBdUJRLFVBQVM7RUFDVCwwRUFBbUg7VUFBbkgsa0VBQW1IO0VBQ25ILGlHQUNzRTtFQUR0RSx5RkFDc0U7RUFEdEUsNkpBQ3NFO0NBQ3ZFOztBQzlCUDs7S0FFRztBQUNIO0VBR00sMEZBQzZEO0VBRDdELGtGQUM2RDtFQUQ3RCw2SUFDNkQ7Q0FDOUQ7O0FBTEw7RUFRTSw2RkFDNkQ7RUFEN0QscUZBQzZEO0VBRDdELGdKQUM2RDtDQUM5RDs7QUFWTDtFQWdCUSxPQUFNO0VBQ04sMEVBQW1IO1VBQW5ILGtFQUFtSDtFQUNuSCw4RkFDc0U7RUFEdEUsc0ZBQ3NFO0VBRHRFLDBKQUNzRTtDQUN2RTs7QUFwQlA7RUF1QlEsVUFBUztFQUNULDBFQUFtSDtVQUFuSCxrRUFBbUg7RUFDbkgsaUdBQ3NFO0VBRHRFLHlGQUNzRTtFQUR0RSw2SkFDc0U7Q0FDdkU7O0FDOUJQOztLQUVHO0FBQ0g7RUFFSSxtQ0FBMEI7VUFBMUIsMkJBQTBCO0NBUzNCOztBQVhIO0VBS00sc0VBQTZEO1VBQTdELDhEQUE2RDtDQUM5RDs7QUFOTDtFQVNNLHVFQUE4RDtVQUE5RCwrREFBOEQ7Q0FDL0Q7O0FDYkw7O0tBRUc7QUFDSDtFQUVJLG1DQUEwQjtVQUExQiwyQkFBMEI7Q0FTM0I7O0FBWEg7RUFLTSx3RUFBK0Q7VUFBL0QsZ0VBQStEO0NBQ2hFOztBQU5MO0VBU00sdUVBQThEO1VBQTlELCtEQUE4RDtDQUMvRDs7QUNiTDs7S0FFRztBQUNIO0VBS00sMEJBQXlCO0NBQzFCOztBQU5MO0VBV00saUNBQXdCO1VBQXhCLHlCQUF3QjtDQVd6Qjs7QUF0Qkw7RUFjUSxPQUFNO0VBQ04sV0FBVTtDQUNYOztBQWhCUDtFQW1CUSxVQUFTO0VBQ1Qsa0NBQXlCO1VBQXpCLDBCQUF5QjtDQUMxQjs7QUN4QlA7O0tBRUc7QUFDSDtFQUVJLFVBQVM7RUFDVCxVQUFTO0VBQ1QsMkJBQTBCO0VBQzFCLHdCQUF1QjtFQUN2QixtRUFBa0U7Q0FZbkU7O0FBbEJIO0VBU00sV0FBc0U7RUFDdEUsMEZBQytCO0NBQ2hDOztBQVpMO0VBZU0sc0lBQ2tFO0VBRGxFLDhIQUNrRTtFQURsRSw4TEFDa0U7Q0FDbkU7O0FBakJMO0VBc0JNLDJEQUFzRztVQUF0RyxtREFBc0c7RUFDdEcsd0JBQXVCO0VBQ3ZCLGdFQUErRDtDQWVoRTs7QUF2Q0w7RUEyQlEsT0FBTTtFQUNOLFdBQVU7RUFDViwyRkFDcUM7Q0FDdEM7O0FBL0JQO0VBa0NRLE9BQU07RUFDTixrQ0FBeUI7VUFBekIsMEJBQXlCO0VBQ3pCLHlJQUNxRTtFQURyRSxpSUFDcUU7RUFEckUsb01BQ3FFO0NBQ3RFOztBQ3pDUDs7S0FFRztBQUNIO0VBRUksVUFBUztFQUNULFVBQVM7RUFDVCwyQkFBMEI7RUFDMUIsd0JBQXVCO0VBQ3ZCLG1FQUFrRTtDQVluRTs7QUFsQkg7RUFTTSxXQUFzRTtFQUN0RSwwRkFDK0I7Q0FDaEM7O0FBWkw7RUFlTSxzSUFDa0U7RUFEbEUsOEhBQ2tFO0VBRGxFLDhMQUNrRTtDQUNuRTs7QUFqQkw7RUFzQk0sMERBQXFHO1VBQXJHLGtEQUFxRztFQUNyRyx3QkFBdUI7RUFDdkIsZ0VBQStEO0NBZWhFOztBQXZDTDtFQTJCUSxPQUFNO0VBQ04sV0FBVTtFQUNWLDJGQUNxQztDQUN0Qzs7QUEvQlA7RUFrQ1EsT0FBTTtFQUNOLGlDQUF3QjtVQUF4Qix5QkFBd0I7RUFDeEIseUlBQ3FFO0VBRHJFLGlJQUNxRTtFQURyRSxvTUFDcUU7Q0FDdEU7O0FDekNQOztLQUVHO0FBQ0g7RUFFSSxTQUFnQztFQUNoQyw0QkFBMkI7RUFDM0IsbUVBQWtFO0NBV25FOztBQWZIO0VBT00sVUFBdUQ7RUFDdkQsdUNBQXNDO0NBQ3ZDOztBQVRMO0VBWU0sVUFBbUU7RUFDbkUsNEVBQW1FO0VBQW5FLG9FQUFtRTtFQUFuRSxxSUFBbUU7Q0FDcEU7O0FBZEw7RUFxQk0sMERBQXNEO1VBQXRELGtEQUFzRDtFQUN0RCx5QkFBd0I7Q0FXekI7O0FBakNMO0VBeUJRLHFCQUFvQjtFQUNwQixXQUFVO0NBQ1g7O0FBM0JQO0VBOEJRLDREQUE0RDtVQUE1RCxvREFBNEQ7RUFDNUQseUJBQXdCO0NBQ3pCOztBQ25DUDs7S0FFRztBQUNIO0VBRUksU0FBZ0M7RUFDaEMsNEJBQTJCO0VBQzNCLG1FQUFrRTtDQVduRTs7QUFmSDtFQU9NLFVBQXVEO0VBQ3ZELHVDQUFzQztDQUN2Qzs7QUFUTDtFQVlNLFVBQW1FO0VBQ25FLDRFQUFtRTtFQUFuRSxvRUFBbUU7RUFBbkUscUlBQW1FO0NBQ3BFOztBQWRMO0VBcUJNLDJEQUF1RDtVQUF2RCxtREFBdUQ7RUFDdkQseUJBQXdCO0NBV3pCOztBQWpDTDtFQXlCUSxxQkFBb0I7RUFDcEIsV0FBVTtDQUNYOztBQTNCUDtFQThCUSwyREFBMkQ7VUFBM0QsbURBQTJEO0VBQzNELHlCQUF3QjtDQUN6Qjs7QUNuQ1A7O0tBRUc7QUFDSDtFQUNFLGlCQUFnQjtDQThDakI7O0FBL0NEO0VBSUksbURBQWtEO0NBZ0JuRDs7QUFwQkg7RUFPTSxRQUFPO0VBQ1AsK0hBRXNDO0VBRnRDLHVIQUVzQztFQUZ0QyxzTEFFc0M7Q0FDdkM7O0FBWEw7RUFjTSxVQUEyRDtFQUMzRCxTQUFRO0VBQ1IsZ0lBRXVDO0VBRnZDLHdIQUV1QztFQUZ2Qyx1TEFFdUM7Q0FDeEM7O0FBbkJMO0VBd0JNLHFCQUFvQjtFQUNwQixxQ0FBb0M7RUFDcEMseUNBQXdDO0NBbUJ6Qzs7QUE3Q0w7RUE2QlEsWUFBaUM7RUFDakMsV0FBZ0M7RUFDaEMsNERBQStGO1VBQS9GLG9EQUErRjtFQUMvRiwrSEFFdUU7RUFGdkUsdUhBRXVFO0VBRnZFLDRMQUV1RTtDQUN4RTs7QUFuQ1A7RUFzQ1EsYUFBa0M7RUFDbEMsV0FBZ0M7RUFDaEMsOERBQWlHO1VBQWpHLHNEQUFpRztFQUNqRyxnSUFFdUU7RUFGdkUsd0hBRXVFO0VBRnZFLDZMQUV1RTtDQUN4RTs7QUMvQ1A7O0tBRUc7QUFDSDtFQUNFLGlCQUFnQjtDQThDakI7O0FBL0NEO0VBSUksbURBQWtEO0NBZ0JuRDs7QUFwQkg7RUFPTSxRQUFPO0VBQ1AsK0hBRXNDO0VBRnRDLHVIQUVzQztFQUZ0QyxzTEFFc0M7Q0FDdkM7O0FBWEw7RUFjTSxVQUEyRDtFQUMzRCxTQUFRO0VBQ1IsZ0lBRXVDO0VBRnZDLHdIQUV1QztFQUZ2Qyx1TEFFdUM7Q0FDeEM7O0FBbkJMO0VBd0JNLHFCQUFvQjtFQUNwQixxQ0FBb0M7RUFDcEMseUNBQXdDO0NBbUJ6Qzs7QUE3Q0w7RUE2QlEsWUFBaUM7RUFDakMsVUFBK0I7RUFDL0IsOERBQWlHO1VBQWpHLHNEQUFpRztFQUNqRywrSEFFdUU7RUFGdkUsdUhBRXVFO0VBRnZFLDRMQUV1RTtDQUN4RTs7QUFuQ1A7RUFzQ1EsYUFBa0M7RUFDbEMsVUFBK0I7RUFDL0IsOERBQWlHO1VBQWpHLHNEQUFpRztFQUNqRyxnSUFFdUU7RUFGdkUsd0hBRXVFO0VBRnZFLDZMQUV1RTtDQUN4RTs7QUMvQ1A7O0tBRUc7QUFDSDtFQUlNLCtFQUU2QjtDQUM5Qjs7QUFQTDtFQWNRLFdBQVU7RUFDViwrRUFFbUM7Q0FDcEM7O0FBbEJQO0VBb0JRLE9BQU07Q0FDUDs7QUFyQlA7RUF3QlEsVUFBUztDQUNWOztBQzVCUDs7S0FFRztBQUNIO0VBRUksU0FBZ0M7Q0FZakM7O0FBZEg7RUFLTSxVQUF1RDtFQUN2RCxnREFBdUM7RUFBdkMsd0NBQXVDO0VBQXZDLDJEQUF1QztFQUN2QyxpQ0FBZ0M7RUFDaEMsMkJBQTBCO0NBQzNCOztBQVRMO0VBWU0sVUFBbUU7Q0FDcEU7O0FBYkw7RUFvQk0seURBQXFEO1VBQXJELGlEQUFxRDtDQVV0RDs7QUE5Qkw7RUF1QlEsbUVBQW9HO1VBQXBHLDJEQUFvRztFQUNwRyxXQUFVO0NBQ1g7O0FBekJQO0VBNEJRLDJEQUEyRDtVQUEzRCxtREFBMkQ7Q0FDNUQ7O0FDaENQOztLQUVHO0FBQ0g7RUFFSSxTQUFnQztDQVlqQzs7QUFkSDtFQUtNLFVBQXVEO0VBQ3ZELGdEQUF1QztFQUF2Qyx3Q0FBdUM7RUFBdkMsMkRBQXVDO0VBQ3ZDLGlDQUFnQztFQUNoQywyQkFBMEI7Q0FDM0I7O0FBVEw7RUFZTSxVQUFtRTtDQUNwRTs7QUFiTDtFQW9CTSwwREFBc0Q7VUFBdEQsa0RBQXNEO0NBVXZEOztBQTlCTDtFQXVCUSxpRUFBa0c7VUFBbEcseURBQWtHO0VBQ2xHLFdBQVU7Q0FDWDs7QUF6QlA7RUE0QlEsMERBQTBEO1VBQTFELGtEQUEwRDtDQUMzRDs7QUNoQ1A7O0tBRUc7QUFDSDtFQUVJLDJCQUEwQjtFQUMxQixtRUFBa0U7Q0FXbkU7O0FBZEg7RUFNTSx5REFDZ0M7Q0FDakM7O0FBUkw7RUFXTSxzR0FDa0U7RUFEbEUsOEZBQ2tFO0VBRGxFLDhKQUNrRTtDQUNuRTs7QUFiTDtFQWtCTSxrQ0FBeUI7VUFBekIsMEJBQXlCO0VBQ3pCLHdCQUF1QjtFQUN2QixnRUFBK0Q7Q0FlaEU7O0FBbkNMO0VBdUJRLE9BQU07RUFDTixXQUFVO0VBQ1YsMkRBQ3VDO0NBQ3hDOztBQTNCUDtFQThCUSxVQUFTO0VBQ1Qsa0NBQXlCO1VBQXpCLDBCQUF5QjtFQUN6QixvR0FDcUU7RUFEckUsNEZBQ3FFO0VBRHJFLCtKQUNxRTtDQUN0RTs7QUNyQ1A7O0tBRUc7QUFDSDtFQUVJLDJCQUEwQjtFQUMxQixtRUFBa0U7Q0FXbkU7O0FBZEg7RUFNTSx5REFDZ0M7Q0FDakM7O0FBUkw7RUFXTSxzR0FDa0U7RUFEbEUsOEZBQ2tFO0VBRGxFLDhKQUNrRTtDQUNuRTs7QUFiTDtFQWtCTSxtQ0FBMEI7VUFBMUIsMkJBQTBCO0VBQzFCLHdCQUF1QjtFQUN2QixnRUFBK0Q7Q0FlaEU7O0FBbkNMO0VBdUJRLE9BQU07RUFDTixXQUFVO0VBQ1YsMkRBQ3VDO0NBQ3hDOztBQTNCUDtFQThCUSxVQUFTO0VBQ1QsaUNBQXdCO1VBQXhCLHlCQUF3QjtFQUN4QixvR0FDcUU7RUFEckUsNEZBQ3FFO0VBRHJFLCtKQUNxRTtDQUN0RTs7QUNyQ1A7O0tBRUc7QUFDSDtFQUVJLFNBQWdDO0VBQ2hDLDZDQUE0QztDQWE3Qzs7QUFoQkg7RUFNTSxVQUF1RDtFQUN2RCxxSUFDa0U7RUFEbEUsNkhBQ2tFO0VBRGxFLDZMQUNrRTtDQUNuRTs7QUFUTDtFQVlNLFVBQW1FO0VBQ25FLHFJQUNrRTtFQURsRSw2SEFDa0U7RUFEbEUsNkxBQ2tFO0NBQ25FOztBQWZMO0VBb0JNLHdCQUF1QjtFQUN2Qix5Q0FBd0M7Q0FlekM7O0FBcENMO0VBd0JRLE9BQU07RUFDTix5SUFDcUU7RUFEckUsaUlBQ3FFO0VBRHJFLG9NQUNxRTtFQUNyRSx5REFBOEY7VUFBOUYsaURBQThGO0NBQy9GOztBQTVCUDtFQStCUSxPQUFNO0VBQ04sbUlBQ3FFO0VBRHJFLDJIQUNxRTtFQURyRSw4TEFDcUU7RUFDckUsMERBQStGO1VBQS9GLGtEQUErRjtDQUNoRzs7QUN0Q1A7O0tBRUc7QUFDSDtFQUVJLFVBQVM7RUFDVCxVQUFTO0VBQ1QsMkJBQTBCO0VBQzFCLHFCQUFvQjtFQUNwQixtRUFBa0U7Q0FZbkU7O0FBbEJIO0VBU00sV0FBc0U7RUFDdEUsd0ZBQzZCO0NBQzlCOztBQVpMO0VBZU0scUlBQ2tFO0VBRGxFLDZIQUNrRTtFQURsRSw2TEFDa0U7Q0FDbkU7O0FBakJMO0VBc0JNLDJEQUFzRztVQUF0RyxtREFBc0c7RUFDdEcsd0JBQXVCO0VBQ3ZCLGdFQUErRDtDQWVoRTs7QUF2Q0w7RUEyQlEsT0FBTTtFQUNOLFdBQVU7RUFDVix5RkFDbUM7Q0FDcEM7O0FBL0JQO0VBa0NRLE9BQU07RUFDTixpQ0FBd0I7VUFBeEIseUJBQXdCO0VBQ3hCLHlJQUNxRTtFQURyRSxpSUFDcUU7RUFEckUsb01BQ3FFO0NBQ3RFOztBQ3pDUDs7S0FFRztBQUNIO0VBRUkscUhBQzZDO0VBRDdDLDZHQUM2QztFQUQ3QyxvTEFDNkM7Q0FXOUM7O0FBZEg7RUFNTSwwR0FDc0U7RUFEdEUsa0dBQ3NFO0VBRHRFLHNLQUNzRTtDQUN2RTs7QUFSTDtFQVdNLDZHQUNzRTtFQUR0RSxxR0FDc0U7RUFEdEUseUtBQ3NFO0NBQ3ZFOztBQWJMO0VBa0JNLGlDQUF3QjtVQUF4Qix5QkFBd0I7RUFDeEIseUNBQXdDO0VBRXhDLDhHQUM0QztFQUQ1QyxzR0FDNEM7RUFENUMsdUtBQzRDO0NBZTdDOztBQXJDTDtFQXlCUSxPQUFNO0VBQ04sa0NBQXlCO1VBQXpCLDBCQUF5QjtFQUN6Qix5R0FDc0U7RUFEdEUsaUdBQ3NFO0VBRHRFLHFLQUNzRTtDQUN2RTs7QUE3QlA7RUFnQ1EsVUFBUztFQUNULGlDQUF3QjtVQUF4Qix5QkFBd0I7RUFDeEIsNEdBQ3NFO0VBRHRFLG9HQUNzRTtFQUR0RSx3S0FDc0U7Q0FDdkU7O0FDdkNQOztLQUVHO0FBQ0g7RUFFSSxxSEFDNkM7RUFEN0MsNkdBQzZDO0VBRDdDLG9MQUM2QztDQVc5Qzs7QUFkSDtFQU1NLDBHQUNzRTtFQUR0RSxrR0FDc0U7RUFEdEUsc0tBQ3NFO0NBQ3ZFOztBQVJMO0VBV00sNkdBQ3NFO0VBRHRFLHFHQUNzRTtFQUR0RSx5S0FDc0U7Q0FDdkU7O0FBYkw7RUFrQk0sa0NBQXlCO1VBQXpCLDBCQUF5QjtFQUN6Qix5Q0FBd0M7RUFFeEMsOEdBQzRDO0VBRDVDLHNHQUM0QztFQUQ1Qyx1S0FDNEM7Q0FlN0M7O0FBckNMO0VBeUJRLE9BQU07RUFDTixrQ0FBeUI7VUFBekIsMEJBQXlCO0VBQ3pCLHlHQUNzRTtFQUR0RSxpR0FDc0U7RUFEdEUscUtBQ3NFO0NBQ3ZFOztBQTdCUDtFQWdDUSxVQUFTO0VBQ1QsaUNBQXdCO1VBQXhCLHlCQUF3QjtFQUN4Qiw0R0FDc0U7RUFEdEUsb0dBQ3NFO0VBRHRFLHdLQUNzRTtDQUN2RTs7QUN2Q1A7O0tBRUc7QUFDSDtFQUVJLDRCQUEyQjtFQUMzQixtRUFBa0U7Q0FXbkU7O0FBZEg7RUFNTSx1REFDK0I7Q0FDaEM7O0FBUkw7RUFXTSxzR0FDbUU7RUFEbkUsOEZBQ21FO0VBRG5FLCtKQUNtRTtDQUNwRTs7QUFiTDtFQWtCTSxpQ0FBd0I7VUFBeEIseUJBQXdCO0VBQ3hCLHdCQUF1QjtFQUN2QixnRUFBK0Q7Q0FlaEU7O0FBbkNMO0VBdUJRLE9BQU07RUFDTixXQUFVO0VBQ1YsdURBQ3FDO0NBQ3RDOztBQTNCUDtFQThCUSxVQUFTO0VBQ1Qsa0NBQXlCO1VBQXpCLDBCQUF5QjtFQUN6QixtR0FDc0U7RUFEdEUsMkZBQ3NFO0VBRHRFLCtKQUNzRTtDQUN2RTs7QUNyQ1A7O0tBRUc7QUFDSDtFQUVJLDBCQUF5QjtFQUN6QiwyREFBMEQ7Q0FnQjNEOztBQW5CSDtFQU9NLHdCQUF1QjtFQUN2Qix1QkFBc0I7RUFDdEIsbUNBQWtDO0NBQ25DOztBQVZMO0VBYU0sa0NBQWlDO0NBQ2xDOztBQWRMO0VBaUJNLCtDQUFzQztFQUF0Qyx1Q0FBc0M7RUFBdEMsMERBQXNDO0NBQ3ZDOztBQWxCTDtFQXVCTSxrQ0FBeUI7VUFBekIsMEJBQXlCO0VBQ3pCLDJEQUEwRDtDQWdCM0Q7O0FBeENMO0VBNEJRLHFCQUFvQjtDQUNyQjs7QUE3QlA7RUFnQ1EsT0FBTTtFQUNOLFdBQVU7Q0FDWDs7QUFsQ1A7RUFxQ1EsVUFBUztFQUNULGlDQUF3QjtVQUF4Qix5QkFBd0I7Q0FDekI7O0FDMUNQOztLQUVHO0FBQ0g7RUFFSSwwQkFBeUI7RUFDekIsMkRBQTBEO0NBZ0IzRDs7QUFuQkg7RUFPTSx3QkFBdUI7RUFDdkIsdUJBQXNCO0VBQ3RCLG1DQUFrQztDQUNuQzs7QUFWTDtFQWFNLGtDQUFpQztDQUNsQzs7QUFkTDtFQWlCTSwrQ0FBc0M7RUFBdEMsdUNBQXNDO0VBQXRDLDBEQUFzQztDQUN2Qzs7QUFsQkw7RUF1Qk0sbUNBQTBCO1VBQTFCLDJCQUEwQjtFQUMxQiwyREFBMEQ7Q0FnQjNEOztBQXhDTDtFQTRCUSxxQkFBb0I7Q0FDckI7O0FBN0JQO0VBZ0NRLE9BQU07RUFDTixXQUFVO0NBQ1g7O0FBbENQO0VBcUNRLFVBQVM7RUFDVCxrQ0FBeUI7VUFBekIsMEJBQXlCO0NBQzFCOztBQ3ZDVDtFQUNJLGNBSmtCO0NBaURyQjs7QTVDa2dCRztFNENoakJKO0lBSVEsY0FOaUI7R0FnRHhCO0M1RDIzRkE7O0E0RHo2RkQ7RUFTUSxZQUFXO0NBQ2Q7O0FBVkw7RUFjUSxtQkFBa0I7Q0FhckI7O0FBM0JMO0VBaUJZLHVCQUFzQjtFQUN0QixhQUFZO0VyRGJwQixtQkFBa0I7RUFFZCxTQUFRO0VBQ1IsVUFBUztFQUNULHlDQUFnQztVQUFoQyxpQ0FBZ0M7Q3FEaUIvQjs7QUExQlQ7RUF1QmdCLFlBQVc7RUFDWCx1QkFBc0I7Q0FDekI7O0FBekJiO0VBZ0NZLGNBbkNVO0NBd0NiOztBNUMyZ0JMO0U0Q2hqQko7SUFtQ2dCLGNBckNTO0dBdUNoQjtDNURvNkZSOztBNER6OEZEO0VBeUNRLGNBNUNjO0VBNkNkLFlBQVc7RUFDWCxxQkFBaUI7S0FBakIsa0JBQWlCO0VBQ2pCLDJCQUF1QjtLQUF2Qix3QkFBdUI7Q0FDMUI7O0FBTUw7RUFFUSxjQUFhO0NBRWhCOztBQUtMLG1CQUFtQjtBQUNuQjtFQUVJLDBCdkRqRStCO0V1RGtFL0IsY0FBYTtFQUNiLFFBQU07RUFDTixtQkFBaUI7RUFDakIsd0NBQXNDO0VBQ3RDLFlBQVU7RUFDVixpQkFBZ0I7Q0FXbkI7O0E1Q2dlRztFNENuZko7SUFXUSxjQUFhO0dBUXBCO0M1RHE1RkE7O0FnQnI3RUc7RTRDbmZKO0lBY1EsY0FBYTtHQUtwQjtDNUQyNUZBOztBZ0IzN0VHO0U0Q25mSjtJQWlCUSxjQUFhO0dBRXBCO0M1RGk2RkE7O0E0RGg2RkQ7RUFDSSxpREFBK0M7Q0FDbEQ7O0FBTUQ7RUFDSSxlQUFjO0VBQ2QsNkJ2RHhGZ0I7RXVEMEZoQiwwQkFBeUI7RUFDekIsK0V0RGhHeUU7RXNEaUd6RSxtQkFBa0I7RXJEaEdsQixrQkFBa0M7RUFDbEMsa0JBQTRCO0VxRGlHNUIsc0JBQXFCO0VBQ3JCLFl2RGhHZ0I7RXVEaUdoQixpQkFBZ0I7Q0E4Q25COztBNUMrWkc7RTRDdmRKO0lyRDFGSSxrQkFBa0M7SUFDbEMsa0JBQTRCO0dxRGlKL0I7QzVEdzNGQTs7QTREaDdGRDtFQWlCUSxZdkR4R1k7Q3VEK0dmOztBQXhCTDtFQXFCZ0IsWUFBVztDQUNkOztBQXRCYjtFQTJCUSxzQnZEakhZO0V1RGtIWixtQkFBa0I7RUFDbEIsYUFBWTtFQUNaLGVBQWM7RUFDZCxtQkFBa0I7RUFDbEIsbUJBQWtCO0VBQ2xCLFlBQVc7RUFDWCxhQUFZO0NBS2Y7O0FBSEc7RUFDSSxtQkFBa0I7Q0FDckI7O0FBdENUO0VBeUNRLG1CQUFrQjtFQUNsQixtQkFBa0I7RUFDbEIsZUFBYztDQUtqQjs7QUFoREw7RUE4Q1ksY0FBYTtDQUNoQjs7QUFXVDtFQUNJLGNBQWE7RUFDYixvQkFBbUI7RUFDbkIsMEJ2RHhKK0I7RXVEeUovQixrQkFBaUI7Q0FDcEI7O0FBQ0Q7RUFDSSwrRXRENUp5RTtFc0Q2SnpFLG1CQUFrQjtFQUNsQixpQkFBZ0I7RUFDaEIsbUNBQW1CO1VBQW5CLG9CQUFtQjtDQUV0Qjs7QUNuS0Q7RUFDSSxjQUFhO0VBQ2IsK0JBQThCO0VBQzlCLG9CQUFtQjtDQUN0Qjs7QUFNRDtFQUNJLGFBQVk7RUFDWixrQkFBaUI7RUFDakIsZUFBYztDQUNqQjs7QUNkRDtFdkRHSSxnQkFBa0M7RUFDbEMsZ0JBQTRCO0N1REQzQjs7QUNITCx5Q0FBeUM7QUFDekM7RUFDQyxVQUFTO0VBQ1QsK0JBQThCO0VBQzlCLDhCQUFxQjtVQUFyQixzQkFBcUI7RUFDckIsWUFBVztFQUNYLGFBQVk7RUFDWixpQkFBZ0I7RUFDaEIsV0FBVTtFQUNWLDhCQUE2QjtFQUM3QixXQUFVO0VBQ1YsNkJBQTRCO0VBQUUsc0dBQXNHO0NBcUJwSTs7QUEvQkQ7RUFhRSwwQjFERGdDO0UwREVoQyxtQkFBa0I7RUFDbEIsMkNBQTBDO0VBQzFDLHNCQUFxQjtFQUNyQix3QkFBZTtVQUFmLGdCQUFlO0VBQ2YsZTFEQTBCO0UwREMxQixlQUFjO0V4RGpCWixvQkFBa0M7RUFDbEMsb0JBQTRCO0V3RGtCOUIsa0JBQWlCO0VBQ2pCLGFBQVk7RUFDWixVQUFTO0VBQ1Qsb0JBQW1CO0VBQ25CLHdCQUF1QjtFQUN2QixzQkFBcUI7RUFDckIsU0FBUTtFQUNSLFlBQVc7RUFDWCxnQkFBZTtFQUFFLHVCQUF1QjtDQUN4Qzs7QUFHRixzREFBc0Q7QUFDdEQ7RUFDQyxXQUFVO0NBQ1Y7O0E5RGdERDs7Z0VBRWdFO0FBR2hFOztnRUFFZ0U7QUFHaEU7O2dFQUVnRTtBK0QvRmhFOztnRUFFZ0U7QUNKaEU7RUFDQyxlQUFjO0NBQ2Q7O0FBRUQ7RUFDQyxrQkFBaUI7Q0FDakI7O0FBRUQ7O0VBRUMsY0FBYTtDQUNiOztBQUVEOztFQUVDLGdCQUFlO0NBQ2Y7O0FBRUQ7OztFQUdDLGtCQUFpQjtDQUNqQjs7QUFFRDtFQUNDLFlBQVc7RUFDWCxrQkFBaUI7Q0FDakI7O0FEcEJEOztnRUFFZ0U7QUVUaEU7O0VBRUMsY0FBYTtDQUNiOztBRlNEOztnRUFFZ0U7QUFHaEU7O2dFQUVnRTtBL0RpRmhFOztnRUFFZ0U7QUFHaEU7O2dFQUVnRTtBa0UzR2hFOzs7RUFHQyxhQUFZO0VBQ1osaUJBQWdCO0VBQ2hCLGNBQWE7RUFDYixXQUFVO0NBQ1Y7O0FBRUQsd0RBQXdEO0FBQ3hEOzs7RUFHQyxnQkFBZTtDQUNmOztBQUVEOztnRUFFZ0U7QUNsQmhFO0VBQ0MscUJBQW9CO0VBQ3BCLGdCQUFlO0NBU2Y7O0FBWEQ7RUFTRSxnQkFBZTtDQUNmOztBQUdGO0VBQ0MsbUJBQWtCO0VBQ2YsZUFBYztDQUNqQjs7QURLRDs7Z0VBRWdFO0FFdkJoRTtFQUNDLHFCQUFvQjtDQUNwQjs7QUFFRDtFQUNDLHNCQUFxQjtFQUNyQixtQkFBa0I7RUFDbEIsb0JBQW1CO0VBQ25CLFlBQVc7Q0FRWDs7QUFKQztFQUNDLGVDWEk7Q0RZSjs7QUFGRDtFQUNDLGtCQ1ZPO0NEV1A7O0FBRkQ7RUFDQyxlQ1RJO0NEVUo7O0FBRkQ7RUFDQyxlQ1JJO0NEU0o7O0FBRkQ7RUFDQyxrQkNQTztDRFFQOztBQUZEO0VBQ0Msa0JDTk87Q0RPUDs7QUFGRDtFQUNDLGlCQ0xNO0NETU47O0FBRkQ7RUFDQyxrQkNKTztDREtQOztBQUlIO0VBQ0MsZUFBYztDQUNkOztBRk1EOztnRUFFZ0U7QUk1QmhFLFlBQVk7QUFFWjtFQUNJLG1CQUFrQjtFQUNsQixlQUFjO0VBQ2QsdUJBQXNCO0VBQ3RCLDRCQUEyQjtFQUMzQiwwQkFBeUI7RUFFekIsdUJBQXNCO0VBQ3RCLHNCQUFxQjtFQUNyQixrQkFBaUI7RUFFakIsb0JBQW1CO0VBQ25CLHlDQUF3QztDQUMzQzs7QUFDRDtFQUNJLG1CQUFrQjtFQUNsQixpQkFBZ0I7RUFDaEIsZUFBYztFQUNkLFVBQVM7RUFDVCxXQUFVO0NBVWI7O0FBZkQ7RUFRUSxjQUFhO0NBQ2hCOztBQVRMO0VBWVEsZ0JBQWU7RUFDZixhQUFZO0NBQ2Y7O0FBRUw7O0VBRUksd0NBQXVDO0VBSXZDLGdDQUErQjtDQUNsQzs7QUFFRDtFQUNJLG1CQUFrQjtFQUNsQixRQUFPO0VBQ1AsT0FBTTtFQUNOLGVBQWM7Q0FlakI7O0FBbkJEO0VBUVEsWUFBVztFQUNYLGVBQWM7Q0FDakI7O0FBVkw7RUFhUSxZQUFXO0NBQ2Q7O0FBRUQ7RUFDSSxtQkFBa0I7Q0FDckI7O0FBRUw7RUFDSSxZQUFXO0VBQ1gsYUFBWTtFQUNaLGdCQUFlO0VBV2YsY0FBYTtDQW1CaEI7O0F2RW12R0Q7RXVFL3dHUSxhQUFZO0NBQ2Y7O0FBTkw7RUFRUSxlQUFjO0NBQ2pCOztBQVRMO0VBV1EsY0FBYTtDQUNoQjs7QUFaTDtFQWlCUSxxQkFBb0I7Q0FDdkI7O0FBRUQ7RUFDSSxlQUFjO0NBQ2pCOztBQUVEO0VBQ0ksbUJBQWtCO0NBQ3JCOztBQUVEO0VBQ0ksZUFBYztFQUNkLGFBQVk7RUFDWiw4QkFBNkI7Q0FDaEM7O0FBRUw7RUFDSSxjQUFhO0NBQ2hCOztBQ3hERCxZQUFZO0FBR1I7RUFDSSxxRkFBb0U7Q0FDdkU7O0FBR0wsV0FBVztBQUVQO0VBQ0kscUJBQW9CO0VBQ3BCLDJDQWhCb0M7RUFpQnBDLDBQQUFpTjtFQUNqTixvQkFBbUI7RUFDbkIsbUJBQWtCO0N4RXUwR3pCOztBd0VuMEdELFlBQVk7QUFFWjs7RUFFSSxtQkFBa0I7RUFDbEIsZUFBYztFQUNkLGFBQVk7RUFDWixZQUFXO0VBQ1gsaUJBQWdCO0VBQ2hCLGVBQWM7RUFDZCxnQkFBZTtFQUNmLHdCQUF1QjtFQUN2QixtQkFBa0I7RUFDbEIsU0FBUTtFQUNSLHNDQUE2QjtVQUE3Qiw4QkFBNkI7RUFDN0IsV0FBVTtFQUNWLGFBQVk7RUFDWixjQUFhO0NBd0JoQjs7QUF2Q0Q7OztFQWtCUSxjQUFhO0VBQ2Isd0JBQXVCO0VBQ3ZCLG1CQUFrQjtDQUlyQjs7QUF4Qkw7OztFQXNCWSxXQWhFYztDQWlFakI7O0FBdkJUOztFQTJCUSxjQXBFdUI7Q0FxRTFCOztBQTVCTDs7RUErQlEscUJBbkZtQjtFQW9GbkIsZ0JBQWU7RUFDZixlQUFjO0VBQ2QsYUFwRmlCO0VBcUZqQixXQTlFaUI7RUErRWpCLG9DQUFtQztFQUNuQyxtQ0FBa0M7Q0FDckM7O0FBR0w7RUFDSSxZQUFXO0NBYWQ7O0F4RWkwR0Q7RXdFMzBHUSxXQUFVO0VBQ1YsYUFBWTtDQUNmOztBQU5MO0VBU1EsYUFqR3NCO0NBcUd6Qjs7QXhFMjBHTDtFd0U3MEdZLGFBbEdrQjtDQW1HckI7O0FBSVQ7RUFDSSxhQUFZO0NBV2Y7O0F4RW8wR0Q7RXdFNzBHUSxZQUFXO0VBQ1gsWUFBVztDQUNkOztBQUxMO0VBT1EsYUE5R3NCO0NBa0h6Qjs7QXhFODBHTDtFd0VoMUdZLGFBakhrQjtDQWtIckI7O0FBSVQsVUFBVTtBQUVWO0VBQ0ksb0JBQW1CO0NBQ3RCOztBQUVEO0VBQ0ksbUJBQWtCO0VBQ2xCLGNBQWE7RUFDYixpQkFBZ0I7RUFDaEIsZUFBYztFQUNkLG1CQUFrQjtFQUNsQixXQUFVO0VBQ1YsVUFBUztFQUNULFlBQVc7Q0FxRGQ7O0FBN0REO0VBVVEsbUJBQWtCO0VBQ2xCLHNCQUFxQjtFQUNyQixhQXJJYTtFQXNJYixZQXRJYTtFQXVJYixjQUFhO0VBQ2IsV0FBVTtFQUNWLGdCQUFlO0NBNENsQjs7QUE1REw7O0VBa0JZLHVCbkV2SlE7RW1Fd0pSLG1CQUFrQjtFQUNsQix3QkFBdUI7RUFDdkIsZUFBYztFQUNkLGFBL0lTO0VBZ0pULFlBaEpTO0VBaUpULGNBQWE7RUFDYixpQkFBZ0I7RUFDaEIsZUFBYztFQUNkLG1CQUFrQjtFQUNsQixhQUFZO0VBQ1osZ0JBQWU7Q0F5QmxCOztBQXREVDs7O0VBK0JnQixjQUFhO0VBQ2IsdUJuRXJLSTtDbUUwS1A7O0FBckNiOzs7RUFtQ29CLFdBMUpNO0NBMkpUOztBQXBDakI7O0VBd0RZLHVCbkU3TFE7Q21FZ01YOztBTHRLVDs7Z0VBRWdFO0FBR2hFOztnRUFFZ0U7QU12Q2hFLG1HQUFtRztBQU1uRztFQUNJLGlCQUFnQjtDQUNuQjs7QUFjRDtFQUNJLDRCQUEwQjtDQUM3Qjs7QUFFRDtFQUNJLHdCQUFzQjtDQUN6Qjs7QUFFRDtFQUNJLFlBQVc7RUFDWCxhQUFZO0VBQ1osZ0JBQWU7RUFDZixPQUFNO0VBQ04sUUFBTztFQUNQLDJCQUF5QjtFQUN6QixpQkFBZ0I7RUFDaEIsMEJBQWlCO0tBQWpCLHVCQUFpQjtNQUFqQixzQkFBaUI7VUFBakIsa0JBQWlCO0NBQ3BCOztBQUVEO0VBQ0ksbUJBQWtCO0VBQ2xCLFlBQVc7RUFDWCxhQUFZO0NBQ2Y7O0FBRUQ7RUFDSSx3Q0FBK0I7RUFBL0IsZ0NBQStCO0VBQS9CLDZEQUErQjtFQUMvQixhQUFZO0VBQ1osUUFBTztFQUNQLE9BQU07RUFDTixZQUFXO0VBQ1gsb0JBQW1CO0VBQ25CLG1CQUFrQjtFQUNsQixjQUFhO0VBQ2IsZ0JBQWU7Q0FvRGxCOztBQTdERDtFQVdRLGFBQVk7RUFDWixZQUFXO0VBQ1gsaUJBQWdCO0VBQ2hCLG1CQUFrQjtFQUNsQixzQkFBcUI7Q0EwQ3hCOztBQXpETDtFQWlCWSxZQUFXO0VBQ1gsc0JBQXFCO0VBQ3JCLFlBQVc7RUFDWCxXQUFVO0VBQ1YsbUJBQWtCO0NBQ3JCOztBQXRCVDs7O0VBMEJZLHNCQUFxQjtFQUNyQixpQkFBZ0I7RUFDaEIsZ0JBQWU7RUFDZixVQUFTO0VBQ1QsV0FBVTtFQUNWLFlBQVc7RUFDWCxhQUFZO0VBQ1osdUJBQXNCO0NBQ3pCOztBQWxDVDtFQW9DWSxpQkFBZ0I7RUFDaEIsa0JBQWlCO0VBQ2pCLGlCQUFnQjtFQUNoQixZQUFXO0VBQ1gsWUFBVztFQUNYLHVCQUFzQjtDQWV6Qjs7QUF4RFQ7RUEyQ2dCLFlBQVc7RUFDWCxVQUFTO0VBQ1QsdUJBQXNCO0VBQ3RCLGlCQUFnQjtFQUNoQixtQkFBa0I7Q0FRckI7O0FBdkRiO0VBaURvQix1QkFBcUI7RUFDckIsd0JBQXNCO0VBQ3RCLG1CQUFrQjtFQUNsQixPQUFNO0VBQ04sUUFBTztDQUNWOztBQXREakI7RUEyRFEsOEVBQTZFO0NBQ2hGOztBQUdMOztFQUVJLGlCQUFnQjtFQUNoQixtQkFBa0I7RUFDbEIsUUFBTztFQUNQLGdCQUFlO0VBQ2YsYUFBWTtFQUNaLFlBQVc7Q0FDZDs7QUFFRDtFQUNJLGNBQWE7Q0FJaEI7O0FBTEQ7RUFHUSw0Q0FBbUM7VUFBbkMsb0NBQW1DO0NBQ3RDOztBQUdMO0VBQ0ksV0FBVTtDQUliOztBQUxEO0VBR1EsMkNBQWtDO1VBQWxDLG1DQUFrQztDQUNyQzs7QUFHTDtFQUNJLGVBQWM7RUFDZCxZQUFXO0VBQ1gsbUJBQWtCO0NBQ3JCOztBQUVEOzs7RUFHSSx1REFBc0Q7RUFDdEQsNkJBQTRCO0VBQzVCLHdCQUFzQjtFQUN0QixpQ0FBK0I7RUFDL0IsZ0JBQWU7RUFDZixzQkFBcUI7RUFFckIsWUFBVztFQUNYLGFBQVk7RUFDWixPQUFNO0NBQ1Q7O0FBRUQ7RUFDSSxlQUFjO0VBQ2QsZUFBYztFQUNkLFlBQVc7RUFDWCxhQUFZO0NBQ2Y7O0FBRUQ7RUFDSSxnQ0FBK0I7RUFDL0IsWUFBVztDQUNkOztBQUVEO0VBQ0ksaUNBQWdDO0VBQ2hDLGFBQVk7Q0FDZjs7QUFFRDtFQUNJLE9BQU07RUFDTixTQUFRO0VBQ1IsbUJBQWtCO0VBQ2xCLGdCQUFlO0VBQ2YsK0JBQThCO0NBQ2pDOztBQUVEO0VBQ0ksY0FBYTtDQUNoQjs7QUFFRDs7RUFHUSxhQUFZO0NBQ2Y7O0FBR0w7RUFFUSxvQ0FBMkI7VUFBM0IsNEJBQTJCO0NBQzlCOztBQUhMO0VBS1EsbUNBQTBCO1VBQTFCLDJCQUEwQjtDQUM3Qjs7QUFHTDtFQUlZLG9DQUEyQjtVQUEzQiw0QkFBMkI7RUFDM0IseUJBQXdCO0VBQ3hCLGFBQVk7RUFDWixtQkFBa0I7RUFDbEIsZ0JBQWU7RUFDZixPQUFNO0VBQ04sYUFBWTtFQUNaLFlBQVc7RUFDWCxXQUFVO0NBQ2I7O0FBYlQ7RUFlWSxRQUFPO0VBQ1AsNkNBQTRDO0NBQy9DOztBQWpCVDtFQW1CWSxTQUFRO0VBQ1IsOENBQTZDO0NBQ2hEOztBQXJCVDtFQXlCWSxXQUFVO0NBQ2I7O0FBMUJUO0VBOEJZLFdBQVU7Q0FDYjs7QUFJVDtFQUNJO0lBQ0ksUUFBTztHekVzZ0haO0V5RXBnSEM7SUFDSSxZQUFXO0d6RXNnSGhCO0V5RXBnSEM7SUFDSSxRQUFPO0d6RXNnSFo7Q0FDRjs7QXlFL2dIRDtFQUNJO0lBQ0ksUUFBTztHekVzZ0haO0V5RXBnSEM7SUFDSSxZQUFXO0d6RXNnSGhCO0V5RXBnSEM7SUFDSSxRQUFPO0d6RXNnSFo7Q0FDRjs7QXlFbmdIRDtFQUNJO0lBQ0ksUUFBTztHekVzZ0haO0V5RXBnSEM7SUFDSSxXQUFVO0d6RXNnSGY7RXlFcGdIQztJQUNJLFFBQU87R3pFc2dIWjtDQUNGOztBeUUvZ0hEO0VBQ0k7SUFDSSxRQUFPO0d6RXNnSFo7RXlFcGdIQztJQUNJLFdBQVU7R3pFc2dIZjtFeUVwZ0hDO0lBQ0ksUUFBTztHekVzZ0haO0NBQ0Y7O0F5RW5nSEQ7RUF2RkE7SUF5RlEsWUFBVztHQUNkO0VBM0dMO0lBNkdRLFdBQVU7SUFDVixpQkFBZ0I7R0FDbkI7Q3pFc2dISjs7QXlFbGdIRDs0QkFDNEI7QUFqUDVCO0VBbVBJLHFDcEUzUWdCO0NvRTRRbkI7O0FBcEtEOztFQXlLSSxxQ3BFalJnQjtDb0VvUm5COztBQTNKRDtFQW1LSSx3QkFBc0I7Q0FJekI7O0FONVBEOztnRUFFZ0U7QUFJaEU7O2dFQUVnRTtBbEU0RGhFOztnRUFFZ0UiLCJmaWxlIjoic3R5bGUuY3NzIiwic291cmNlc0NvbnRlbnQiOlsiQGNoYXJzZXQgXCJVVEYtOFwiO1xuLyohXG5UaGVtZSBOYW1lOiBVbmljb3JuIFRlYXJzXG5UaGVtZSBVUkk6IGh0dHBzOi8vZ2l0aHViLmNvbS9tb25rc3R1ZGlvL3VuaWNvcm4tdGVhcnNcbkF1dGhvcjogSmFjbHluIFRhblxuQXV0aG9yIEVtYWlsOiBqYWNseW5AbW9uay5jb20uYXVcbkF1dGhvciBVUkk6IGh0dHA6Ly9tb25rLmNvbS5hdVxuRGVzY3JpcHRpb246IEJvaWxlcnBsYXRlIFdvcmRwcmVzcyB0aGVtZVxuVmVyc2lvbjogMS4wLjBcbkxpY2Vuc2U6IEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIHYyIG9yIGxhdGVyXG5MaWNlbnNlIFVSSTogaHR0cDovL3d3dy5nbnUub3JnL2xpY2Vuc2VzL2dwbC0yLjAuaHRtbFxuVGV4dCBEb21haW46IHd3dy5tb25rLmNvbS5hdVxuXG4gIC5ePT09PV4uXG4gPSggXi0tXiApPVxuICAvICAgICAgXFwgICAvflxuKyggfCAgICB8ICkvL1xuXG5cblRoaXMgdGhlbWUsIGxpa2UgV29yZFByZXNzLCBpcyBsaWNlbnNlZCB1bmRlciB0aGUgR1BMLlxuVXNlIGl0IHRvIG1ha2Ugc29tZXRoaW5nIGNvb2wsIGhhdmUgZnVuLCBhbmQgc2hhcmUgd2hhdCB5b3UndmUgbGVhcm5lZCB3aXRoIG90aGVycy5cblxuTW9uayBpcyBiYXNlZCBvbiBVbmRlcnNjb3JlcyBodHRwOi8vdW5kZXJzY29yZXMubWUvLCAoQykgMjAxMi0yMDE2IEF1dG9tYXR0aWMsIEluYy5cblVuZGVyc2NvcmVzIGlzIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdQTCB2MiBvciBsYXRlci5cblxuTm9ybWFsaXppbmcgc3R5bGVzIGhhdmUgYmVlbiBoZWxwZWQgYWxvbmcgdGhhbmtzIHRvIHRoZSBmaW5lIHdvcmsgb2Zcbk5pY29sYXMgR2FsbGFnaGVyIGFuZCBKb25hdGhhbiBOZWFsIGh0dHA6Ly9uZWNvbGFzLmdpdGh1Yi5jb20vbm9ybWFsaXplLmNzcy9cblxuKi9cbmh0bWwge1xuICBmb250LWZhbWlseTogc2Fucy1zZXJpZjtcbiAgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlO1xuICAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTtcbn1cblxuYm9keSB7XG4gIG1hcmdpbjogMDtcbn1cblxuYXJ0aWNsZSxcbmFzaWRlLFxuZGV0YWlscyxcbmZpZ2NhcHRpb24sXG5maWd1cmUsXG5mb290ZXIsXG5oZWFkZXIsXG5tYWluLFxubWVudSxcbm5hdixcbnNlY3Rpb24sXG5zdW1tYXJ5IHtcbiAgZGlzcGxheTogYmxvY2s7XG59XG5cbmF1ZGlvLFxuY2FudmFzLFxucHJvZ3Jlc3MsXG52aWRlbyB7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgdmVydGljYWwtYWxpZ246IGJhc2VsaW5lO1xufVxuXG5hdWRpbzpub3QoW2NvbnRyb2xzXSkge1xuICBkaXNwbGF5OiBub25lO1xuICBoZWlnaHQ6IDA7XG59XG5cbltoaWRkZW5dLFxudGVtcGxhdGUge1xuICBkaXNwbGF5OiBub25lO1xufVxuXG5hIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG5cbmE6YWN0aXZlLFxuYTpob3ZlciB7XG4gIG91dGxpbmU6IDA7XG59XG5cbmFiYnJbdGl0bGVdIHtcbiAgYm9yZGVyLWJvdHRvbTogMXB4IGRvdHRlZDtcbn1cblxuYixcbnN0cm9uZyB7XG4gIGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG5kZm4ge1xuICBmb250LXN0eWxlOiBpdGFsaWM7XG59XG5cbmgxIHtcbiAgZm9udC1zaXplOiAyZW07XG4gIG1hcmdpbjogMC42N2VtIDA7XG59XG5cbm1hcmsge1xuICBiYWNrZ3JvdW5kOiAjZmYwO1xuICBjb2xvcjogIzAwMDtcbn1cblxuc21hbGwge1xuICBmb250LXNpemU6IDgwJTtcbn1cblxuc3ViLFxuc3VwIHtcbiAgZm9udC1zaXplOiA3NSU7XG4gIGxpbmUtaGVpZ2h0OiAwO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHZlcnRpY2FsLWFsaWduOiBiYXNlbGluZTtcbn1cblxuc3VwIHtcbiAgdG9wOiAtMC41ZW07XG59XG5cbnN1YiB7XG4gIGJvdHRvbTogLTAuMjVlbTtcbn1cblxuaW1nIHtcbiAgYm9yZGVyOiAwO1xufVxuXG5zdmc6bm90KDpyb290KSB7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbmZpZ3VyZSB7XG4gIG1hcmdpbjogMWVtIDQwcHg7XG59XG5cbmhyIHtcbiAgYm94LXNpemluZzogY29udGVudC1ib3g7XG4gIGhlaWdodDogMDtcbn1cblxucHJlIHtcbiAgb3ZlcmZsb3c6IGF1dG87XG59XG5cbmNvZGUsXG5rYmQsXG5wcmUsXG5zYW1wIHtcbiAgZm9udC1mYW1pbHk6IG1vbm9zcGFjZSwgbW9ub3NwYWNlO1xuICBmb250LXNpemU6IDFlbTtcbn1cblxuYnV0dG9uLCAuYnRuLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uW3R5cGU9XCJzdWJtaXRcIl0sXG4uYnV0dG9uLFxuaW5wdXQsXG5zZWxlY3QsXG5vcHRncm91cCxcbnNlbGVjdCxcbnRleHRhcmVhIHtcbiAgY29sb3I6IGluaGVyaXQ7XG4gIGZvbnQ6IGluaGVyaXQ7XG4gIG1hcmdpbjogMDtcbn1cblxuYnV0dG9uLCAuYnRuLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uW3R5cGU9XCJzdWJtaXRcIl0sXG4uYnV0dG9uIHtcbiAgb3ZlcmZsb3c6IHZpc2libGU7XG59XG5cbmJ1dHRvbiwgLmJ0biwgLmdmb3JtX3dyYXBwZXIgLmJ1dHRvbiwgLmdmb3JtX3dyYXBwZXIgLmJ1dHRvblt0eXBlPVwic3VibWl0XCJdLFxuLmJ1dHRvbixcbnNlbGVjdCB7XG4gIHRleHQtdHJhbnNmb3JtOiBub25lO1xufVxuXG5idXR0b24sIC5idG4sIC5nZm9ybV93cmFwcGVyIC5idXR0b24sIC5nZm9ybV93cmFwcGVyIC5idXR0b25bdHlwZT1cInN1Ym1pdFwiXSxcbi5idXR0b24sXG5odG1sIGlucHV0W3R5cGU9XCJidXR0b25cIl0sXG5odG1sIHNlbGVjdFt0eXBlPVwiYnV0dG9uXCJdLFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdLFxuc2VsZWN0W3R5cGU9XCJyZXNldFwiXSxcbmlucHV0W3R5cGU9XCJzdWJtaXRcIl0sXG5zZWxlY3RbdHlwZT1cInN1Ym1pdFwiXSB7XG4gIC13ZWJraXQtYXBwZWFyYW5jZTogYnV0dG9uO1xuICBjdXJzb3I6IHBvaW50ZXI7XG59XG5cbmJ1dHRvbltkaXNhYmxlZF0sIC5idG5bZGlzYWJsZWRdLFxuLmJ1dHRvbltkaXNhYmxlZF0sXG5odG1sIGlucHV0W2Rpc2FibGVkXSxcbmh0bWwgc2VsZWN0W2Rpc2FibGVkXSB7XG4gIGN1cnNvcjogZGVmYXVsdDtcbn1cblxuYnV0dG9uOjotbW96LWZvY3VzLWlubmVyLCAuYnRuOjotbW96LWZvY3VzLWlubmVyLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uOjotbW96LWZvY3VzLWlubmVyLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uW3R5cGU9XCJzdWJtaXRcIl06Oi1tb3otZm9jdXMtaW5uZXIsXG4uYnV0dG9uOjotbW96LWZvY3VzLWlubmVyLFxuaW5wdXQ6Oi1tb3otZm9jdXMtaW5uZXIsXG5zZWxlY3Q6Oi1tb3otZm9jdXMtaW5uZXIge1xuICBib3JkZXI6IDA7XG4gIHBhZGRpbmc6IDA7XG59XG5cblxuaW5wdXQsXG5zZWxlY3Qge1xuICBsaW5lLWhlaWdodDogbm9ybWFsO1xufVxuXG5pbnB1dFt0eXBlPVwiY2hlY2tib3hcIl0sIHNlbGVjdFt0eXBlPVwiY2hlY2tib3hcIl0sXG5pbnB1dFt0eXBlPVwicmFkaW9cIl0sXG5zZWxlY3RbdHlwZT1cInJhZGlvXCJdIHtcbiAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgcGFkZGluZzogMDtcbn1cblxuaW5wdXRbdHlwZT1cIm51bWJlclwiXTo6LXdlYmtpdC1pbm5lci1zcGluLWJ1dHRvbiwgc2VsZWN0W3R5cGU9XCJudW1iZXJcIl06Oi13ZWJraXQtaW5uZXItc3Bpbi1idXR0b24sXG5pbnB1dFt0eXBlPVwibnVtYmVyXCJdOjotd2Via2l0LW91dGVyLXNwaW4tYnV0dG9uLFxuc2VsZWN0W3R5cGU9XCJudW1iZXJcIl06Oi13ZWJraXQtb3V0ZXItc3Bpbi1idXR0b24ge1xuICBoZWlnaHQ6IGF1dG87XG59XG5cbmlucHV0W3R5cGU9XCJzZWFyY2hcIl06Oi13ZWJraXQtc2VhcmNoLWNhbmNlbC1idXR0b24sIHNlbGVjdFt0eXBlPVwic2VhcmNoXCJdOjotd2Via2l0LXNlYXJjaC1jYW5jZWwtYnV0dG9uLFxuaW5wdXRbdHlwZT1cInNlYXJjaFwiXTo6LXdlYmtpdC1zZWFyY2gtZGVjb3JhdGlvbixcbnNlbGVjdFt0eXBlPVwic2VhcmNoXCJdOjotd2Via2l0LXNlYXJjaC1kZWNvcmF0aW9uIHtcbiAgLXdlYmtpdC1hcHBlYXJhbmNlOiBub25lO1xufVxuXG5maWVsZHNldCB7XG4gIGJvcmRlcjogMXB4IHNvbGlkICNjMGMwYzA7XG4gIG1hcmdpbjogMCAycHg7XG4gIHBhZGRpbmc6IDAuMzVlbSAwLjYyNWVtIDAuNzVlbTtcbn1cblxubGVnZW5kIHtcbiAgYm9yZGVyOiAwO1xuICBwYWRkaW5nOiAwO1xufVxuXG50ZXh0YXJlYSB7XG4gIG92ZXJmbG93OiBhdXRvO1xufVxuXG5vcHRncm91cCB7XG4gIGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG50YWJsZSB7XG4gIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gIGJvcmRlci1zcGFjaW5nOiAwO1xufVxuXG50ZCxcbnRoIHtcbiAgcGFkZGluZzogMDtcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBXb29jb21tZXJjZVxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLmFsaWdubGVmdCB7XG4gIGRpc3BsYXk6IGlubGluZTtcbiAgZmxvYXQ6IGxlZnQ7XG4gIG1hcmdpbi1yaWdodDogMS41ZW07XG59XG5cbi5hbGlnbnJpZ2h0IHtcbiAgZGlzcGxheTogaW5saW5lO1xuICBmbG9hdDogcmlnaHQ7XG4gIG1hcmdpbi1sZWZ0OiAxLjVlbTtcbn1cblxuLmFsaWduY2VudGVyIHtcbiAgY2xlYXI6IGJvdGg7XG4gIG1hcmdpbjogMCBhdXRvO1xufVxuXG5ib2R5LCBidXR0b24sIC5idG4sIC5nZm9ybV93cmFwcGVyIC5idXR0b24sIC5nZm9ybV93cmFwcGVyIC5idXR0b25bdHlwZT1cInN1Ym1pdFwiXSxcbi5idXR0b24sXG5pbnB1dCxcbnNlbGVjdCxcbnNlbGVjdCxcbnRleHRhcmVhIHtcbiAgY29sb3I6ICMzMzMzMzM7XG4gIGZvbnQtZmFtaWx5OiBcIkhlbHZldGljYU5ldWUtTGlnaHRcIiwgXCJIZWx2ZXRpY2EgTmV1ZSBMaWdodFwiLCBcIkhlbHZldGljYSBOZXVlXCIsIEhlbHZldGljYSwgQXJpYWwsIFwiTHVjaWRhIEdyYW5kZVwiLCBzYW5zLXNlcmlmO1xuICBmb250LXNpemU6IDI3LjJweDtcbiAgZm9udC1zaXplOiAxLjZyZW07XG4gIGxpbmUtaGVpZ2h0OiAxLjQ7XG59XG5cbmgxLCBoMiwgaDMsIGg0LCBoNSwgaDYge1xuICBjbGVhcjogYm90aDtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgbWFyZ2luLXRvcDogMDtcbn1cblxuaDEge1xuICBmb250LXNpemU6IDYxLjJweDtcbiAgZm9udC1zaXplOiAzLjZyZW07XG4gIG1hcmdpbjogMWVtIDA7XG59XG5cbmgyIHtcbiAgZm9udC1zaXplOiA1MXB4O1xuICBmb250LXNpemU6IDNyZW07XG59XG5cbmgzIHtcbiAgZm9udC1zaXplOiA0NC4ycHg7XG4gIGZvbnQtc2l6ZTogMi42cmVtO1xufVxuXG5oNCB7XG4gIGZvbnQtc2l6ZTogMzcuNHB4O1xuICBmb250LXNpemU6IDIuMnJlbTtcbn1cblxuaDUge1xuICBmb250LXNpemU6IDMyLjNweDtcbiAgZm9udC1zaXplOiAxLjlyZW07XG59XG5cbmg2IHtcbiAgZm9udC1zaXplOiAyNy4ycHg7XG4gIGZvbnQtc2l6ZTogMS42cmVtO1xufVxuXG5wIHtcbiAgbWFyZ2luLWJvdHRvbTogMS41ZW07XG4gIG1hcmdpbi10b3A6IDA7XG59XG5cbmRmbixcbmNpdGUsXG5lbSxcbmkge1xuICBmb250LXN0eWxlOiBpdGFsaWM7XG59XG5cbmJsb2NrcXVvdGUge1xuICBtYXJnaW46IDAgMS41ZW07XG59XG5cbmFkZHJlc3Mge1xuICBtYXJnaW46IDAgMCAxLjVlbTtcbn1cblxucHJlIHtcbiAgYmFja2dyb3VuZDogI2VlZTtcbiAgZm9udC1mYW1pbHk6IFwiQ291cmllciAxMCBQaXRjaFwiLCBDb3VyaWVyLCBtb25vc3BhY2U7XG4gIGZvbnQtc2l6ZTogMTUuOTM3NXB4O1xuICBmb250LXNpemU6IDAuOTM3NXJlbTtcbiAgbGluZS1oZWlnaHQ6IDEuNjtcbiAgbWFyZ2luLWJvdHRvbTogMS42ZW07XG4gIG1heC13aWR0aDogMTAwJTtcbiAgb3ZlcmZsb3c6IGF1dG87XG4gIHBhZGRpbmc6IDEuNmVtO1xufVxuXG5jb2RlLFxua2JkLFxudHQsXG52YXIge1xuICBmb250LWZhbWlseTogTW9uYWNvLCBDb25zb2xhcywgXCJBbmRhbGUgTW9ub1wiLCBcIkRlamFWdSBTYW5zIE1vbm9cIiwgbW9ub3NwYWNlO1xuICBmb250LXNpemU6IDE1LjkzNzVweDtcbiAgZm9udC1zaXplOiAwLjkzNzVyZW07XG59XG5cbmFiYnIsXG5hY3JvbnltIHtcbiAgYm9yZGVyLWJvdHRvbTogMXB4IGRvdHRlZCByZWQ7XG4gIGN1cnNvcjogaGVscDtcbn1cblxubWFyayxcbmlucyB7XG4gIGJhY2tncm91bmQ6ICNmZmY5YzA7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbn1cblxuYmlnIHtcbiAgZm9udC1zaXplOiAxMjUlO1xufVxuXG4uZm9udC1saWdodCB7XG4gIGZvbnQtd2VpZ2h0OiAzMDA7XG59XG5cbi5mb250LXJlZ3VsYXIge1xuICBmb250LXdlaWdodDogNTAwO1xufVxuXG4uZm9udC1oZWF2eSB7XG4gIGZvbnQtd2VpZ2h0OiA3MDA7XG59XG5cbi50ZXh0LWxlZnQge1xuICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuXG4udGV4dC1yaWdodCB7XG4gIHRleHQtYWxpZ246IHJpZ2h0O1xufVxuXG4udGV4dC1jZW50ZXIge1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbi50ZXh0LWp1c3RpZnkge1xuICB0ZXh0LWFsaWduOiBqdXN0aWZ5O1xufVxuXG4udGV4dC1ub3dyYXAge1xuICB3aGl0ZS1zcGFjZTogbm93cmFwO1xufVxuXG4udGV4dC1icmVhayB7XG4gIHdvcmQtYnJlYWs6IGJyZWFrLWFsbDtcbn1cblxuLnRleHQtbG93ZXJjYXNlIHtcbiAgdGV4dC10cmFuc2Zvcm06IGxvd2VyY2FzZTtcbn1cblxuLnRleHQtdXBwZXJjYXNlIHtcbiAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTtcbn1cblxuLnRleHQtY2FwaXRhbGl6ZSB7XG4gIHRleHQtdHJhbnNmb3JtOiBjYXBpdGFsaXplO1xufVxuXG4udGV4dC1tdXRlZCB7XG4gIGNvbG9yOiB3aGl0ZTtcbn1cblxuQGZvbnQtZmFjZSB7XG4gIGZvbnQtZmFtaWx5OiAnZm9udGVsbG8nO1xuICBzcmM6IHVybChcImFzc2V0cy9mb250cy9mb250ZWxsby9mb250ZWxsby5lb3Q/MzAwMDU3NTlcIik7XG4gIHNyYzogdXJsKFwiYXNzZXRzL2ZvbnRzL2ZvbnRlbGxvL2ZvbnRlbGxvLmVvdD8zMDAwNTc1OSNpZWZpeFwiKSBmb3JtYXQoXCJlbWJlZGRlZC1vcGVudHlwZVwiKSwgdXJsKFwiYXNzZXRzL2ZvbnRzL2ZvbnRlbGxvL2ZvbnRlbGxvLndvZmYyPzMwMDA1NzU5XCIpIGZvcm1hdChcIndvZmYyXCIpLCB1cmwoXCJhc3NldHMvZm9udHMvZm9udGVsbG8vZm9udGVsbG8ud29mZj8zMDAwNTc1OVwiKSBmb3JtYXQoXCJ3b2ZmXCIpLCB1cmwoXCJhc3NldHMvZm9udHMvZm9udGVsbG8vZm9udGVsbG8udHRmPzMwMDA1NzU5XCIpIGZvcm1hdChcInRydWV0eXBlXCIpLCB1cmwoXCJhc3NldHMvZm9udHMvZm9udGVsbG8vZm9udGVsbG8uc3ZnPzMwMDA1NzU5I2ZvbnRlbGxvXCIpIGZvcm1hdChcInN2Z1wiKTtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgZm9udC1zdHlsZTogbm9ybWFsO1xufVxuXG4vKiBDaHJvbWUgaGFjazogU1ZHIGlzIHJlbmRlcmVkIG1vcmUgc21vb3RoIGluIFdpbmRvenplLiAxMDAlIG1hZ2ljLCB1bmNvbW1lbnQgaWYgeW91IG5lZWQgaXQuICovXG4vKiBOb3RlLCB0aGF0IHdpbGwgYnJlYWsgaGludGluZyEgSW4gb3RoZXIgT1MtZXMgZm9udCB3aWxsIGJlIG5vdCBhcyBzaGFycCBhcyBpdCBjb3VsZCBiZSAqL1xuLypcbkBtZWRpYSBzY3JlZW4gYW5kICgtd2Via2l0LW1pbi1kZXZpY2UtcGl4ZWwtcmF0aW86MCkge1xuICBAZm9udC1mYWNlIHtcbiAgICBmb250LWZhbWlseTogJ2ZvbnRlbGxvJztcbiAgICBzcmM6IHVybCgnLi4vZm9udC9mb250ZWxsby5zdmc/MzAwMDU3NTkjZm9udGVsbG8nKSBmb3JtYXQoJ3N2ZycpO1xuICB9XG59XG4qL1xuW2NsYXNzXj1cImljb24tXCJdOmJlZm9yZSxcbltjbGFzcyo9XCIgaWNvbi1cIl06YmVmb3JlIHtcbiAgZm9udC1mYW1pbHk6IFwiZm9udGVsbG9cIjtcbiAgZm9udC1zdHlsZTogbm9ybWFsO1xuICBmb250LXdlaWdodDogbm9ybWFsO1xuICBzcGVhazogbm9uZTtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB0ZXh0LWRlY29yYXRpb246IGluaGVyaXQ7XG4gIHdpZHRoOiAxZW07XG4gIG1hcmdpbi1yaWdodDogLjJlbTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAvKiBvcGFjaXR5OiAuODsgKi9cbiAgLyogRm9yIHNhZmV0eSAtIHJlc2V0IHBhcmVudCBzdHlsZXMsIHRoYXQgY2FuIGJyZWFrIGdseXBoIGNvZGVzKi9cbiAgZm9udC12YXJpYW50OiBub3JtYWw7XG4gIHRleHQtdHJhbnNmb3JtOiBub25lO1xuICAvKiBmaXggYnV0dG9ucyBoZWlnaHQsIGZvciB0d2l0dGVyIGJvb3RzdHJhcCAqL1xuICBsaW5lLWhlaWdodDogMWVtO1xuICAvKiBBbmltYXRpb24gY2VudGVyIGNvbXBlbnNhdGlvbiAtIG1hcmdpbnMgc2hvdWxkIGJlIHN5bW1ldHJpYyAqL1xuICAvKiByZW1vdmUgaWYgbm90IG5lZWRlZCAqL1xuICBtYXJnaW4tbGVmdDogLjJlbTtcbiAgLyogeW91IGNhbiBiZSBtb3JlIGNvbWZvcnRhYmxlIHdpdGggaW5jcmVhc2VkIGljb25zIHNpemUgKi9cbiAgLyogZm9udC1zaXplOiAxMjAlOyAqL1xuICAvKiBGb250IHNtb290aGluZy4gVGhhdCB3YXMgdGFrZW4gZnJvbSBUV0JTICovXG4gIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xuICAtbW96LW9zeC1mb250LXNtb290aGluZzogZ3JheXNjYWxlO1xuICAvKiBVbmNvbW1lbnQgZm9yIDNEIGVmZmVjdCAqL1xuICAvKiB0ZXh0LXNoYWRvdzogMXB4IDFweCAxcHggcmdiYSgxMjcsIDEyNywgMTI3LCAwLjMpOyAqL1xufVxuXG4uaWNvbi1oZWFydDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODAwJztcbn1cblxuLyogJ+6ggCcgKi9cbi5pY29uLWhlYXJ0LWVtcHR5OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MDEnO1xufVxuXG4vKiAn7qCBJyAqL1xuLmljb24tc2hhcmU6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgwMic7XG59XG5cbi8qICfuoIInICovXG4uaWNvbi1saW5rOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MDMnO1xufVxuXG4vKiAn7qCDJyAqL1xuLmljb24tZXhwb3J0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MDQnO1xufVxuXG4vKiAn7qCEJyAqL1xuLmljb24tZ2xvYmU6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgwNSc7XG59XG5cbi8qICfuoIUnICovXG4uaWNvbi1kb3duLW9wZW4tYmlnOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MDYnO1xufVxuXG4vKiAn7qCGJyAqL1xuLmljb24tbGVmdC1vcGVuLWJpZzpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODA3Jztcbn1cblxuLyogJ+6ghycgKi9cbi5pY29uLXJpZ2h0LW9wZW4tYmlnOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MDgnO1xufVxuXG4vKiAn7qCIJyAqL1xuLmljb24tdXAtb3Blbi1iaWc6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgwOSc7XG59XG5cbi8qICfuoIknICovXG4uaWNvbi1saXN0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MGEnO1xufVxuXG4vKiAn7qCKJyAqL1xuLmljb24tcmVzaXplLWZ1bGwtYWx0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MGInO1xufVxuXG4vKiAn7qCLJyAqL1xuLmljb24tbWVudTpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODBjJztcbn1cblxuLyogJ+6gjCcgKi9cbi5pY29uLXRodW1icy11cDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODBlJztcbn1cblxuLyogJ+6gjicgKi9cbi5pY29uLXRodW1icy1kb3duOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MGYnO1xufVxuXG4vKiAn7qCPJyAqL1xuLmljb24tZG90LTM6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgxMCc7XG59XG5cbi8qICfuoJAnICovXG4uaWNvbi1kb3duOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MTEnO1xufVxuXG4vKiAn7qCRJyAqL1xuLmljb24tbGVmdDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODEyJztcbn1cblxuLyogJ+6gkicgKi9cbi5pY29uLXJpZ2h0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MTMnO1xufVxuXG4vKiAn7qCTJyAqL1xuLmljb24tdXA6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgxNCc7XG59XG5cbi8qICfuoJQnICovXG4uaWNvbi1oZWxwLWNpcmNsZWQ6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgxNSc7XG59XG5cbi8qICfuoJUnICovXG4uaWNvbi1oZWxwLWNpcmNsZWQtYWx0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MTYnO1xufVxuXG4vKiAn7qCWJyAqL1xuLmljb24tY2FuY2VsOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MTcnO1xufVxuXG4vKiAn7qCXJyAqL1xuLmljb24tb2s6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZTgxOCc7XG59XG5cbi8qICfuoJgnICovXG4uaWNvbi1zdGFyLWVtcHR5OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGU4MTknO1xufVxuXG4vKiAn7qCZJyAqL1xuLmljb24tc3RhcjpiZWZvcmUge1xuICBjb250ZW50OiAnXFxlODFhJztcbn1cblxuLyogJ+6gmicgKi9cbi5pY29uLWRvd24tb3BlbjpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDA0Jztcbn1cblxuLyogJ++AhCcgKi9cbi5pY29uLXVwLW9wZW46YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjAwNSc7XG59XG5cbi8qICfvgIUnICovXG4uaWNvbi1yaWdodC1vcGVuOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwMDYnO1xufVxuXG4vKiAn74CGJyAqL1xuLmljb24tbGVmdC1vcGVuOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwMDcnO1xufVxuXG4vKiAn74CHJyAqL1xuLmljb24tbWVudS0xOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwMDgnO1xufVxuXG4vKiAn74CIJyAqL1xuLmljb24tdGgtbGlzdDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDA5Jztcbn1cblxuLyogJ++AiScgKi9cbi5pY29uLXRoLXRodW1iOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwMGEnO1xufVxuXG4vKiAn74CKJyAqL1xuLmljb24tdGgtdGh1bWItZW1wdHk6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjAwYic7XG59XG5cbi8qICfvgIsnICovXG4uaWNvbi1kb3dubG9hZDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDJlJztcbn1cblxuLyogJ++AricgKi9cbi5pY29uLXVwbG9hZDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDJmJztcbn1cblxuLyogJ++ArycgKi9cbi5pY29uLWxvY2F0aW9uOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwMzEnO1xufVxuXG4vKiAn74CxJyAqL1xuLmljb24tZXllOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwODInO1xufVxuXG4vKiAn74KCJyAqL1xuLmljb24taW5mby1jaXJjbGVkOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwODUnO1xufVxuXG4vKiAn74KFJyAqL1xuLmljb24taW5mby1jaXJjbGVkLWFsdDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDg2Jztcbn1cblxuLyogJ++ChicgKi9cbi5pY29uLXR3aXR0ZXI6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjA5OSc7XG59XG5cbi8qICfvgpknICovXG4uaWNvbi1mYWNlYm9vazpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDlhJztcbn1cblxuLyogJ++CmicgKi9cbi5pY29uLXJzczpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMDllJztcbn1cblxuLyogJ++CnicgKi9cbi5pY29uLWdwbHVzOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYwZDUnO1xufVxuXG4vKiAn74OVJyAqL1xuLmljb24tbWFpbC1hbHQ6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjBlMCc7XG59XG5cbi8qICfvg6AnICovXG4uaWNvbi1saW5rZWRpbjpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMGUxJztcbn1cblxuLyogJ++DoScgKi9cbi5pY29uLWFuZ2xlLWxlZnQ6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjEwNCc7XG59XG5cbi8qICfvhIQnICovXG4uaWNvbi1hbmdsZS1yaWdodDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTA1Jztcbn1cblxuLyogJ++EhScgKi9cbi5pY29uLWFuZ2xlLXVwOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYxMDYnO1xufVxuXG4vKiAn74SGJyAqL1xuLmljb24tYW5nbGUtZG93bjpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTA3Jztcbn1cblxuLyogJ++EhycgKi9cbi5pY29uLWNhbGVuZGFyLWVtcHR5OmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYxMzMnO1xufVxuXG4vKiAn74SzJyAqL1xuLmljb24teW91dHViZS1zcXVhcmVkOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYxNjYnO1xufVxuXG4vKiAn74WmJyAqL1xuLmljb24teW91dHViZTpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTY3Jztcbn1cblxuLyogJ++FpycgKi9cbi5pY29uLXlvdXR1YmUtcGxheTpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTZhJztcbn1cblxuLyogJ++FqicgKi9cbi5pY29uLWluc3RhZ3JhbTpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTZkJztcbn1cblxuLyogJ++FrScgKi9cbi5pY29uLXR1bWJscjpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTczJztcbn1cblxuLyogJ++FsycgKi9cbi5pY29uLXR1bWJsci1zcXVhcmVkOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYxNzQnO1xufVxuXG4vKiAn74W0JyAqL1xuLmljb24tdmltZW8tc3F1YXJlZDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMTk0Jztcbn1cblxuLyogJ++GlCcgKi9cbi5pY29uLWdvb2dsZTpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMWEwJztcbn1cblxuLyogJ++GoCcgKi9cbi5pY29uLWJlaGFuY2U6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjFiNCc7XG59XG5cbi8qICfvhrQnICovXG4uaWNvbi1mYWNlYm9vay1vZmZpY2lhbDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMjMwJztcbn1cblxuLyogJ++IsCcgKi9cbi5pY29uLXBpbnRlcmVzdDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMjMxJztcbn1cblxuLyogJ++IsScgKi9cbi5pY29uLXRyYWRlbWFyazpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMjVjJztcbn1cblxuLyogJ++JnCcgKi9cbi5pY29uLXJlZ2lzdGVyZWQ6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjI1ZCc7XG59XG5cbi8qICfviZ0nICovXG4uaWNvbi1jcmVhdGl2ZS1jb21tb25zOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYyNWUnO1xufVxuXG4vKiAn74meJyAqL1xuLmljb24tY29tbWVudGluZy1vOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYyN2InO1xufVxuXG4vKiAn74m7JyAqL1xuLmljb24tdmltZW86YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjI3ZCc7XG59XG5cbi8qICfvib0nICovXG4uaWNvbi10d2l0dGVyLXNxdWFyZWQ6YmVmb3JlIHtcbiAgY29udGVudDogJ1xcZjMwNCc7XG59XG5cbi8qICfvjIQnICovXG4uaWNvbi1mYWNlYm9vay1zcXVhcmVkOmJlZm9yZSB7XG4gIGNvbnRlbnQ6ICdcXGYzMDgnO1xufVxuXG4vKiAn74yIJyAqL1xuLmljb24tbGlua2VkaW4tc3F1YXJlZDpiZWZvcmUge1xuICBjb250ZW50OiAnXFxmMzBjJztcbn1cblxuLyogJ++MjCcgKi9cbi8qXG4gICBBbmltYXRpb24gZXhhbXBsZSwgZm9yIHNwaW5uZXJzXG4qL1xuLmFuaW1hdGUtc3BpbiB7XG4gIGFuaW1hdGlvbjogc3BpbiAycyBpbmZpbml0ZSBsaW5lYXI7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cblxuQGtleWZyYW1lcyBzcGluIHtcbiAgMCUge1xuICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpO1xuICB9XG4gIDEwMCUge1xuICAgIHRyYW5zZm9ybTogcm90YXRlKDM1OWRlZyk7XG4gIH1cbn1cblxuaHRtbCB7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIGZvbnQtc2l6ZTogNjIuNSU7XG59XG5cbiosXG4qOmJlZm9yZSxcbio6YWZ0ZXIge1xuICAvKiBJbmhlcml0IGJveC1zaXppbmcgdG8gbWFrZSBpdCBlYXNpZXIgdG8gY2hhbmdlIHRoZSBwcm9wZXJ0eSBmb3IgY29tcG9uZW50cyB0aGF0IGxldmVyYWdlIG90aGVyIGJlaGF2aW9yOyBzZWUgaHR0cDovL2Nzcy10cmlja3MuY29tL2luaGVyaXRpbmctYm94LXNpemluZy1wcm9iYWJseS1zbGlnaHRseS1iZXR0ZXItYmVzdC1wcmFjdGljZS8gKi9cbiAgYm94LXNpemluZzogaW5oZXJpdDtcbn1cblxuYm9keSB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG4gIC8qIEZhbGxiYWNrIGZvciB3aGVuIHRoZXJlIGlzIG5vIGN1c3RvbSBiYWNrZ3JvdW5kIGNvbG9yIGRlZmluZWQuICovXG59XG5cbmJsb2NrcXVvdGUsIHEge1xuICBxdW90ZXM6IFwiXCIgXCJcIjtcbiAgbWFyZ2luOiAyMHB4IDAgMjBweCA1MHB4O1xuICBib3JkZXItbGVmdDogMTBweCBzb2xpZCAjZjJmMmYyO1xuICBwYWRkaW5nOiAwIDUwcHg7XG59XG5cbmJsb2NrcXVvdGU6YmVmb3JlLCBibG9ja3F1b3RlOmFmdGVyLCBxOmJlZm9yZSwgcTphZnRlciB7XG4gIGNvbnRlbnQ6IFwiXCI7XG59XG5cbmhyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2YyZjJmMjtcbiAgYm9yZGVyOiAwO1xuICBoZWlnaHQ6IDFweDtcbiAgbWFyZ2luOiAzMHB4IDA7XG59XG5cbnVsLFxub2wge1xuICBtYXJnaW4tdG9wOiAwO1xuICBtYXJnaW4tYm90dG9tOiAxLjVlbTtcbn1cblxudWwgdWwsXG51bCBvbCxcbm9sIHVsLFxub2wgb2wge1xuICBtYXJnaW4tYm90dG9tOiAwO1xufVxuXG51bCB7XG4gIGxpc3Qtc3R5bGU6IGRpc2M7XG59XG5cbm9sIHtcbiAgbGlzdC1zdHlsZTogZGVjaW1hbDtcbn1cblxubGkgPiB1bCxcbmxpID4gb2wge1xuICBtYXJnaW4tYm90dG9tOiAwO1xuICBtYXJnaW4tbGVmdDogMDtcbn1cblxuZHQge1xuICBmb250LXdlaWdodDogYm9sZDtcbn1cblxuZGQge1xuICBtYXJnaW46IDAgMS41ZW0gMS41ZW07XG59XG5cbmltZyB7XG4gIGhlaWdodDogYXV0bztcbiAgLyogTWFrZSBzdXJlIGltYWdlcyBhcmUgc2NhbGVkIGNvcnJlY3RseS4gKi9cbiAgbWF4LXdpZHRoOiAxMDAlO1xuICAvKiBBZGhlcmUgdG8gY29udGFpbmVyIHdpZHRoLiAqL1xufVxuXG4uZmVhdHVyZS5pbWFnZSwgLmZlYXR1cmUudmlkZW8sIC5mZWF0dXJlLnNsaWRlciAuc2xpZGUsIC5jYXJkIC5pbWcge1xuICBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyO1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG59XG5cbi53aWR0aC0xMDAge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLndpZHRoLTc1IHtcbiAgd2lkdGg6IDc1JTtcbn1cblxuLndpZHRoLTUwIHtcbiAgd2lkdGg6IDUwJTtcbn1cblxuLndpZHRoLTI1IHtcbiAgd2lkdGg6IDI1JTtcbn1cblxuLnBhZGRpbmcge1xuICBwYWRkaW5nOiA0MHB4O1xufVxuXG4ucGFkZGluZy1sZWZ0IHtcbiAgcGFkZGluZy1sZWZ0OiA0MHB4O1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLnBhZGRpbmctbGVmdCB7XG4gICAgcGFkZGluZzogMDtcbiAgfVxufVxuXG4ucGFkZGluZy1yaWdodCB7XG4gIHBhZGRpbmctcmlnaHQ6IDQwcHg7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAucGFkZGluZy1yaWdodCB7XG4gICAgcGFkZGluZzogMDtcbiAgfVxufVxuXG4ucGFkZGluZy10b3Age1xuICBwYWRkaW5nLXRvcDogNDBweDtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIC5wYWRkaW5nLXRvcCB7XG4gICAgcGFkZGluZzogMDtcbiAgfVxufVxuXG4ucGFkZGluZy1ib3R0b20ge1xuICBwYWRkaW5nLWJvdHRvbTogNDBweDtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIC5wYWRkaW5nLWJvdHRvbSB7XG4gICAgcGFkZGluZzogMDtcbiAgfVxufVxuXG4ubWFyZ2luLWxlZnQge1xuICBtYXJnaW4tbGVmdDogNDBweDtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIC5tYXJnaW4tbGVmdCB7XG4gICAgbWFyZ2luOiAwO1xuICB9XG59XG5cbi5tYXJnaW4tcmlnaHQge1xuICBtYXJnaW4tcmlnaHQ6IDQwcHg7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAubWFyZ2luLXJpZ2h0IHtcbiAgICBtYXJnaW46IDA7XG4gIH1cbn1cblxuLm1hcmdpbi10b3Age1xuICBtYXJnaW4tdG9wOiA0MHB4O1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLm1hcmdpbi10b3Age1xuICAgIG1hcmdpbjogMDtcbiAgfVxufVxuXG4ubWFyZ2luLWJvdHRvbSB7XG4gIG1hcmdpbi1ib3R0b206IDQwcHg7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAubWFyZ2luLWJvdHRvbSB7XG4gICAgbWFyZ2luOiAwO1xuICB9XG59XG5cbi5zci1vbmx5IHtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB3aWR0aDogMXB4O1xuICBoZWlnaHQ6IDFweDtcbiAgcGFkZGluZzogMDtcbiAgbWFyZ2luOiAtMXB4O1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICBjbGlwOiByZWN0KDAsIDAsIDAsIDApO1xuICBib3JkZXI6IDA7XG59XG5cbnRhYmxlIHtcbiAgbWFyZ2luOiAwIDAgMS41ZW07XG4gIHdpZHRoOiAxMDAlO1xufVxuXG4uaWNvbiB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cblxuLmljb246YmVmb3JlLCAuaWNvbjphZnRlciB7XG4gIGNvbnRlbnQ6ICcnO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uYXJyb3csIC5hcnJvdy1kb3duLCAuYXJyb3ctdXAsIC5hcnJvdy1sZWZ0LCAuYXJyb3ctcmlnaHQge1xuICBib3JkZXI6IDFweCBzb2xpZCBwaW5rO1xuICBib3JkZXItd2lkdGg6IDAgMCAxcHggMXB4O1xuICB3aWR0aDogMTBweDtcbiAgaGVpZ2h0OiAxMHB4O1xuICBtYXJnaW46IDVweDtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4uYXJyb3ctZG93biB7XG4gIHRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG59XG5cbi5hcnJvdy11cCB7XG4gIHRyYW5zZm9ybTogcm90YXRlKDEzMGRlZyk7XG59XG5cbi5hcnJvdy1sZWZ0IHtcbiAgdHJhbnNmb3JtOiByb3RhdGUoNDVkZWcpO1xufVxuXG4uYXJyb3ctcmlnaHQge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtMTQwZGVnKTtcbn1cblxuLnBsYXkuaWNvbiB7XG4gIG1hcmdpbi1sZWZ0OiA1cHg7XG4gIG1hcmdpbi10b3A6IDRweDtcbiAgd2lkdGg6IDFweDtcbiAgaGVpZ2h0OiAxM3B4O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiBwaW5rO1xufVxuXG4ucGxheS5pY29uOmJlZm9yZSwgLnBsYXkuaWNvbjphZnRlciB7XG4gIGxlZnQ6IDFweDtcbiAgd2lkdGg6IDEycHg7XG4gIGhlaWdodDogMXB4O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiBwaW5rO1xufVxuXG4ucGxheS5pY29uOmJlZm9yZSB7XG4gIHRvcDogMDtcbiAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdCB0b3A7XG4gIHRyYW5zZm9ybTogcm90YXRlKDMwZGVnKTtcbn1cblxuLnBsYXkuaWNvbjphZnRlciB7XG4gIGJvdHRvbTogMDtcbiAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdCBib3R0b207XG4gIHRyYW5zZm9ybTogcm90YXRlKC0zMGRlZyk7XG59XG5cbi5wbGF5LWZpbGxlZC5pY29uIHtcbiAgbWFyZ2luLWxlZnQ6IDVweDtcbiAgbWFyZ2luLXRvcDogM3B4O1xuICB3aWR0aDogMDtcbiAgaGVpZ2h0OiAwO1xuICBib3JkZXItbGVmdDogc29saWQgMTFweCBwaW5rO1xuICBib3JkZXItdG9wOiBzb2xpZCA3cHggdHJhbnNwYXJlbnQ7XG4gIGJvcmRlci1ib3R0b206IHNvbGlkIDdweCB0cmFuc3BhcmVudDtcbn1cblxuYnV0dG9uLCAuYnRuLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uLCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uW3R5cGU9XCJzdWJtaXRcIl0sXG4uYnV0dG9uLFxuaW5wdXRbdHlwZT1cImJ1dHRvblwiXSxcbnNlbGVjdFt0eXBlPVwiYnV0dG9uXCJdLFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdLFxuc2VsZWN0W3R5cGU9XCJyZXNldFwiXSxcbmlucHV0W3R5cGU9XCJzdWJtaXRcIl0sXG5zZWxlY3RbdHlwZT1cInN1Ym1pdFwiXSB7XG4gIGFwcGVhcmFuY2U6IG5vbmU7XG4gIGJvcmRlcjogbm9uZTtcbiAgcGFkZGluZzogNnB4IDE1cHg7XG4gIHRyYW5zaXRpb246IC4zcyBlYXNlIGFsbDtcbiAgYmFja2dyb3VuZC1jb2xvcjogcGluaztcbiAgY29sb3I6ICNGRkY7XG4gIGJvcmRlci1yYWRpdXM6IDA7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgbWFyZ2luOiAxMHB4O1xufVxuXG5idXR0b246dmlzaXRlZCwgLmJ0bjp2aXNpdGVkLFxuLmJ1dHRvbjp2aXNpdGVkLFxuaW5wdXRbdHlwZT1cImJ1dHRvblwiXTp2aXNpdGVkLFxuc2VsZWN0W3R5cGU9XCJidXR0b25cIl06dmlzaXRlZCxcbmlucHV0W3R5cGU9XCJyZXNldFwiXTp2aXNpdGVkLFxuc2VsZWN0W3R5cGU9XCJyZXNldFwiXTp2aXNpdGVkLFxuaW5wdXRbdHlwZT1cInN1Ym1pdFwiXTp2aXNpdGVkLFxuc2VsZWN0W3R5cGU9XCJzdWJtaXRcIl06dmlzaXRlZCB7XG4gIGNvbG9yOiAjRkZGO1xufVxuXG5idXR0b246aG92ZXIsIC5idG46aG92ZXIsXG4uYnV0dG9uOmhvdmVyLFxuaW5wdXRbdHlwZT1cImJ1dHRvblwiXTpob3ZlcixcbnNlbGVjdFt0eXBlPVwiYnV0dG9uXCJdOmhvdmVyLFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdOmhvdmVyLFxuc2VsZWN0W3R5cGU9XCJyZXNldFwiXTpob3ZlcixcbmlucHV0W3R5cGU9XCJzdWJtaXRcIl06aG92ZXIsXG5zZWxlY3RbdHlwZT1cInN1Ym1pdFwiXTpob3ZlciB7XG4gIGJhY2tncm91bmQtY29sb3I6IHJlZDtcbiAgY29sb3I6ICNGRkY7XG4gIHRyYW5zaXRpb246IC4zcyBlYXNlIGFsbDtcbiAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG5idXR0b246aG92ZXIgLmFycm93LWxlZnQsIC5idG46aG92ZXIgLmFycm93LWxlZnQsIC5idXR0b246aG92ZXIgLmFycm93LWxlZnQsXG5idXR0b246aG92ZXIgLmFycm93LXJpZ2h0LFxuLmJ0bjpob3ZlciAuYXJyb3ctcmlnaHQsXG4uYnV0dG9uOmhvdmVyIC5hcnJvdy1yaWdodCxcbmlucHV0W3R5cGU9XCJidXR0b25cIl06aG92ZXIgLmFycm93LWxlZnQsXG5zZWxlY3RbdHlwZT1cImJ1dHRvblwiXTpob3ZlciAuYXJyb3ctbGVmdCxcbmlucHV0W3R5cGU9XCJidXR0b25cIl06aG92ZXIgLmFycm93LXJpZ2h0LFxuc2VsZWN0W3R5cGU9XCJidXR0b25cIl06aG92ZXIgLmFycm93LXJpZ2h0LFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdOmhvdmVyIC5hcnJvdy1sZWZ0LFxuc2VsZWN0W3R5cGU9XCJyZXNldFwiXTpob3ZlciAuYXJyb3ctbGVmdCxcbmlucHV0W3R5cGU9XCJyZXNldFwiXTpob3ZlciAuYXJyb3ctcmlnaHQsXG5zZWxlY3RbdHlwZT1cInJlc2V0XCJdOmhvdmVyIC5hcnJvdy1yaWdodCxcbmlucHV0W3R5cGU9XCJzdWJtaXRcIl06aG92ZXIgLmFycm93LWxlZnQsXG5zZWxlY3RbdHlwZT1cInN1Ym1pdFwiXTpob3ZlciAuYXJyb3ctbGVmdCxcbmlucHV0W3R5cGU9XCJzdWJtaXRcIl06aG92ZXIgLmFycm93LXJpZ2h0LFxuc2VsZWN0W3R5cGU9XCJzdWJtaXRcIl06aG92ZXIgLmFycm93LXJpZ2h0IHtcbiAgYm9yZGVyLWNvbG9yOiAjRkZGO1xufVxuXG4uYnRuIC5hcnJvdy1sZWZ0LCAuZ2Zvcm1fd3JhcHBlciAuYnV0dG9uIC5hcnJvdy1sZWZ0LFxuLmJ0biAuYXJyb3ctcmlnaHQsXG4uZ2Zvcm1fd3JhcHBlciAuYnV0dG9uIC5hcnJvdy1yaWdodCxcbi5idXR0b24gLmFycm93LWxlZnQsXG4uYnV0dG9uIC5hcnJvdy1yaWdodCB7XG4gIG1hcmdpbjogMXB4IDNweDtcbn1cblxuaW5wdXRbdHlwZT1cInRleHRcIl0sIHNlbGVjdFt0eXBlPVwidGV4dFwiXSxcbmlucHV0W3R5cGU9XCJlbWFpbFwiXSxcbnNlbGVjdFt0eXBlPVwiZW1haWxcIl0sXG5pbnB1dFt0eXBlPVwidXJsXCJdLFxuc2VsZWN0W3R5cGU9XCJ1cmxcIl0sXG5pbnB1dFt0eXBlPVwicGFzc3dvcmRcIl0sXG5zZWxlY3RbdHlwZT1cInBhc3N3b3JkXCJdLFxuaW5wdXRbdHlwZT1cInNlYXJjaFwiXSxcbnNlbGVjdFt0eXBlPVwic2VhcmNoXCJdLFxuaW5wdXRbdHlwZT1cIm51bWJlclwiXSxcbnNlbGVjdFt0eXBlPVwibnVtYmVyXCJdLFxuaW5wdXRbdHlwZT1cInRlbFwiXSxcbnNlbGVjdFt0eXBlPVwidGVsXCJdLFxuaW5wdXRbdHlwZT1cInJhbmdlXCJdLFxuc2VsZWN0W3R5cGU9XCJyYW5nZVwiXSxcbmlucHV0W3R5cGU9XCJkYXRlXCJdLFxuc2VsZWN0W3R5cGU9XCJkYXRlXCJdLFxuaW5wdXRbdHlwZT1cIm1vbnRoXCJdLFxuc2VsZWN0W3R5cGU9XCJtb250aFwiXSxcbmlucHV0W3R5cGU9XCJ3ZWVrXCJdLFxuc2VsZWN0W3R5cGU9XCJ3ZWVrXCJdLFxuaW5wdXRbdHlwZT1cInRpbWVcIl0sXG5zZWxlY3RbdHlwZT1cInRpbWVcIl0sXG5pbnB1dFt0eXBlPVwiZGF0ZXRpbWVcIl0sXG5zZWxlY3RbdHlwZT1cImRhdGV0aW1lXCJdLFxuaW5wdXRbdHlwZT1cImRhdGV0aW1lLWxvY2FsXCJdLFxuc2VsZWN0W3R5cGU9XCJkYXRldGltZS1sb2NhbFwiXSxcbmlucHV0W3R5cGU9XCJjb2xvclwiXSxcbnNlbGVjdFt0eXBlPVwiY29sb3JcIl0sXG50ZXh0YXJlYSB7XG4gIGNvbG9yOiBwaW5rO1xuICBhcHBlYXJhbmNlOiBub25lO1xuICBib3JkZXI6IG5vbmU7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHBpbms7XG4gIGJvcmRlci1yYWRpdXM6IDA7XG4gIHBhZGRpbmc6IDVweDtcbiAgbWFyZ2luOiAuM2VtIDA7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG5pbnB1dFt0eXBlPVwidGV4dFwiXTpmb2N1cywgc2VsZWN0W3R5cGU9XCJ0ZXh0XCJdOmZvY3VzLFxuaW5wdXRbdHlwZT1cImVtYWlsXCJdOmZvY3VzLFxuc2VsZWN0W3R5cGU9XCJlbWFpbFwiXTpmb2N1cyxcbmlucHV0W3R5cGU9XCJ1cmxcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cInVybFwiXTpmb2N1cyxcbmlucHV0W3R5cGU9XCJwYXNzd29yZFwiXTpmb2N1cyxcbnNlbGVjdFt0eXBlPVwicGFzc3dvcmRcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwic2VhcmNoXCJdOmZvY3VzLFxuc2VsZWN0W3R5cGU9XCJzZWFyY2hcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwibnVtYmVyXCJdOmZvY3VzLFxuc2VsZWN0W3R5cGU9XCJudW1iZXJcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwidGVsXCJdOmZvY3VzLFxuc2VsZWN0W3R5cGU9XCJ0ZWxcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwicmFuZ2VcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cInJhbmdlXCJdOmZvY3VzLFxuaW5wdXRbdHlwZT1cImRhdGVcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cImRhdGVcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwibW9udGhcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cIm1vbnRoXCJdOmZvY3VzLFxuaW5wdXRbdHlwZT1cIndlZWtcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cIndlZWtcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwidGltZVwiXTpmb2N1cyxcbnNlbGVjdFt0eXBlPVwidGltZVwiXTpmb2N1cyxcbmlucHV0W3R5cGU9XCJkYXRldGltZVwiXTpmb2N1cyxcbnNlbGVjdFt0eXBlPVwiZGF0ZXRpbWVcIl06Zm9jdXMsXG5pbnB1dFt0eXBlPVwiZGF0ZXRpbWUtbG9jYWxcIl06Zm9jdXMsXG5zZWxlY3RbdHlwZT1cImRhdGV0aW1lLWxvY2FsXCJdOmZvY3VzLFxuaW5wdXRbdHlwZT1cImNvbG9yXCJdOmZvY3VzLFxuc2VsZWN0W3R5cGU9XCJjb2xvclwiXTpmb2N1cyxcbnRleHRhcmVhOmZvY3VzIHtcbiAgY29sb3I6IHBpbms7XG59XG5cblxuaW5wdXRbdHlwZT1cInJhZGlvXCJdLFxuc2VsZWN0W3R5cGU9XCJyYWRpb1wiXSB7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cblxuc2VsZWN0IHtcbiAgYm9yZGVyLXJhZGl1czogMDtcbiAgYm9yZGVyOiAxcHggc29saWQgcGluaztcbn1cblxudGV4dGFyZWEge1xuICBwYWRkaW5nOiA1cHg7XG4gIHdpZHRoOiAxMDAlO1xufVxuXG5sYWJlbCB7XG4gIGZvbnQtc2l6ZTogMjMuOHB4O1xuICBmb250LXNpemU6IDEuNHJlbTtcbiAgbWFyZ2luOiAxZW0gMCAwLjJlbTtcbiAgZGlzcGxheTogYmxvY2s7XG4gIGZvbnQtd2VpZ2h0OiBib2xkO1xufVxuXG4uZ2Zvcm1fYWpheF9zcGlubmVyIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLmdmb3JtX3dyYXBwZXIge1xuICBtYXJnaW4tYm90dG9tOiAxZW07XG59XG5cbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJ0ZXh0XCJdLCAuZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cInRleHRcIl0sXG4uZ2Zvcm1fd3JhcHBlciBpbnB1dFt0eXBlPVwiZW1haWxcIl0sXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cImVtYWlsXCJdLFxuLmdmb3JtX3dyYXBwZXIgaW5wdXRbdHlwZT1cInVybFwiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwidXJsXCJdLFxuLmdmb3JtX3dyYXBwZXIgaW5wdXRbdHlwZT1cInBhc3N3b3JkXCJdLFxuLmdmb3JtX3dyYXBwZXIgc2VsZWN0W3R5cGU9XCJwYXNzd29yZFwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJzZWFyY2hcIl0sXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cInNlYXJjaFwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJudW1iZXJcIl0sXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cIm51bWJlclwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJ0ZWxcIl0sXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cInRlbFwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJyYW5nZVwiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwicmFuZ2VcIl0sXG4uZ2Zvcm1fd3JhcHBlciBpbnB1dFt0eXBlPVwiZGF0ZVwiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwiZGF0ZVwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJtb250aFwiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwibW9udGhcIl0sXG4uZ2Zvcm1fd3JhcHBlciBpbnB1dFt0eXBlPVwid2Vla1wiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwid2Vla1wiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJ0aW1lXCJdLFxuLmdmb3JtX3dyYXBwZXIgc2VsZWN0W3R5cGU9XCJ0aW1lXCJdLFxuLmdmb3JtX3dyYXBwZXIgaW5wdXRbdHlwZT1cImRhdGV0aW1lXCJdLFxuLmdmb3JtX3dyYXBwZXIgc2VsZWN0W3R5cGU9XCJkYXRldGltZVwiXSxcbi5nZm9ybV93cmFwcGVyIGlucHV0W3R5cGU9XCJkYXRldGltZS1sb2NhbFwiXSxcbi5nZm9ybV93cmFwcGVyIHNlbGVjdFt0eXBlPVwiZGF0ZXRpbWUtbG9jYWxcIl0sXG4uZ2Zvcm1fd3JhcHBlciBpbnB1dFt0eXBlPVwiY29sb3JcIl0sXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3RbdHlwZT1cImNvbG9yXCJdLFxuLmdmb3JtX3dyYXBwZXIgdGV4dGFyZWEsXG4uZ2Zvcm1fd3JhcHBlciBzZWxlY3Qge1xuICBhcHBlYXJhbmNlOiBub25lO1xuICB3aWR0aDogMTAwJTtcbiAgbWFyZ2luOiAwO1xufVxuXG4uZ2Zvcm1fZmllbGRzIHtcbiAgcGFkZGluZzogMDtcbiAgbGlzdC1zdHlsZTogbm9uZTtcbn1cblxuLmdmb3JtX2hlYWRpbmcge1xuICBtYXJnaW4tYm90dG9tOiAxZW07XG59XG5cbi5nZm9ybV9ib2R5IHtcbiAgbWFyZ2luLWJvdHRvbTogMWVtO1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2ZpZWxkLmdmb3JtX3ZhbGlkYXRpb25fY29udGFpbmVyIHtcbiAgZGlzcGxheTogbm9uZSAhaW1wb3J0YW50O1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2ZpZWxkX2xhYmVsIHtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG59XG5cbi5nZm9ybV9ib2R5IC5nZmllbGRfcmVxdWlyZWQge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHRvcDogLTJweDtcbiAgcmlnaHQ6IC0ycHg7XG4gIGNvbG9yOiBwaW5rO1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2ZpZWxkX2Vycm9yIC52YWxpZGF0aW9uX21lc3NhZ2Uge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiBwaW5rO1xuICBjb2xvcjogI0ZGRjtcbiAgZm9udC1zaXplOiA4MCU7XG4gIHBhZGRpbmc6IDVweCAxNXB4O1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2ZpZWxkX2NoZWNrYm94LCAuZ2Zvcm1fYm9keSAuZ2ZpZWxkX3JhZGlvIHtcbiAgbGlzdC1zdHlsZTogbm9uZTtcbiAgbWFyZ2luOiAwO1xuICBwYWRkaW5nOiAwO1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2ZpZWxkX2NoZWNrYm94ID4gbGksIC5nZm9ybV9ib2R5IC5nZmllbGRfcmFkaW8gPiBsaSB7XG4gIHBhZGRpbmctbGVmdDogMDtcbiAgbWFyZ2luLWxlZnQ6IDA7XG59XG5cbi5nZm9ybV9ib2R5IC5nZmllbGRfY2hlY2tib3ggPiBsaSBsYWJlbCwgLmdmb3JtX2JvZHkgLmdmaWVsZF9yYWRpbyA+IGxpIGxhYmVsIHtcbiAgbWFyZ2luLWxlZnQ6IDA7XG59XG5cbi5nZm9ybV9ib2R5IC5naW5wdXRfY29udGFpbmVyX3RleHRhcmVhIHtcbiAgbGluZS1oZWlnaHQ6IDA7XG59XG5cbi5nZm9ybV9ib2R5IC5naW5wdXRfY29tcGxleCB7XG4gIGRpc3BsYXk6IHRhYmxlO1xuICB0YWJsZS1sYXlvdXQ6IGZpeGVkO1xuICB3aWR0aDogMTAwJTtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogdGFibGU7XG4gIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG5cbi5nZm9ybV9ib2R5IC5naW5wdXRfY29tcGxleCA+IHNwYW4ge1xuICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuICBwYWRkaW5nLXJpZ2h0OiAxNXB4O1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmdmb3JtX2JvZHkgLmdpbnB1dF9jb21wbGV4ID4gc3BhbjpsYXN0LW9mLXR5cGUge1xuICBwYWRkaW5nLXJpZ2h0OiAwO1xufVxuXG4uZ2Zvcm1fYm9keSAuZ2lucHV0X2NvbXBsZXggPiAuZ2lucHV0X2Z1bGwge1xuICBkaXNwbGF5OiBibG9jaztcbiAgd2lkdGg6IDEwMCU7XG4gIHBhZGRpbmctcmlnaHQ6IDA7XG59XG5cbi5nZm9ybV9ib2R5IC5naW5wdXRfY29tcGxleCA+IC5naW5wdXRfbGVmdCB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBmbG9hdDogbGVmdDtcbiAgd2lkdGg6IDUwJTtcbn1cblxuLmdmb3JtX2JvZHkgLmdpbnB1dF9jb21wbGV4ID4gLmdpbnB1dF9yaWdodCB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBmbG9hdDogcmlnaHQ7XG4gIHdpZHRoOiA1MCU7XG59XG5cbi5nZm9ybV9ib2R5IC52YWxpZGF0aW9uX21lc3NhZ2Uge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiBwaW5rO1xuICBjb2xvcjogI0ZGRjtcbiAgcGFkZGluZzogNXB4O1xufVxuXG4uZ2Zvcm1fcGFnZV9mb290ZXIge1xuICBiYWNrZ3JvdW5kOiAjZjJmMmYyO1xuICBjb250ZW50OiBcIlwiO1xuICBkaXNwbGF5OiB0YWJsZTtcbiAgdGFibGUtbGF5b3V0OiBmaXhlZDtcbn1cblxuLmdmb3JtX25leHRfYnV0dG9uIHtcbiAgZmxvYXQ6IHJpZ2h0O1xufVxuXG4uZ2Zvcm1fcHJldl9idXR0b24ge1xuICBmbG9hdDogbGVmdDtcbn1cblxuLmdmb3JtIC52YWxpZGF0aW9uX2Vycm9yIHtcbiAgZm9udC1zaXplOiA4MCU7XG4gIG1hcmdpbjogMS41ZW0gMDtcbn1cblxuLmdmb3JtX2FqYXhfc3Bpbm5lciB7XG4gIGRpc3BsYXk6IG5vbmU7XG59XG5cbiN1aS1kYXRlcGlja2VyLWRpdiB7XG4gIGJhY2tncm91bmQ6IHdoaXRlO1xuICBwYWRkaW5nOiAxMHB4O1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJvcmRlcjogMnB4IHNvbGlkIHJlZDtcbiAgZGlzcGxheTogbm9uZTtcbiAgbWFyZ2luOiAtMnB4IGF1dG87XG4gIGJveC1zaGFkb3c6IDBweCAycHggMTVweCByZ2JhKDUxLCA1MSwgNTEsIDAuNik7XG59XG5cbiN1aS1kYXRlcGlja2VyLWRpdiBzZWxlY3Qge1xuICBwYWRkaW5nOiAycHggMTBweDtcbiAgbWFyZ2luOiAxMHB4IDVweDtcbn1cblxuLmZvcm1fc2F2ZWRfbWVzc2FnZV9lbWFpbGZvcm0gZm9ybSB7XG4gIHBhZGRpbmc6IDJlbSAwIDA7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAgZGlzcGxheTogZmxleDtcbn1cblxuLmZvcm1fc2F2ZWRfbWVzc2FnZV9lbWFpbGZvcm0gZm9ybSBpbnB1dFt0eXBlPVwiZW1haWxcIl0sIC5mb3JtX3NhdmVkX21lc3NhZ2VfZW1haWxmb3JtIGZvcm0gc2VsZWN0W3R5cGU9XCJlbWFpbFwiXSB7XG4gIHdpZHRoOiA2MCU7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA0ODBweCkge1xuICAuZm9ybV9zYXZlZF9tZXNzYWdlX2VtYWlsZm9ybSBmb3JtIGlucHV0W3R5cGU9XCJlbWFpbFwiXSwgLmZvcm1fc2F2ZWRfbWVzc2FnZV9lbWFpbGZvcm0gZm9ybSBzZWxlY3RbdHlwZT1cImVtYWlsXCJdIHtcbiAgICB3aWR0aDogNTclO1xuICB9XG59XG5cbi52YWxpZGF0aW9uX21lc3NhZ2Uge1xuICBmbGV4LWJhc2lzOiAxMDAlO1xuICBmb250LXNpemU6IDgwJTtcbn1cblxuLyohIFxu4pmh4pmh4pmh4pmh4pmh4pmh4pmh4pmh4pmh4pmh4pmhXG7imaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaVcbkNyZWRpdCBDYXJkXG7imaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaVcbuKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoVxuKi9cbi5scy1uYXYtcmlnaHQgYTpiZWZvcmUsXG4ubHMtbmF2LWxlZnQgYTpiZWZvcmUsXG4ud2NfcGF5bWVudF9tZXRob2QgbGFiZWw6YmVmb3JlLFxubGFiZWxbZm9yPVwic3RyaXBlLWNhcmQtbnVtYmVyXCJdOmFmdGVyLFxubGFiZWxbZm9yPVwic3RyaXBlLWNhcmQtY3ZjXCJdOmFmdGVyLFxuLnVpLWljb246YWZ0ZXIsXG4udWktaWNvbjpiZWZvcmUsXG4uZ2Zvcm1fY2FyZF9pY29uX2NvbnRhaW5lciBkaXY6YmVmb3JlLFxuLmdpbnB1dF9jYXJkX3NlY3VyaXR5X2NvZGVfaWNvbjpiZWZvcmUge1xuICBmb250LWZhbWlseTogJ2ljb21vb24nO1xuICBzcGVhazogbm9uZTtcbiAgZm9udC1zdHlsZTogbm9ybWFsO1xuICBmb250LXdlaWdodDogbm9ybWFsO1xuICBmb250LXZhcmlhbnQ6IG5vcm1hbDtcbiAgdGV4dC10cmFuc2Zvcm06IG5vbmU7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICAtd2Via2l0LWZvbnQtc21vb3RoaW5nOiBhbnRpYWxpYXNlZDtcbiAgLW1vei1vc3gtZm9udC1zbW9vdGhpbmc6IGdyYXlzY2FsZTtcbn1cblxuLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCB7XG4gIGJhY2tncm91bmQ6ICNmMmYyZjI7XG4gIHBhZGRpbmc6IDIwcHg7XG59XG5cbi5naW5wdXRfY29udGFpbmVyX2NyZWRpdGNhcmQgaW5wdXQsIC5naW5wdXRfY29udGFpbmVyX2NyZWRpdGNhcmQgc2VsZWN0LFxuLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCBzZWxlY3Qge1xuICBiYWNrZ3JvdW5kOiB3aGl0ZTtcbiAgd2lkdGg6IDQ4JTtcbn1cblxuLmdpbnB1dF9jYXJkaW5mb19sZWZ0IHtcbiAgd2lkdGg6IDUwJTtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gIC5naW5wdXRfY2FyZGluZm9fbGVmdCB7XG4gICAgd2lkdGg6IDEwMCU7XG4gIH1cbn1cblxuLmdmb3JtX2NhcmRfaWNvbl9jb250YWluZXIgZGl2IHtcbiAgZm9udC1zaXplOiAyZW07XG4gIGZsb2F0OiBsZWZ0O1xuICB0ZXh0LWluZGVudDogLTk5ZW07XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5nZm9ybV9jYXJkX2ljb25fY29udGFpbmVyIGRpdjpiZWZvcmUge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDA7XG4gIHRvcDogMDtcbiAgdGV4dC1pbmRlbnQ6IDA7XG59XG5cbi5nZm9ybV9jYXJkX2ljb25fY29udGFpbmVyIGRpdiB7XG4gIGZvbnQtc2l6ZTogMmVtO1xuICBmbG9hdDogbGVmdDtcbiAgdGV4dC1pbmRlbnQ6IC05OWVtO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICB3aWR0aDogMS41ZW07XG4gIGNvbG9yOiAjMzMzMzMzO1xufVxuXG4uZ2lucHV0X2NhcmRfc2VjdXJpdHlfY29kZV9pY29uOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXFxlOTExXCI7XG59XG5cbi5pY29uLWNjLXBheXBhbDpiZWZvcmUge1xuICBjb250ZW50OiBcIlxcZTkxM1wiO1xufVxuXG4uZ2Zvcm1fY2FyZF9pY29uX2FtZXg6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGU5MTRcIjtcbn1cblxuLmdmb3JtX2NhcmRfaWNvbl9kaXNjb3ZlcjpiZWZvcmUge1xuICBjb250ZW50OiBcIlxcZTkxNVwiO1xufVxuXG4uZ2Zvcm1fY2FyZF9pY29uX21hc3RlcmNhcmQ6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGU5MTZcIjtcbn1cblxuLmdmb3JtX2NhcmRfaWNvbl92aXNhOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXFxlOTE3XCI7XG59XG5cbi5naW5wdXRfY2FyZGluZm9fbGVmdCxcbi5naW5wdXRfY2FyZGluZm9fcmlnaHQge1xuICBmbG9hdDogbGVmdDtcbn1cblxuLmdpbnB1dF9jYXJkaW5mb19yaWdodCB7XG4gIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICB3aWR0aDogY2FsYyg1MCUgLSAxMHB4KTtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gIC5naW5wdXRfY2FyZGluZm9fcmlnaHQge1xuICAgIG1hcmdpbjogMDtcbiAgICB3aWR0aDogMTAwJTtcbiAgfVxufVxuXG5zcGFuLmdpbnB1dF9jYXJkX3NlY3VyaXR5X2NvZGVfaWNvbiB7XG4gIGZvbnQtc2l6ZTogMS41ZW07XG4gIGZsb2F0OiBsZWZ0O1xuICBjb2xvcjogIzY2NjtcbiAgbGluZS1oZWlnaHQ6IDEuMjtcbn1cblxuLmdmaWVsZF9jcmVkaXRjYXJkX3dhcm5pbmdfbWVzc2FnZSB7XG4gIGJhY2tncm91bmQ6ICNiZjA0MjE7XG4gIGNvbG9yOiB3aGl0ZTtcbiAgcGFkZGluZzogMWVtIC43NWVtO1xuICBib3JkZXItcmFkaXVzOiAzcHg7XG4gIGZvbnQtc2l6ZTogODAlO1xuICBtYXJnaW4tYm90dG9tOiAxZW07XG59XG5cbi5nZmllbGRfZXJyb3IgLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCBsYWJlbCB7XG4gIGNvbG9yOiBibGFjaztcbn1cblxuLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCAuZ2lucHV0X2Z1bGwge1xuICBjbGVhcjogYm90aDtcbiAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5maWVsZF9zdWJsYWJlbF9hYm92ZSAuZ2lucHV0X2NvbnRhaW5lcl9jcmVkaXRjYXJkIC5naW5wdXRfZnVsbDpmaXJzdC1vZi10eXBlIHtcbiAgbWFyZ2luLWJvdHRvbTogMmVtO1xufVxuXG4uc3Vuc2hpbmUgbGkge1xuICBtYXJnaW46IDFlbSAwZW0gMGVtO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5zdW5zaGluZSBsaSBpbnB1dDpub3QoW3R5cGU9Y2hlY2tib3hdKTpub3QoW3R5cGU9cmFkaW9dKSwgLnN1bnNoaW5lIGxpIHNlbGVjdDpub3QoW3R5cGU9Y2hlY2tib3hdKTpub3QoW3R5cGU9cmFkaW9dKSxcbi5zdW5zaGluZSBsaSB0ZXh0YXJlYSB7XG4gIHdpZHRoOiAxMDAlO1xuICBjb2xvcjogcmVkO1xuICBwYWRkaW5nOiAyNXB4IDEwcHggNXB4O1xufVxuXG4uc3Vuc2hpbmUgbGkgbGFiZWwge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIHRleHQtYWxpZ246IGxlZnQ7XG4gIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gIHBhZGRpbmc6IDE1cHggMTBweDtcbiAgd2lkdGg6IDEwMCU7XG4gIGNvbG9yOiBwaW5rO1xuICBmb250LXdlaWdodDogYm9sZDtcbiAgLXdlYmtpdC1mb250LXNtb290aGluZzogYW50aWFsaWFzZWQ7XG4gIHVzZXItc2VsZWN0OiBub25lO1xuICB0cmFuc2l0aW9uOiAuM3MgZWFzZSBhbGw7XG4gIGZvbnQtc2l6ZTogMjMuOHB4O1xuICBmb250LXNpemU6IDEuNHJlbTtcbn1cblxuLnN1bnNoaW5lIGxpIGxhYmVsOmJlZm9yZSwgLnN1bnNoaW5lIGxpIGxhYmVsOmFmdGVyIHtcbiAgY29udGVudDogJyc7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgei1pbmRleDogLTE7XG4gIHdpZHRoOiAxMDAlO1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4zcztcbn1cblxuLnN1bnNoaW5lIGxpIGxhYmVsOmJlZm9yZSB7XG4gIHRvcDogMDtcbn1cblxuLnN1bnNoaW5lIGxpIGxhYmVsOmFmdGVyIHtcbiAgYm90dG9tOiAwO1xufVxuXG4uc3Vuc2hpbmUgbGkgbGFiZWwgLmxhYmVsLWNvbnRlbnQge1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4zcztcbn1cblxuLnN1bnNoaW5lIGxpLmFjdGl2ZSBsYWJlbCB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoNXB4LCAwcHgsIDApO1xuICBwYWRkaW5nOiA1cHg7XG4gIGZvbnQtc2l6ZTogOTIlO1xuICB0cmFuc2l0aW9uOiAuM3MgZWFzZSBhbGw7XG4gIGNvbG9yOiAjZjJmMmYyO1xuICBmb250LXNpemU6IDcwJTtcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgTGlua3Ncbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbmEge1xuICBjb2xvcjogcGluaztcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuXG5hOnZpc2l0ZWQge1xuICBjb2xvcjogcGluaztcbn1cblxuYTpob3ZlciwgYTphY3RpdmUge1xuICBjb2xvcjogcmVkO1xuICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG59XG5cbmE6Zm9jdXMge1xuICBvdXRsaW5lOiB0aGluIGRvdHRlZDtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuXG5hOmhvdmVyLCBhOmFjdGl2ZSB7XG4gIG91dGxpbmU6IDA7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIE1lbnVzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4ubWFpbi1uYXZpZ2F0aW9uIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIHRleHQtYWxpZ246IHJpZ2h0O1xuICB0cmFuc2l0aW9uOiAuNXMgbGluZWFyIGFsbDtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIC5tYWluLW5hdmlnYXRpb24ge1xuICAgIHRleHQtYWxpZ246IHJpZ2h0O1xuICB9XG59XG5cbi5tYWluLW5hdmlnYXRpb24gdWwge1xuICBsaXN0LXN0eWxlOiBub25lO1xuICBtYXJnaW46IDA7XG4gIHBhZGRpbmc6IDA7XG59XG5cbi5tYWluLW5hdmlnYXRpb24gdWwgdWwge1xuICBib3gtc2hhZG93OiAwIDNweCAxMHB4IHJnYmEoNTEsIDUxLCA1MSwgMC4zKTtcbiAgZmxvYXQ6IGxlZnQ7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiA2MHB4O1xuICBsZWZ0OiAtOTk5ZW07XG4gIHotaW5kZXg6IDk5OTk5O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjRkZGO1xuICBwYWRkaW5nLWxlZnQ6IDEwcHg7XG4gIG1pbi13aWR0aDogMjAwcHg7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAubWFpbi1uYXZpZ2F0aW9uIHVsIHVsIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgZmxvYXQ6IG5vbmU7XG4gICAgbGVmdDogYXV0bztcbiAgICB0b3A6IGF1dG87XG4gIH1cbn1cblxuLm1haW4tbmF2aWdhdGlvbiB1bCB1bCB1bCB7XG4gIGxlZnQ6IC05OTllbTtcbiAgdG9wOiAwO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLm1haW4tbmF2aWdhdGlvbiB1bCB1bCB1bCB7XG4gICAgbGVmdDogaW5pdGlhbDtcbiAgfVxufVxuXG4ubWFpbi1uYXZpZ2F0aW9uIHVsIHVsIGxpOmhvdmVyID4gdWwsXG4ubWFpbi1uYXZpZ2F0aW9uIHVsIHVsIGxpLmZvY3VzID4gdWwge1xuICBsZWZ0OiAxMDAlO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLm1haW4tbmF2aWdhdGlvbiB1bCB1bCBsaTpob3ZlciA+IHVsLFxuICAubWFpbi1uYXZpZ2F0aW9uIHVsIHVsIGxpLmZvY3VzID4gdWwge1xuICAgIGxlZnQ6IGluaXRpYWw7XG4gIH1cbn1cblxuLm1haW4tbmF2aWdhdGlvbiB1bCBsaTpob3ZlciA+IHVsLFxuLm1haW4tbmF2aWdhdGlvbiB1bCBsaS5mb2N1cyA+IHVsIHtcbiAgbGVmdDogYXV0bztcbn1cblxuLm1haW4tbmF2aWdhdGlvbiBsaSB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgdGV4dC1hbGlnbjogbGVmdDtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLm1haW4tbmF2aWdhdGlvbiBsaSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gIH1cbn1cblxuLm1haW4tbmF2aWdhdGlvbiBsaTpob3ZlciA+IGEsXG4ubWFpbi1uYXZpZ2F0aW9uIGxpLmZvY3VzID4gYSB7XG4gIGJhY2tncm91bmQtY29sb3I6IHJlZDtcbiAgY29sb3I6IHBpbms7XG59XG5cbi5tYWluLW5hdmlnYXRpb24gYSB7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xuICBwYWRkaW5nOiAxNXB4O1xuICBib3JkZXI6IG5vbmU7XG4gIHdpZHRoOiAxMDAlO1xufVxuXG4ubWFpbi1uYXZpZ2F0aW9uIC5zdWItbWVudSB7XG4gIHdpZHRoOiAyMDBweDtcbiAgcGFkZGluZzogMDtcbiAgbWFyZ2luOiAwO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLm1haW4tbmF2aWdhdGlvbiAuc3ViLW1lbnUge1xuICAgIHdpZHRoOiAxMDAlO1xuICB9XG59XG5cbi5tYWluLW5hdmlnYXRpb24gLnN1Yi1tZW51IGxpIHtcbiAgd2lkdGg6IDEwMCU7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAubWFpbi1uYXZpZ2F0aW9uIHVsLnN1Yi1tZW51LFxuICAubWFpbi1uYXZpZ2F0aW9uIHVsLmNoaWxkcmVuIHtcbiAgICBkaXNwbGF5OiBub25lO1xuICB9XG4gIC5tYWluLW5hdmlnYXRpb24gdWwuc3ViLW1lbnUudG9nZ2xlZC1vbixcbiAgLm1haW4tbmF2aWdhdGlvbiB1bC5jaGlsZHJlbi50b2dnbGVkLW9uIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgfVxufVxuXG4ubWFpbi1uYXZpZ2F0aW9uIC5kcm9wZG93bi10b2dnbGUge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbiAgcGFkZGluZzogMDtcbiAgd2lkdGg6IDEwMCU7XG4gIHRleHQtYWxpZ246IGxlZnQ7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG4ubWFpbi1uYXZpZ2F0aW9uIC5kcm9wZG93bi10b2dnbGUgLmFycm93LWRvd24ge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHJpZ2h0OiAxMHB4O1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICB2aXNpYmlsaXR5OiBoaWRkZW47XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAubWFpbi1uYXZpZ2F0aW9uIC5kcm9wZG93bi10b2dnbGUgLmFycm93LWRvd24ge1xuICAgIHZpc2liaWxpdHk6IHZpc2libGU7XG4gIH1cbn1cblxuLm1haW4tbmF2aWdhdGlvbiAuZHJvcGRvd24tdG9nZ2xlLnRvZ2dsZWQtb24gLmFycm93LWRvd24ge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xufVxuXG4uc2l0ZS1tYWluIC5jb21tZW50LW5hdmlnYXRpb24sIC5zaXRlLW1haW5cbi5wb3N0cy1uYXZpZ2F0aW9uLCAuc2l0ZS1tYWluXG4ucG9zdC1uYXZpZ2F0aW9uIHtcbiAgbWFyZ2luOiAwIDAgMS41ZW07XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5jb21tZW50LW5hdmlnYXRpb24gLm5hdi1wcmV2aW91cyxcbi5wb3N0cy1uYXZpZ2F0aW9uIC5uYXYtcHJldmlvdXMsXG4ucG9zdC1uYXZpZ2F0aW9uIC5uYXYtcHJldmlvdXMge1xuICBmbG9hdDogbGVmdDtcbn1cblxuLmNvbW1lbnQtbmF2aWdhdGlvbiAubmF2LW5leHQsXG4ucG9zdHMtbmF2aWdhdGlvbiAubmF2LW5leHQsXG4ucG9zdC1uYXZpZ2F0aW9uIC5uYXYtbmV4dCB7XG4gIGZsb2F0OiByaWdodDtcbiAgdGV4dC1hbGlnbjogcmlnaHQ7XG59XG5cbkBtZWRpYSAobWluLXdpZHRoOiA3NjlweCkge1xuICAjbW9iaWxlLW1lbnUge1xuICAgIGRpc3BsYXk6IG5vbmU7XG4gIH1cbiAgLm1haW4tbmF2aWdhdGlvbiB1bCB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gIH1cbn1cblxuYnV0dG9uI21vYmlsZS1tZW51LCAjbW9iaWxlLW1lbnUuYnRuLFxuI21vYmlsZS1tZW51LmJ1dHRvbiB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgei1pbmRleDogMTAxO1xuICBtYXJnaW46IDIwcHggYXV0bztcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7XG4gIGJ1dHRvbiNtb2JpbGUtbWVudSwgI21vYmlsZS1tZW51LmJ0bixcbiAgI21vYmlsZS1tZW51LmJ1dHRvbiB7XG4gICAgZGlzcGxheTogdGFibGU7XG4gIH1cbn1cblxuLnRvZ2dsZWQge1xuICB0cmFuc2l0aW9uOiAuNXMgbGluZWFyIGFsbDtcbn1cblxuLypcblxuLm1lbnUtdG9nZ2xlLFxuLm1haW4tbmF2aWdhdGlvbi50b2dnbGVkIHVsIHtcblx0ZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuKi9cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkge1xuICAuc2xpZGVsZWZ0IHtcbiAgICB0cmFuc2l0aW9uOiAuNnM7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIHRvcDogMDtcbiAgICByaWdodDogMDtcbiAgICBwYWRkaW5nOiAwO1xuICAgIHotaW5kZXg6IC0xO1xuICAgIHdpZHRoOiAwO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBvdmVyZmxvdy14OiBoaWRkZW47XG4gICAgYmFja2dyb3VuZC1jb2xvcjogcGluaztcbiAgICB0cmFuc2l0aW9uLWRlbGF5OiAuMnM7XG4gIH1cbiAgLnNsaWRlbGVmdCAub3ZlcmxheS1jb250ZW50IHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICBvcGFjaXR5OiAwO1xuICAgIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgICB0cmFuc2l0aW9uOiAuNXMgZWFzZSBhbGw7XG4gIH1cbiAgLnNsaWRlbGVmdCAubWVudS1tYWluLW1lbnUtY29udGFpbmVyIHtcbiAgICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gIH1cbn1cblxuLnRvZ2dsZWQgLnNsaWRlbGVmdCB7XG4gIGJhY2tncm91bmQtY29sb3I6IHBpbms7XG4gIHRyYW5zaXRpb246IC42cztcbiAgei1pbmRleDogMTAwO1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xuICBvdmVyZmxvdy14OiB2aXNpYmxlO1xufVxuXG5AbWVkaWEgKG1heC1oZWlnaHQ6IDMwMHB4KSB7XG4gIC50b2dnbGVkIC5zbGlkZWxlZnQge1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG4gIH1cbn1cblxuLnRvZ2dsZWQgLnNsaWRlbGVmdCAub3ZlcmxheS1jb250ZW50IHtcbiAgb3BhY2l0eTogMTtcbiAgdmlzaWJpbGl0eTogdmlzaWJsZTtcbiAgdHJhbnNpdGlvbjogLjVzIGVhc2UgYWxsO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAuM3M7XG59XG5cbi8qIVxuICogSGFtYnVyZ2Vyc1xuICogQGRlc2NyaXB0aW9uIFRhc3R5IENTUy1hbmltYXRlZCBoYW1idXJnZXJzXG4gKiBAYXV0aG9yIEpvbmF0aGFuIFN1aCBAam9uc3VoXG4gKiBAc2l0ZSBodHRwczovL2pvbnN1aC5jb20vaGFtYnVyZ2Vyc1xuICogQGxpbmsgaHR0cHM6Ly9naXRodWIuY29tL2pvbnN1aC9oYW1idXJnZXJzXG4gKi9cbi5oYW1idXJnZXIge1xuICBwYWRkaW5nOiAxNXB4IDE1cHg7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB0cmFuc2l0aW9uLXByb3BlcnR5OiBvcGFjaXR5LCBmaWx0ZXI7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMTVzO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogbGluZWFyO1xuICBmb250OiBpbmhlcml0O1xuICBjb2xvcjogaW5oZXJpdDtcbiAgdGV4dC10cmFuc2Zvcm06IG5vbmU7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xuICBib3JkZXI6IDA7XG4gIG1hcmdpbjogMDtcbiAgb3ZlcmZsb3c6IHZpc2libGU7XG59XG5cbi5oYW1idXJnZXI6aG92ZXIge1xuICBvcGFjaXR5OiAwLjc7XG59XG5cbi5oYW1idXJnZXI6aG92ZXIgLmhhbWJ1cmdlci1pbm5lciB7XG4gIGJhY2tncm91bmQtY29sb3I6ICM5OTk7XG59XG5cbi5oYW1idXJnZXI6aG92ZXIgLmhhbWJ1cmdlci1pbm5lciwgLmhhbWJ1cmdlcjpob3ZlciAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsIC5oYW1idXJnZXI6aG92ZXIgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjOTk5O1xufVxuXG4uaGFtYnVyZ2VyLmlzLWFjdGl2ZTpob3ZlciB7XG4gIG9wYWNpdHk6IDAuNztcbn1cblxuLmhhbWJ1cmdlci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcixcbi5oYW1idXJnZXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSxcbi5oYW1idXJnZXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogIzAwMDtcbn1cblxuLmhhbWJ1cmdlci1ib3gge1xuICB3aWR0aDogNDBweDtcbiAgaGVpZ2h0OiAyNHB4O1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cblxuLmhhbWJ1cmdlci1pbm5lciB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICB0b3A6IDUwJTtcbiAgbWFyZ2luLXRvcDogLTJweDtcbn1cblxuLmhhbWJ1cmdlci1pbm5lciwgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHdpZHRoOiA0MHB4O1xuICBoZWlnaHQ6IDRweDtcbiAgYmFja2dyb3VuZC1jb2xvcjogIzAwMDtcbiAgYm9yZGVyLXJhZGl1czogNHB4O1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRyYW5zaXRpb24tcHJvcGVydHk6IHRyYW5zZm9ybTtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4xNXM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlO1xufVxuXG4uaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogLTEwcHg7XG59XG5cbi5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAtMTBweDtcbn1cblxuLypcbiAgICogM0RYXG4gICAqL1xuLmhhbWJ1cmdlci0tM2R4IC5oYW1idXJnZXItYm94IHtcbiAgcGVyc3BlY3RpdmU6IDgwcHg7XG59XG5cbi5oYW1idXJnZXItLTNkeCAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTVzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKSwgYmFja2dyb3VuZC1jb2xvciAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R4IC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSwgLmhhbWJ1cmdlci0tM2R4IC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS0zZHguaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICB0cmFuc2Zvcm06IHJvdGF0ZVkoMTgwZGVnKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R4LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDEwcHgsIDApIHJvdGF0ZSg0NWRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeC5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0xMHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbn1cblxuLypcbiAgICogM0RYIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS0zZHgtciAuaGFtYnVyZ2VyLWJveCB7XG4gIHBlcnNwZWN0aXZlOiA4MHB4O1xufVxuXG4uaGFtYnVyZ2VyLS0zZHgtciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTVzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKSwgYmFja2dyb3VuZC1jb2xvciAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R4LXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLS0zZHgtciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R4LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICB0cmFuc2Zvcm06IHJvdGF0ZVkoLTE4MGRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeC1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDEwcHgsIDApIHJvdGF0ZSg0NWRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeC1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgLTEwcHgsIDApIHJvdGF0ZSgtNDVkZWcpO1xufVxuXG4vKlxuICAgKiAzRFlcbiAgICovXG4uaGFtYnVyZ2VyLS0zZHkgLmhhbWJ1cmdlci1ib3gge1xuICBwZXJzcGVjdGl2ZTogODBweDtcbn1cblxuLmhhbWJ1cmdlci0tM2R5IC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4xNXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpLCBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS0zZHkgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLS0zZHkgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLTNkeS5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50ICFpbXBvcnRhbnQ7XG4gIHRyYW5zZm9ybTogcm90YXRlWCgtMTgwZGVnKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R5LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDEwcHgsIDApIHJvdGF0ZSg0NWRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeS5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0xMHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbn1cblxuLypcbiAgICogM0RZIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS0zZHktciAuaGFtYnVyZ2VyLWJveCB7XG4gIHBlcnNwZWN0aXZlOiA4MHB4O1xufVxuXG4uaGFtYnVyZ2VyLS0zZHktciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTVzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKSwgYmFja2dyb3VuZC1jb2xvciAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R5LXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLS0zZHktciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R5LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICB0cmFuc2Zvcm06IHJvdGF0ZVgoMTgwZGVnKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R5LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgMTBweCwgMCkgcm90YXRlKDQ1ZGVnKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R5LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMTBweCwgMCkgcm90YXRlKC00NWRlZyk7XG59XG5cbi8qXG4gICAqIDNEWFlcbiAgICovXG4uaGFtYnVyZ2VyLS0zZHh5IC5oYW1idXJnZXItYm94IHtcbiAgcGVyc3BlY3RpdmU6IDgwcHg7XG59XG5cbi5oYW1idXJnZXItLTNkeHkgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjE1cyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSksIGJhY2tncm91bmQtY29sb3IgMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLTNkeHkgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLS0zZHh5IC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS0zZHh5LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbiAgdHJhbnNmb3JtOiByb3RhdGVYKDE4MGRlZykgcm90YXRlWSgxODBkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS0zZHh5LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDEwcHgsIDApIHJvdGF0ZSg0NWRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeHkuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMTBweCwgMCkgcm90YXRlKC00NWRlZyk7XG59XG5cbi8qXG4gICAqIDNEWFkgUmV2ZXJzZVxuICAgKi9cbi5oYW1idXJnZXItLTNkeHktciAuaGFtYnVyZ2VyLWJveCB7XG4gIHBlcnNwZWN0aXZlOiA4MHB4O1xufVxuXG4uaGFtYnVyZ2VyLS0zZHh5LXIgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjE1cyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSksIGJhY2tncm91bmQtY29sb3IgMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLTNkeHktciAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsIC5oYW1idXJnZXItLTNkeHktciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tM2R4eS1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbiAgdHJhbnNmb3JtOiByb3RhdGVYKDE4MGRlZykgcm90YXRlWSgxODBkZWcpIHJvdGF0ZVooLTE4MGRlZyk7XG59XG5cbi5oYW1idXJnZXItLTNkeHktci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAxMHB4LCAwKSByb3RhdGUoNDVkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS0zZHh5LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMTBweCwgMCkgcm90YXRlKC00NWRlZyk7XG59XG5cbi8qXG4gICAqIEFycm93XG4gICAqL1xuLmhhbWJ1cmdlci0tYXJyb3cuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoLThweCwgMCwgMCkgcm90YXRlKC00NWRlZykgc2NhbGUoMC43LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tYXJyb3cuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgtOHB4LCAwLCAwKSByb3RhdGUoNDVkZWcpIHNjYWxlKDAuNywgMSk7XG59XG5cbi8qXG4gICAqIEFycm93IFJpZ2h0XG4gICAqL1xuLmhhbWJ1cmdlci0tYXJyb3ctci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCg4cHgsIDAsIDApIHJvdGF0ZSg0NWRlZykgc2NhbGUoMC43LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tYXJyb3ctci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDhweCwgMCwgMCkgcm90YXRlKC00NWRlZykgc2NhbGUoMC43LCAxKTtcbn1cblxuLypcbiAgICogQXJyb3cgQWx0XG4gICAqL1xuLmhhbWJ1cmdlci0tYXJyb3dhbHQgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4xcyBlYXNlLCB0cmFuc2Zvcm0gMC4xcyBjdWJpYy1iZXppZXIoMC4xNjUsIDAuODQsIDAuNDQsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS1hcnJvd2FsdCAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IGJvdHRvbSAwLjFzIDAuMXMgZWFzZSwgdHJhbnNmb3JtIDAuMXMgY3ViaWMtYmV6aWVyKDAuMTY1LCAwLjg0LCAwLjQ0LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tYXJyb3dhbHQuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMDtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgtOHB4LCAtMTBweCwgMCkgcm90YXRlKC00NWRlZykgc2NhbGUoMC43LCAxKTtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMXMgZWFzZSwgdHJhbnNmb3JtIDAuMXMgMC4xcyBjdWJpYy1iZXppZXIoMC44OTUsIDAuMDMsIDAuNjg1LCAwLjIyKTtcbn1cblxuLmhhbWJ1cmdlci0tYXJyb3dhbHQuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAwO1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKC04cHgsIDEwcHgsIDApIHJvdGF0ZSg0NWRlZykgc2NhbGUoMC43LCAxKTtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgZWFzZSwgdHJhbnNmb3JtIDAuMXMgMC4xcyBjdWJpYy1iZXppZXIoMC44OTUsIDAuMDMsIDAuNjg1LCAwLjIyKTtcbn1cblxuLypcbiAgICogQXJyb3cgQWx0IFJpZ2h0XG4gICAqL1xuLmhhbWJ1cmdlci0tYXJyb3dhbHQtciAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2l0aW9uOiB0b3AgMC4xcyAwLjFzIGVhc2UsIHRyYW5zZm9ybSAwLjFzIGN1YmljLWJlemllcigwLjE2NSwgMC44NCwgMC40NCwgMSk7XG59XG5cbi5oYW1idXJnZXItLWFycm93YWx0LXIgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4xcyAwLjFzIGVhc2UsIHRyYW5zZm9ybSAwLjFzIGN1YmljLWJlemllcigwLjE2NSwgMC44NCwgMC40NCwgMSk7XG59XG5cbi5oYW1idXJnZXItLWFycm93YWx0LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMDtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCg4cHgsIC0xMHB4LCAwKSByb3RhdGUoNDVkZWcpIHNjYWxlKDAuNywgMSk7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIGVhc2UsIHRyYW5zZm9ybSAwLjFzIDAuMXMgY3ViaWMtYmV6aWVyKDAuODk1LCAwLjAzLCAwLjY4NSwgMC4yMik7XG59XG5cbi5oYW1idXJnZXItLWFycm93YWx0LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAwO1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDhweCwgMTBweCwgMCkgcm90YXRlKC00NWRlZykgc2NhbGUoMC43LCAxKTtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgZWFzZSwgdHJhbnNmb3JtIDAuMXMgMC4xcyBjdWJpYy1iZXppZXIoMC44OTUsIDAuMDMsIDAuNjg1LCAwLjIyKTtcbn1cblxuLypcbiAgICogQXJyb3cgVHVyblxuICAgKi9cbi5oYW1idXJnZXItLWFycm93dHVybi5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zZm9ybTogcm90YXRlKC0xODBkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS1hcnJvd3R1cm4uaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoOHB4LCAwLCAwKSByb3RhdGUoNDVkZWcpIHNjYWxlKDAuNywgMSk7XG59XG5cbi5oYW1idXJnZXItLWFycm93dHVybi5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDhweCwgMCwgMCkgcm90YXRlKC00NWRlZykgc2NhbGUoMC43LCAxKTtcbn1cblxuLypcbiAgICogQXJyb3cgVHVybiBSaWdodFxuICAgKi9cbi5oYW1idXJnZXItLWFycm93dHVybi1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNmb3JtOiByb3RhdGUoLTE4MGRlZyk7XG59XG5cbi5oYW1idXJnZXItLWFycm93dHVybi1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKC04cHgsIDAsIDApIHJvdGF0ZSgtNDVkZWcpIHNjYWxlKDAuNywgMSk7XG59XG5cbi5oYW1idXJnZXItLWFycm93dHVybi1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoLThweCwgMCwgMCkgcm90YXRlKDQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xufVxuXG4vKlxuICAgKiBCb3JpbmdcbiAgICovXG4uaGFtYnVyZ2VyLS1ib3JpbmcgLmhhbWJ1cmdlci1pbm5lciwgLmhhbWJ1cmdlci0tYm9yaW5nIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSwgLmhhbWJ1cmdlci0tYm9yaW5nIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbi1wcm9wZXJ0eTogbm9uZTtcbn1cblxuLmhhbWJ1cmdlci0tYm9yaW5nLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNmb3JtOiByb3RhdGUoNDVkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS1ib3JpbmcuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMDtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmhhbWJ1cmdlci0tYm9yaW5nLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIGJvdHRvbTogMDtcbiAgdHJhbnNmb3JtOiByb3RhdGUoLTkwZGVnKTtcbn1cblxuLypcbiAgICogQ29sbGFwc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdG9wOiBhdXRvO1xuICBib3R0b206IDA7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMTNzO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwLjEzcztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xufVxuXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogLTIwcHg7XG4gIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLCBvcGFjaXR5IDAuMXMgbGluZWFyO1xufVxuXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2l0aW9uOiB0b3AgMC4xMnMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tY29sbGFwc2UuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0xMHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4yMnM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tY29sbGFwc2UuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAwO1xuICBvcGFjaXR5OiAwO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksIG9wYWNpdHkgMC4xcyAwLjIycyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLWNvbGxhcHNlLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG4gIHRyYW5zZm9ybTogcm90YXRlKC05MGRlZyk7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMTZzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLCAwLjY2NjY3LCAwLjMzMzMzKSwgdHJhbnNmb3JtIDAuMTNzIDAuMjVzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xufVxuXG4vKlxuICAgKiBDb2xsYXBzZSBSZXZlcnNlXG4gICAqL1xuLmhhbWJ1cmdlci0tY29sbGFwc2UtciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdG9wOiBhdXRvO1xuICBib3R0b206IDA7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMTNzO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwLjEzcztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xufVxuXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZS1yIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAtMjBweDtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMnMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksIG9wYWNpdHkgMC4xcyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLWNvbGxhcHNlLXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMTJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLCB0cmFuc2Zvcm0gMC4xM3MgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLWNvbGxhcHNlLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0xMHB4LCAwKSByb3RhdGUoNDVkZWcpO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwLjIycztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZS1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogMDtcbiAgb3BhY2l0eTogMDtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAsIDAuNjY2NjcsIDAuMzMzMzMpLCBvcGFjaXR5IDAuMXMgMC4yMnMgbGluZWFyO1xufVxuXG4uaGFtYnVyZ2VyLS1jb2xsYXBzZS1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG4gIHRyYW5zZm9ybTogcm90YXRlKDkwZGVnKTtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4xNnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAsIDAuNjY2NjcsIDAuMzMzMzMpLCB0cmFuc2Zvcm0gMC4xM3MgMC4yNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG59XG5cbi8qXG4gICAqIEVsYXN0aWNcbiAgICovXG4uaGFtYnVyZ2VyLS1lbGFzdGljIC5oYW1idXJnZXItaW5uZXIge1xuICB0b3A6IDJweDtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4yNzVzO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNjgsIC0wLjU1LCAwLjI2NSwgMS41NSk7XG59XG5cbi5oYW1idXJnZXItLWVsYXN0aWMgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAxMHB4O1xuICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuMTI1cyAwLjI3NXMgZWFzZTtcbn1cblxuLmhhbWJ1cmdlci0tZWxhc3RpYyAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogMjBweDtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMjc1cyBjdWJpYy1iZXppZXIoMC42OCwgLTAuNTUsIDAuMjY1LCAxLjU1KTtcbn1cblxuLmhhbWJ1cmdlci0tZWxhc3RpYy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgMTBweCwgMCkgcm90YXRlKDEzNWRlZyk7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDAuMDc1cztcbn1cblxuLmhhbWJ1cmdlci0tZWxhc3RpYy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gIG9wYWNpdHk6IDA7XG59XG5cbi5oYW1idXJnZXItLWVsYXN0aWMuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMjBweCwgMCkgcm90YXRlKC0yNzBkZWcpO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwLjA3NXM7XG59XG5cbi8qXG4gICAqIEVsYXN0aWMgUmV2ZXJzZVxuICAgKi9cbi5oYW1idXJnZXItLWVsYXN0aWMtciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdG9wOiAycHg7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMjc1cztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjY4LCAtMC41NSwgMC4yNjUsIDEuNTUpO1xufVxuXG4uaGFtYnVyZ2VyLS1lbGFzdGljLXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAxMHB4O1xuICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuMTI1cyAwLjI3NXMgZWFzZTtcbn1cblxuLmhhbWJ1cmdlci0tZWxhc3RpYy1yIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAyMHB4O1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4yNzVzIGN1YmljLWJlemllcigwLjY4LCAtMC41NSwgMC4yNjUsIDEuNTUpO1xufVxuXG4uaGFtYnVyZ2VyLS1lbGFzdGljLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDEwcHgsIDApIHJvdGF0ZSgtMTM1ZGVnKTtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4wNzVzO1xufVxuXG4uaGFtYnVyZ2VyLS1lbGFzdGljLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDBzO1xuICBvcGFjaXR5OiAwO1xufVxuXG4uaGFtYnVyZ2VyLS1lbGFzdGljLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMjBweCwgMCkgcm90YXRlKDI3MGRlZyk7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDAuMDc1cztcbn1cblxuLypcbiAgICogRW1waGF0aWNcbiAgICovXG4uaGFtYnVyZ2VyLS1lbXBoYXRpYyB7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbi5oYW1idXJnZXItLWVtcGhhdGljIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuMTI1cyAwLjE3NXMgZWFzZS1pbjtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgbGVmdDogMDtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTI1cyBjdWJpYy1iZXppZXIoMC42LCAwLjA0LCAwLjk4LCAwLjMzNSksIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLCBsZWZ0IDAuMTI1cyAwLjE3NXMgZWFzZS1pbjtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0b3A6IDEwcHg7XG4gIHJpZ2h0OiAwO1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4xMjVzIGN1YmljLWJlemllcigwLjYsIDAuMDQsIDAuOTgsIDAuMzM1KSwgdG9wIDAuMDVzIDAuMTI1cyBsaW5lYXIsIHJpZ2h0IDAuMTI1cyAwLjE3NXMgZWFzZS1pbjtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwcztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGVhc2Utb3V0O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xufVxuXG4uaGFtYnVyZ2VyLS1lbXBoYXRpYy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgbGVmdDogLTgwcHg7XG4gIHRvcDogLTgwcHg7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoODBweCwgODBweCwgMCkgcm90YXRlKDQ1ZGVnKTtcbiAgdHJhbnNpdGlvbjogbGVmdCAwLjEyNXMgZWFzZS1vdXQsIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLCB0cmFuc2Zvcm0gMC4xMjVzIDAuMTc1cyBjdWJpYy1iZXppZXIoMC4wNzUsIDAuODIsIDAuMTY1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgcmlnaHQ6IC04MHB4O1xuICB0b3A6IC04MHB4O1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKC04MHB4LCA4MHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgdHJhbnNpdGlvbjogcmlnaHQgMC4xMjVzIGVhc2Utb3V0LCB0b3AgMC4wNXMgMC4xMjVzIGxpbmVhciwgdHJhbnNmb3JtIDAuMTI1cyAwLjE3NXMgY3ViaWMtYmV6aWVyKDAuMDc1LCAwLjgyLCAwLjE2NSwgMSk7XG59XG5cbi8qXG4gICAqIEVtcGhhdGljIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1lbXBoYXRpYy1yIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMtciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjEyNXMgMC4xNzVzIGVhc2UtaW47XG59XG5cbi5oYW1idXJnZXItLWVtcGhhdGljLXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgbGVmdDogMDtcbiAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTI1cyBjdWJpYy1iZXppZXIoMC42LCAwLjA0LCAwLjk4LCAwLjMzNSksIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLCBsZWZ0IDAuMTI1cyAwLjE3NXMgZWFzZS1pbjtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMtciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogMTBweDtcbiAgcmlnaHQ6IDA7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjEyNXMgY3ViaWMtYmV6aWVyKDAuNiwgMC4wNCwgMC45OCwgMC4zMzUpLCB0b3AgMC4wNXMgMC4xMjVzIGxpbmVhciwgcmlnaHQgMC4xMjVzIDAuMTc1cyBlYXNlLWluO1xufVxuXG4uaGFtYnVyZ2VyLS1lbXBoYXRpYy1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlLW91dDtcbiAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbn1cblxuLmhhbWJ1cmdlci0tZW1waGF0aWMtci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgbGVmdDogLTgwcHg7XG4gIHRvcDogODBweDtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCg4MHB4LCAtODBweCwgMCkgcm90YXRlKC00NWRlZyk7XG4gIHRyYW5zaXRpb246IGxlZnQgMC4xMjVzIGVhc2Utb3V0LCB0b3AgMC4wNXMgMC4xMjVzIGxpbmVhciwgdHJhbnNmb3JtIDAuMTI1cyAwLjE3NXMgY3ViaWMtYmV6aWVyKDAuMDc1LCAwLjgyLCAwLjE2NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLWVtcGhhdGljLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgcmlnaHQ6IC04MHB4O1xuICB0b3A6IDgwcHg7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoLTgwcHgsIC04MHB4LCAwKSByb3RhdGUoNDVkZWcpO1xuICB0cmFuc2l0aW9uOiByaWdodCAwLjEyNXMgZWFzZS1vdXQsIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLCB0cmFuc2Zvcm0gMC4xMjVzIDAuMTc1cyBjdWJpYy1iZXppZXIoMC4wNzUsIDAuODIsIDAuMTY1LCAxKTtcbn1cblxuLypcbiAgICogTWludXNcbiAgICovXG4uaGFtYnVyZ2VyLS1taW51cyAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsIC5oYW1idXJnZXItLW1pbnVzIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMDhzIDBzIGVhc2Utb3V0LCB0b3AgMC4wOHMgMHMgZWFzZS1vdXQsIG9wYWNpdHkgMHMgbGluZWFyO1xufVxuXG4uaGFtYnVyZ2VyLS1taW51cy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlLCAuaGFtYnVyZ2VyLS1taW51cy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICBvcGFjaXR5OiAwO1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4wOHMgZWFzZS1vdXQsIHRvcCAwLjA4cyBlYXNlLW91dCwgb3BhY2l0eSAwcyAwLjA4cyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLW1pbnVzLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG59XG5cbi5oYW1idXJnZXItLW1pbnVzLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIGJvdHRvbTogMDtcbn1cblxuLypcbiAgICogU2xpZGVyXG4gICAqL1xuLmhhbWJ1cmdlci0tc2xpZGVyIC5oYW1idXJnZXItaW5uZXIge1xuICB0b3A6IDJweDtcbn1cblxuLmhhbWJ1cmdlci0tc2xpZGVyIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMTBweDtcbiAgdHJhbnNpdGlvbi1wcm9wZXJ0eTogdHJhbnNmb3JtLCBvcGFjaXR5O1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogZWFzZTtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4xNXM7XG59XG5cbi5oYW1idXJnZXItLXNsaWRlciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogMjBweDtcbn1cblxuLmhhbWJ1cmdlci0tc2xpZGVyLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAxMHB4LCAwKSByb3RhdGUoNDVkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS1zbGlkZXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zZm9ybTogcm90YXRlKC00NWRlZykgdHJhbnNsYXRlM2QoLTUuNzE0MjlweCwgLTZweCwgMCk7XG4gIG9wYWNpdHk6IDA7XG59XG5cbi5oYW1idXJnZXItLXNsaWRlci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0yMHB4LCAwKSByb3RhdGUoLTkwZGVnKTtcbn1cblxuLypcbiAgICogU2xpZGVyIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1zbGlkZXItciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdG9wOiAycHg7XG59XG5cbi5oYW1idXJnZXItLXNsaWRlci1yIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMTBweDtcbiAgdHJhbnNpdGlvbi1wcm9wZXJ0eTogdHJhbnNmb3JtLCBvcGFjaXR5O1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogZWFzZTtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4xNXM7XG59XG5cbi5oYW1idXJnZXItLXNsaWRlci1yIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAyMHB4O1xufVxuXG4uaGFtYnVyZ2VyLS1zbGlkZXItci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgMTBweCwgMCkgcm90YXRlKC00NWRlZyk7XG59XG5cbi5oYW1idXJnZXItLXNsaWRlci1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZykgdHJhbnNsYXRlM2QoNS43MTQyOXB4LCAtNnB4LCAwKTtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmhhbWJ1cmdlci0tc2xpZGVyLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtMjBweCwgMCkgcm90YXRlKDkwZGVnKTtcbn1cblxuLypcbiAgICogU3BpblxuICAgKi9cbi5oYW1idXJnZXItLXNwaW4gLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMjJzO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXNwaW4gLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4yNXMgZWFzZS1pbiwgb3BhY2l0eSAwLjFzIGVhc2UtaW47XG59XG5cbi5oYW1idXJnZXItLXNwaW4gLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4xcyAwLjI1cyBlYXNlLWluLCB0cmFuc2Zvcm0gMC4yMnMgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXNwaW4uaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgyMjVkZWcpO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwLjEycztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS1zcGluLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG4gIG9wYWNpdHk6IDA7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIGVhc2Utb3V0LCBvcGFjaXR5IDAuMXMgMC4xMnMgZWFzZS1vdXQ7XG59XG5cbi5oYW1idXJnZXItLXNwaW4uaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4xcyBlYXNlLW91dCwgdHJhbnNmb3JtIDAuMjJzIDAuMTJzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xufVxuXG4vKlxuICAgKiBTcGluIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1zcGluLXIgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMjJzO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXNwaW4tciAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2l0aW9uOiB0b3AgMC4xcyAwLjI1cyBlYXNlLWluLCBvcGFjaXR5IDAuMXMgZWFzZS1pbjtcbn1cblxuLmhhbWJ1cmdlci0tc3Bpbi1yIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgMC4yNXMgZWFzZS1pbiwgdHJhbnNmb3JtIDAuMjJzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xufVxuXG4uaGFtYnVyZ2VyLS1zcGluLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtMjI1ZGVnKTtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4xMnM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tc3Bpbi1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG4gIG9wYWNpdHk6IDA7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIGVhc2Utb3V0LCBvcGFjaXR5IDAuMXMgMC4xMnMgZWFzZS1vdXQ7XG59XG5cbi5oYW1idXJnZXItLXNwaW4tci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICBib3R0b206IDA7XG4gIHRyYW5zZm9ybTogcm90YXRlKDkwZGVnKTtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgZWFzZS1vdXQsIHRyYW5zZm9ybSAwLjIycyAwLjEycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLypcbiAgICogU3ByaW5nXG4gICAqL1xuLmhhbWJ1cmdlci0tc3ByaW5nIC5oYW1idXJnZXItaW5uZXIge1xuICB0b3A6IDJweDtcbiAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwcyAwLjEzcyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLXNwcmluZyAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDEwcHg7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLCB0cmFuc2Zvcm0gMC4xM3MgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXNwcmluZyAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogMjBweDtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMnMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tc3ByaW5nLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4yMnM7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50ICFpbXBvcnRhbnQ7XG59XG5cbi5oYW1idXJnZXItLXNwcmluZy5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAwO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4xcyAwLjE1cyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksIHRyYW5zZm9ybSAwLjEzcyAwLjIycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAxMHB4LCAwKSByb3RhdGUoNDVkZWcpO1xufVxuXG4uaGFtYnVyZ2VyLS1zcHJpbmcuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAwO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksIHRyYW5zZm9ybSAwLjEzcyAwLjIycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAxMHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbn1cblxuLypcbiAgICogU3ByaW5nIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1zcHJpbmctciAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdG9wOiBhdXRvO1xuICBib3R0b206IDA7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMTNzO1xuICB0cmFuc2l0aW9uLWRlbGF5OiAwcztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xufVxuXG4uaGFtYnVyZ2VyLS1zcHJpbmctciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRvcDogLTIwcHg7XG4gIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLCBvcGFjaXR5IDBzIGxpbmVhcjtcbn1cblxuLmhhbWJ1cmdlci0tc3ByaW5nLXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tc3ByaW5nLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIC0xMHB4LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4yMnM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tc3ByaW5nLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdG9wOiAwO1xuICBvcGFjaXR5OiAwO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksIG9wYWNpdHkgMHMgMC4yMnMgbGluZWFyO1xufVxuXG4uaGFtYnVyZ2VyLS1zcHJpbmctci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSg5MGRlZyk7XG4gIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMTVzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLCAwLjY2NjY3LCAwLjMzMzMzKSwgdHJhbnNmb3JtIDAuMTNzIDAuMjJzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xufVxuXG4vKlxuICAgKiBTdGFuZFxuICAgKi9cbi5oYW1idXJnZXItLXN0YW5kIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4wNzVzIDAuMTVzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpLCBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMDc1cyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zaXRpb246IHRvcCAwLjA3NXMgMC4wNzVzIGVhc2UtaW4sIHRyYW5zZm9ybSAwLjA3NXMgMHMgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbjogYm90dG9tIDAuMDc1cyAwLjA3NXMgZWFzZS1pbiwgdHJhbnNmb3JtIDAuMDc1cyAwcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tc3RhbmQuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSg5MGRlZyk7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50ICFpbXBvcnRhbnQ7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjA3NXMgMHMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSksIGJhY2tncm91bmQtY29sb3IgMHMgMC4xNXMgbGluZWFyO1xufVxuXG4uaGFtYnVyZ2VyLS1zdGFuZC5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4wNzVzIDAuMXMgZWFzZS1vdXQsIHRyYW5zZm9ybSAwLjA3NXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIGJvdHRvbTogMDtcbiAgdHJhbnNmb3JtOiByb3RhdGUoNDVkZWcpO1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4wNzVzIDAuMXMgZWFzZS1vdXQsIHRyYW5zZm9ybSAwLjA3NXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG59XG5cbi8qXG4gICAqIFN0YW5kIFJldmVyc2VcbiAgICovXG4uaGFtYnVyZ2VyLS1zdGFuZC1yIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4wNzVzIDAuMTVzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpLCBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMDc1cyBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kLXIgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdHJhbnNpdGlvbjogdG9wIDAuMDc1cyAwLjA3NXMgZWFzZS1pbiwgdHJhbnNmb3JtIDAuMDc1cyAwcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tc3RhbmQtciAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IGJvdHRvbSAwLjA3NXMgMC4wNzVzIGVhc2UtaW4sIHRyYW5zZm9ybSAwLjA3NXMgMHMgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4wNzVzIDBzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpLCBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMTVzIGxpbmVhcjtcbn1cblxuLmhhbWJ1cmdlci0tc3RhbmQtci5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4wNzVzIDAuMXMgZWFzZS1vdXQsIHRyYW5zZm9ybSAwLjA3NXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG59XG5cbi5oYW1idXJnZXItLXN0YW5kLXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gIHRyYW5zaXRpb246IGJvdHRvbSAwLjA3NXMgMC4xcyBlYXNlLW91dCwgdHJhbnNmb3JtIDAuMDc1cyAwLjE1cyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLypcbiAgICogU3F1ZWV6ZVxuICAgKi9cbi5oYW1idXJnZXItLXNxdWVlemUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMDc1cztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xufVxuXG4uaGFtYnVyZ2VyLS1zcXVlZXplIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zaXRpb246IHRvcCAwLjA3NXMgMC4xMnMgZWFzZSwgb3BhY2l0eSAwLjA3NXMgZWFzZTtcbn1cblxuLmhhbWJ1cmdlci0tc3F1ZWV6ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb246IGJvdHRvbSAwLjA3NXMgMC4xMnMgZWFzZSwgdHJhbnNmb3JtIDAuMDc1cyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbn1cblxuLmhhbWJ1cmdlci0tc3F1ZWV6ZS5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lciB7XG4gIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgdHJhbnNpdGlvbi1kZWxheTogMC4xMnM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tc3F1ZWV6ZS5pcy1hY3RpdmUgLmhhbWJ1cmdlci1pbm5lcjo6YmVmb3JlIHtcbiAgdG9wOiAwO1xuICBvcGFjaXR5OiAwO1xuICB0cmFuc2l0aW9uOiB0b3AgMC4wNzVzIGVhc2UsIG9wYWNpdHkgMC4wNzVzIDAuMTJzIGVhc2U7XG59XG5cbi5oYW1idXJnZXItLXNxdWVlemUuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgYm90dG9tOiAwO1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICB0cmFuc2l0aW9uOiBib3R0b20gMC4wNzVzIGVhc2UsIHRyYW5zZm9ybSAwLjA3NXMgMC4xMnMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG59XG5cbi8qXG4gICAqIFZvcnRleFxuICAgKi9cbi5oYW1idXJnZXItLXZvcnRleCAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4ycztcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjE5LCAxLCAwLjIyLCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tdm9ydGV4IC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSwgLmhhbWJ1cmdlci0tdm9ydGV4IC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMHM7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDAuMXM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLXZvcnRleCAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0cmFuc2l0aW9uLXByb3BlcnR5OiB0b3AsIG9wYWNpdHk7XG59XG5cbi5oYW1idXJnZXItLXZvcnRleCAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb24tcHJvcGVydHk6IGJvdHRvbSwgdHJhbnNmb3JtO1xufVxuXG4uaGFtYnVyZ2VyLS12b3J0ZXguaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSg3NjVkZWcpO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuMTksIDEsIDAuMjIsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS12b3J0ZXguaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSwgLmhhbWJ1cmdlci0tdm9ydGV4LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDBzO1xufVxuXG4uaGFtYnVyZ2VyLS12b3J0ZXguaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRvcDogMDtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmhhbWJ1cmdlci0tdm9ydGV4LmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIGJvdHRvbTogMDtcbiAgdHJhbnNmb3JtOiByb3RhdGUoOTBkZWcpO1xufVxuXG4vKlxuICAgKiBWb3J0ZXggUmV2ZXJzZVxuICAgKi9cbi5oYW1idXJnZXItLXZvcnRleC1yIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjJzO1xuICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuMTksIDEsIDAuMjIsIDEpO1xufVxuXG4uaGFtYnVyZ2VyLS12b3J0ZXgtciAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsIC5oYW1idXJnZXItLXZvcnRleC1yIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMHM7XG4gIHRyYW5zaXRpb24tZGVsYXk6IDAuMXM7XG4gIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBsaW5lYXI7XG59XG5cbi5oYW1idXJnZXItLXZvcnRleC1yIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSB7XG4gIHRyYW5zaXRpb24tcHJvcGVydHk6IHRvcCwgb3BhY2l0eTtcbn1cblxuLmhhbWJ1cmdlci0tdm9ydGV4LXIgLmhhbWJ1cmdlci1pbm5lcjo6YWZ0ZXIge1xuICB0cmFuc2l0aW9uLXByb3BlcnR5OiBib3R0b20sIHRyYW5zZm9ybTtcbn1cblxuLmhhbWJ1cmdlci0tdm9ydGV4LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXIge1xuICB0cmFuc2Zvcm06IHJvdGF0ZSgtNzY1ZGVnKTtcbiAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjE5LCAxLCAwLjIyLCAxKTtcbn1cblxuLmhhbWJ1cmdlci0tdm9ydGV4LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmJlZm9yZSwgLmhhbWJ1cmdlci0tdm9ydGV4LXIuaXMtYWN0aXZlIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG59XG5cbi5oYW1idXJnZXItLXZvcnRleC1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUge1xuICB0b3A6IDA7XG4gIG9wYWNpdHk6IDA7XG59XG5cbi5oYW1idXJnZXItLXZvcnRleC1yLmlzLWFjdGl2ZSAuaGFtYnVyZ2VyLWlubmVyOjphZnRlciB7XG4gIGJvdHRvbTogMDtcbiAgdHJhbnNmb3JtOiByb3RhdGUoLTkwZGVnKTtcbn1cblxuLmZlYXR1cmUge1xuICBoZWlnaHQ6IDEwMHZoO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLmZlYXR1cmUge1xuICAgIGhlaWdodDogMjUwcHg7XG4gIH1cbn1cblxuLmZlYXR1cmUuaW1hZ2Uge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmZlYXR1cmUudmlkZW8ge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5mZWF0dXJlLnZpZGVvIC5wbGF5IHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI0ZGRjtcbiAgaGVpZ2h0OiA1MHB4O1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogNTAlO1xuICBsZWZ0OiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIC01MCUpO1xufVxuXG4uZmVhdHVyZS52aWRlbyAucGxheTpiZWZvcmUsIC5mZWF0dXJlLnZpZGVvIC5wbGF5OmFmdGVyIHtcbiAgd2lkdGg6IDUwcHg7XG4gIGJhY2tncm91bmQtY29sb3I6ICNGRkY7XG59XG5cbi5mZWF0dXJlLnNsaWRlciAuc2xpZGUge1xuICBoZWlnaHQ6IDEwMHZoO1xufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLmZlYXR1cmUuc2xpZGVyIC5zbGlkZSB7XG4gICAgaGVpZ2h0OiAyNTBweDtcbiAgfVxufVxuXG4uZmVhdHVyZSAuaW1nIHtcbiAgaGVpZ2h0OiAxMDB2aDtcbiAgd2lkdGg6IDEwMCU7XG4gIG9iamVjdC1maXQ6IGNvdmVyO1xuICBvYmplY3QtcG9zaXRpb246IGNlbnRlcjtcbn1cblxuLmNhcmQgLmltZyB7XG4gIGhlaWdodDogMzAwcHg7XG59XG5cbi8qIFZpZGVvIE92ZXJsYXkgKi9cbi52aWQtb3ZlcmxheSB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmMmYyZjI7XG4gIGhlaWdodDogNzAwcHg7XG4gIGxlZnQ6IDA7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAzMDBtcyBlYXNlO1xuICB3aWR0aDogMTAwJTtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDEyMDBweCkge1xuICAudmlkLW92ZXJsYXkge1xuICAgIGhlaWdodDogNTUwcHg7XG4gIH1cbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDk5MnB4KSB7XG4gIC52aWQtb3ZlcmxheSB7XG4gICAgaGVpZ2h0OiAzMjBweDtcbiAgfVxufVxuXG5AbWVkaWEgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgLnZpZC1vdmVybGF5IHtcbiAgICBoZWlnaHQ6IDE4MHB4O1xuICB9XG59XG5cbi5mYWRlIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjg1KSAhaW1wb3J0YW50O1xufVxuXG5hLnRpdGxlLWxpbmsge1xuICBkaXNwbGF5OiBibG9jaztcbiAgYm9yZGVyLWJvdHRvbTogM3B4IHNvbGlkIHJlZDtcbiAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTtcbiAgZm9udC1mYW1pbHk6IFwiQmlnIENhc2xvblwiLCBcIkJvb2sgQW50aXF1YVwiLCBcIlBhbGF0aW5vIExpbm90eXBlXCIsIEdlb3JnaWEsIHNlcmlmO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGZvbnQtc2l6ZTogNDAuOHB4O1xuICBmb250LXNpemU6IDIuNHJlbTtcbiAgbGV0dGVyLXNwYWNpbmc6IC4wN2VtO1xuICBjb2xvcjogcGluaztcbiAgZm9udC13ZWlnaHQ6IDgwMDtcbn1cblxuQG1lZGlhIChtYXgtd2lkdGg6IDk5MnB4KSB7XG4gIGEudGl0bGUtbGluayB7XG4gICAgZm9udC1zaXplOiAzNy40cHg7XG4gICAgZm9udC1zaXplOiAyLjJyZW07XG4gIH1cbn1cblxuYS50aXRsZS1saW5rLmNvbGxhcHNlZCB7XG4gIGNvbG9yOiBwaW5rO1xufVxuXG5hLnRpdGxlLWxpbmsuY29sbGFwc2VkIC5wbHVzOmFmdGVyIHtcbiAgY29udGVudDogXCJcIjtcbn1cblxuYS50aXRsZS1saW5rIC5jbG9zZS13cmFwcGVyIHtcbiAgYm9yZGVyOiAycHggc29saWQgcmVkO1xuICBib3JkZXItcmFkaXVzOiA1MCU7XG4gIHBhZGRpbmc6IDNweDtcbiAgZGlzcGxheTogYmxvY2s7XG4gIG1hcmdpbi1yaWdodDogMzBweDtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB3aWR0aDogMzJweDtcbiAgaGVpZ2h0OiAzMnB4O1xufVxuXG4uaW52ZXJzZSBhLnRpdGxlLWxpbmsgLmNsb3NlLXdyYXBwZXIge1xuICBib3JkZXItY29sb3I6ICNGRkY7XG59XG5cbmEudGl0bGUtbGluayAucGx1cyB7XG4gIGJvcmRlci1jb2xvcjogI0ZGRjtcbiAgbWFyZ2luLXJpZ2h0OiAzMHB4O1xuICBkaXNwbGF5OiB0YWJsZTtcbn1cblxuYS50aXRsZS1saW5rIC5wbHVzOmFmdGVyIHtcbiAgY29udGVudDogbm9uZTtcbn1cblxuLnBhbmVsLXRpdGxlLXdyYXBwZXIge1xuICBkaXNwbGF5OiBmbGV4O1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjJmMmYyO1xuICBwYWRkaW5nOiA3cHggMTBweDtcbn1cblxuLnBhbmVsLWJvZHkge1xuICBmb250LWZhbWlseTogXCJCaWcgQ2FzbG9uXCIsIFwiQm9vayBBbnRpcXVhXCIsIFwiUGFsYXRpbm8gTGlub3R5cGVcIiwgR2VvcmdpYSwgc2VyaWY7XG4gIHBhZGRpbmc6IDEwcHggMjVweDtcbiAgZm9udC13ZWlnaHQ6IDgwMDtcbiAgYnJlYWstaW5zaWRlOiBhdm9pZDtcbn1cblxuLnNpdGUtaGVhZGVyIHtcbiAgZGlzcGxheTogZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xufVxuXG4ubG9nbyB7XG4gIHdpZHRoOiAyMjBweDtcbiAgbWFyZ2luOiAyMHB4IGF1dG87XG4gIGRpc3BsYXk6IHRhYmxlO1xufVxuXG4uc29jaWFsIGkge1xuICBmb250LXNpemU6IDM0cHg7XG4gIGZvbnQtc2l6ZTogMnJlbTtcbn1cblxuLyogVGV4dCBtZWFudCBvbmx5IGZvciBzY3JlZW4gcmVhZGVycy4gKi9cbi5zY3JlZW4tcmVhZGVyLXRleHQge1xuICBib3JkZXI6IDA7XG4gIGNsaXA6IHJlY3QoMXB4LCAxcHgsIDFweCwgMXB4KTtcbiAgY2xpcC1wYXRoOiBpbnNldCg1MCUpO1xuICBoZWlnaHQ6IDFweDtcbiAgbWFyZ2luOiAtMXB4O1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICBwYWRkaW5nOiAwO1xuICBwb3NpdGlvbjogYWJzb2x1dGUgIWltcG9ydGFudDtcbiAgd2lkdGg6IDFweDtcbiAgd29yZC13cmFwOiBub3JtYWwgIWltcG9ydGFudDtcbiAgLyogTWFueSBzY3JlZW4gcmVhZGVyIGFuZCBicm93c2VyIGNvbWJpbmF0aW9ucyBhbm5vdW5jZSBicm9rZW4gd29yZHMgYXMgdGhleSB3b3VsZCBhcHBlYXIgdmlzdWFsbHkuICovXG59XG5cbi5zY3JlZW4tcmVhZGVyLXRleHQ6Zm9jdXMge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjFmMWYxO1xuICBib3JkZXItcmFkaXVzOiAzcHg7XG4gIGJveC1zaGFkb3c6IDAgMCAycHggMnB4IHJnYmEoMCwgMCwgMCwgMC42KTtcbiAgY2xpcDogYXV0byAhaW1wb3J0YW50O1xuICBjbGlwLXBhdGg6IG5vbmU7XG4gIGNvbG9yOiAjMjE3NTliO1xuICBkaXNwbGF5OiBibG9jaztcbiAgZm9udC1zaXplOiAxNC44NzVweDtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGhlaWdodDogYXV0bztcbiAgbGVmdDogNXB4O1xuICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICBwYWRkaW5nOiAxNXB4IDIzcHggMTRweDtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xuICB0b3A6IDVweDtcbiAgd2lkdGg6IGF1dG87XG4gIHotaW5kZXg6IDEwMDAwMDtcbiAgLyogQWJvdmUgV1AgdG9vbGJhci4gKi9cbn1cblxuLyogRG8gbm90IHNob3cgdGhlIG91dGxpbmUgb24gdGhlIHNraXAgbGluayB0YXJnZXQuICovXG4jY29udGVudFt0YWJpbmRleD1cIi0xXCJdOmZvY3VzIHtcbiAgb3V0bGluZTogMDtcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBDbGVhcmluZ3Ncbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMgV2lkZ2V0c1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBDb250ZW50XG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBQb3N0cyBhbmQgcGFnZXNcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi5zdGlja3kge1xuICBkaXNwbGF5OiBibG9jaztcbn1cblxuLmhlbnRyeSB7XG4gIG1hcmdpbjogMCAwIDEuNWVtO1xufVxuXG4uYnlsaW5lLFxuLnVwZGF0ZWQ6bm90KC5wdWJsaXNoZWQpIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLnNpbmdsZSAuYnlsaW5lLFxuLmdyb3VwLWJsb2cgLmJ5bGluZSB7XG4gIGRpc3BsYXk6IGlubGluZTtcbn1cblxuLnBhZ2UtY29udGVudCxcbi5lbnRyeS1jb250ZW50LFxuLmVudHJ5LXN1bW1hcnkge1xuICBtYXJnaW46IDEuNWVtIDAgMDtcbn1cblxuLnBhZ2UtbGlua3Mge1xuICBjbGVhcjogYm90aDtcbiAgbWFyZ2luOiAwIDAgMS41ZW07XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIEFzaWRlc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLmJsb2cgLmZvcm1hdC1hc2lkZSAuZW50cnktdGl0bGUsXG4uYXJjaGl2ZSAuZm9ybWF0LWFzaWRlIC5lbnRyeS10aXRsZSB7XG4gIGRpc3BsYXk6IG5vbmU7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIENvbW1lbnRzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBXaWRnZXRzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIEluZmluaXRlIHNjcm9sbFxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBNZWRpYVxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLnBhZ2UtY29udGVudCAud3Atc21pbGV5LFxuLmVudHJ5LWNvbnRlbnQgLndwLXNtaWxleSxcbi5jb21tZW50LWNvbnRlbnQgLndwLXNtaWxleSB7XG4gIGJvcmRlcjogbm9uZTtcbiAgbWFyZ2luLWJvdHRvbTogMDtcbiAgbWFyZ2luLXRvcDogMDtcbiAgcGFkZGluZzogMDtcbn1cblxuLyogTWFrZSBzdXJlIGVtYmVkcyBhbmQgaWZyYW1lcyBmaXQgdGhlaXIgY29udGFpbmVycy4gKi9cbmVtYmVkLFxuaWZyYW1lLFxub2JqZWN0IHtcbiAgbWF4LXdpZHRoOiAxMDAlO1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBDYXB0aW9uc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLndwLWNhcHRpb24ge1xuICBtYXJnaW4tYm90dG9tOiAxLjVlbTtcbiAgbWF4LXdpZHRoOiAxMDAlO1xufVxuXG4ud3AtY2FwdGlvbiAud3AtY2FwdGlvbi10ZXh0IHtcbiAgbWFyZ2luOiAwLjhlbSAwO1xufVxuXG4ud3AtY2FwdGlvbi10ZXh0IHtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICBmb250LXNpemU6IDgwJTtcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgR2FsbGVyaWVzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4uZ2FsbGVyeSB7XG4gIG1hcmdpbi1ib3R0b206IDEuNWVtO1xufVxuXG4uZ2FsbGVyeS1pdGVtIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gIHdpZHRoOiAxMDAlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTIgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogNTAlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTMgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMzMuMzMlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTQgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMjUlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTUgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMjAlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTYgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMTYuNjYlO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTcgLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMTQuMjglO1xufVxuXG4uZ2FsbGVyeS1jb2x1bW5zLTggLmdhbGxlcnktaXRlbSB7XG4gIG1heC13aWR0aDogMTIuNSU7XG59XG5cbi5nYWxsZXJ5LWNvbHVtbnMtOSAuZ2FsbGVyeS1pdGVtIHtcbiAgbWF4LXdpZHRoOiAxMS4xMSU7XG59XG5cbi5nYWxsZXJ5LWNhcHRpb24ge1xuICBkaXNwbGF5OiBibG9jaztcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgU2xpY2sgXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vKiBTbGlkZXIgKi9cbi5zbGljay1zbGlkZXIge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAtd2Via2l0LXRvdWNoLWNhbGxvdXQ6IG5vbmU7XG4gIC13ZWJraXQtdXNlci1zZWxlY3Q6IG5vbmU7XG4gIC1raHRtbC11c2VyLXNlbGVjdDogbm9uZTtcbiAgLW1vei11c2VyLXNlbGVjdDogbm9uZTtcbiAgLW1zLXVzZXItc2VsZWN0OiBub25lO1xuICB1c2VyLXNlbGVjdDogbm9uZTtcbiAgLW1zLXRvdWNoLWFjdGlvbjogcGFuLXk7XG4gIHRvdWNoLWFjdGlvbjogcGFuLXk7XG4gIC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogdHJhbnNwYXJlbnQ7XG59XG5cbi5zbGljay1saXN0IHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICBkaXNwbGF5OiBibG9jaztcbiAgbWFyZ2luOiAwO1xuICBwYWRkaW5nOiAwO1xufVxuXG4uc2xpY2stbGlzdDpmb2N1cyB7XG4gIG91dGxpbmU6IG5vbmU7XG59XG5cbi5zbGljay1saXN0LmRyYWdnaW5nIHtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICBjdXJzb3I6IGhhbmQ7XG59XG5cbi5zbGljay1zbGlkZXIgLnNsaWNrLXRyYWNrLFxuLnNsaWNrLXNsaWRlciAuc2xpY2stbGlzdCB7XG4gIC13ZWJraXQtdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbiAgLW1vei10cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDAsIDApO1xuICAtbXMtdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbiAgLW8tdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbn1cblxuLnNsaWNrLXRyYWNrIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBsZWZ0OiAwO1xuICB0b3A6IDA7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uc2xpY2stdHJhY2s6YmVmb3JlLCAuc2xpY2stdHJhY2s6YWZ0ZXIge1xuICBjb250ZW50OiBcIlwiO1xuICBkaXNwbGF5OiB0YWJsZTtcbn1cblxuLnNsaWNrLXRyYWNrOmFmdGVyIHtcbiAgY2xlYXI6IGJvdGg7XG59XG5cbi5zbGljay1sb2FkaW5nIC5zbGljay10cmFjayB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbn1cblxuLnNsaWNrLXNsaWRlIHtcbiAgZmxvYXQ6IGxlZnQ7XG4gIGhlaWdodDogMTAwJTtcbiAgbWluLWhlaWdodDogMXB4O1xuICBkaXNwbGF5OiBub25lO1xufVxuXG5bZGlyPVwicnRsXCJdIC5zbGljay1zbGlkZSB7XG4gIGZsb2F0OiByaWdodDtcbn1cblxuLnNsaWNrLXNsaWRlIGltZyB7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uc2xpY2stc2xpZGUuc2xpY2stbG9hZGluZyBpbWcge1xuICBkaXNwbGF5OiBub25lO1xufVxuXG4uc2xpY2stc2xpZGUuZHJhZ2dpbmcgaW1nIHtcbiAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG59XG5cbi5zbGljay1pbml0aWFsaXplZCAuc2xpY2stc2xpZGUge1xuICBkaXNwbGF5OiBibG9jaztcbn1cblxuLnNsaWNrLWxvYWRpbmcgLnNsaWNrLXNsaWRlIHtcbiAgdmlzaWJpbGl0eTogaGlkZGVuO1xufVxuXG4uc2xpY2stdmVydGljYWwgLnNsaWNrLXNsaWRlIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIGhlaWdodDogYXV0bztcbiAgYm9yZGVyOiAxcHggc29saWQgdHJhbnNwYXJlbnQ7XG59XG5cbi5zbGljay1hcnJvdy5zbGljay1oaWRkZW4ge1xuICBkaXNwbGF5OiBub25lO1xufVxuXG4vKiBTbGlkZXIgKi9cbi5zbGljay1sb2FkaW5nIC5zbGljay1saXN0IHtcbiAgYmFja2dyb3VuZDogI2ZmZiB1cmwoXCIuL2Fzc2V0cy9pbWFnZXMvc3ZnLWxvYWRlcnMvcHVmZi5zdmdcIikgY2VudGVyIGNlbnRlciBuby1yZXBlYXQ7XG59XG5cbi8qIEljb25zICovXG5AZm9udC1mYWNlIHtcbiAgZm9udC1mYW1pbHk6IFwic2xpY2tcIjtcbiAgc3JjOiB1cmwoXCIuL2Fzc2V0cy9mb250cy9zbGljay9zbGljay5lb3RcIik7XG4gIHNyYzogdXJsKFwiLi9hc3NldHMvZm9udHMvc2xpY2svc2xpY2suZW90PyNpZWZpeFwiKSBmb3JtYXQoXCJlbWJlZGRlZC1vcGVudHlwZVwiKSwgdXJsKFwiLi9hc3NldHMvZm9udHMvc2xpY2svc2xpY2sud29mZlwiKSBmb3JtYXQoXCJ3b2ZmXCIpLCB1cmwoXCIuL2Fzc2V0cy9mb250cy9zbGljay9zbGljay50dGZcIikgZm9ybWF0KFwidHJ1ZXR5cGVcIiksIHVybChcIi4vYXNzZXRzL2ZvbnRzL3NsaWNrL3NsaWNrLnN2ZyNzbGlja1wiKSBmb3JtYXQoXCJzdmdcIik7XG4gIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gIGZvbnQtc3R5bGU6IG5vcm1hbDtcbn1cblxuLyogQXJyb3dzICovXG4uc2xpY2stcHJldixcbi5zbGljay1uZXh0IHtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBkaXNwbGF5OiBibG9jaztcbiAgaGVpZ2h0OiAyMHB4O1xuICB3aWR0aDogMjBweDtcbiAgbGluZS1oZWlnaHQ6IDBweDtcbiAgZm9udC1zaXplOiAwcHg7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gIGNvbG9yOiB0cmFuc3BhcmVudDtcbiAgdG9wOiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICBwYWRkaW5nOiAwO1xuICBib3JkZXI6IG5vbmU7XG4gIG91dGxpbmU6IG5vbmU7XG59XG5cbi5zbGljay1wcmV2OmhvdmVyLCAuc2xpY2stcHJldjpmb2N1cyxcbi5zbGljay1uZXh0OmhvdmVyLFxuLnNsaWNrLW5leHQ6Zm9jdXMge1xuICBvdXRsaW5lOiBub25lO1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4uc2xpY2stcHJldjpob3ZlcjpiZWZvcmUsIC5zbGljay1wcmV2OmZvY3VzOmJlZm9yZSxcbi5zbGljay1uZXh0OmhvdmVyOmJlZm9yZSxcbi5zbGljay1uZXh0OmZvY3VzOmJlZm9yZSB7XG4gIG9wYWNpdHk6IDE7XG59XG5cbi5zbGljay1wcmV2LnNsaWNrLWRpc2FibGVkOmJlZm9yZSxcbi5zbGljay1uZXh0LnNsaWNrLWRpc2FibGVkOmJlZm9yZSB7XG4gIG9wYWNpdHk6IDAuMjU7XG59XG5cbi5zbGljay1wcmV2OmJlZm9yZSxcbi5zbGljay1uZXh0OmJlZm9yZSB7XG4gIGZvbnQtZmFtaWx5OiBcInNsaWNrXCI7XG4gIGZvbnQtc2l6ZTogMjBweDtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIGNvbG9yOiB3aGl0ZTtcbiAgb3BhY2l0eTogMTtcbiAgLXdlYmtpdC1mb250LXNtb290aGluZzogYW50aWFsaWFzZWQ7XG4gIC1tb3otb3N4LWZvbnQtc21vb3RoaW5nOiBncmF5c2NhbGU7XG59XG5cbi5zbGljay1wcmV2IHtcbiAgbGVmdDogLTI1cHg7XG59XG5cbltkaXI9XCJydGxcIl0gLnNsaWNrLXByZXYge1xuICBsZWZ0OiBhdXRvO1xuICByaWdodDogLTI1cHg7XG59XG5cbi5zbGljay1wcmV2OmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwi4oaQXCI7XG59XG5cbltkaXI9XCJydGxcIl0gLnNsaWNrLXByZXY6YmVmb3JlIHtcbiAgY29udGVudDogXCLihpJcIjtcbn1cblxuLnNsaWNrLW5leHQge1xuICByaWdodDogLTI1cHg7XG59XG5cbltkaXI9XCJydGxcIl0gLnNsaWNrLW5leHQge1xuICBsZWZ0OiAtMjVweDtcbiAgcmlnaHQ6IGF1dG87XG59XG5cbi5zbGljay1uZXh0OmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwi4oaSXCI7XG59XG5cbltkaXI9XCJydGxcIl0gLnNsaWNrLW5leHQ6YmVmb3JlIHtcbiAgY29udGVudDogXCLihpBcIjtcbn1cblxuLyogRG90cyAqL1xuLnNsaWNrLWRvdHRlZC5zbGljay1zbGlkZXIge1xuICBtYXJnaW4tYm90dG9tOiAzMHB4O1xufVxuXG4uc2xpY2stZG90cyB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgYm90dG9tOiAtMjBweDtcbiAgbGlzdC1zdHlsZTogbm9uZTtcbiAgZGlzcGxheTogYmxvY2s7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgcGFkZGluZzogMDtcbiAgbWFyZ2luOiAwO1xuICB3aWR0aDogMTAwJTtcbn1cblxuLnNsaWNrLWRvdHMgbGkge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgaGVpZ2h0OiAxMnB4O1xuICB3aWR0aDogMTJweDtcbiAgbWFyZ2luOiAwIDVweDtcbiAgcGFkZGluZzogMDtcbiAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG4uc2xpY2stZG90cyBsaSBidXR0b24sIC5zbGljay1kb3RzIGxpIC5idG4sIC5zbGljay1kb3RzIGxpIC5nZm9ybV93cmFwcGVyIC5idXR0b25bdHlwZT1cInN1Ym1pdFwiXSwgLmdmb3JtX3dyYXBwZXIgLnNsaWNrLWRvdHMgbGkgLmJ1dHRvblt0eXBlPVwic3VibWl0XCJdLFxuLnNsaWNrLWRvdHMgbGkgLmJ1dHRvbiB7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHBpbms7XG4gIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBoZWlnaHQ6IDEycHg7XG4gIHdpZHRoOiAxMnB4O1xuICBvdXRsaW5lOiBub25lO1xuICBsaW5lLWhlaWdodDogMHB4O1xuICBmb250LXNpemU6IDBweDtcbiAgY29sb3I6IHRyYW5zcGFyZW50O1xuICBwYWRkaW5nOiA1cHg7XG4gIGN1cnNvcjogcG9pbnRlcjtcbn1cblxuLnNsaWNrLWRvdHMgbGkgYnV0dG9uOmhvdmVyLCAuc2xpY2stZG90cyBsaSAuYnRuOmhvdmVyLFxuLnNsaWNrLWRvdHMgbGkgLmJ1dHRvbjpob3ZlciwgLnNsaWNrLWRvdHMgbGkgYnV0dG9uOmZvY3VzLCAuc2xpY2stZG90cyBsaSAuYnRuOmZvY3VzLFxuLnNsaWNrLWRvdHMgbGkgLmJ1dHRvbjpmb2N1cyB7XG4gIG91dGxpbmU6IG5vbmU7XG4gIGJhY2tncm91bmQtY29sb3I6IHBpbms7XG59XG5cbi5zbGljay1kb3RzIGxpIGJ1dHRvbjpob3ZlcjpiZWZvcmUsIC5zbGljay1kb3RzIGxpIC5idG46aG92ZXI6YmVmb3JlLFxuLnNsaWNrLWRvdHMgbGkgLmJ1dHRvbjpob3ZlcjpiZWZvcmUsIC5zbGljay1kb3RzIGxpIGJ1dHRvbjpmb2N1czpiZWZvcmUsIC5zbGljay1kb3RzIGxpIC5idG46Zm9jdXM6YmVmb3JlLFxuLnNsaWNrLWRvdHMgbGkgLmJ1dHRvbjpmb2N1czpiZWZvcmUge1xuICBvcGFjaXR5OiAxO1xufVxuXG4uc2xpY2stZG90cyBsaS5zbGljay1hY3RpdmUgYnV0dG9uLCAuc2xpY2stZG90cyBsaS5zbGljay1hY3RpdmUgLmJ0bixcbi5zbGljay1kb3RzIGxpLnNsaWNrLWFjdGl2ZSAuYnV0dG9uIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcGluaztcbn1cblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgTWVkaXVtIGxpZ2h0Ym94XG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBTd2lwZWJveFxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLyohIFN3aXBlYm94IHYxLjMuMCB8IENvbnN0YW50aW4gU2FndWluIGNzYWcuY28gfCBNSVQgTGljZW5zZSB8IGdpdGh1Yi5jb20vYnJ1dGFsZGVzaWduL3N3aXBlYm94ICovXG4uc3dpcGVib3gtaHRtbCB7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbmh0bWwuc3dpcGVib3gtaHRtbC5zd2lwZWJveC10b3VjaCB7XG4gIG92ZXJmbG93OiBoaWRkZW4gIWltcG9ydGFudDtcbn1cblxuI3N3aXBlYm94LW92ZXJsYXkgaW1nIHtcbiAgYm9yZGVyOiBub25lICFpbXBvcnRhbnQ7XG59XG5cbiNzd2lwZWJveC1vdmVybGF5IHtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgcG9zaXRpb246IGZpeGVkO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDA7XG4gIHotaW5kZXg6IDk5OTk5OSAhaW1wb3J0YW50O1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICB1c2VyLXNlbGVjdDogbm9uZTtcbn1cblxuI3N3aXBlYm94LWNvbnRhaW5lciB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbn1cblxuI3N3aXBlYm94LXNsaWRlciB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjRzIGVhc2U7XG4gIGhlaWdodDogMTAwJTtcbiAgbGVmdDogMDtcbiAgdG9wOiAwO1xuICB3aWR0aDogMTAwJTtcbiAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBkaXNwbGF5OiBub25lO1xuICBjdXJzb3I6IHBvaW50ZXI7XG59XG5cbiNzd2lwZWJveC1zbGlkZXIgLnNsaWRlIHtcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgbGluZS1oZWlnaHQ6IDFweDtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG59XG5cbiNzd2lwZWJveC1zbGlkZXIgLnNsaWRlOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXCI7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgaGVpZ2h0OiA1MCU7XG4gIHdpZHRoOiAxcHg7XG4gIG1hcmdpbi1yaWdodDogLTFweDtcbn1cblxuI3N3aXBlYm94LXNsaWRlciAuc2xpZGUgaW1nLFxuI3N3aXBlYm94LXNsaWRlciAuc2xpZGUgLnN3aXBlYm94LXZpZGVvLWNvbnRhaW5lcixcbiNzd2lwZWJveC1zbGlkZXIgLnNsaWRlIC5zd2lwZWJveC1pbmxpbmUtY29udGFpbmVyIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICBtYXgtaGVpZ2h0OiAxMDAlO1xuICBtYXgtd2lkdGg6IDEwMCU7XG4gIG1hcmdpbjogMDtcbiAgcGFkZGluZzogMDtcbiAgd2lkdGg6IGF1dG87XG4gIGhlaWdodDogYXV0bztcbiAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cblxuI3N3aXBlYm94LXNsaWRlciAuc2xpZGUgLnN3aXBlYm94LXZpZGVvLWNvbnRhaW5lciB7XG4gIGJhY2tncm91bmQ6IG5vbmU7XG4gIG1heC13aWR0aDogMTE0MHB4O1xuICBtYXgtaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgcGFkZGluZzogNSU7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG59XG5cbiNzd2lwZWJveC1zbGlkZXIgLnNsaWRlIC5zd2lwZWJveC12aWRlby1jb250YWluZXIgLnN3aXBlYm94LXZpZGVvIHtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMDtcbiAgcGFkZGluZy1ib3R0b206IDU2LjI1JTtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4jc3dpcGVib3gtc2xpZGVyIC5zbGlkZSAuc3dpcGVib3gtdmlkZW8tY29udGFpbmVyIC5zd2lwZWJveC12aWRlbyBpZnJhbWUge1xuICB3aWR0aDogMTAwJSAhaW1wb3J0YW50O1xuICBoZWlnaHQ6IDEwMCUgIWltcG9ydGFudDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDA7XG59XG5cbiNzd2lwZWJveC1zbGlkZXIgLnNsaWRlLWxvYWRpbmcge1xuICBiYWNrZ3JvdW5kOiB1cmwoXCJhc3NldHMvaW1hZ2VzL3N2Zy1sb2FkZXJzL3B1ZmYuc3ZnXCIpIG5vLXJlcGVhdCBjZW50ZXIgY2VudGVyO1xufVxuXG4jc3dpcGVib3gtYm90dG9tLWJhcixcbiNzd2lwZWJveC10b3AtYmFyIHtcbiAgdHJhbnNpdGlvbjogMC41cztcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBsZWZ0OiAwO1xuICB6LWluZGV4OiA5OTk5OTk7XG4gIGhlaWdodDogNTBweDtcbiAgd2lkdGg6IDEwMCU7XG59XG5cbiNzd2lwZWJveC1ib3R0b20tYmFyIHtcbiAgYm90dG9tOiAtNTBweDtcbn1cblxuI3N3aXBlYm94LWJvdHRvbS1iYXIudmlzaWJsZS1iYXJzIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAtNTBweCwgMCk7XG59XG5cbiNzd2lwZWJveC10b3AtYmFyIHtcbiAgdG9wOiAtNTBweDtcbn1cblxuI3N3aXBlYm94LXRvcC1iYXIudmlzaWJsZS1iYXJzIHtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCA1MHB4LCAwKTtcbn1cblxuI3N3aXBlYm94LXRpdGxlIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIHdpZHRoOiAxMDAlO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbiNzd2lwZWJveC1wcmV2LFxuI3N3aXBlYm94LW5leHQsXG4jc3dpcGVib3gtY2xvc2Uge1xuICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCJhc3NldHMvaW1hZ2VzL2ljb25zL2ljb25zLnN2Z1wiKTtcbiAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgYm9yZGVyOiBub25lICFpbXBvcnRhbnQ7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZSAhaW1wb3J0YW50O1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGJhY2tncm91bmQtc2l6ZTogMjUwJTtcbiAgd2lkdGg6IDUwcHg7XG4gIGhlaWdodDogNTBweDtcbiAgdG9wOiAwO1xufVxuXG4jc3dpcGVib3gtYXJyb3dzIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIG1hcmdpbjogMCBhdXRvO1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiA1MHB4O1xufVxuXG4jc3dpcGVib3gtcHJldiB7XG4gIGJhY2tncm91bmQtcG9zaXRpb246IC0zMnB4IDEzcHg7XG4gIGZsb2F0OiBsZWZ0O1xufVxuXG4jc3dpcGVib3gtbmV4dCB7XG4gIGJhY2tncm91bmQtcG9zaXRpb246IC0xMDVweCAxM3B4O1xuICBmbG9hdDogcmlnaHQ7XG59XG5cbiNzd2lwZWJveC1jbG9zZSB7XG4gIHRvcDogMDtcbiAgcmlnaHQ6IDA7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgei1pbmRleDogOTk5OTk5O1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAxNXB4IDEycHg7XG59XG5cbi5zd2lwZWJveC1uby1jbG9zZS1idXR0b24gI3N3aXBlYm94LWNsb3NlIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuI3N3aXBlYm94LXByZXYuZGlzYWJsZWQsXG4jc3dpcGVib3gtbmV4dC5kaXNhYmxlZCB7XG4gIG9wYWNpdHk6IDAuMztcbn1cblxuLnN3aXBlYm94LW5vLXRvdWNoICNzd2lwZWJveC1vdmVybGF5LnJpZ2h0U3ByaW5nICNzd2lwZWJveC1zbGlkZXIge1xuICBhbmltYXRpb246IHJpZ2h0U3ByaW5nIDAuM3M7XG59XG5cbi5zd2lwZWJveC1uby10b3VjaCAjc3dpcGVib3gtb3ZlcmxheS5sZWZ0U3ByaW5nICNzd2lwZWJveC1zbGlkZXIge1xuICBhbmltYXRpb246IGxlZnRTcHJpbmcgMC4zcztcbn1cblxuLnN3aXBlYm94LXRvdWNoICNzd2lwZWJveC1jb250YWluZXI6YmVmb3JlLCAuc3dpcGVib3gtdG91Y2ggI3N3aXBlYm94LWNvbnRhaW5lcjphZnRlciB7XG4gIGJhY2tmYWNlLXZpc2liaWxpdHk6IGhpZGRlbjtcbiAgdHJhbnNpdGlvbjogYWxsIC4zcyBlYXNlO1xuICBjb250ZW50OiAnICc7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgei1pbmRleDogOTk5OTk5O1xuICB0b3A6IDA7XG4gIGhlaWdodDogMTAwJTtcbiAgd2lkdGg6IDIwcHg7XG4gIG9wYWNpdHk6IDA7XG59XG5cbi5zd2lwZWJveC10b3VjaCAjc3dpcGVib3gtY29udGFpbmVyOmJlZm9yZSB7XG4gIGxlZnQ6IDA7XG4gIGJveC1zaGFkb3c6IGluc2V0IDEwcHggMHB4IDEwcHggLThweCAjNjU2NTY1O1xufVxuXG4uc3dpcGVib3gtdG91Y2ggI3N3aXBlYm94LWNvbnRhaW5lcjphZnRlciB7XG4gIHJpZ2h0OiAwO1xuICBib3gtc2hhZG93OiBpbnNldCAtMTBweCAwcHggMTBweCAtOHB4ICM2NTY1NjU7XG59XG5cbi5zd2lwZWJveC10b3VjaCAjc3dpcGVib3gtb3ZlcmxheS5sZWZ0U3ByaW5nVG91Y2ggI3N3aXBlYm94LWNvbnRhaW5lcjpiZWZvcmUge1xuICBvcGFjaXR5OiAxO1xufVxuXG4uc3dpcGVib3gtdG91Y2ggI3N3aXBlYm94LW92ZXJsYXkucmlnaHRTcHJpbmdUb3VjaCAjc3dpcGVib3gtY29udGFpbmVyOmFmdGVyIHtcbiAgb3BhY2l0eTogMTtcbn1cblxuQGtleWZyYW1lcyByaWdodFNwcmluZyB7XG4gIDAlIHtcbiAgICBsZWZ0OiAwO1xuICB9XG4gIDUwJSB7XG4gICAgbGVmdDogLTMwcHg7XG4gIH1cbiAgMTAwJSB7XG4gICAgbGVmdDogMDtcbiAgfVxufVxuXG5Aa2V5ZnJhbWVzIGxlZnRTcHJpbmcge1xuICAwJSB7XG4gICAgbGVmdDogMDtcbiAgfVxuICA1MCUge1xuICAgIGxlZnQ6IDMwcHg7XG4gIH1cbiAgMTAwJSB7XG4gICAgbGVmdDogMDtcbiAgfVxufVxuXG5AbWVkaWEgc2NyZWVuIGFuZCAobWluLXdpZHRoOiA4MDBweCkge1xuICAjc3dpcGVib3gtY2xvc2Uge1xuICAgIHJpZ2h0OiAxMHB4O1xuICB9XG4gICNzd2lwZWJveC1hcnJvd3Mge1xuICAgIHdpZHRoOiA5MiU7XG4gICAgbWF4LXdpZHRoOiA4MDBweDtcbiAgfVxufVxuXG4vKiBTa2luIFxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuI3N3aXBlYm94LW92ZXJsYXkge1xuICBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMTkyLCAyMDMsIDAuOSk7XG59XG5cbiNzd2lwZWJveC1ib3R0b20tYmFyLFxuI3N3aXBlYm94LXRvcC1iYXIge1xuICBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMTkyLCAyMDMsIDAuOSk7XG59XG5cbiNzd2lwZWJveC10b3AtYmFyIHtcbiAgY29sb3I6IHdoaXRlICFpbXBvcnRhbnQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIFBhdHRlcm4gRmlsbHNcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIExpZ2h0IGdhbGxlcnlcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMgQnJvd3NlciBIYWNrc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuIiwiLyohXG5UaGVtZSBOYW1lOiBVbmljb3JuIFRlYXJzXG5UaGVtZSBVUkk6IGh0dHBzOi8vZ2l0aHViLmNvbS9tb25rc3R1ZGlvL3VuaWNvcm4tdGVhcnNcbkF1dGhvcjogSmFjbHluIFRhblxuQXV0aG9yIEVtYWlsOiBqYWNseW5AbW9uay5jb20uYXVcbkF1dGhvciBVUkk6IGh0dHA6Ly9tb25rLmNvbS5hdVxuRGVzY3JpcHRpb246IEJvaWxlcnBsYXRlIFdvcmRwcmVzcyB0aGVtZVxuVmVyc2lvbjogMS4wLjBcbkxpY2Vuc2U6IEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIHYyIG9yIGxhdGVyXG5MaWNlbnNlIFVSSTogaHR0cDovL3d3dy5nbnUub3JnL2xpY2Vuc2VzL2dwbC0yLjAuaHRtbFxuVGV4dCBEb21haW46IHd3dy5tb25rLmNvbS5hdVxuXG4gIC5ePT09PV4uXG4gPSggXi0tXiApPVxuICAvICAgICAgXFwgICAvflxuKyggfCAgICB8ICkvL1xuXG5cblRoaXMgdGhlbWUsIGxpa2UgV29yZFByZXNzLCBpcyBsaWNlbnNlZCB1bmRlciB0aGUgR1BMLlxuVXNlIGl0IHRvIG1ha2Ugc29tZXRoaW5nIGNvb2wsIGhhdmUgZnVuLCBhbmQgc2hhcmUgd2hhdCB5b3UndmUgbGVhcm5lZCB3aXRoIG90aGVycy5cblxuTW9uayBpcyBiYXNlZCBvbiBVbmRlcnNjb3JlcyBodHRwOi8vdW5kZXJzY29yZXMubWUvLCAoQykgMjAxMi0yMDE2IEF1dG9tYXR0aWMsIEluYy5cblVuZGVyc2NvcmVzIGlzIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdQTCB2MiBvciBsYXRlci5cblxuTm9ybWFsaXppbmcgc3R5bGVzIGhhdmUgYmVlbiBoZWxwZWQgYWxvbmcgdGhhbmtzIHRvIHRoZSBmaW5lIHdvcmsgb2Zcbk5pY29sYXMgR2FsbGFnaGVyIGFuZCBKb25hdGhhbiBOZWFsIGh0dHA6Ly9uZWNvbGFzLmdpdGh1Yi5jb20vbm9ybWFsaXplLmNzcy9cblxuKi9cblxuLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwidmFyaWFibGVzLXNpdGUvdmFyaWFibGVzLXNpdGVcIjtcbkBpbXBvcnQgXCJtaXhpbnMvbWl4aW5zLW1hc3RlclwiO1xuLy9cbi8vLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuLy8jIE5vcm1hbGl6ZVxuLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4gQGltcG9ydCBcIm5vcm1hbGl6ZVwiO1xuLy9cbi8vLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuLy8jIEdyaWRcbi8vLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuLy8gIEBpbXBvcnQgXCJncmlkL3RhYmxlLWdyaWQvdGFibGUtZ3JpZFwiO1xuLy9AaW1wb3J0IFwiZ3JpZC9zaW1wbGUtZ3JpZFwiXG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMgV29vY29tbWVyY2Vcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8vIEBpbXBvcnQgXCJ3b29jb21tZXJjZVwiO1xuXG4vLy8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbi8vIyBBbGlnbm1lbnRzXG4vLy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbkBpbXBvcnQgXCJtb2R1bGVzL2FsaWdubWVudHNcIjtcbi8vXG4vLy8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbi8vIyBUeXBvZ3JhcGh5XG4vLy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbkBpbXBvcnQgXCJ0eXBvZ3JhcGh5L3R5cG9ncmFwaHlcIjtcbi8vXG4vLy8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbi8vIyBFbGVtZW50c1xuLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwiZWxlbWVudHMvZWxlbWVudHNcIjtcbi8vXG4vLy8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbi8vIyBGb3Jtc1xuLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwiZm9ybXMvZm9ybXNcIjtcbi8vXG4vLy8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbi8vIyBOYXZpZ2F0aW9uXG4vLy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbkBpbXBvcnQgXCJuYXZpZ2F0aW9uL25hdmlnYXRpb25cIjtcbkBpbXBvcnQgXCJuYXZpZ2F0aW9uL21vYmlsZS9oYW1idXJnZXJzXCI7XG4vL1xuLy8vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4vLyMgTGF5b3V0XG4vLy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbkBpbXBvcnQgXCJsYXlvdXQvbGF5b3V0XCI7XG4vL1xuLy8vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4vLyMgQWNjZXNzaWJpbGl0eVxuLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwibW9kdWxlcy9hY2Nlc3NpYmlsaXR5XCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMgQ2xlYXJpbmdzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vL0BpbXBvcnQgXCJtb2R1bGVzL2NsZWFyaW5nc1wiO1xuXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIFdpZGdldHNcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8vQGltcG9ydCBcInNpdGUvc2Vjb25kYXJ5L3dpZGdldHNcIjtcblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBDb250ZW50XG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwic2l0ZS9zaXRlXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMgSW5maW5pdGUgc2Nyb2xsXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vL0BpbXBvcnQgXCJtb2R1bGVzL2luZmluaXRlLXNjcm9sbFwiO1xuXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIE1lZGlhXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwibWVkaWEvbWVkaWFcIjtcblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyBCcm93c2VyIEhhY2tzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vL1xuLy9AaW1wb3J0IFwiYnJvd3NlcnMvZmlyZWZveFwiO1xuLy9AaW1wb3J0IFwiYnJvd3NlcnMvc2FmYXJpXCI7XG4vL0BpbXBvcnQgXCJicm93c2Vycy9pZVwiO1xuLy9AaW1wb3J0IFwiYnJvd3NlcnMvb3RoZXJcIjtcbiIsImh0bWwge1xuICAgIGZvbnQtZmFtaWx5OiBzYW5zLXNlcmlmO1xuICAgIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTtcbiAgICAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTtcbn1cblxuYm9keSB7XG4gICAgbWFyZ2luOiAwO1xufVxuXG5hcnRpY2xlLFxuYXNpZGUsXG5kZXRhaWxzLFxuZmlnY2FwdGlvbixcbmZpZ3VyZSxcbmZvb3RlcixcbmhlYWRlcixcbm1haW4sXG5tZW51LFxubmF2LFxuc2VjdGlvbixcbnN1bW1hcnkge1xuICAgIGRpc3BsYXk6IGJsb2NrO1xufVxuXG5hdWRpbyxcbmNhbnZhcyxcbnByb2dyZXNzLFxudmlkZW8ge1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICB2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG5cbmF1ZGlvOm5vdChbY29udHJvbHNdKSB7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgICBoZWlnaHQ6IDA7ICAgICAgICAgIFxufVxuXG5baGlkZGVuXSxcbnRlbXBsYXRlIHtcbiAgICBkaXNwbGF5OiBub25lO1xufVxuXG5hIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cblxuYTphY3RpdmUsXG5hOmhvdmVyIHtcbiAgICBvdXRsaW5lOiAwO1xufVxuXG5hYmJyW3RpdGxlXSB7XG4gICAgYm9yZGVyLWJvdHRvbTogMXB4IGRvdHRlZDtcbn1cblxuYixcbnN0cm9uZyB7XG4gICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG59XG5cbmRmbiB7XG4gICAgZm9udC1zdHlsZTogaXRhbGljO1xufVxuXG5oMSB7XG4gICAgZm9udC1zaXplOiAyZW07XG4gICAgbWFyZ2luOiAwLjY3ZW0gMDtcbn1cblxubWFyayB7XG4gICAgYmFja2dyb3VuZDogI2ZmMDtcbiAgICBjb2xvcjogIzAwMDtcbn1cblxuc21hbGwge1xuICAgIGZvbnQtc2l6ZTogODAlO1xufVxuXG5zdWIsXG5zdXAge1xuICAgIGZvbnQtc2l6ZTogNzUlO1xuICAgIGxpbmUtaGVpZ2h0OiAwO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG5cbnN1cCB7XG4gICAgdG9wOiAtMC41ZW07XG59XG5cbnN1YiB7XG4gICAgYm90dG9tOiAtMC4yNWVtO1xufVxuXG5pbWcge1xuICAgIGJvcmRlcjogMDtcbn1cblxuc3ZnOm5vdCg6cm9vdCkge1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbmZpZ3VyZSB7XG4gICAgbWFyZ2luOiAxZW0gNDBweDtcbn1cblxuaHIge1xuICAgIGJveC1zaXppbmc6IGNvbnRlbnQtYm94O1xuICAgIGhlaWdodDogMDtcbn1cblxucHJlIHtcbiAgICBvdmVyZmxvdzogYXV0bztcbn1cblxuY29kZSxcbmtiZCxcbnByZSxcbnNhbXAge1xuICAgIGZvbnQtZmFtaWx5OiBtb25vc3BhY2UsIG1vbm9zcGFjZTtcbiAgICBmb250LXNpemU6IDFlbTtcbn1cblxuYnV0dG9uLFxuaW5wdXQsXG5vcHRncm91cCxcbnNlbGVjdCxcbnRleHRhcmVhIHtcbiAgICBjb2xvcjogaW5oZXJpdDtcbiAgICBmb250OiBpbmhlcml0O1xuICAgIG1hcmdpbjogMDtcbn1cblxuYnV0dG9uIHtcbiAgICBvdmVyZmxvdzogdmlzaWJsZTtcbn1cblxuYnV0dG9uLFxuc2VsZWN0IHtcbiAgICB0ZXh0LXRyYW5zZm9ybTogbm9uZTtcbn1cblxuYnV0dG9uLFxuaHRtbCBpbnB1dFt0eXBlPVwiYnV0dG9uXCJdLFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdLFxuaW5wdXRbdHlwZT1cInN1Ym1pdFwiXSB7XG4gICAgLXdlYmtpdC1hcHBlYXJhbmNlOiBidXR0b247XG4gICAgY3Vyc29yOiBwb2ludGVyO1xufVxuXG5idXR0b25bZGlzYWJsZWRdLFxuaHRtbCBpbnB1dFtkaXNhYmxlZF0ge1xuICAgIGN1cnNvcjogZGVmYXVsdDtcbn1cblxuYnV0dG9uOjotbW96LWZvY3VzLWlubmVyLFxuaW5wdXQ6Oi1tb3otZm9jdXMtaW5uZXIge1xuICAgIGJvcmRlcjogMDtcbiAgICBwYWRkaW5nOiAwO1xufVxuXG5pbnB1dCB7XG4gICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbn1cblxuaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdLFxuaW5wdXRbdHlwZT1cInJhZGlvXCJdIHtcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIHBhZGRpbmc6IDA7XG59XG5cbmlucHV0W3R5cGU9XCJudW1iZXJcIl06Oi13ZWJraXQtaW5uZXItc3Bpbi1idXR0b24sXG5pbnB1dFt0eXBlPVwibnVtYmVyXCJdOjotd2Via2l0LW91dGVyLXNwaW4tYnV0dG9uIHtcbiAgICBoZWlnaHQ6IGF1dG87XG59XG5cbmlucHV0W3R5cGU9XCJzZWFyY2hcIl06Oi13ZWJraXQtc2VhcmNoLWNhbmNlbC1idXR0b24sXG5pbnB1dFt0eXBlPVwic2VhcmNoXCJdOjotd2Via2l0LXNlYXJjaC1kZWNvcmF0aW9uIHtcbiAgICAtd2Via2l0LWFwcGVhcmFuY2U6IG5vbmU7XG59XG5cbmZpZWxkc2V0IHtcbiAgICBib3JkZXI6IDFweCBzb2xpZCAjYzBjMGMwO1xuICAgIG1hcmdpbjogMCAycHg7XG4gICAgcGFkZGluZzogMC4zNWVtIDAuNjI1ZW0gMC43NWVtO1xufVxuXG5sZWdlbmQge1xuICAgIGJvcmRlcjogMDtcbiAgICBwYWRkaW5nOiAwO1xufVxuXG50ZXh0YXJlYSB7XG4gICAgb3ZlcmZsb3c6IGF1dG87XG59XG5cbm9wdGdyb3VwIHtcbiAgICBmb250LXdlaWdodDogYm9sZDtcbn1cblxudGFibGUge1xuICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgYm9yZGVyLXNwYWNpbmc6IDA7XG59XG5cbnRkLFxudGgge1xuICAgIHBhZGRpbmc6IDA7XG59IiwiLmFsaWdubGVmdCB7XG5cdGRpc3BsYXk6IGlubGluZTtcblx0ZmxvYXQ6IGxlZnQ7XG5cdG1hcmdpbi1yaWdodDogMS41ZW07XG59XG5cbi5hbGlnbnJpZ2h0IHtcblx0ZGlzcGxheTogaW5saW5lO1xuXHRmbG9hdDogcmlnaHQ7XG5cdG1hcmdpbi1sZWZ0OiAxLjVlbTtcbn1cblxuLmFsaWduY2VudGVyIHtcblx0Y2xlYXI6IGJvdGg7XG5cdG1hcmdpbjogMCBhdXRvO1xufVxuIiwiYm9keSxcbmJ1dHRvbixcbmlucHV0LFxuc2VsZWN0LFxudGV4dGFyZWEge1xuXHRjb2xvcjogJGNvbG9yX190ZXh0LW1haW47XG5cdGZvbnQtZmFtaWx5OiAkZm9udF9fbWFpbjtcblx0QGluY2x1ZGUgZm9udC1zaXplKDEuNik7XG5cdGxpbmUtaGVpZ2h0OiAkZm9udF9fbGluZS1oZWlnaHQtYm9keTtcbn1cblxuQGltcG9ydCBcImhlYWRpbmdzXCI7XG5cbkBpbXBvcnQgXCJjb3B5XCI7XG5cbkBpbXBvcnQgXCJmb250cy9mb250c1wiOyIsIi8vY29sb3Vyc1xuLy9jb21tb25cbiRicmFuZC1saWdodGdyZXk6IGxpZ2h0ZW4oIzAwMCw5NSUpO1xuJGJyYW5kLWRhcmtncmV5OiBsaWdodGVuKCMwMDAsMjAlKTtcblxuLy9icmFuZFxuJGJyYW5kLXByaW1hcnk6IHBpbms7XG4kYnJhbmQtc2Vjb25kYXJ5OnJlZDtcbiRicmFuZC1tdXRlZDogbGlnaHRlbigkYnJhbmQtcHJpbWFyeSwyMCUpO1xuJGJyYW5kLXBsYWNlaG9sZGVyLWNvbG9yOiRicmFuZC1saWdodGdyZXk7XG5cbi8vdW5kZXJzY29yZXMgc3R5bGVzXG4kY29sb3JfX2JhY2tncm91bmQtYm9keTogI2ZmZjtcbiRjb2xvcl9fYmFja2dyb3VuZC1zY3JlZW46ICNmMWYxZjE7XG4kY29sb3JfX2JhY2tncm91bmQtaHI6ICRicmFuZC1saWdodGdyZXk7XG4kY29sb3JfX2JhY2tncm91bmQtYnV0dG9uOiAkYnJhbmQtcHJpbWFyeTtcbiRjb2xvcl9fYmFja2dyb3VuZC1wcmU6ICNlZWU7XG4kY29sb3JfX2JhY2tncm91bmQtaW5zOiAjZmZmOWMwO1xuXG4kY29sb3JfX3RleHQtc2NyZWVuOiAjMjE3NTliO1xuJGNvbG9yX190ZXh0LWlucHV0OiAkYnJhbmQtcHJpbWFyeTtcbiRjb2xvcl9fdGV4dC1pbnB1dC1mb2N1czogJGJyYW5kLXByaW1hcnk7XG4kY29sb3JfX2xpbms6ICRicmFuZC1wcmltYXJ5O1xuJGNvbG9yX19saW5rLXZpc2l0ZWQ6ICRicmFuZC1wcmltYXJ5O1xuJGNvbG9yX19saW5rLWhvdmVyOiAkYnJhbmQtc2Vjb25kYXJ5O1xuJGNvbG9yX190ZXh0LW1haW46ICRicmFuZC1kYXJrZ3JleTtcblxuJGNvbG9yX19ib3JkZXItYnV0dG9uOiAkYnJhbmQtcHJpbWFyeTtcbiRjb2xvcl9fYm9yZGVyLWJ1dHRvbi1ob3ZlcjogJGJyYW5kLXNlY29uZGFyeTtcbiRjb2xvcl9fYm9yZGVyLWJ1dHRvbi1mb2N1czogJGJyYW5kLXNlY29uZGFyeTtcbiRjb2xvcl9fYm9yZGVyLWlucHV0OiAkYnJhbmQtcHJpbWFyeTtcbiRjb2xvcl9fYm9yZGVyLWFiYnI6ICRicmFuZC1zZWNvbmRhcnk7XG5cblxuIiwiLy9jdXN0b20gZm9udHMgLSBjaGFuZ2UgYXMgbmVlZGVkXG4kYnJhbmQtZm9udDogXCJIZWx2ZXRpY2FOZXVlLUxpZ2h0XCIsIFwiSGVsdmV0aWNhIE5ldWUgTGlnaHRcIiwgXCJIZWx2ZXRpY2EgTmV1ZVwiLCBIZWx2ZXRpY2EsIEFyaWFsLCBcIkx1Y2lkYSBHcmFuZGVcIiwgc2Fucy1zZXJpZjtcbiRicmFuZC1oZWFkaW5nOiBcIkJpZyBDYXNsb25cIixcIkJvb2sgQW50aXF1YVwiLFwiUGFsYXRpbm8gTGlub3R5cGVcIixHZW9yZ2lhLHNlcmlmO1xuXG4kZm9udF9fbWFpbjogJGJyYW5kLWZvbnQ7XG4kZm9udF9fY29kZTogTW9uYWNvLCBDb25zb2xhcywgXCJBbmRhbGUgTW9ub1wiLCBcIkRlamFWdSBTYW5zIE1vbm9cIiwgbW9ub3NwYWNlO1xuJGZvbnRfX3ByZTogXCJDb3VyaWVyIDEwIFBpdGNoXCIsIENvdXJpZXIsIG1vbm9zcGFjZTtcbiRmb250X19saW5lLWhlaWdodC1ib2R5OiAxLjQ7XG4kZm9udF9fbGluZS1oZWlnaHQtcHJlOiAxLjY7XG5cbiRmb250LWxpZ2h0OiAzMDA7XG4kZm9udC1yZWd1bGFyOiA1MDA7XG4kZm9udC1oZWF2eTogNzAwOyIsIkBpbXBvcnQgXCJpbmNsdWRlbWVkaWFcIjtcbi8vIFJlbSBvdXRwdXQgd2l0aCBweCBmYWxsYmFja1xuQG1peGluIGZvbnQtc2l6ZSgkc2l6ZVZhbHVlOiAxKSB7XG4gICAgZm9udC1zaXplOiAoJHNpemVWYWx1ZSAqIDE3KSAqIDFweDtcbiAgICBmb250LXNpemU6ICRzaXplVmFsdWUgKiAxcmVtO1xufVxuXG4vLyBDZW50ZXJpbmdcbkBtaXhpbiBjZW50ZXIoJHBvczpib3RoKSB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIEBpZiAoJHBvcz09Ym90aCkge1xuICAgICAgICB0b3A6IDUwJTtcbiAgICAgICAgbGVmdDogNTAlO1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAtNTAlKTtcbiAgICB9XG4gICAgQGVsc2UgaWYgKCRwb3M9PXRvcCkge1xuICAgICAgICBsZWZ0OiA1MCU7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIDApO1xuICAgIH1cbiAgICBAZWxzZSBpZiAoJHBvcz09bGVmdCkge1xuICAgICAgICB0b3A6IDUwJTtcbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUoMCwgLTUwJSk7XG4gICAgfVxuICAgIEBlbHNlIGlmICgkcG9zPT1yaWdodCkge1xuICAgICAgICB0b3A6IDUwJTtcbiAgICAgICAgcmlnaHQ6IDA7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICAgIH1cbiAgICBAZWxzZSBpZiAoJHBvcz09Ym90dG9tKSB7XG4gICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgbGVmdDogNTAlO1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAwKTtcbiAgICB9XG59XG5cbi8vIGVnLiBAaW5jbHVkZSBjZW50ZXIoYm90aCk7IFxuLy8gQ2xlYXJmaXhcbkBtaXhpbiBjbGVhcmZpeCgpIHtcbiAgICBjb250ZW50OiBcIlwiO1xuICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG5cbi8vIENsZWFyIGFmdGVyIChub3QgYWxsIGNsZWFyZml4IG5lZWQgdGhpcyBhbHNvKVxuQG1peGluIGNsZWFyZml4LWFmdGVyKCkge1xuICAgIGNsZWFyOiBib3RoO1xufVxuXG4vLyBDb2x1bW4gd2lkdGggd2l0aCBtYXJnaW5cbkBtaXhpbiBjb2x1bW4td2lkdGgoJG51bWJlckNvbHVtbnM6IDMpIHtcblx0d2lkdGg6IG1hcC1nZXQoICRjb2x1bW5zLCAkbnVtYmVyQ29sdW1ucyApIC0gKCAoICRjb2x1bW5zX19tYXJnaW4gKiAoICRudW1iZXJDb2x1bW5zIC0gMSApICkgLyAkbnVtYmVyQ29sdW1ucyApO1xufVxuXG4vLy8gTWl4aW4gdG8gY3VzdG9taXplIHNjcm9sbGJhcnNcbi8vLyBCZXdhcmUsIHRoaXMgZG9lcyBub3Qgd29yayBpbiBhbGwgYnJvd3NlcnNcbi8vLyBAYXV0aG9yIEh1Z28gR2lyYXVkZWxcbi8vLyBAcGFyYW0ge0xlbmd0aH0gJHNpemUgLSBIb3Jpem9udGFsIHNjcm9sbGJhcidzIGhlaWdodCBhbmQgdmVydGljYWwgc2Nyb2xsYmFyJ3Mgd2lkdGhcbi8vLyBAcGFyYW0ge0NvbG9yfSAkZm9yZWdyb3VuZC1jb2xvciAtIFNjcm9sbGJhcidzIGNvbG9yXG4vLy8gQHBhcmFtIHtDb2xvcn0gJGJhY2tncm91bmQtY29sb3IgW21peCgkZm9yZWdyb3VuZC1jb2xvciwgd2hpdGUsIDUwJSldIC0gU2Nyb2xsYmFyJ3MgY29sb3Jcbi8vLyBAZXhhbXBsZSBzY3NzIC0gU2Nyb2xsYmFyIHN0eWxpbmdcbi8vLyAgIEBpbmNsdWRlIHNjcm9sbGJhcnMoLjVlbSwgc2xhdGVncmF5KTtcbkBtaXhpbiBzY3JvbGxiYXJzKCRzaXplLCAkZm9yZWdyb3VuZC1jb2xvciwgJGJhY2tncm91bmQtY29sb3IpIHtcbiAgICAvLyBGb3IgR29vZ2xlIENocm9tZSBcbiAgICA6Oi13ZWJraXQtc2Nyb2xsYmFyIHtcbiAgICAgICAgd2lkdGg6ICRzaXplO1xuICAgICAgICBoZWlnaHQ6ICRzaXplO1xuICAgIH1cbiAgICA6Oi13ZWJraXQtc2Nyb2xsYmFyLXRodW1iIHtcbiAgICAgICAgYmFja2dyb3VuZDogJGZvcmVncm91bmQtY29sb3I7XG4gICAgfVxuICAgIDo6LXdlYmtpdC1zY3JvbGxiYXItdHJhY2sge1xuICAgICAgICBiYWNrZ3JvdW5kOiAkYmFja2dyb3VuZC1jb2xvcjtcbiAgICB9XG4gICAgLy8gRm9yIEludGVybmV0IEV4cGxvcmVyXG4gICAgYm9keSB7XG4gICAgICAgIHNjcm9sbGJhci1mYWNlLWNvbG9yOiAkZm9yZWdyb3VuZC1jb2xvcjtcbiAgICAgICAgc2Nyb2xsYmFyLXRyYWNrLWNvbG9yOiAkYmFja2dyb3VuZC1jb2xvcjtcbiAgICB9XG59IiwiaDEsIGgyLCBoMywgaDQsIGg1LCBoNiB7XG5cdGNsZWFyOiBib3RoO1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgbWFyZ2luLXRvcDogMDtcbn1cblxuaDEge1xuICAgIEBpbmNsdWRlIGZvbnQtc2l6ZSgzLjYpO1xuICAgIG1hcmdpbjogMWVtIDA7XG59XG5cbmgyIHtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMyk7XG59XG5cbmgzIHtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMi42KTtcbn1cblxuaDQge1xuICAgIEBpbmNsdWRlIGZvbnQtc2l6ZSgyLjIpO1xufVxuXG5oNSB7XG4gICAgQGluY2x1ZGUgZm9udC1zaXplKDEuOSk7XG59XG5cbmg2IHtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMS42KTtcbn0iLCJwIHtcbiAgICBtYXJnaW4tYm90dG9tOiAxLjVlbTsgXG4gICAgbWFyZ2luLXRvcDogMDtcbn1cblxuZGZuLFxuY2l0ZSxcbmVtLFxuaSB7XG4gICAgZm9udC1zdHlsZTogaXRhbGljO1xufVxuXG5ibG9ja3F1b3RlIHtcbiAgICBtYXJnaW46IDAgMS41ZW07XG59XG5cbmFkZHJlc3Mge1xuICAgIG1hcmdpbjogMCAwIDEuNWVtO1xufVxuXG5wcmUge1xuICAgIGJhY2tncm91bmQ6ICRjb2xvcl9fYmFja2dyb3VuZC1wcmU7XG4gICAgZm9udC1mYW1pbHk6ICRmb250X19wcmU7XG4gICAgQGluY2x1ZGUgZm9udC1zaXplKDAuOTM3NSk7XG4gICAgbGluZS1oZWlnaHQ6ICRmb250X19saW5lLWhlaWdodC1wcmU7XG4gICAgbWFyZ2luLWJvdHRvbTogMS42ZW07XG4gICAgbWF4LXdpZHRoOiAxMDAlO1xuICAgIG92ZXJmbG93OiBhdXRvO1xuICAgIHBhZGRpbmc6IDEuNmVtO1xufVxuXG5jb2RlLFxua2JkLFxudHQsXG52YXIge1xuICAgIGZvbnQtZmFtaWx5OiAkZm9udF9fY29kZTtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMC45Mzc1KTtcbn1cblxuYWJicixcbmFjcm9ueW0ge1xuICAgIGJvcmRlci1ib3R0b206IDFweCBkb3R0ZWQgJGNvbG9yX19ib3JkZXItYWJicjtcbiAgICBjdXJzb3I6IGhlbHA7XG59XG5cbm1hcmssXG5pbnMge1xuICAgIGJhY2tncm91bmQ6ICRjb2xvcl9fYmFja2dyb3VuZC1pbnM7XG4gICAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xufVxuXG5iaWcge1xuICAgIGZvbnQtc2l6ZTogMTI1JTtcbn1cblxuLy9mb250IHdlaWdodHNcbi5mb250LWxpZ2h0IHtcbiAgICBmb250LXdlaWdodDogJGZvbnQtbGlnaHQ7XG59XG5cbi5mb250LXJlZ3VsYXIge1xuICAgIGZvbnQtd2VpZ2h0OiAkZm9udC1yZWd1bGFyO1xufVxuXG4uZm9udC1oZWF2eSB7XG4gICAgZm9udC13ZWlnaHQ6ICRmb250LWhlYXZ5O1xufVxuXG4vLyBmb250IHV0aWxpdGllc1xuLy8gQWxpZ25tZW50XG4udGV4dC1sZWZ0IHtcbiAgICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuXG4udGV4dC1yaWdodCB7XG4gICAgdGV4dC1hbGlnbjogcmlnaHQ7XG59XG5cbi50ZXh0LWNlbnRlciB7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4udGV4dC1qdXN0aWZ5IHtcbiAgICB0ZXh0LWFsaWduOiBqdXN0aWZ5O1xufVxuXG4udGV4dC1ub3dyYXAge1xuICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi50ZXh0LWJyZWFrIHtcbiAgICB3b3JkLWJyZWFrOiBicmVhay1hbGw7XG59XG5cbi8vIFRyYW5zZm9ybWF0aW9uXG4udGV4dC1sb3dlcmNhc2Uge1xuICAgIHRleHQtdHJhbnNmb3JtOiBsb3dlcmNhc2U7XG59XG5cbi50ZXh0LXVwcGVyY2FzZSB7XG4gICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTtcbn1cblxuLnRleHQtY2FwaXRhbGl6ZSB7XG4gICAgdGV4dC10cmFuc2Zvcm06IGNhcGl0YWxpemU7XG59XG5cbi8vIENvbnRleHR1YWxcbi50ZXh0LW11dGVkIHtcbiAgICBjb2xvcjogJGJyYW5kLW11dGVkO1xufSIsIi8vaW1wb3J0ZWQgd2ViIGZvbnRzXG5AZm9udC1mYWNlIHtcbiAgICBmb250LWZhbWlseTogJ2ZvbnRlbGxvJztcbiAgICBzcmM6ICAgIHVybCgnYXNzZXRzL2ZvbnRzL2ZvbnRlbGxvL2ZvbnRlbGxvLmVvdD8zMDAwNTc1OScpO1xuICAgIHNyYzogICAgdXJsKCdhc3NldHMvZm9udHMvZm9udGVsbG8vZm9udGVsbG8uZW90PzMwMDA1NzU5I2llZml4JykgZm9ybWF0KCdlbWJlZGRlZC1vcGVudHlwZScpLFxuICAgICAgICAgICAgdXJsKCdhc3NldHMvZm9udHMvZm9udGVsbG8vZm9udGVsbG8ud29mZjI/MzAwMDU3NTknKSBmb3JtYXQoJ3dvZmYyJyksXG4gICAgICAgICAgICB1cmwoJ2Fzc2V0cy9mb250cy9mb250ZWxsby9mb250ZWxsby53b2ZmPzMwMDA1NzU5JykgZm9ybWF0KCd3b2ZmJyksXG4gICAgICAgICAgICB1cmwoJ2Fzc2V0cy9mb250cy9mb250ZWxsby9mb250ZWxsby50dGY/MzAwMDU3NTknKSBmb3JtYXQoJ3RydWV0eXBlJyksXG4gICAgICAgICAgICB1cmwoJ2Fzc2V0cy9mb250cy9mb250ZWxsby9mb250ZWxsby5zdmc/MzAwMDU3NTkjZm9udGVsbG8nKSBmb3JtYXQoJ3N2ZycpO1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgZm9udC1zdHlsZTogbm9ybWFsO1xufVxuXG5cbi8qIENocm9tZSBoYWNrOiBTVkcgaXMgcmVuZGVyZWQgbW9yZSBzbW9vdGggaW4gV2luZG96emUuIDEwMCUgbWFnaWMsIHVuY29tbWVudCBpZiB5b3UgbmVlZCBpdC4gKi9cblxuXG4vKiBOb3RlLCB0aGF0IHdpbGwgYnJlYWsgaGludGluZyEgSW4gb3RoZXIgT1MtZXMgZm9udCB3aWxsIGJlIG5vdCBhcyBzaGFycCBhcyBpdCBjb3VsZCBiZSAqL1xuXG5cbi8qXG5AbWVkaWEgc2NyZWVuIGFuZCAoLXdlYmtpdC1taW4tZGV2aWNlLXBpeGVsLXJhdGlvOjApIHtcbiAgQGZvbnQtZmFjZSB7XG4gICAgZm9udC1mYW1pbHk6ICdmb250ZWxsbyc7XG4gICAgc3JjOiB1cmwoJy4uL2ZvbnQvZm9udGVsbG8uc3ZnPzMwMDA1NzU5I2ZvbnRlbGxvJykgZm9ybWF0KCdzdmcnKTtcbiAgfVxufVxuKi9cblxuLy9mb3Igc3Bpbm5lciBhbmltYXRpb25zXG4vL0BpbXBvcnQgXCJhbmltYXRpb25zXCI7IFxuXG5bY2xhc3NePVwiaWNvbi1cIl06YmVmb3JlLFxuW2NsYXNzKj1cIiBpY29uLVwiXTpiZWZvcmUge1xuICAgIGZvbnQtZmFtaWx5OiBcImZvbnRlbGxvXCI7XG4gICAgZm9udC1zdHlsZTogbm9ybWFsO1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgc3BlYWs6IG5vbmU7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIHRleHQtZGVjb3JhdGlvbjogaW5oZXJpdDtcbiAgICB3aWR0aDogMWVtO1xuICAgIG1hcmdpbi1yaWdodDogLjJlbTtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgLyogb3BhY2l0eTogLjg7ICovXG4gICAgLyogRm9yIHNhZmV0eSAtIHJlc2V0IHBhcmVudCBzdHlsZXMsIHRoYXQgY2FuIGJyZWFrIGdseXBoIGNvZGVzKi9cbiAgICBmb250LXZhcmlhbnQ6IG5vcm1hbDtcbiAgICB0ZXh0LXRyYW5zZm9ybTogbm9uZTtcbiAgICAvKiBmaXggYnV0dG9ucyBoZWlnaHQsIGZvciB0d2l0dGVyIGJvb3RzdHJhcCAqL1xuICAgIGxpbmUtaGVpZ2h0OiAxZW07XG4gICAgLyogQW5pbWF0aW9uIGNlbnRlciBjb21wZW5zYXRpb24gLSBtYXJnaW5zIHNob3VsZCBiZSBzeW1tZXRyaWMgKi9cbiAgICAvKiByZW1vdmUgaWYgbm90IG5lZWRlZCAqL1xuICAgIG1hcmdpbi1sZWZ0OiAuMmVtO1xuICAgIC8qIHlvdSBjYW4gYmUgbW9yZSBjb21mb3J0YWJsZSB3aXRoIGluY3JlYXNlZCBpY29ucyBzaXplICovXG4gICAgLyogZm9udC1zaXplOiAxMjAlOyAqL1xuICAgIC8qIEZvbnQgc21vb3RoaW5nLiBUaGF0IHdhcyB0YWtlbiBmcm9tIFRXQlMgKi9cbiAgICAtd2Via2l0LWZvbnQtc21vb3RoaW5nOiBhbnRpYWxpYXNlZDtcbiAgICAtbW96LW9zeC1mb250LXNtb290aGluZzogZ3JheXNjYWxlO1xuICAgIC8qIFVuY29tbWVudCBmb3IgM0QgZWZmZWN0ICovXG4gICAgLyogdGV4dC1zaGFkb3c6IDFweCAxcHggMXB4IHJnYmEoMTI3LCAxMjcsIDEyNywgMC4zKTsgKi9cbn1cblxuLy9mb250ZWxsbyBjb2Rlc1xuQGltcG9ydCBcImZvbnRlbGxvLWNvZGVzXCI7XG5cbi8vYW5pbWF0aW9uc1xuQGltcG9ydCBcImFuaW1hdGlvbnNcIjsiLCJcbi5pY29uLWhlYXJ0OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MDAnOyB9IC8qICfuoIAnICovXG4uaWNvbi1oZWFydC1lbXB0eTpiZWZvcmUgeyBjb250ZW50OiAnXFxlODAxJzsgfSAvKiAn7qCBJyAqL1xuLmljb24tc2hhcmU6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwMic7IH0gLyogJ+6ggicgKi9cbi5pY29uLWxpbms6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwMyc7IH0gLyogJ+6ggycgKi9cbi5pY29uLWV4cG9ydDpiZWZvcmUgeyBjb250ZW50OiAnXFxlODA0JzsgfSAvKiAn7qCEJyAqL1xuLmljb24tZ2xvYmU6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwNSc7IH0gLyogJ+6ghScgKi9cbi5pY29uLWRvd24tb3Blbi1iaWc6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwNic7IH0gLyogJ+6ghicgKi9cbi5pY29uLWxlZnQtb3Blbi1iaWc6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwNyc7IH0gLyogJ+6ghycgKi9cbi5pY29uLXJpZ2h0LW9wZW4tYmlnOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MDgnOyB9IC8qICfuoIgnICovXG4uaWNvbi11cC1vcGVuLWJpZzpiZWZvcmUgeyBjb250ZW50OiAnXFxlODA5JzsgfSAvKiAn7qCJJyAqL1xuLmljb24tbGlzdDpiZWZvcmUgeyBjb250ZW50OiAnXFxlODBhJzsgfSAvKiAn7qCKJyAqL1xuLmljb24tcmVzaXplLWZ1bGwtYWx0OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MGInOyB9IC8qICfuoIsnICovXG4uaWNvbi1tZW51OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MGMnOyB9IC8qICfuoIwnICovXG4uaWNvbi10aHVtYnMtdXA6YmVmb3JlIHsgY29udGVudDogJ1xcZTgwZSc7IH0gLyogJ+6gjicgKi9cbi5pY29uLXRodW1icy1kb3duOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MGYnOyB9IC8qICfuoI8nICovXG4uaWNvbi1kb3QtMzpiZWZvcmUgeyBjb250ZW50OiAnXFxlODEwJzsgfSAvKiAn7qCQJyAqL1xuLmljb24tZG93bjpiZWZvcmUgeyBjb250ZW50OiAnXFxlODExJzsgfSAvKiAn7qCRJyAqL1xuLmljb24tbGVmdDpiZWZvcmUgeyBjb250ZW50OiAnXFxlODEyJzsgfSAvKiAn7qCSJyAqL1xuLmljb24tcmlnaHQ6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxMyc7IH0gLyogJ+6gkycgKi9cbi5pY29uLXVwOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGU4MTQnOyB9IC8qICfuoJQnICovXG4uaWNvbi1oZWxwLWNpcmNsZWQ6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxNSc7IH0gLyogJ+6glScgKi9cbi5pY29uLWhlbHAtY2lyY2xlZC1hbHQ6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxNic7IH0gLyogJ+6glicgKi9cbi5pY29uLWNhbmNlbDpiZWZvcmUgeyBjb250ZW50OiAnXFxlODE3JzsgfSAvKiAn7qCXJyAqL1xuLmljb24tb2s6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxOCc7IH0gLyogJ+6gmCcgKi9cbi5pY29uLXN0YXItZW1wdHk6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxOSc7IH0gLyogJ+6gmScgKi9cbi5pY29uLXN0YXI6YmVmb3JlIHsgY29udGVudDogJ1xcZTgxYSc7IH0gLyogJ+6gmicgKi9cbi5pY29uLWRvd24tb3BlbjpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDA0JzsgfSAvKiAn74CEJyAqL1xuLmljb24tdXAtb3BlbjpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDA1JzsgfSAvKiAn74CFJyAqL1xuLmljb24tcmlnaHQtb3BlbjpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDA2JzsgfSAvKiAn74CGJyAqL1xuLmljb24tbGVmdC1vcGVuOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwMDcnOyB9IC8qICfvgIcnICovXG4uaWNvbi1tZW51LTE6YmVmb3JlIHsgY29udGVudDogJ1xcZjAwOCc7IH0gLyogJ++AiCcgKi9cbi5pY29uLXRoLWxpc3Q6YmVmb3JlIHsgY29udGVudDogJ1xcZjAwOSc7IH0gLyogJ++AiScgKi9cbi5pY29uLXRoLXRodW1iOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwMGEnOyB9IC8qICfvgIonICovXG4uaWNvbi10aC10aHVtYi1lbXB0eTpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDBiJzsgfSAvKiAn74CLJyAqL1xuLmljb24tZG93bmxvYWQ6YmVmb3JlIHsgY29udGVudDogJ1xcZjAyZSc7IH0gLyogJ++AricgKi9cbi5pY29uLXVwbG9hZDpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDJmJzsgfSAvKiAn74CvJyAqL1xuLmljb24tbG9jYXRpb246YmVmb3JlIHsgY29udGVudDogJ1xcZjAzMSc7IH0gLyogJ++AsScgKi9cbi5pY29uLWV5ZTpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDgyJzsgfSAvKiAn74KCJyAqL1xuLmljb24taW5mby1jaXJjbGVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwODUnOyB9IC8qICfvgoUnICovXG4uaWNvbi1pbmZvLWNpcmNsZWQtYWx0OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwODYnOyB9IC8qICfvgoYnICovXG4uaWNvbi10d2l0dGVyOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwOTknOyB9IC8qICfvgpknICovXG4uaWNvbi1mYWNlYm9vazpiZWZvcmUgeyBjb250ZW50OiAnXFxmMDlhJzsgfSAvKiAn74KaJyAqL1xuLmljb24tcnNzOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwOWUnOyB9IC8qICfvgp4nICovXG4uaWNvbi1ncGx1czpiZWZvcmUgeyBjb250ZW50OiAnXFxmMGQ1JzsgfSAvKiAn74OVJyAqL1xuLmljb24tbWFpbC1hbHQ6YmVmb3JlIHsgY29udGVudDogJ1xcZjBlMCc7IH0gLyogJ++DoCcgKi9cbi5pY29uLWxpbmtlZGluOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYwZTEnOyB9IC8qICfvg6EnICovXG4uaWNvbi1hbmdsZS1sZWZ0OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYxMDQnOyB9IC8qICfvhIQnICovXG4uaWNvbi1hbmdsZS1yaWdodDpiZWZvcmUgeyBjb250ZW50OiAnXFxmMTA1JzsgfSAvKiAn74SFJyAqL1xuLmljb24tYW5nbGUtdXA6YmVmb3JlIHsgY29udGVudDogJ1xcZjEwNic7IH0gLyogJ++EhicgKi9cbi5pY29uLWFuZ2xlLWRvd246YmVmb3JlIHsgY29udGVudDogJ1xcZjEwNyc7IH0gLyogJ++EhycgKi9cbi5pY29uLWNhbGVuZGFyLWVtcHR5OmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYxMzMnOyB9IC8qICfvhLMnICovXG4uaWNvbi15b3V0dWJlLXNxdWFyZWQ6YmVmb3JlIHsgY29udGVudDogJ1xcZjE2Nic7IH0gLyogJ++FpicgKi9cbi5pY29uLXlvdXR1YmU6YmVmb3JlIHsgY29udGVudDogJ1xcZjE2Nyc7IH0gLyogJ++FpycgKi9cbi5pY29uLXlvdXR1YmUtcGxheTpiZWZvcmUgeyBjb250ZW50OiAnXFxmMTZhJzsgfSAvKiAn74WqJyAqL1xuLmljb24taW5zdGFncmFtOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYxNmQnOyB9IC8qICfvha0nICovXG4uaWNvbi10dW1ibHI6YmVmb3JlIHsgY29udGVudDogJ1xcZjE3Myc7IH0gLyogJ++FsycgKi9cbi5pY29uLXR1bWJsci1zcXVhcmVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYxNzQnOyB9IC8qICfvhbQnICovXG4uaWNvbi12aW1lby1zcXVhcmVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYxOTQnOyB9IC8qICfvhpQnICovXG4uaWNvbi1nb29nbGU6YmVmb3JlIHsgY29udGVudDogJ1xcZjFhMCc7IH0gLyogJ++GoCcgKi9cbi5pY29uLWJlaGFuY2U6YmVmb3JlIHsgY29udGVudDogJ1xcZjFiNCc7IH0gLyogJ++GtCcgKi9cbi5pY29uLWZhY2Vib29rLW9mZmljaWFsOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYyMzAnOyB9IC8qICfviLAnICovXG4uaWNvbi1waW50ZXJlc3Q6YmVmb3JlIHsgY29udGVudDogJ1xcZjIzMSc7IH0gLyogJ++IsScgKi9cbi5pY29uLXRyYWRlbWFyazpiZWZvcmUgeyBjb250ZW50OiAnXFxmMjVjJzsgfSAvKiAn74mcJyAqL1xuLmljb24tcmVnaXN0ZXJlZDpiZWZvcmUgeyBjb250ZW50OiAnXFxmMjVkJzsgfSAvKiAn74mdJyAqL1xuLmljb24tY3JlYXRpdmUtY29tbW9uczpiZWZvcmUgeyBjb250ZW50OiAnXFxmMjVlJzsgfSAvKiAn74meJyAqL1xuLmljb24tY29tbWVudGluZy1vOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYyN2InOyB9IC8qICfvibsnICovXG4uaWNvbi12aW1lbzpiZWZvcmUgeyBjb250ZW50OiAnXFxmMjdkJzsgfSAvKiAn74m9JyAqL1xuLmljb24tdHdpdHRlci1zcXVhcmVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYzMDQnOyB9IC8qICfvjIQnICovXG4uaWNvbi1mYWNlYm9vay1zcXVhcmVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYzMDgnOyB9IC8qICfvjIgnICovXG4uaWNvbi1saW5rZWRpbi1zcXVhcmVkOmJlZm9yZSB7IGNvbnRlbnQ6ICdcXGYzMGMnOyB9IC8qICfvjIwnICovIiwiLypcbiAgIEFuaW1hdGlvbiBleGFtcGxlLCBmb3Igc3Bpbm5lcnNcbiovXG5cbi5hbmltYXRlLXNwaW4ge1xuICAgIGFuaW1hdGlvbjogc3BpbiAycyBpbmZpbml0ZSBsaW5lYXI7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG5Aa2V5ZnJhbWVzIHNwaW4ge1xuICAgIDAlIHtcbiAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoMGRlZyk7XG4gICAgfVxuICAgIDEwMCUge1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgzNTlkZWcpO1xuICAgIH1cbn0iLCJodG1sIHtcblx0Ym94LXNpemluZzogYm9yZGVyLWJveDsgXG4gICAgZm9udC1zaXplOjYyLjUlO1xufVxuXG4qLFxuKjpiZWZvcmUsXG4qOmFmdGVyIHsgLyogSW5oZXJpdCBib3gtc2l6aW5nIHRvIG1ha2UgaXQgZWFzaWVyIHRvIGNoYW5nZSB0aGUgcHJvcGVydHkgZm9yIGNvbXBvbmVudHMgdGhhdCBsZXZlcmFnZSBvdGhlciBiZWhhdmlvcjsgc2VlIGh0dHA6Ly9jc3MtdHJpY2tzLmNvbS9pbmhlcml0aW5nLWJveC1zaXppbmctcHJvYmFibHktc2xpZ2h0bHktYmV0dGVyLWJlc3QtcHJhY3RpY2UvICovXG5cdGJveC1zaXppbmc6IGluaGVyaXQ7XG59XG5cbmJvZHkge1xuXHRiYWNrZ3JvdW5kLWNvbG9yOiAkY29sb3JfX2JhY2tncm91bmQtYm9keTsgLyogRmFsbGJhY2sgZm9yIHdoZW4gdGhlcmUgaXMgbm8gY3VzdG9tIGJhY2tncm91bmQgY29sb3IgZGVmaW5lZC4gKi9cbn1cblxuLy90eXBla2l0IGZiXG4vLy5qcyB7XG4vLyAgICAmLndmLWxvYWRpbmcge1xuLy8gICAgLyogc3R5bGVzIHRvIHVzZSB3aGVuIHdlYiBmb250cyBhcmUgbG9hZGluZyAqL1xuLy8gICAgICAgIG9wYWNpdHk6IDA7XG4vLyAgICAgICAgdmlzaWJpbGl0eTogaGlkZGVuO1xuLy8gICAgICAgIHRyYW5zaXRpb246IDFzIGVhc2Ugb3BhY2l0eTtcbi8vICAgIH1cbi8vXG4vLyAgICAmLndmLWFjdGl2ZSB7XG4vLyAgICAvKiBzdHlsZXMgdG8gdXNlIHdoZW4gd2ViIGZvbnRzIGFyZSBhY3RpdmUgKi9cbi8vICAgICAgICBvcGFjaXR5OiAxO1xuLy8gICAgICAgIHZpc2liaWxpdHk6IHZpc2libGU7XG4vLyAgICAgICAgdHJhbnNpdGlvbjogMXMgZWFzZSBvcGFjaXR5O1xuLy8gICAgfVxuLy9cbi8vICAgICYud2YtaW5hY3RpdmUge1xuLy8gICAgLyogc3R5bGVzIHRvIHVzZSB3aGVuIHdlYiBmb250cyBhcmUgaW5hY3RpdmUgKi9cbi8vICAgIH1cbi8vfVxuXG5cbmJsb2NrcXVvdGUsIHEge1xuXHRxdW90ZXM6IFwiXCIgXCJcIjtcbiAgICBtYXJnaW46IDIwcHggMCAyMHB4IDUwcHg7XG4gICAgYm9yZGVyLWxlZnQ6IDEwcHggc29saWQgJGJyYW5kLWxpZ2h0Z3JleTtcbiAgICBwYWRkaW5nOiAwIDUwcHg7IFxuXHQmOmJlZm9yZSxcblx0JjphZnRlciB7XG5cdFx0Y29udGVudDogXCJcIjtcblx0fVxufVxuXG5ociB7XG5cdGJhY2tncm91bmQtY29sb3I6ICRjb2xvcl9fYmFja2dyb3VuZC1ocjtcblx0Ym9yZGVyOiAwO1xuXHRoZWlnaHQ6IDFweDtcblx0bWFyZ2luOiAzMHB4IDA7IFxufVxuXG5AaW1wb3J0IFwibGlzdHNcIjsgXG5cbmltZyB7XG5cdGhlaWdodDogYXV0bzsgLyogTWFrZSBzdXJlIGltYWdlcyBhcmUgc2NhbGVkIGNvcnJlY3RseS4gKi9cblx0bWF4LXdpZHRoOiAxMDAlOyAvKiBBZGhlcmUgdG8gY29udGFpbmVyIHdpZHRoLiAqL1xufVxuXG4vL0BpbmNsdWRlIHNjcm9sbGJhcnMoLjNlbSwgJGJyYW5kLXByaW1hcnksICNGRkYpO1xuXG4vL2dtYXBzXG4vLy5hY2YtbWFwIHtcbi8vXHR3aWR0aDogMTAwJTtcbi8vXHRoZWlnaHQ6IDQwMHB4O1xuLy9cdGJvcmRlcjogMXB4IHNvbGlkICRicmFuZC1ncmV5O1xuLy9cdG1hcmdpbjogMjBweCAwO1xuLy99XG4vL1xuLy8vKiBmaXhlcyBwb3RlbnRpYWwgdGhlbWUgY3NzIGNvbmZsaWN0ICovXG4vLy5hY2YtbWFwIGltZyB7XG4vLyAgIG1heC13aWR0aDogaW5oZXJpdCAhaW1wb3J0YW50O1xuLy99XG5cbkBpbXBvcnQgXCJyZXVzYWJsZVwiO1xuQGltcG9ydCBcInRhYmxlc1wiO1xuQGltcG9ydCBcImljb25zXCI7XG5cblxuIiwiLy8gVW5vcmRlcmVkIGFuZCBPcmRlcmVkIGxpc3RzXG51bCxcbm9sIHtcbiAgICBtYXJnaW4tdG9wOiAwO1xuICAgIG1hcmdpbi1ib3R0b206IDEuNWVtO1xuICAgIHVsLFxuICAgIG9sIHtcbiAgICAgICAgbWFyZ2luLWJvdHRvbTogMDtcbiAgICB9XG59XG5cbnVsIHtcbiAgICBsaXN0LXN0eWxlOiBkaXNjO1xufVxuXG5vbCB7XG4gICAgbGlzdC1zdHlsZTogZGVjaW1hbDtcbn1cblxubGkgPiB1bCxcbmxpID4gb2wge1xuICAgIG1hcmdpbi1ib3R0b206IDA7XG4gICAgbWFyZ2luLWxlZnQ6IDA7XG59XG5cbmR0IHtcbiAgICBmb250LXdlaWdodDogYm9sZDtcbn1cblxuZGQge1xuICAgIG1hcmdpbjogMCAxLjVlbSAxLjVlbTtcbn0iLCIvL3ZlcnRpY2FsIGNlbnRlcmluZ1xuJXRhYmxlIHtcbiAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB3aWR0aDogMTAwJTtcbn1cblxuJXRhYmxlLWNlbGwge1xuICAgIGRpc3BsYXk6IHRhYmxlLWNlbGw7XG4gICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbn1cbiAgICBcbi8vdGhlIHVzdWFsIGJnIHN1c3BlY3RzXG4lYmFja2dyb3VuZC1zdHlsZXMge1xuICAgIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gICAgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyO1xuICAgIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG59XG5cblxuLy93aWR0aHNcbi53aWR0aC0xMDAge1xuICAgIHdpZHRoOiAxMDAlXG59XG5cbi53aWR0aC03NSB7XG4gICAgd2lkdGg6IDc1JTtcbn1cblxuLndpZHRoLTUwIHtcbiAgICB3aWR0aDogNTAlO1xufVxuXG4ud2lkdGgtMjUge1xuICAgIHdpZHRoOiAyNSU7XG59XG5cbi8vcGFkZGluZ1xuJHBhZGRpbmc6IDQwcHg7XG4ucGFkZGluZyB7XG4gICAgcGFkZGluZzogJHBhZGRpbmc7XG4gICAgXG4gICAgJi1sZWZ0IHtcbiAgICAgICAgcGFkZGluZy1sZWZ0OiAkcGFkZGluZztcbiAgICAgICAgXG4gICAgICAgIEBpbmNsdWRlIG1lZGlhKFwiPD10YWJsZXRcIikge1xuICAgICAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgfSBcbiAgICB9XG4gICAgXG4gICAgJi1yaWdodCB7XG4gICAgICAgIHBhZGRpbmctcmlnaHQ6ICRwYWRkaW5nO1xuICAgICAgICBcbiAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICB9IFxuICAgIH1cbiAgICAgXG4gICAgJi10b3Age1xuICAgICAgICBwYWRkaW5nLXRvcDogJHBhZGRpbmc7XG4gICAgICAgIFxuICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9dGFibGV0XCIpIHtcbiAgICAgICAgICAgIHBhZGRpbmc6IDA7XG4gICAgICAgIH0gXG4gICAgfVxuICAgIFxuICAgICYtYm90dG9tIHtcbiAgICAgICAgcGFkZGluZy1ib3R0b206ICRwYWRkaW5nO1xuICAgICAgICBcbiAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICB9IFxuICAgIH1cbn1cblxuLy9tYXJnaW5zXG4kbWFyZ2luOiA0MHB4O1xuLm1hcmdpbiB7XG4gICAgXG4gICAgJi1sZWZ0IHtcbiAgICAgICAgbWFyZ2luLWxlZnQ6ICRtYXJnaW47XG4gICAgICAgIFxuICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9dGFibGV0XCIpIHtcbiAgICAgICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgfVxuICAgIH1cbiAgICBcbiAgICAmLXJpZ2h0IHtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAkbWFyZ2luO1xuICAgICAgICBcbiAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgIH0gXG4gICAgfVxuICAgIFxuICAgICYtdG9wIHtcbiAgICAgICAgbWFyZ2luLXRvcDogJG1hcmdpbjsgXG4gICAgICAgIFxuICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9dGFibGV0XCIpIHtcbiAgICAgICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgfSBcbiAgICB9XG4gICAgXG4gICAgJi1ib3R0b20ge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAkbWFyZ2luO1xuICAgICAgICBcbiAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgIH1cbiAgICB9XG59XG4gICAgXG4vL2ZvciBhY2Nlc3NpYmlsaXR5XG4uc3Itb25seSB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHdpZHRoOiAxcHg7XG4gICAgaGVpZ2h0OiAxcHg7XG4gICAgcGFkZGluZzogMDtcbiAgICBtYXJnaW46IC0xcHg7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBjbGlwOiByZWN0KDAsMCwwLDApO1xuICAgIGJvcmRlcjogMDtcbn0iLCJAY2hhcnNldCBcIlVURi04XCI7XG5cbi8vICAgICBfICAgICAgICAgICAgXyAgICAgICAgICAgXyAgICAgICAgICAgICAgICAgICAgICAgICAgIF8gX1xuLy8gICAgKF8pICAgICAgICAgIHwgfCAgICAgICAgIHwgfCAgICAgICAgICAgICAgICAgICAgICAgICB8IChfKVxuLy8gICAgIF8gXyBfXyAgIF9fX3wgfF8gICBfICBfX3wgfCBfX18gICBfIF9fIF9fXyAgIF9fXyAgX198IHxfICBfXyBfXG4vLyAgICB8IHwgJ18gXFwgLyBfX3wgfCB8IHwgfC8gX2AgfC8gXyBcXCB8ICdfIGAgXyBcXCAvIF8gXFwvIF9gIHwgfC8gX2AgfFxuLy8gICAgfCB8IHwgfCB8IChfX3wgfCB8X3wgfCAoX3wgfCAgX18vIHwgfCB8IHwgfCB8ICBfXy8gKF98IHwgfCAoX3wgfFxuLy8gICAgfF98X3wgfF98XFxfX198X3xcXF9fLF98XFxfXyxffFxcX19ffCB8X3wgfF98IHxffFxcX19ffFxcX18sX3xffFxcX18sX3xcbi8vXG4vLyAgICAgIFNpbXBsZSwgZWxlZ2FudCBhbmQgbWFpbnRhaW5hYmxlIG1lZGlhIHF1ZXJpZXMgaW4gU2Fzc1xuLy8gICAgICAgICAgICAgICAgICAgICAgICB2MS40Ljhcbi8vXG4vLyAgICAgICAgICAgICAgICBodHRwOi8vaW5jbHVkZS1tZWRpYS5jb21cbi8vXG4vLyAgICAgICAgIEF1dGhvcnM6IEVkdWFyZG8gQm91Y2FzIChAZWR1YXJkb2JvdWNhcylcbi8vICAgICAgICAgICAgICAgICAgSHVnbyBHaXJhdWRlbCAoQGh1Z29naXJhdWRlbClcbi8vXG4vLyAgICAgIFRoaXMgcHJvamVjdCBpcyBsaWNlbnNlZCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIE1JVCBsaWNlbnNlXG5cblxuLy8vL1xuLy8vIGluY2x1ZGUtbWVkaWEgbGlicmFyeSBwdWJsaWMgY29uZmlndXJhdGlvblxuLy8vIEBhdXRob3IgRWR1YXJkbyBCb3VjYXNcbi8vLyBAYWNjZXNzIHB1YmxpY1xuLy8vL1xuXG5cbi8vL1xuLy8vIENyZWF0ZXMgYSBsaXN0IG9mIGdsb2JhbCBicmVha3BvaW50c1xuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIENyZWF0ZXMgYSBzaW5nbGUgYnJlYWtwb2ludCB3aXRoIHRoZSBsYWJlbCBgcGhvbmVgXG4vLy8gICRicmVha3BvaW50czogKCdwaG9uZSc6IDMyMHB4KTtcbi8vL1xuJGJyZWFrcG9pbnRzOiAoXG4gICAgJ21lbnUnOiA3NjhweCwgXG4gICAgJ3NwaG9uZSc6IDMyMHB4LFxuICAgICdwaG9uZSc6IDQ4MHB4LFxuICAgICd0YWJsZXQnOiA3NjhweCxcbiAgICAnbGFwdG9wJzogOTkycHgsXG4gICAgJ2Rlc2t0b3AnOiAxMjAwcHgsXG4gICAgJ2xhcmdlJzogMTQwMHB4LFxuKSAhZGVmYXVsdDtcblxuLy8vXG4vLy8gQ3JlYXRlcyBhIGxpc3Qgb2Ygc3RhdGljIGV4cHJlc3Npb25zIG9yIG1lZGlhIHR5cGVzXG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gQ3JlYXRlcyBhIHNpbmdsZSBtZWRpYSB0eXBlIChzY3JlZW4pXG4vLy8gICRtZWRpYS1leHByZXNzaW9uczogKCdzY3JlZW4nOiAnc2NyZWVuJyk7XG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gQ3JlYXRlcyBhIHN0YXRpYyBleHByZXNzaW9uIHdpdGggbG9naWNhbCBkaXNqdW5jdGlvbiAoT1Igb3BlcmF0b3IpXG4vLy8gICRtZWRpYS1leHByZXNzaW9uczogKFxuLy8vICAgICdyZXRpbmEyeCc6ICcoLXdlYmtpdC1taW4tZGV2aWNlLXBpeGVsLXJhdGlvOiAyKSwgKG1pbi1yZXNvbHV0aW9uOiAxOTJkcGkpJ1xuLy8vICApO1xuLy8vXG4kbWVkaWEtZXhwcmVzc2lvbnM6IChcbiAgJ3NjcmVlbic6ICdzY3JlZW4nLFxuICAncHJpbnQnOiAncHJpbnQnLFxuICAnaGFuZGhlbGQnOiAnaGFuZGhlbGQnLFxuICAnbGFuZHNjYXBlJzogJyhvcmllbnRhdGlvbjogbGFuZHNjYXBlKScsXG4gICdwb3J0cmFpdCc6ICcob3JpZW50YXRpb246IHBvcnRyYWl0KScsXG4gICdyZXRpbmEyeCc6ICcoLXdlYmtpdC1taW4tZGV2aWNlLXBpeGVsLXJhdGlvOiAyKSwgKG1pbi1yZXNvbHV0aW9uOiAxOTJkcGkpLCAobWluLXJlc29sdXRpb246IDJkcHB4KScsXG4gICdyZXRpbmEzeCc6ICcoLXdlYmtpdC1taW4tZGV2aWNlLXBpeGVsLXJhdGlvOiAzKSwgKG1pbi1yZXNvbHV0aW9uOiAzNTBkcGkpLCAobWluLXJlc29sdXRpb246IDNkcHB4KSdcbikgIWRlZmF1bHQ7XG5cblxuLy8vXG4vLy8gRGVmaW5lcyBhIG51bWJlciB0byBiZSBhZGRlZCBvciBzdWJ0cmFjdGVkIGZyb20gZWFjaCB1bml0IHdoZW4gZGVjbGFyaW5nIGJyZWFrcG9pbnRzIHdpdGggZXhjbHVzaXZlIGludGVydmFsc1xuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIEludGVydmFsIGZvciBwaXhlbHMgaXMgZGVmaW5lZCBhcyBgMWAgYnkgZGVmYXVsdFxuLy8vICBAaW5jbHVkZSBtZWRpYSgnPjEyOHB4Jykge31cbi8vL1xuLy8vICAvKiBHZW5lcmF0ZXM6ICovXG4vLy8gIEBtZWRpYSAobWluLXdpZHRoOiAxMjlweCkge31cbi8vL1xuLy8vIEBleGFtcGxlIHNjc3MgLSBJbnRlcnZhbCBmb3IgZW1zIGlzIGRlZmluZWQgYXMgYDAuMDFgIGJ5IGRlZmF1bHRcbi8vLyAgQGluY2x1ZGUgbWVkaWEoJz4yMGVtJykge31cbi8vL1xuLy8vICAvKiBHZW5lcmF0ZXM6ICovXG4vLy8gIEBtZWRpYSAobWluLXdpZHRoOiAyMC4wMWVtKSB7fVxuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIEludGVydmFsIGZvciByZW1zIGlzIGRlZmluZWQgYXMgYDAuMWAgYnkgZGVmYXVsdCwgdG8gYmUgdXNlZCB3aXRoIGBmb250LXNpemU6IDYyLjUlO2Bcbi8vLyAgQGluY2x1ZGUgbWVkaWEoJz4yLjByZW0nKSB7fVxuLy8vXG4vLy8gIC8qIEdlbmVyYXRlczogKi9cbi8vLyAgQG1lZGlhIChtaW4td2lkdGg6IDIuMXJlbSkge31cbi8vL1xuJHVuaXQtaW50ZXJ2YWxzOiAoXG4gICdweCc6IDEsXG4gICdlbSc6IDAuMDEsXG4gICdyZW0nOiAwLjEsXG4gICcnOiAwXG4pICFkZWZhdWx0O1xuXG4vLy9cbi8vLyBEZWZpbmVzIHdoZXRoZXIgc3VwcG9ydCBmb3IgbWVkaWEgcXVlcmllcyBpcyBhdmFpbGFibGUsIHVzZWZ1bCBmb3IgY3JlYXRpbmcgc2VwYXJhdGUgc3R5bGVzaGVldHNcbi8vLyBmb3IgYnJvd3NlcnMgdGhhdCBkb24ndCBzdXBwb3J0IG1lZGlhIHF1ZXJpZXMuXG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gRGlzYWJsZXMgc3VwcG9ydCBmb3IgbWVkaWEgcXVlcmllc1xuLy8vICAkaW0tbWVkaWEtc3VwcG9ydDogZmFsc2U7XG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+PXRhYmxldCcpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIGNvbG9yOiB0b21hdG87XG4vLy8gICAgfVxuLy8vICB9XG4vLy9cbi8vLyAgLyogR2VuZXJhdGVzOiAqL1xuLy8vICAuZm9vIHtcbi8vLyAgICBjb2xvcjogdG9tYXRvO1xuLy8vICB9XG4vLy9cbiRpbS1tZWRpYS1zdXBwb3J0OiB0cnVlICFkZWZhdWx0O1xuXG4vLy9cbi8vLyBTZWxlY3RzIHdoaWNoIGJyZWFrcG9pbnQgdG8gZW11bGF0ZSB3aGVuIHN1cHBvcnQgZm9yIG1lZGlhIHF1ZXJpZXMgaXMgZGlzYWJsZWQuIE1lZGlhIHF1ZXJpZXMgdGhhdCBzdGFydCBhdCBvclxuLy8vIGludGVyY2VwdCB0aGUgYnJlYWtwb2ludCB3aWxsIGJlIGRpc3BsYXllZCwgYW55IG90aGVycyB3aWxsIGJlIGlnbm9yZWQuXG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gVGhpcyBtZWRpYSBxdWVyeSB3aWxsIHNob3cgYmVjYXVzZSBpdCBpbnRlcmNlcHRzIHRoZSBzdGF0aWMgYnJlYWtwb2ludFxuLy8vICAkaW0tbWVkaWEtc3VwcG9ydDogZmFsc2U7XG4vLy8gICRpbS1uby1tZWRpYS1icmVha3BvaW50OiAnZGVza3RvcCc7XG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+PXRhYmxldCcpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIGNvbG9yOiB0b21hdG87XG4vLy8gICAgfVxuLy8vICB9XG4vLy9cbi8vLyAgLyogR2VuZXJhdGVzOiAqL1xuLy8vICAuZm9vIHtcbi8vLyAgICBjb2xvcjogdG9tYXRvO1xuLy8vICB9XG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gVGhpcyBtZWRpYSBxdWVyeSB3aWxsIE5PVCBzaG93IGJlY2F1c2UgaXQgZG9lcyBub3QgaW50ZXJjZXB0IHRoZSBkZXNrdG9wIGJyZWFrcG9pbnRcbi8vLyAgJGltLW1lZGlhLXN1cHBvcnQ6IGZhbHNlO1xuLy8vICAkaW0tbm8tbWVkaWEtYnJlYWtwb2ludDogJ3RhYmxldCc7XG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+PWRlc2t0b3AnKSB7XG4vLy8gICAgLmZvbyB7XG4vLy8gICAgICBjb2xvcjogdG9tYXRvO1xuLy8vICAgIH1cbi8vLyAgfVxuLy8vXG4vLy8gIC8qIE5vIG91dHB1dCAqL1xuLy8vXG4kaW0tbm8tbWVkaWEtYnJlYWtwb2ludDogJ2Rlc2t0b3AnICFkZWZhdWx0O1xuXG4vLy9cbi8vLyBTZWxlY3RzIHdoaWNoIG1lZGlhIGV4cHJlc3Npb25zIGFyZSBhbGxvd2VkIGluIGFuIGV4cHJlc3Npb24gZm9yIGl0IHRvIGJlIHVzZWQgd2hlbiBtZWRpYSBxdWVyaWVzXG4vLy8gYXJlIG5vdCBzdXBwb3J0ZWQuXG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gVGhpcyBtZWRpYSBxdWVyeSB3aWxsIHNob3cgYmVjYXVzZSBpdCBpbnRlcmNlcHRzIHRoZSBzdGF0aWMgYnJlYWtwb2ludCBhbmQgY29udGFpbnMgb25seSBhY2NlcHRlZCBtZWRpYSBleHByZXNzaW9uc1xuLy8vICAkaW0tbWVkaWEtc3VwcG9ydDogZmFsc2U7XG4vLy8gICRpbS1uby1tZWRpYS1icmVha3BvaW50OiAnZGVza3RvcCc7XG4vLy8gICRpbS1uby1tZWRpYS1leHByZXNzaW9uczogKCdzY3JlZW4nKTtcbi8vLyAgQGluY2x1ZGUgbWVkaWEoJz49dGFibGV0JywgJ3NjcmVlbicpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIGNvbG9yOiB0b21hdG87XG4vLy8gICAgfVxuLy8vICB9XG4vLy9cbi8vLyAgIC8qIEdlbmVyYXRlczogKi9cbi8vLyAgIC5mb28ge1xuLy8vICAgICBjb2xvcjogdG9tYXRvO1xuLy8vICAgfVxuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIFRoaXMgbWVkaWEgcXVlcnkgd2lsbCBOT1Qgc2hvdyBiZWNhdXNlIGl0IGludGVyY2VwdHMgdGhlIHN0YXRpYyBicmVha3BvaW50IGJ1dCBjb250YWlucyBhIG1lZGlhIGV4cHJlc3Npb24gdGhhdCBpcyBub3QgYWNjZXB0ZWRcbi8vLyAgJGltLW1lZGlhLXN1cHBvcnQ6IGZhbHNlO1xuLy8vICAkaW0tbm8tbWVkaWEtYnJlYWtwb2ludDogJ2Rlc2t0b3AnO1xuLy8vICAkaW0tbm8tbWVkaWEtZXhwcmVzc2lvbnM6ICgnc2NyZWVuJyk7XG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+PXRhYmxldCcsICdyZXRpbmEyeCcpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIGNvbG9yOiB0b21hdG87XG4vLy8gICAgfVxuLy8vICB9XG4vLy9cbi8vLyAgLyogTm8gb3V0cHV0ICovXG4vLy9cbiRpbS1uby1tZWRpYS1leHByZXNzaW9uczogKCdzY3JlZW4nLCAncG9ydHJhaXQnLCAnbGFuZHNjYXBlJykgIWRlZmF1bHQ7XG5cbi8vLy9cbi8vLyBDcm9zcy1lbmdpbmUgbG9nZ2luZyBlbmdpbmVcbi8vLyBAYXV0aG9yIEh1Z28gR2lyYXVkZWxcbi8vLyBAYWNjZXNzIHByaXZhdGVcbi8vLy9cblxuXG4vLy9cbi8vLyBMb2cgYSBtZXNzYWdlIGVpdGhlciB3aXRoIGBAZXJyb3JgIGlmIHN1cHBvcnRlZFxuLy8vIGVsc2Ugd2l0aCBgQHdhcm5gLCB1c2luZyBgZmVhdHVyZS1leGlzdHMoJ2F0LWVycm9yJylgXG4vLy8gdG8gZGV0ZWN0IHN1cHBvcnQuXG4vLy9cbi8vLyBAcGFyYW0ge1N0cmluZ30gJG1lc3NhZ2UgLSBNZXNzYWdlIHRvIGxvZ1xuLy8vXG5AZnVuY3Rpb24gbG9nKCRtZXNzYWdlKSB7XG4gIEBpZiBmZWF0dXJlLWV4aXN0cygnYXQtZXJyb3InKSB7XG4gICAgQGVycm9yICRtZXNzYWdlO1xuICB9IEBlbHNlIHtcbiAgICBAd2FybiAkbWVzc2FnZTtcbiAgICAkXzogbm9vcCgpO1xuICB9XG5cbiAgQHJldHVybiAkbWVzc2FnZTtcbn1cblxuXG4vLy9cbi8vLyBXcmFwcGVyIG1peGluIGZvciB0aGUgbG9nIGZ1bmN0aW9uIHNvIGl0IGNhbiBiZSB1c2VkIHdpdGggYSBtb3JlIGZyaWVuZGx5XG4vLy8gQVBJIHRoYW4gYEBpZiBsb2coJy4uJykge31gIG9yIGAkXzogbG9nKCcuLicpYC4gQmFzaWNhbGx5LCB1c2UgdGhlIGZ1bmN0aW9uXG4vLy8gd2l0aGluIGZ1bmN0aW9ucyBiZWNhdXNlIGl0IGlzIG5vdCBwb3NzaWJsZSB0byBpbmNsdWRlIGEgbWl4aW4gaW4gYSBmdW5jdGlvblxuLy8vIGFuZCB1c2UgdGhlIG1peGluIGV2ZXJ5d2hlcmUgZWxzZSBiZWNhdXNlIGl0J3MgbXVjaCBtb3JlIGVsZWdhbnQuXG4vLy9cbi8vLyBAcGFyYW0ge1N0cmluZ30gJG1lc3NhZ2UgLSBNZXNzYWdlIHRvIGxvZ1xuLy8vXG5AbWl4aW4gbG9nKCRtZXNzYWdlKSB7XG4gIEBpZiBsb2coJG1lc3NhZ2UpIHt9XG59XG5cblxuLy8vXG4vLy8gRnVuY3Rpb24gd2l0aCBubyBgQHJldHVybmAgY2FsbGVkIG5leHQgdG8gYEB3YXJuYCBpbiBTYXNzIDMuM1xuLy8vIHRvIHRyaWdnZXIgYSBjb21waWxpbmcgZXJyb3IgYW5kIHN0b3AgdGhlIHByb2Nlc3MuXG4vLy9cbkBmdW5jdGlvbiBub29wKCkge31cblxuLy8vXG4vLy8gRGV0ZXJtaW5lcyB3aGV0aGVyIGEgbGlzdCBvZiBjb25kaXRpb25zIGlzIGludGVyY2VwdGVkIGJ5IHRoZSBzdGF0aWMgYnJlYWtwb2ludC5cbi8vL1xuLy8vIEBwYXJhbSB7QXJnbGlzdH0gICAkY29uZGl0aW9ucyAgLSBNZWRpYSBxdWVyeSBjb25kaXRpb25zXG4vLy9cbi8vLyBAcmV0dXJuIHtCb29sZWFufSAtIFJldHVybnMgdHJ1ZSBpZiB0aGUgY29uZGl0aW9ucyBhcmUgaW50ZXJjZXB0ZWQgYnkgdGhlIHN0YXRpYyBicmVha3BvaW50XG4vLy9cbkBmdW5jdGlvbiBpbS1pbnRlcmNlcHRzLXN0YXRpYy1icmVha3BvaW50KCRjb25kaXRpb25zLi4uKSB7XG4gICRuby1tZWRpYS1icmVha3BvaW50LXZhbHVlOiBtYXAtZ2V0KCRicmVha3BvaW50cywgJGltLW5vLW1lZGlhLWJyZWFrcG9pbnQpO1xuXG4gIEBpZiBub3QgJG5vLW1lZGlhLWJyZWFrcG9pbnQtdmFsdWUge1xuICAgIEBpZiBsb2coJ2AjeyRpbS1uby1tZWRpYS1icmVha3BvaW50fWAgaXMgbm90IGEgdmFsaWQgYnJlYWtwb2ludC4nKSB7fVxuICB9XG5cbiAgQGVhY2ggJGNvbmRpdGlvbiBpbiAkY29uZGl0aW9ucyB7XG4gICAgQGlmIG5vdCBtYXAtaGFzLWtleSgkbWVkaWEtZXhwcmVzc2lvbnMsICRjb25kaXRpb24pIHtcbiAgICAgICRvcGVyYXRvcjogZ2V0LWV4cHJlc3Npb24tb3BlcmF0b3IoJGNvbmRpdGlvbik7XG4gICAgICAkcHJlZml4OiBnZXQtZXhwcmVzc2lvbi1wcmVmaXgoJG9wZXJhdG9yKTtcbiAgICAgICR2YWx1ZTogZ2V0LWV4cHJlc3Npb24tdmFsdWUoJGNvbmRpdGlvbiwgJG9wZXJhdG9yKTtcblxuICAgICAgLy8gc2Nzcy1saW50OmRpc2FibGUgU3BhY2VBcm91bmRPcGVyYXRvclxuICAgICAgQGlmICgkcHJlZml4ID09ICdtYXgnIGFuZCAkdmFsdWUgPD0gJG5vLW1lZGlhLWJyZWFrcG9pbnQtdmFsdWUpIG9yXG4gICAgICAgICAgKCRwcmVmaXggPT0gJ21pbicgYW5kICR2YWx1ZSA+ICRuby1tZWRpYS1icmVha3BvaW50LXZhbHVlKSB7XG4gICAgICAgIEByZXR1cm4gZmFsc2U7XG4gICAgICB9XG4gICAgfSBAZWxzZSBpZiBub3QgaW5kZXgoJGltLW5vLW1lZGlhLWV4cHJlc3Npb25zLCAkY29uZGl0aW9uKSB7XG4gICAgICBAcmV0dXJuIGZhbHNlO1xuICAgIH1cbiAgfVxuXG4gIEByZXR1cm4gdHJ1ZTtcbn1cblxuLy8vL1xuLy8vIFBhcnNpbmcgZW5naW5lXG4vLy8gQGF1dGhvciBIdWdvIEdpcmF1ZGVsXG4vLy8gQGFjY2VzcyBwcml2YXRlXG4vLy8vXG5cblxuLy8vXG4vLy8gR2V0IG9wZXJhdG9yIG9mIGFuIGV4cHJlc3Npb25cbi8vL1xuLy8vIEBwYXJhbSB7U3RyaW5nfSAkZXhwcmVzc2lvbiAtIEV4cHJlc3Npb24gdG8gZXh0cmFjdCBvcGVyYXRvciBmcm9tXG4vLy9cbi8vLyBAcmV0dXJuIHtTdHJpbmd9IC0gQW55IG9mIGA+PWAsIGA+YCwgYDw9YCwgYDxgLCBg4omlYCwgYOKJpGBcbi8vL1xuQGZ1bmN0aW9uIGdldC1leHByZXNzaW9uLW9wZXJhdG9yKCRleHByZXNzaW9uKSB7XG4gIEBlYWNoICRvcGVyYXRvciBpbiAoJz49JywgJz4nLCAnPD0nLCAnPCcsICfiiaUnLCAn4omkJykge1xuICAgIEBpZiBzdHItaW5kZXgoJGV4cHJlc3Npb24sICRvcGVyYXRvcikge1xuICAgICAgQHJldHVybiAkb3BlcmF0b3I7XG4gICAgfVxuICB9XG5cbiAgLy8gSXQgaXMgbm90IHBvc3NpYmxlIHRvIGluY2x1ZGUgYSBtaXhpbiBpbnNpZGUgYSBmdW5jdGlvbiwgc28gd2UgaGF2ZSB0b1xuICAvLyByZWx5IG9uIHRoZSBgbG9nKC4uKWAgZnVuY3Rpb24gcmF0aGVyIHRoYW4gdGhlIGBsb2coLi4pYCBtaXhpbi4gQmVjYXVzZVxuICAvLyBmdW5jdGlvbnMgY2Fubm90IGJlIGNhbGxlZCBhbnl3aGVyZSBpbiBTYXNzLCB3ZSBuZWVkIHRvIGhhY2sgdGhlIGNhbGwgaW5cbiAgLy8gYSBkdW1teSB2YXJpYWJsZSwgc3VjaCBhcyBgJF9gLiBJZiBhbnlib2R5IGV2ZXIgcmFpc2UgYSBzY29waW5nIGlzc3VlIHdpdGhcbiAgLy8gU2FzcyAzLjMsIGNoYW5nZSB0aGlzIGxpbmUgaW4gYEBpZiBsb2coLi4pIHt9YCBpbnN0ZWFkLlxuICAkXzogbG9nKCdObyBvcGVyYXRvciBmb3VuZCBpbiBgI3skZXhwcmVzc2lvbn1gLicpO1xufVxuXG5cbi8vL1xuLy8vIEdldCBkaW1lbnNpb24gb2YgYW4gZXhwcmVzc2lvbiwgYmFzZWQgb24gYSBmb3VuZCBvcGVyYXRvclxuLy8vXG4vLy8gQHBhcmFtIHtTdHJpbmd9ICRleHByZXNzaW9uIC0gRXhwcmVzc2lvbiB0byBleHRyYWN0IGRpbWVuc2lvbiBmcm9tXG4vLy8gQHBhcmFtIHtTdHJpbmd9ICRvcGVyYXRvciAtIE9wZXJhdG9yIGZyb20gYCRleHByZXNzaW9uYFxuLy8vXG4vLy8gQHJldHVybiB7U3RyaW5nfSAtIGB3aWR0aGAgb3IgYGhlaWdodGAgKG9yIHBvdGVudGlhbGx5IGFueXRoaW5nIGVsc2UpXG4vLy9cbkBmdW5jdGlvbiBnZXQtZXhwcmVzc2lvbi1kaW1lbnNpb24oJGV4cHJlc3Npb24sICRvcGVyYXRvcikge1xuICAkb3BlcmF0b3ItaW5kZXg6IHN0ci1pbmRleCgkZXhwcmVzc2lvbiwgJG9wZXJhdG9yKTtcbiAgJHBhcnNlZC1kaW1lbnNpb246IHN0ci1zbGljZSgkZXhwcmVzc2lvbiwgMCwgJG9wZXJhdG9yLWluZGV4IC0gMSk7XG4gICRkaW1lbnNpb246ICd3aWR0aCc7XG5cbiAgQGlmIHN0ci1sZW5ndGgoJHBhcnNlZC1kaW1lbnNpb24pID4gMCB7XG4gICAgJGRpbWVuc2lvbjogJHBhcnNlZC1kaW1lbnNpb247XG4gIH1cblxuICBAcmV0dXJuICRkaW1lbnNpb247XG59XG5cblxuLy8vXG4vLy8gR2V0IGRpbWVuc2lvbiBwcmVmaXggYmFzZWQgb24gYW4gb3BlcmF0b3Jcbi8vL1xuLy8vIEBwYXJhbSB7U3RyaW5nfSAkb3BlcmF0b3IgLSBPcGVyYXRvclxuLy8vXG4vLy8gQHJldHVybiB7U3RyaW5nfSAtIGBtaW5gIG9yIGBtYXhgXG4vLy9cbkBmdW5jdGlvbiBnZXQtZXhwcmVzc2lvbi1wcmVmaXgoJG9wZXJhdG9yKSB7XG4gIEByZXR1cm4gaWYoaW5kZXgoKCc8JywgJzw9JywgJ+KJpCcpLCAkb3BlcmF0b3IpLCAnbWF4JywgJ21pbicpO1xufVxuXG5cbi8vL1xuLy8vIEdldCB2YWx1ZSBvZiBhbiBleHByZXNzaW9uLCBiYXNlZCBvbiBhIGZvdW5kIG9wZXJhdG9yXG4vLy9cbi8vLyBAcGFyYW0ge1N0cmluZ30gJGV4cHJlc3Npb24gLSBFeHByZXNzaW9uIHRvIGV4dHJhY3QgdmFsdWUgZnJvbVxuLy8vIEBwYXJhbSB7U3RyaW5nfSAkb3BlcmF0b3IgLSBPcGVyYXRvciBmcm9tIGAkZXhwcmVzc2lvbmBcbi8vL1xuLy8vIEByZXR1cm4ge051bWJlcn0gLSBBIG51bWVyaWMgdmFsdWVcbi8vL1xuQGZ1bmN0aW9uIGdldC1leHByZXNzaW9uLXZhbHVlKCRleHByZXNzaW9uLCAkb3BlcmF0b3IpIHtcbiAgJG9wZXJhdG9yLWluZGV4OiBzdHItaW5kZXgoJGV4cHJlc3Npb24sICRvcGVyYXRvcik7XG4gICR2YWx1ZTogc3RyLXNsaWNlKCRleHByZXNzaW9uLCAkb3BlcmF0b3ItaW5kZXggKyBzdHItbGVuZ3RoKCRvcGVyYXRvcikpO1xuXG4gIEBpZiBtYXAtaGFzLWtleSgkYnJlYWtwb2ludHMsICR2YWx1ZSkge1xuICAgICR2YWx1ZTogbWFwLWdldCgkYnJlYWtwb2ludHMsICR2YWx1ZSk7XG4gIH0gQGVsc2Uge1xuICAgICR2YWx1ZTogdG8tbnVtYmVyKCR2YWx1ZSk7XG4gIH1cblxuICAkaW50ZXJ2YWw6IG1hcC1nZXQoJHVuaXQtaW50ZXJ2YWxzLCB1bml0KCR2YWx1ZSkpO1xuXG4gIEBpZiBub3QgJGludGVydmFsIHtcbiAgICAvLyBJdCBpcyBub3QgcG9zc2libGUgdG8gaW5jbHVkZSBhIG1peGluIGluc2lkZSBhIGZ1bmN0aW9uLCBzbyB3ZSBoYXZlIHRvXG4gICAgLy8gcmVseSBvbiB0aGUgYGxvZyguLilgIGZ1bmN0aW9uIHJhdGhlciB0aGFuIHRoZSBgbG9nKC4uKWAgbWl4aW4uIEJlY2F1c2VcbiAgICAvLyBmdW5jdGlvbnMgY2Fubm90IGJlIGNhbGxlZCBhbnl3aGVyZSBpbiBTYXNzLCB3ZSBuZWVkIHRvIGhhY2sgdGhlIGNhbGwgaW5cbiAgICAvLyBhIGR1bW15IHZhcmlhYmxlLCBzdWNoIGFzIGAkX2AuIElmIGFueWJvZHkgZXZlciByYWlzZSBhIHNjb3BpbmcgaXNzdWUgd2l0aFxuICAgIC8vIFNhc3MgMy4zLCBjaGFuZ2UgdGhpcyBsaW5lIGluIGBAaWYgbG9nKC4uKSB7fWAgaW5zdGVhZC5cbiAgICAkXzogbG9nKCdVbmtub3duIHVuaXQgYCN7dW5pdCgkdmFsdWUpfWAuJyk7XG4gIH1cblxuICBAaWYgJG9wZXJhdG9yID09ICc+JyB7XG4gICAgJHZhbHVlOiAkdmFsdWUgKyAkaW50ZXJ2YWw7XG4gIH0gQGVsc2UgaWYgJG9wZXJhdG9yID09ICc8JyB7XG4gICAgJHZhbHVlOiAkdmFsdWUgLSAkaW50ZXJ2YWw7XG4gIH1cblxuICBAcmV0dXJuICR2YWx1ZTtcbn1cblxuXG4vLy9cbi8vLyBQYXJzZSBhbiBleHByZXNzaW9uIHRvIHJldHVybiBhIHZhbGlkIG1lZGlhLXF1ZXJ5IGV4cHJlc3Npb25cbi8vL1xuLy8vIEBwYXJhbSB7U3RyaW5nfSAkZXhwcmVzc2lvbiAtIEV4cHJlc3Npb24gdG8gcGFyc2Vcbi8vL1xuLy8vIEByZXR1cm4ge1N0cmluZ30gLSBWYWxpZCBtZWRpYSBxdWVyeVxuLy8vXG5AZnVuY3Rpb24gcGFyc2UtZXhwcmVzc2lvbigkZXhwcmVzc2lvbikge1xuICAvLyBJZiBpdCBpcyBwYXJ0IG9mICRtZWRpYS1leHByZXNzaW9ucywgaXQgaGFzIG5vIG9wZXJhdG9yXG4gIC8vIHRoZW4gdGhlcmUgaXMgbm8gbmVlZCB0byBnbyBhbnkgZnVydGhlciwganVzdCByZXR1cm4gdGhlIHZhbHVlXG4gIEBpZiBtYXAtaGFzLWtleSgkbWVkaWEtZXhwcmVzc2lvbnMsICRleHByZXNzaW9uKSB7XG4gICAgQHJldHVybiBtYXAtZ2V0KCRtZWRpYS1leHByZXNzaW9ucywgJGV4cHJlc3Npb24pO1xuICB9XG5cbiAgJG9wZXJhdG9yOiBnZXQtZXhwcmVzc2lvbi1vcGVyYXRvcigkZXhwcmVzc2lvbik7XG4gICRkaW1lbnNpb246IGdldC1leHByZXNzaW9uLWRpbWVuc2lvbigkZXhwcmVzc2lvbiwgJG9wZXJhdG9yKTtcbiAgJHByZWZpeDogZ2V0LWV4cHJlc3Npb24tcHJlZml4KCRvcGVyYXRvcik7XG4gICR2YWx1ZTogZ2V0LWV4cHJlc3Npb24tdmFsdWUoJGV4cHJlc3Npb24sICRvcGVyYXRvcik7XG5cbiAgQHJldHVybiAnKCN7JHByZWZpeH0tI3skZGltZW5zaW9ufTogI3skdmFsdWV9KSc7XG59XG5cbi8vL1xuLy8vIFNsaWNlIGAkbGlzdGAgYmV0d2VlbiBgJHN0YXJ0YCBhbmQgYCRlbmRgIGluZGV4ZXNcbi8vL1xuLy8vIEBhY2Nlc3MgcHJpdmF0ZVxuLy8vXG4vLy8gQHBhcmFtIHtMaXN0fSAkbGlzdCAtIExpc3QgdG8gc2xpY2Vcbi8vLyBAcGFyYW0ge051bWJlcn0gJHN0YXJ0IFsxXSAtIFN0YXJ0IGluZGV4XG4vLy8gQHBhcmFtIHtOdW1iZXJ9ICRlbmQgW2xlbmd0aCgkbGlzdCldIC0gRW5kIGluZGV4XG4vLy9cbi8vLyBAcmV0dXJuIHtMaXN0fSBTbGljZWQgbGlzdFxuLy8vXG5AZnVuY3Rpb24gc2xpY2UoJGxpc3QsICRzdGFydDogMSwgJGVuZDogbGVuZ3RoKCRsaXN0KSkge1xuICBAaWYgbGVuZ3RoKCRsaXN0KSA8IDEgb3IgJHN0YXJ0ID4gJGVuZCB7XG4gICAgQHJldHVybiAoKTtcbiAgfVxuXG4gICRyZXN1bHQ6ICgpO1xuXG4gIEBmb3IgJGkgZnJvbSAkc3RhcnQgdGhyb3VnaCAkZW5kIHtcbiAgICAkcmVzdWx0OiBhcHBlbmQoJHJlc3VsdCwgbnRoKCRsaXN0LCAkaSkpO1xuICB9XG5cbiAgQHJldHVybiAkcmVzdWx0O1xufVxuXG4vLy8vXG4vLy8gU3RyaW5nIHRvIG51bWJlciBjb252ZXJ0ZXJcbi8vLyBAYXV0aG9yIEh1Z28gR2lyYXVkZWxcbi8vLyBAYWNjZXNzIHByaXZhdGVcbi8vLy9cblxuXG4vLy9cbi8vLyBDYXN0cyBhIHN0cmluZyBpbnRvIGEgbnVtYmVyXG4vLy9cbi8vLyBAcGFyYW0ge1N0cmluZyB8IE51bWJlcn0gJHZhbHVlIC0gVmFsdWUgdG8gYmUgcGFyc2VkXG4vLy9cbi8vLyBAcmV0dXJuIHtOdW1iZXJ9XG4vLy9cbkBmdW5jdGlvbiB0by1udW1iZXIoJHZhbHVlKSB7XG4gIEBpZiB0eXBlLW9mKCR2YWx1ZSkgPT0gJ251bWJlcicge1xuICAgIEByZXR1cm4gJHZhbHVlO1xuICB9IEBlbHNlIGlmIHR5cGUtb2YoJHZhbHVlKSAhPSAnc3RyaW5nJyB7XG4gICAgJF86IGxvZygnVmFsdWUgZm9yIGB0by1udW1iZXJgIHNob3VsZCBiZSBhIG51bWJlciBvciBhIHN0cmluZy4nKTtcbiAgfVxuXG4gICRmaXJzdC1jaGFyYWN0ZXI6IHN0ci1zbGljZSgkdmFsdWUsIDEsIDEpO1xuICAkcmVzdWx0OiAwO1xuICAkZGlnaXRzOiAwO1xuICAkbWludXM6ICgkZmlyc3QtY2hhcmFjdGVyID09ICctJyk7XG4gICRudW1iZXJzOiAoJzAnOiAwLCAnMSc6IDEsICcyJzogMiwgJzMnOiAzLCAnNCc6IDQsICc1JzogNSwgJzYnOiA2LCAnNyc6IDcsICc4JzogOCwgJzknOiA5KTtcblxuICAvLyBSZW1vdmUgKy8tIHNpZ24gaWYgcHJlc2VudCBhdCBmaXJzdCBjaGFyYWN0ZXJcbiAgQGlmICgkZmlyc3QtY2hhcmFjdGVyID09ICcrJyBvciAkZmlyc3QtY2hhcmFjdGVyID09ICctJykge1xuICAgICR2YWx1ZTogc3RyLXNsaWNlKCR2YWx1ZSwgMik7XG4gIH1cblxuICBAZm9yICRpIGZyb20gMSB0aHJvdWdoIHN0ci1sZW5ndGgoJHZhbHVlKSB7XG4gICAgJGNoYXJhY3Rlcjogc3RyLXNsaWNlKCR2YWx1ZSwgJGksICRpKTtcblxuICAgIEBpZiBub3QgKGluZGV4KG1hcC1rZXlzKCRudW1iZXJzKSwgJGNoYXJhY3Rlcikgb3IgJGNoYXJhY3RlciA9PSAnLicpIHtcbiAgICAgIEByZXR1cm4gdG8tbGVuZ3RoKGlmKCRtaW51cywgLSRyZXN1bHQsICRyZXN1bHQpLCBzdHItc2xpY2UoJHZhbHVlLCAkaSkpXG4gICAgfVxuXG4gICAgQGlmICRjaGFyYWN0ZXIgPT0gJy4nIHtcbiAgICAgICRkaWdpdHM6IDE7XG4gICAgfSBAZWxzZSBpZiAkZGlnaXRzID09IDAge1xuICAgICAgJHJlc3VsdDogJHJlc3VsdCAqIDEwICsgbWFwLWdldCgkbnVtYmVycywgJGNoYXJhY3Rlcik7XG4gICAgfSBAZWxzZSB7XG4gICAgICAkZGlnaXRzOiAkZGlnaXRzICogMTA7XG4gICAgICAkcmVzdWx0OiAkcmVzdWx0ICsgbWFwLWdldCgkbnVtYmVycywgJGNoYXJhY3RlcikgLyAkZGlnaXRzO1xuICAgIH1cbiAgfVxuXG4gIEByZXR1cm4gaWYoJG1pbnVzLCAtJHJlc3VsdCwgJHJlc3VsdCk7XG59XG5cblxuLy8vXG4vLy8gQWRkIGAkdW5pdGAgdG8gYCR2YWx1ZWBcbi8vL1xuLy8vIEBwYXJhbSB7TnVtYmVyfSAkdmFsdWUgLSBWYWx1ZSB0byBhZGQgdW5pdCB0b1xuLy8vIEBwYXJhbSB7U3RyaW5nfSAkdW5pdCAtIFN0cmluZyByZXByZXNlbnRhdGlvbiBvZiB0aGUgdW5pdFxuLy8vXG4vLy8gQHJldHVybiB7TnVtYmVyfSAtIGAkdmFsdWVgIGV4cHJlc3NlZCBpbiBgJHVuaXRgXG4vLy9cbkBmdW5jdGlvbiB0by1sZW5ndGgoJHZhbHVlLCAkdW5pdCkge1xuICAkdW5pdHM6ICgncHgnOiAxcHgsICdjbSc6IDFjbSwgJ21tJzogMW1tLCAnJSc6IDElLCAnY2gnOiAxY2gsICdwYyc6IDFwYywgJ2luJzogMWluLCAnZW0nOiAxZW0sICdyZW0nOiAxcmVtLCAncHQnOiAxcHQsICdleCc6IDFleCwgJ3Z3JzogMXZ3LCAndmgnOiAxdmgsICd2bWluJzogMXZtaW4sICd2bWF4JzogMXZtYXgpO1xuXG4gIEBpZiBub3QgaW5kZXgobWFwLWtleXMoJHVuaXRzKSwgJHVuaXQpIHtcbiAgICAkXzogbG9nKCdJbnZhbGlkIHVuaXQgYCN7JHVuaXR9YC4nKTtcbiAgfVxuXG4gIEByZXR1cm4gJHZhbHVlICogbWFwLWdldCgkdW5pdHMsICR1bml0KTtcbn1cblxuLy8vXG4vLy8gVGhpcyBtaXhpbiBhaW1zIGF0IHJlZGVmaW5pbmcgdGhlIGNvbmZpZ3VyYXRpb24ganVzdCBmb3IgdGhlIHNjb3BlIG9mXG4vLy8gdGhlIGNhbGwuIEl0IGlzIGhlbHBmdWwgd2hlbiBoYXZpbmcgYSBjb21wb25lbnQgbmVlZGluZyBhbiBleHRlbmRlZFxuLy8vIGNvbmZpZ3VyYXRpb24gc3VjaCBhcyBjdXN0b20gYnJlYWtwb2ludHMgKHJlZmVycmVkIHRvIGFzIHR3ZWFrcG9pbnRzKVxuLy8vIGZvciBpbnN0YW5jZS5cbi8vL1xuLy8vIEBhdXRob3IgSHVnbyBHaXJhdWRlbFxuLy8vXG4vLy8gQHBhcmFtIHtNYXB9ICR0d2Vha3BvaW50cyBbKCldIC0gTWFwIG9mIHR3ZWFrcG9pbnRzIHRvIGJlIG1lcmdlZCB3aXRoIGAkYnJlYWtwb2ludHNgXG4vLy8gQHBhcmFtIHtNYXB9ICR0d2Vhay1tZWRpYS1leHByZXNzaW9ucyBbKCldIC0gTWFwIG9mIHR3ZWFrZWQgbWVkaWEgZXhwcmVzc2lvbnMgdG8gYmUgbWVyZ2VkIHdpdGggYCRtZWRpYS1leHByZXNzaW9uYFxuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIEV4dGVuZCB0aGUgZ2xvYmFsIGJyZWFrcG9pbnRzIHdpdGggYSB0d2Vha3BvaW50XG4vLy8gIEBpbmNsdWRlIG1lZGlhLWNvbnRleHQoKCdjdXN0b20nOiA2NzhweCkpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIEBpbmNsdWRlIG1lZGlhKCc+cGhvbmUnLCAnPD1jdXN0b20nKSB7XG4vLy8gICAgICAgLy8gLi4uXG4vLy8gICAgICB9XG4vLy8gICAgfVxuLy8vICB9XG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gRXh0ZW5kIHRoZSBnbG9iYWwgbWVkaWEgZXhwcmVzc2lvbnMgd2l0aCBhIGN1c3RvbSBvbmVcbi8vLyAgQGluY2x1ZGUgbWVkaWEtY29udGV4dCgkdHdlYWstbWVkaWEtZXhwcmVzc2lvbnM6ICgnYWxsJzogJ2FsbCcpKSB7XG4vLy8gICAgLmZvbyB7XG4vLy8gICAgICBAaW5jbHVkZSBtZWRpYSgnYWxsJywgJz5waG9uZScpIHtcbi8vLyAgICAgICAvLyAuLi5cbi8vLyAgICAgIH1cbi8vLyAgICB9XG4vLy8gIH1cbi8vL1xuLy8vIEBleGFtcGxlIHNjc3MgLSBFeHRlbmQgYm90aCBjb25maWd1cmF0aW9uIG1hcHNcbi8vLyAgQGluY2x1ZGUgbWVkaWEtY29udGV4dCgoJ2N1c3RvbSc6IDY3OHB4KSwgKCdhbGwnOiAnYWxsJykpIHtcbi8vLyAgICAuZm9vIHtcbi8vLyAgICAgIEBpbmNsdWRlIG1lZGlhKCdhbGwnLCAnPnBob25lJywgJzw9Y3VzdG9tJykge1xuLy8vICAgICAgIC8vIC4uLlxuLy8vICAgICAgfVxuLy8vICAgIH1cbi8vLyAgfVxuLy8vXG5AbWl4aW4gbWVkaWEtY29udGV4dCgkdHdlYWtwb2ludHM6ICgpLCAkdHdlYWstbWVkaWEtZXhwcmVzc2lvbnM6ICgpKSB7XG4gIC8vIFNhdmUgZ2xvYmFsIGNvbmZpZ3VyYXRpb25cbiAgJGdsb2JhbC1icmVha3BvaW50czogJGJyZWFrcG9pbnRzO1xuICAkZ2xvYmFsLW1lZGlhLWV4cHJlc3Npb25zOiAkbWVkaWEtZXhwcmVzc2lvbnM7XG5cbiAgLy8gVXBkYXRlIGdsb2JhbCBjb25maWd1cmF0aW9uXG4gICRicmVha3BvaW50czogbWFwLW1lcmdlKCRicmVha3BvaW50cywgJHR3ZWFrcG9pbnRzKSAhZ2xvYmFsO1xuICAkbWVkaWEtZXhwcmVzc2lvbnM6IG1hcC1tZXJnZSgkbWVkaWEtZXhwcmVzc2lvbnMsICR0d2Vhay1tZWRpYS1leHByZXNzaW9ucykgIWdsb2JhbDtcblxuICBAY29udGVudDtcblxuICAvLyBSZXN0b3JlIGdsb2JhbCBjb25maWd1cmF0aW9uXG4gICRicmVha3BvaW50czogJGdsb2JhbC1icmVha3BvaW50cyAhZ2xvYmFsO1xuICAkbWVkaWEtZXhwcmVzc2lvbnM6ICRnbG9iYWwtbWVkaWEtZXhwcmVzc2lvbnMgIWdsb2JhbDtcbn1cblxuLy8vL1xuLy8vIGluY2x1ZGUtbWVkaWEgcHVibGljIGV4cG9zZWQgQVBJXG4vLy8gQGF1dGhvciBFZHVhcmRvIEJvdWNhc1xuLy8vIEBhY2Nlc3MgcHVibGljXG4vLy8vXG5cblxuLy8vXG4vLy8gR2VuZXJhdGVzIGEgbWVkaWEgcXVlcnkgYmFzZWQgb24gYSBsaXN0IG9mIGNvbmRpdGlvbnNcbi8vL1xuLy8vIEBwYXJhbSB7QXJnbGlzdH0gICAkY29uZGl0aW9ucyAgLSBNZWRpYSBxdWVyeSBjb25kaXRpb25zXG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gV2l0aCBhIHNpbmdsZSBzZXQgYnJlYWtwb2ludFxuLy8vICBAaW5jbHVkZSBtZWRpYSgnPnBob25lJykgeyB9XG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gV2l0aCB0d28gc2V0IGJyZWFrcG9pbnRzXG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+cGhvbmUnLCAnPD10YWJsZXQnKSB7IH1cbi8vL1xuLy8vIEBleGFtcGxlIHNjc3MgLSBXaXRoIGN1c3RvbSB2YWx1ZXNcbi8vLyAgQGluY2x1ZGUgbWVkaWEoJz49MzU4cHgnLCAnPDg1MHB4JykgeyB9XG4vLy9cbi8vLyBAZXhhbXBsZSBzY3NzIC0gV2l0aCBzZXQgYnJlYWtwb2ludHMgd2l0aCBjdXN0b20gdmFsdWVzXG4vLy8gIEBpbmNsdWRlIG1lZGlhKCc+ZGVza3RvcCcsICc8PTEzNTBweCcpIHsgfVxuLy8vXG4vLy8gQGV4YW1wbGUgc2NzcyAtIFdpdGggYSBzdGF0aWMgZXhwcmVzc2lvblxuLy8vICBAaW5jbHVkZSBtZWRpYSgncmV0aW5hMngnKSB7IH1cbi8vL1xuLy8vIEBleGFtcGxlIHNjc3MgLSBNaXhpbmcgZXZlcnl0aGluZ1xuLy8vICBAaW5jbHVkZSBtZWRpYSgnPj0zNTBweCcsICc8dGFibGV0JywgJ3JldGluYTN4JykgeyB9XG4vLy9cbkBtaXhpbiBtZWRpYSgkY29uZGl0aW9ucy4uLikge1xuICAvLyBzY3NzLWxpbnQ6ZGlzYWJsZSBTcGFjZUFyb3VuZE9wZXJhdG9yXG4gIEBpZiAoJGltLW1lZGlhLXN1cHBvcnQgYW5kIGxlbmd0aCgkY29uZGl0aW9ucykgPT0gMCkgb3JcbiAgICAgIChub3QgJGltLW1lZGlhLXN1cHBvcnQgYW5kIGltLWludGVyY2VwdHMtc3RhdGljLWJyZWFrcG9pbnQoJGNvbmRpdGlvbnMuLi4pKSB7XG4gICAgQGNvbnRlbnQ7XG4gIH0gQGVsc2UgaWYgKCRpbS1tZWRpYS1zdXBwb3J0IGFuZCBsZW5ndGgoJGNvbmRpdGlvbnMpID4gMCkge1xuICAgIEBtZWRpYSAje3VucXVvdGUocGFyc2UtZXhwcmVzc2lvbihudGgoJGNvbmRpdGlvbnMsIDEpKSl9IHtcbiAgICAgIC8vIFJlY3Vyc2l2ZSBjYWxsXG4gICAgICBAaW5jbHVkZSBtZWRpYShzbGljZSgkY29uZGl0aW9ucywgMikuLi4pIHtcbiAgICAgICAgQGNvbnRlbnQ7XG4gICAgICB9XG4gICAgfVxuICB9XG59IiwidGFibGUge1xuXHRtYXJnaW46IDAgMCAxLjVlbTtcblx0d2lkdGg6IDEwMCU7XG59IiwiJGljb24tY29sb3I6ICRicmFuZC1wcmltYXJ5O1xuXG4uaWNvbiB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuLmljb246YmVmb3JlLCAuaWNvbjphZnRlciB7XG4gICAgY29udGVudDogJyc7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4vL2FuIGFycm93XG4uYXJyb3cge1xuXHRib3JkZXI6IDFweCBzb2xpZCAkaWNvbi1jb2xvcjtcblx0Ym9yZGVyLXdpZHRoOiAwIDAgMXB4IDFweDtcblx0d2lkdGg6IDEwcHg7XG5cdGhlaWdodDogMTBweDtcblx0bWFyZ2luOjVweDtcblx0ZGlzcGxheTogaW5saW5lLWJsb2NrO1xuXHRcblx0Ji1kb3duIHtcblx0XHRAZXh0ZW5kIC5hcnJvdztcblx0XHR0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuXHR9XG5cdCYtdXAge1xuXHRcdEBleHRlbmQgLmFycm93O1xuXHRcdHRyYW5zZm9ybTogcm90YXRlKDEzMGRlZyk7XG5cdH1cblx0Ji1sZWZ0IHtcblx0XHRAZXh0ZW5kIC5hcnJvdztcblx0XHR0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG5cdH1cblx0Ji1yaWdodCB7XG5cdFx0QGV4dGVuZCAuYXJyb3c7XG5cdFx0dHJhbnNmb3JtOiByb3RhdGUoLTE0MGRlZyk7XG5cdH1cbn1cbi8vcGxheSBvdXRsaW5lXG4ucGxheS5pY29uIHtcbiAgICBtYXJnaW4tbGVmdDogNXB4O1xuICAgIG1hcmdpbi10b3A6IDRweDtcbiAgICB3aWR0aDogMXB4O1xuICAgIGhlaWdodDogMTNweDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbiAgICBcbiAgICAmOmJlZm9yZSwgXG4gICAgJjphZnRlciB7XG4gICAgICAgIGxlZnQ6IDFweDtcbiAgICAgICAgd2lkdGg6IDEycHg7XG4gICAgICAgIGhlaWdodDogMXB4O1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbiAgICB9XG4gICAgXG4gICAgJjpiZWZvcmUge1xuICAgICAgICB0b3A6IDA7XG4gICAgICAgIHRyYW5zZm9ybS1vcmlnaW46IGxlZnQgdG9wO1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgzMGRlZyk7XG4gICAgfVxuICAgIFxuICAgICY6YWZ0ZXIge1xuICAgICAgICBib3R0b206IDA7XG4gICAgICAgIHRyYW5zZm9ybS1vcmlnaW46IGxlZnQgYm90dG9tO1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtMzBkZWcpO1xuICAgIH1cbn1cbi8vZmlsbGVkIHBsYXlcbi5wbGF5LWZpbGxlZC5pY29uIHtcbiAgICBtYXJnaW4tbGVmdDogNXB4O1xuICAgIG1hcmdpbi10b3A6IDNweDtcbiAgICB3aWR0aDogMDtcbiAgICBoZWlnaHQ6IDA7XG4gICAgYm9yZGVyLWxlZnQ6IHNvbGlkIDExcHggJGJyYW5kLXByaW1hcnk7XG4gICAgYm9yZGVyLXRvcDogc29saWQgN3B4IHRyYW5zcGFyZW50O1xuICAgIGJvcmRlci1ib3R0b206IHNvbGlkIDdweCB0cmFuc3BhcmVudDtcbn1cbi8vY2xvc2Uge1xuLy8uY2xvc2UuaWNvbiB7XG4vLyAgICBjb2xvcjogJGljb24tY29sb3I7XG4vLyAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICBtYXJnaW4tdG9wOiAwO1xuLy8gICAgbWFyZ2luLWxlZnQ6IDA7XG4vLyAgICB3aWR0aDogMjFweDtcbi8vICAgIGhlaWdodDogMjFweDtcbi8vICAgIFxuLy8gICAgJjpiZWZvcmUge1xuLy8gICAgICAgIGNvbnRlbnQ6ICcnO1xuLy8gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgICAgICB0b3A6IDEwcHg7XG4vLyAgICAgICAgd2lkdGg6IDIxcHg7XG4vLyAgICAgICAgaGVpZ2h0OiAxcHg7XG4vLyAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogY3VycmVudENvbG9yO1xuLy8gICAgICAgIC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKTtcbi8vICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuLy8gICAgfVxuLy8gICAgXG4vLyAgICAmOmFmdGVyIHtcbi8vICAgICAgICBjb250ZW50OiAnJztcbi8vICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICAgICAgdG9wOiAxMHB4O1xuLy8gICAgICAgIHdpZHRoOiAyMXB4O1xuLy8gICAgICAgIGhlaWdodDogMXB4O1xuLy8gICAgICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbi8vICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4vLyAgICB9XG4vL1xuLy99XG4vLy8vcGx1c1xuLy8ucGx1cy5pY29uIHtcbi8vICAgIGNvbG9yOiAkaWNvbi1jb2xvcjtcbi8vICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgIG1hcmdpbi1sZWZ0OiAzcHg7XG4vLyAgICBtYXJnaW4tdG9wOiAxMHB4O1xuLy8gICAgXG4vLyAgICAmOmJlZm9yZSB7XG4vLyAgICAgICAgY29udGVudDogJyc7XG4vLyAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgICAgIHdpZHRoOiAxNXB4O1xuLy8gICAgICAgIGhlaWdodDogMXB4O1xuLy8gICAgICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgIH1cbi8vICAgIFxuLy8gICAgJjphZnRlciB7XG4vLyAgICAgICAgY29udGVudDogJyc7XG4vLyAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgICAgIHdpZHRoOiAxNXB4O1xuLy8gICAgICAgIGhlaWdodDogMXB4O1xuLy8gICAgICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKDkwZGVnKTtcbi8vICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg5MGRlZyk7XG4vLyAgICB9XG4vL31cbi8vXG4vLy8vbWVudVxuLy8ubWVudS5pY29uIHtcbi8vICAgIGNvbG9yOiAkaWNvbi1jb2xvcjtcbi8vICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgIG1hcmdpbi1sZWZ0OiAycHg7XG4vLyAgICBtYXJnaW4tdG9wOiAxMHB4O1xuLy8gICAgd2lkdGg6IDE3cHg7XG4vLyAgICBoZWlnaHQ6IDFweDtcbi8vICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgIFxuLy8gICAgJjpiZWZvcmUge1xuLy8gICAgICAgIGNvbnRlbnQ6ICcnO1xuLy8gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgICAgICB0b3A6IC01cHg7XG4vLyAgICAgICAgbGVmdDogMDtcbi8vICAgICAgICB3aWR0aDogMTdweDtcbi8vICAgICAgICBoZWlnaHQ6IDFweDtcbi8vICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiBjdXJyZW50Q29sb3I7XG4vLyAgICB9XG4vLyAgICBcbi8vICAgICY6YWZ0ZXIge1xuLy8gICAgICAgIGNvbnRlbnQ6ICcnO1xuLy8gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgICAgICB0b3A6IDVweDtcbi8vICAgICAgICBsZWZ0OiAwO1xuLy8gICAgICAgIHdpZHRoOiAxN3B4O1xuLy8gICAgICAgIGhlaWdodDogMXB4O1xuLy8gICAgICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgIH1cbi8vfVxuLy9cbi8vLy90aWNrIFxuLy8uY2hlY2suaWNvbiB7XG4vLyAgICBjb2xvcjogJGljb24tY29sb3I7XG4vLyAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICBtYXJnaW4tbGVmdDogM3B4O1xuLy8gICAgbWFyZ2luLXRvcDogNHB4O1xuLy8gICAgd2lkdGg6IDE0cHg7XG4vLyAgICBoZWlnaHQ6IDhweDtcbi8vICAgIGJvcmRlci1ib3R0b206IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICBib3JkZXItbGVmdDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgIC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKTtcbi8vICAgIHRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG4vL31cbi8vXG4vL1xuLy8vL3NlYXJjaFxuLy8uc2VhcmNoLmljb24ge1xuLy8gICAgY29sb3I6ICRpY29uLWNvbG9yO1xuLy8gICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgbWFyZ2luLXRvcDogMnB4O1xuLy8gICAgbWFyZ2luLWxlZnQ6IDNweDtcbi8vICAgIHdpZHRoOiAxMnB4O1xuLy8gICAgaGVpZ2h0OiAxMnB4O1xuLy8gICAgYm9yZGVyOiBzb2xpZCAxcHggY3VycmVudENvbG9yO1xuLy8gICAgYm9yZGVyLXJhZGl1czogMTAwJTtcbi8vICAgIC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKTtcbi8vICAgIHRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG4vLyAgICBcbi8vICAgICY6YmVmb3JlIHtcbi8vICAgICAgICBjb250ZW50OiAnJztcbi8vICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICAgICAgdG9wOiAxMnB4O1xuLy8gICAgICAgIGxlZnQ6IDVweDtcbi8vICAgICAgICBoZWlnaHQ6IDZweDtcbi8vICAgICAgICB3aWR0aDogMXB4O1xuLy8gICAgICAgIGJhY2tncm91bmQtY29sb3I6IGN1cnJlbnRDb2xvcjtcbi8vICAgIH1cbi8vfVxuLy9cbi8vXG4vLy8vcGluXG4vLy5waW4tc29saWQuaWNvbiB7XG4vLyAgICBjb2xvcjogJGljb24tY29sb3I7XG4vLyAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICBtYXJnaW4tbGVmdDogNHB4O1xuLy8gICAgbWFyZ2luLXRvcDogMnB4O1xuLy8gICAgd2lkdGg6IDEycHg7XG4vLyAgICBoZWlnaHQ6IDEycHg7XG4vLyAgICBib3JkZXI6IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICBib3JkZXItcmFkaXVzOiA3cHggN3B4IDdweCAwO1xuLy8gICAgYmFja2dyb3VuZC1jb2xvcjogY3VycmVudENvbG9yO1xuLy8gICAgLXdlYmtpdC10cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuLy8gICAgdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKTtcbi8vICAgIFxuLy8gICAgJjpiZWZvcmUge1xuLy8gICAgICAgIGNvbnRlbnQ6ICcnO1xuLy8gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgICAgICBsZWZ0OiAzcHg7XG4vLyAgICAgICAgdG9wOiAzcHg7XG4vLyAgICAgICAgd2lkdGg6IDRweDtcbi8vICAgICAgICBoZWlnaHQ6IDRweDtcbi8vICAgICAgICBjb2xvcjogd2hpdGU7XG4vLyAgICAgICAgYm9yZGVyOiBzb2xpZCAxcHggY3VycmVudENvbG9yO1xuLy8gICAgICAgIGJvcmRlci1yYWRpdXM6IDNweDtcbi8vICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiBjdXJyZW50Q29sb3I7XG4vLyAgICB9XG4vL31cbi8vXG4vLy8vZmlsbGVkIGhlYXJ0XG4vLy5oZWFydC1zb2xpZC5pY29uIHtcbi8vICAgIGNvbG9yOiAkaWNvbi1jb2xvcjtcbi8vICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbi8vICAgIG1hcmdpbi10b3A6IDZweDtcbi8vICAgIG1hcmdpbi1sZWZ0OiA1cHg7XG4vLyAgICB3aWR0aDogOXB4O1xuLy8gICAgaGVpZ2h0OiA5cHg7XG4vLyAgICBib3JkZXItbGVmdDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgIGJvcmRlci1ib3R0b206IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICBiYWNrZ3JvdW5kLWNvbG9yOiBjdXJyZW50Q29sb3I7XG4vLyAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG4vLyAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuLy8gICAgXG4vLyAgICAmOmJlZm9yZSB7XG4vLyAgICAgICAgY29udGVudDogJyc7XG4vLyAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgICAgIHRvcDogLTVweDtcbi8vICAgICAgICBsZWZ0OiAtMXB4O1xuLy8gICAgICAgIHdpZHRoOiA4cHg7XG4vLyAgICAgICAgaGVpZ2h0OiA1cHg7XG4vLyAgICAgICAgYm9yZGVyLXJhZGl1czogNXB4IDVweCAwIDA7XG4vLyAgICAgICAgYm9yZGVyLXRvcDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICBib3JkZXItbGVmdDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICBib3JkZXItcmlnaHQ6IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogY3VycmVudENvbG9yO1xuLy8gICAgfVxuLy8gICAgXG4vLyAgICAmOmFmdGVyIHtcbi8vICAgICAgICBjb250ZW50OiAnJztcbi8vICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICAgICAgdG9wOiAwcHg7XG4vLyAgICAgICAgbGVmdDogOHB4O1xuLy8gICAgICAgIHdpZHRoOiA1cHg7XG4vLyAgICAgICAgaGVpZ2h0OiA4cHg7XG4vLyAgICAgICAgYm9yZGVyLXJhZGl1czogMCA1cHggNXB4IDA7XG4vLyAgICAgICAgYm9yZGVyLXRvcDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICBib3JkZXItcmlnaHQ6IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICAgICAgYm9yZGVyLWJvdHRvbTogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiBjdXJyZW50Q29sb3I7XG4vLyAgICB9XG4vL31cbi8vLy9oZWFydCBvdXRsaW5lXG4vLy5oZWFydC5pY29uIHtcbi8vICAgICAgICBjb2xvcjogJGljb24tY29sb3I7XG4vLyAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgICAgIG1hcmdpbi10b3A6IDZweDtcbi8vICAgICAgICBtYXJnaW4tbGVmdDogNXB4O1xuLy8gICAgICAgIHdpZHRoOiA5cHg7XG4vLyAgICAgICAgaGVpZ2h0OiA5cHg7XG4vLyAgICAgICAgYm9yZGVyLWxlZnQ6IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICAgICAgYm9yZGVyLWJvdHRvbTogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG4vLyAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKTtcbi8vICAgIFxuLy8gICAgJjpiZWZvcmUge1xuLy8gICAgICAgIGNvbnRlbnQ6ICcnO1xuLy8gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICAgIHRvcDogLTVweDtcbi8vICAgICAgbGVmdDogLTFweDtcbi8vICAgICAgd2lkdGg6IDhweDtcbi8vICAgICAgaGVpZ2h0OiA1cHg7XG4vLyAgICAgIGJvcmRlci1yYWRpdXM6IDVweCA1cHggMCAwO1xuLy8gICAgICBib3JkZXItdG9wOiBzb2xpZCAxcHggY3VycmVudENvbG9yO1xuLy8gICAgICBib3JkZXItbGVmdDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgYm9yZGVyLXJpZ2h0OiBzb2xpZCAxcHggY3VycmVudENvbG9yO1xuLy8gICAgfVxuLy8gICAgXG4vLyAgICAmOmFmdGVyIHtcbi8vICAgICAgICBjb250ZW50OiAnJztcbi8vICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4vLyAgICAgICAgdG9wOiAwcHg7XG4vLyAgICAgICAgbGVmdDogOHB4O1xuLy8gICAgICAgIHdpZHRoOiA1cHg7XG4vLyAgICAgICAgaGVpZ2h0OiA4cHg7XG4vLyAgICAgICAgYm9yZGVyLXJhZGl1czogMCA1cHggNXB4IDA7XG4vLyAgICAgICAgYm9yZGVyLXRvcDogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgICAgICBib3JkZXItcmlnaHQ6IHNvbGlkIDFweCBjdXJyZW50Q29sb3I7XG4vLyAgICAgICAgYm9yZGVyLWJvdHRvbTogc29saWQgMXB4IGN1cnJlbnRDb2xvcjtcbi8vICAgIH1cbi8vfVxuXG4iLCJidXR0b24sXG5pbnB1dFt0eXBlPVwiYnV0dG9uXCJdLFxuaW5wdXRbdHlwZT1cInJlc2V0XCJdLFxuaW5wdXRbdHlwZT1cInN1Ym1pdFwiXSB7XG4gICAgYXBwZWFyYW5jZTogbm9uZTtcblx0Ym9yZGVyOm5vbmU7XG5cdHBhZGRpbmc6IDZweCAxNXB4O1xuXHR0cmFuc2l0aW9uOi4zcyBlYXNlIGFsbDtcblx0YmFja2dyb3VuZC1jb2xvcjokYnJhbmQtcHJpbWFyeTtcblx0Y29sb3I6I0ZGRjtcblx0Ym9yZGVyLXJhZGl1czogMDtcblx0ZGlzcGxheTogaW5saW5lLWJsb2NrO1xuXHRtYXJnaW46IDEwcHg7XG5cdFxuXHQmOnZpc2l0ZWQge1xuXHRcdGNvbG9yOiAjRkZGO1xuXHR9XG5cdFxuXHQmOmhvdmVyIHtcblx0XHRiYWNrZ3JvdW5kLWNvbG9yOiRicmFuZC1zZWNvbmRhcnk7XG5cdFx0Y29sb3I6I0ZGRjtcblx0XHR0cmFuc2l0aW9uOi4zcyBlYXNlIGFsbDtcblx0XHRjdXJzb3I6cG9pbnRlcjtcbiAgICAgICAgXG4gICAgICAgIC5hcnJvdy1sZWZ0LFxuICAgICAgICAuYXJyb3ctcmlnaHQge1xuICAgICAgICAgICAgYm9yZGVyLWNvbG9yOiAjRkZGO1xuICAgICAgICB9XG5cdH1cblxuXHQmOmFjdGl2ZSxcblx0Jjpmb2N1cyB7IFxuXHR9XG4gICAgXG4gICAgXG59XG5cbi8vZm9yIGxpbmtzXG4uYnRuLFxuLmJ1dHRvbiB7XG4gICAgQGV4dGVuZCBidXR0b247XG4gICAgXG5cdCY6aG92ZXIge1xuLy9cdFx0YmFja2dyb3VuZC1jb2xvcjokYnJhbmQtc2Vjb25kYXJ5O1xuICAgICAgICBcblx0fVxuXG5cdCY6YWN0aXZlLFxuXHQmOmZvY3VzIHtcblx0fVxuICAgIFxuICAgICY6dmlzaXRlZCB7XG4gICAgfVxuICAgIFxuICAgIC5hcnJvdy1sZWZ0LFxuICAgIC5hcnJvdy1yaWdodCB7XG4gICAgICAgIG1hcmdpbjogMXB4IDNweDtcbiAgICB9XG59IiwiaW5wdXRbdHlwZT1cInRleHRcIl0sXG5pbnB1dFt0eXBlPVwiZW1haWxcIl0sXG5pbnB1dFt0eXBlPVwidXJsXCJdLFxuaW5wdXRbdHlwZT1cInBhc3N3b3JkXCJdLFxuaW5wdXRbdHlwZT1cInNlYXJjaFwiXSxcbmlucHV0W3R5cGU9XCJudW1iZXJcIl0sXG5pbnB1dFt0eXBlPVwidGVsXCJdLFxuaW5wdXRbdHlwZT1cInJhbmdlXCJdLFxuaW5wdXRbdHlwZT1cImRhdGVcIl0sXG5pbnB1dFt0eXBlPVwibW9udGhcIl0sXG5pbnB1dFt0eXBlPVwid2Vla1wiXSxcbmlucHV0W3R5cGU9XCJ0aW1lXCJdLFxuaW5wdXRbdHlwZT1cImRhdGV0aW1lXCJdLFxuaW5wdXRbdHlwZT1cImRhdGV0aW1lLWxvY2FsXCJdLFxuaW5wdXRbdHlwZT1cImNvbG9yXCJdLFxudGV4dGFyZWEge1xuXHRjb2xvcjogJGNvbG9yX190ZXh0LWlucHV0O1xuICAgIGFwcGVhcmFuY2U6IG5vbmU7XG4gICAgYm9yZGVyOiBub25lO1xuXHRib3JkZXI6IDFweCBzb2xpZCAkY29sb3JfX2JvcmRlci1pbnB1dDtcblx0Ym9yZGVyLXJhZGl1czogMDtcblx0cGFkZGluZzogNXB4O1xuXHRtYXJnaW46IC4zZW0gMDtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcblxuXHQmOmZvY3VzIHtcblx0XHRjb2xvcjogJGNvbG9yX190ZXh0LWlucHV0LWZvY3VzO1xuLy8gICAgICAgIHBhZGRpbmc6IDEwcHg7XG4vLyAgICAgICAgb3V0bGluZTogbm9uZTtcbi8vICAgICAgICBib3JkZXItd2lkdGg6IDJweDtcbi8vICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtbGlnaHRncmV5O1xuXHR9XG59XG5cbmlucHV0W3R5cGU9XCJyYWRpb1wiXSB7XG4gICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG5zZWxlY3Qge1xuLy8gICAgYXBwZWFyYW5jZTogbm9uZTtcbiAgICBAZXh0ZW5kIGlucHV0O1xuICAgIGJvcmRlci1yYWRpdXM6IDA7XG5cdGJvcmRlcjogMXB4IHNvbGlkICRjb2xvcl9fYm9yZGVyLWlucHV0O1xufVxuXG50ZXh0YXJlYSB7XG5cdHBhZGRpbmc6IDVweDtcblx0d2lkdGg6IDEwMCU7XG59XG5cbmxhYmVsIHtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMS40KTtcbiAgICBtYXJnaW46IDFlbSAwIDAuMmVtO1xuICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xufSIsIi5nZm9ybV9hamF4X3NwaW5uZXIge1xuICAgIGRpc3BsYXk6IG5vbmU7XG59XG4vLyBUaGUgY2xhc3MgLmdmb3JtIGlzbid0IGFjdHVhbGx5IHVzZWQgYnkgR3Jhdml0eSBGb3JtcyBidXQgYWN0cyBhcyBhIHByZWZpeCBmb3IgYWxsIGl0J3MgcGFyZW50IGVsZW1lbnRzLiBUaHVzIHNlcnZlcyBoZXJlIHRvIHNpbXBseSBlbmNsb3NlIHRoZSBjc3Mgc3RydWN0dXJlLlxuLmdmb3JtIHtcbiAgICAvLyBUaGUgZW5jYXBzdWxhdGluZyB3cmFwcGluZyBkaXYgZm9yIGFsbCBmb3Jtcy4gU28gZmFyIEkgdXNlZCBpdCB0byB0YXJnZXQgY29tbW9uIGVsZW1lbnRzIHRoYXQgd291bGQgYmUgdXNlZCBmb3JtLXdpZGUgc3VjaCBhcyBidXR0b25zIGFuZCBpbnB1dCB0YWdzLlxuICAgICZfd3JhcHBlciB7XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDFlbTtcbiAgICAgICAgLy8gR2VuZXJhbCBjbGFzcyBhc3NpZ25lZCB0byBhbGwgYnV0dG9uICYgaW5wdXRbdHlwZT1cInN1Ym1pdFwiXSB0YWdzIGluIHRoZSBmb3JtXG4gICAgICAgIC5idXR0b24ge1xuICAgICAgICAgICAgQGV4dGVuZCAuYnRuO1xuICAgICAgICAgICAgJlt0eXBlPVwic3VibWl0XCJdIHtcbiAgICAgICAgICAgICAgICBAZXh0ZW5kIC5idG4gIW9wdGlvbmFsO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIC8vIFRhcmdldCBhbGwgdHlwaW5nIGlucHV0IHRhZ3MgYW5kIGV4dGVuZCBCb290c3RyYXAncyAuZm9ybS1jb250cm9sIGNsYXNzIHRvIGFsbCBvZiB0aGVtLiBBbHNvIHByZXZlbnQgYnJvd3NlcnMgZnJvbSBvdmVycmlkaW5nIG91ciBzdHlsZXMgYnkgc2V0dGluZyBhcHBlYXJhbmNlIHRvIG5vbmUuXG4gICAgICAgIGlucHV0W3R5cGU9XCJ0ZXh0XCJdLFxuICAgICAgICBpbnB1dFt0eXBlPVwiZW1haWxcIl0sXG4gICAgICAgIGlucHV0W3R5cGU9XCJ1cmxcIl0sXG4gICAgICAgIGlucHV0W3R5cGU9XCJwYXNzd29yZFwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cInNlYXJjaFwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cIm51bWJlclwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cInRlbFwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cInJhbmdlXCJdLFxuICAgICAgICBpbnB1dFt0eXBlPVwiZGF0ZVwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cIm1vbnRoXCJdLFxuICAgICAgICBpbnB1dFt0eXBlPVwid2Vla1wiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cInRpbWVcIl0sXG4gICAgICAgIGlucHV0W3R5cGU9XCJkYXRldGltZVwiXSxcbiAgICAgICAgaW5wdXRbdHlwZT1cImRhdGV0aW1lLWxvY2FsXCJdLFxuICAgICAgICBpbnB1dFt0eXBlPVwiY29sb3JcIl0sXG4gICAgICAgIHRleHRhcmVhLFxuICAgICAgICBzZWxlY3Qge1xuICAgICAgICAgICAgQGV4dGVuZCAuZm9ybS1jb250cm9sICFvcHRpb25hbDtcbiAgICAgICAgICAgIGFwcGVhcmFuY2U6IG5vbmU7XG4gICAgICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgfVxuICAgICAgICB0ZXh0YXJlYSB7XG4gICAgICAgICAgICAvLyAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IC02cHg7XG4gICAgICAgIH1cbiAgICB9XG4gICAgLy8gT24gdGhlIG9mZiBjaGFuY2UgdGhlIGZvcm0gcHJpbnRzIGEgdWwgbGlzdCwgdGFyZ2V0IC5nZm9ybV9maWVsZHMgdG8gbWFrZSBzdXJlIHRoZSBkZWZhdWx0IDx1bD4gc3R5bGVzIGFybid0IGFwcGxpZWQuXG4gICAgJl9maWVsZHMge1xuICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICAvLyAgICAgICAgbWFyZ2luOiAxZW07XG4gICAgICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgfVxuICAgIC8vIFRoZSB3cmFwcGluZyBkaXYgZm9yIHRoZSBmb3JtJ3MgdGl0bGUgJiBkZXNjcmlwdGlvbi5cbiAgICAmX2hlYWRpbmcge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAxZW07XG4gICAgfVxuICAgIC8vIFRoZSBmb3JtcyB0aXRsZVxuICAgICZfdGl0bGUge31cbiAgICAvLyBUaGUgZm9ybXMgZGVzY3JpcHRpb25cbiAgICAmX2Rlc2NyaXB0aW9uIHt9XG4gICAgLy8gVGhlIHdyYXBwaW5nIGRpdiBmb3IgdGhlIGZvcm0ncyBhY3R1YWwgZmllbGRzLlxuICAgICZfYm9keSB7XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDFlbTtcbiAgICAgICAgLmdzZWN0aW9uIHtcbiAgICAgICAgICAgICZfdGl0bGUge31cbiAgICAgICAgICAgICZfZGVzY3JpcHRpb24ge1xuICAgICAgICAgICAgICAgIEBleHRlbmQgLmhlbHAtYmxvY2sgIW9wdGlvbmFsO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIC5nZmllbGQge1xuICAgICAgICAgICAgLy8gICAgICAgICAgICBtYXJnaW4tYm90dG9tOiAxMHB4O1xuICAgICAgICAgICAgJi5nZm9ybV92YWxpZGF0aW9uX2NvbnRhaW5lciB7XG4gICAgICAgICAgICAgICAgZGlzcGxheTogbm9uZSAhaW1wb3J0YW50O1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgJl9sYWJlbCB7XG4gICAgICAgICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICAmX3JlcXVpcmVkIHtcbiAgICAgICAgICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgICAgICAgICAgICAgdG9wOiAtMnB4O1xuICAgICAgICAgICAgICAgIHJpZ2h0OiAtMnB4O1xuICAgICAgICAgICAgICAgIGNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgICZfZXJyb3Ige1xuICAgICAgICAgICAgICAgIC52YWxpZGF0aW9uX21lc3NhZ2Uge1xuICAgICAgICAgICAgICAgICAgICBAZXh0ZW5kIC5hbGVydC1kYW5nZXIgIW9wdGlvbmFsO1xuICAgICAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbiAgICAgICAgICAgICAgICAgICAgY29sb3I6ICNGRkY7XG4gICAgICAgICAgICAgICAgICAgIGZvbnQtc2l6ZTogODAlO1xuICAgICAgICAgICAgICAgICAgICAvLyAgICAgICAgICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogM3B4O1xuICAgICAgICAgICAgICAgICAgICBwYWRkaW5nOiA1cHggMTVweDtcbiAgICAgICAgICAgICAgICAgICAgJi5pbnN0cnVjdGlvbiB7XG4gICAgICAgICAgICAgICAgICAgICAgICBAZXh0ZW5kIC5hbGVydC1pbmZvICFvcHRpb25hbDtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgICZfaHRtbCB7fVxuICAgICAgICAgICAgJl9jaGVja2JveCxcbiAgICAgICAgICAgICZfcmFkaW8ge1xuICAgICAgICAgICAgICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgICAgICAgICAgICAgbWFyZ2luOiAwO1xuICAgICAgICAgICAgICAgIHBhZGRpbmc6IDA7XG4gICAgICAgICAgICAgICAgPiBsaSB7XG4gICAgICAgICAgICAgICAgICAgIC8vQGV4dGVuZCAuY2hlY2tib3g7XG4gICAgICAgICAgICAgICAgICAgIHBhZGRpbmctbGVmdDogMDtcbiAgICAgICAgICAgICAgICAgICAgbWFyZ2luLWxlZnQ6IDA7XG4gICAgICAgICAgICAgICAgICAgIGxhYmVsIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIG1hcmdpbi1sZWZ0OiAwO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIC5naW5wdXQge1xuICAgICAgICAgICAgJl9jb250YWluZXIge1xuICAgICAgICAgICAgICAgICZfdGV4dGFyZWEge1xuICAgICAgICAgICAgICAgICAgICBsaW5lLWhlaWdodDogMDtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICAmX2NvbXBsZXgge1xuICAgICAgICAgICAgICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgICAgICAgICAgICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG4gICAgICAgICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgICAgICAgICAgQGluY2x1ZGUgY2xlYXJmaXg7XG4gICAgICAgICAgICAgICAgPiBzcGFuIHtcbiAgICAgICAgICAgICAgICAgICAgZGlzcGxheTogdGFibGUtY2VsbDtcbiAgICAgICAgICAgICAgICAgICAgdmVydGljYWwtYWxpZ246IHRvcDtcbiAgICAgICAgICAgICAgICAgICAgcGFkZGluZy1yaWdodDogMTVweDtcbiAgICAgICAgICAgICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgICAgICAgICAgICAgICY6bGFzdC1vZi10eXBlIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHBhZGRpbmctcmlnaHQ6IDA7XG4gICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgPiAuZ2lucHV0IHtcbiAgICAgICAgICAgICAgICAgICAgJl9mdWxsIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgICAgICAgICAgICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgICAgICAgICAgICAgICAgICBwYWRkaW5nLXJpZ2h0OiAwO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICZfbGVmdCB7XG4gICAgICAgICAgICAgICAgICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICAgICAgICAgICAgICAgICAgICAgIGZsb2F0OiBsZWZ0O1xuICAgICAgICAgICAgICAgICAgICAgICAgd2lkdGg6IDUwJTtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAmX3JpZ2h0IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgICAgICAgICAgICAgICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgICAgICAgICAgICAgICAgICAgd2lkdGg6IDUwJTtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAudmFsaWRhdGlvbl9tZXNzYWdlIHtcbiAgICAgICAgICAgIEBleHRlbmQgLmFsZXJ0ICFvcHRpb25hbDtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRicmFuZC1wcmltYXJ5O1xuICAgICAgICAgICAgY29sb3I6ICNGRkY7XG4gICAgICAgICAgICBwYWRkaW5nOiA1cHg7XG4gICAgICAgIH1cbiAgICB9XG4gICAgJl9wYWdlX2Zvb3RlciB7XG4gICAgICAgIGJhY2tncm91bmQ6ICRicmFuZC1saWdodGdyZXk7XG4gICAgICAgIC5idXR0b24ge1xuICAgICAgICAgICAgQGV4dGVuZCAuYnRuLWxpbmsgIW9wdGlvbmFsO1xuICAgICAgICB9XG4gICAgICAgIEBpbmNsdWRlIGNsZWFyZml4O1xuICAgIH1cbiAgICAmX25leHRfYnV0dG9uIHtcbiAgICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgIH1cbiAgICAmX3ByZXZfYnV0dG9uIHtcbiAgICAgICAgZmxvYXQ6IGxlZnQ7XG4gICAgfVxuICAgICZfZm9vdGVyIHt9O1xuICAgIC52YWxpZGF0aW9uX2Vycm9yIHtcbiAgICAgICAgZm9udC1zaXplOiA4MCU7XG4gICAgICAgIG1hcmdpbjogMS41ZW0gMDtcbiAgICB9XG59XG4uZ2Zvcm1fYWpheF9zcGlubmVyIHtcbiAgICBkaXNwbGF5OiBub25lO1xufVxuXG4jdWktZGF0ZXBpY2tlci1kaXYge1xuICAgIGJhY2tncm91bmQ6IHdoaXRlO1xuICAgIHBhZGRpbmc6IDEwcHg7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGJvcmRlcjogMnB4IHNvbGlkICRicmFuZC1zZWNvbmRhcnk7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgICBtYXJnaW46IC0ycHggYXV0bztcbiAgICBib3gtc2hhZG93OiAwcHggMnB4IDE1cHggcmdiYSgkYnJhbmQtZGFya2dyZXksIC42KTtcbiAgICBzZWxlY3Qge1xuICAgICAgICBwYWRkaW5nOiAycHggMTBweDtcbiAgICAgICAgbWFyZ2luOiAxMHB4IDVweDtcbiAgICB9XG4gICAgLnVpLWNvcm5lci1hbGwge1xuICAgICAgICAvLyAgICAgICAgbWFyZ2luOiAwIDEwcHg7XG4gICAgfVxufVxuXG4uZm9ybV9zYXZlZF9tZXNzYWdlX2VtYWlsZm9ybSBmb3JtIHtcbiAgICBwYWRkaW5nOiAyZW0gMCAwO1xuICAgIGZsZXgtd3JhcDogd3JhcDtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGlucHV0W3R5cGU9XCJlbWFpbFwiXSB7XG4gICAgICAgIHdpZHRoOiA2MCU7XG4gICAgICAgIEBpbmNsdWRlIG1lZGlhKFwiPD1waG9uZVwiKSB7XG4gICAgICAgICAgICB3aWR0aDogNTclO1xuICAgICAgICB9XG4gICAgfVxufVxuXG4udmFsaWRhdGlvbl9tZXNzYWdlIHtcbiAgICBmbGV4LWJhc2lzOiAxMDAlO1xuICAgIGZvbnQtc2l6ZTogODAlO1xufVxuXG5cbi8qISBcbuKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoeKZoVxu4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pmlXG5DcmVkaXQgQ2FyZFxu4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pml4pmlXG7imaHimaHimaHimaHimaHimaHimaHimaHimaHimaHimaFcbiovXG5cbi8vIFtjbGFzc149XCJpY29uLVwiXTpiZWZvcmUsXG4vLyBbY2xhc3MqPVwiIGljb24tXCJdOmJlZm9yZSxcbi8vIGFydGljbGUuaGVudHJ5LnN0aWNreTpiZWZvcmUsXG4vLyAuaWNvbi1hZnRlcjphZnRlcixcbi5scy1uYXYtcmlnaHQgYTpiZWZvcmUsXG4ubHMtbmF2LWxlZnQgYTpiZWZvcmUsXG4ud2NfcGF5bWVudF9tZXRob2QgbGFiZWw6YmVmb3JlLFxubGFiZWxbZm9yPVwic3RyaXBlLWNhcmQtbnVtYmVyXCJdOmFmdGVyLFxubGFiZWxbZm9yPVwic3RyaXBlLWNhcmQtY3ZjXCJdOmFmdGVyLFxuLnVpLWljb246YWZ0ZXIsXG4udWktaWNvbjpiZWZvcmUsXG4uZ2Zvcm1fY2FyZF9pY29uX2NvbnRhaW5lciBkaXY6YmVmb3JlLFxuLmdpbnB1dF9jYXJkX3NlY3VyaXR5X2NvZGVfaWNvbjpiZWZvcmUge1xuICAgIGZvbnQtZmFtaWx5OiAnaWNvbW9vbic7XG4gICAgc3BlYWs6IG5vbmU7XG4gICAgZm9udC1zdHlsZTogbm9ybWFsO1xuICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgZm9udC12YXJpYW50OiBub3JtYWw7XG4gICAgdGV4dC10cmFuc2Zvcm06IG5vbmU7XG4gICAgbGluZS1oZWlnaHQ6IDE7XG4gICAgLXdlYmtpdC1mb250LXNtb290aGluZzogYW50aWFsaWFzZWQ7XG4gICAgLW1vei1vc3gtZm9udC1zbW9vdGhpbmc6IGdyYXlzY2FsZVxufVxuXG4vLyAuaWNvbjpiZWZvcmUge1xuLy8gICAgIG1hcmdpbi1yaWdodDogLjI1ZW07XG4vLyB9XG5cbi8vIC5pY29uLXJlcGxhY21lbnQ6YmVmb3JlIHtcbi8vICAgICBtYXJnaW4tcmlnaHQ6IDA7XG4vLyB9XG5cbi8vIC5pY29uLXNlYXJjaDpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTAwXCI7XG4vLyB9XG5cbi8vIC5pY29uLXBpbjpiZWZvcmUsXG4vLyBhcnRpY2xlLmhlbnRyeS5zdGlja3k6YmVmb3JlIHtcbi8vICAgICBjb250ZW50OiBcIlxcZTkwNlwiO1xuLy8gfVxuXG4vLyAuaWNvbi1nb29nbGUtcGx1czpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTAxXCI7XG4vLyB9XG5cbi8vIC5pY29uLWluc3RhZ3JhbTpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTAyXCI7XG4vLyB9XG5cbi8vIC5pY29uLWxpbmtlZGluOmJlZm9yZSB7XG4vLyAgICAgY29udGVudDogXCJcXGU5MDNcIjtcbi8vIH1cblxuLy8gLmljb24tZmFjZWJvb2s6YmVmb3JlIHtcbi8vICAgICBjb250ZW50OiBcIlxcZTkwNFwiO1xuLy8gfVxuXG4vLyAuaWNvbi10d2l0dGVyOmJlZm9yZSB7XG4vLyAgICAgY29udGVudDogXCJcXGU5MDVcIjtcbi8vIH1cblxuLy8gLmljb24tcnNzOmJlZm9yZSB7XG4vLyAgICAgY29udGVudDogXCJcXGU5MDdcIjtcbi8vIH1cblxuLy8gLmljb24tbmV3LXdpbmRvdzpiZWZvcmUsXG4vLyAuY29udGVudCAuaWNvbi1uZXctd2luZG93OmFmdGVyIHtcbi8vICAgICBjb250ZW50OiBcIlxcZTkwOFwiO1xuLy8gfVxuXG4vLyAuaWNvbi1waW50ZXJlc3Q6YmVmb3JlIHtcbi8vICAgICBjb250ZW50OiBcIlxcZTYwNFwiO1xuLy8gfVxuXG4vLyAuaWNvbi12aW1lbzpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTA5XCI7XG4vLyB9XG5cbi8vIC5pY29uLXlvdXR1YmU6YmVmb3JlIHtcbi8vICAgICBjb250ZW50OiBcIlxcZTkwYVwiO1xuLy8gfVxuXG4vLyAuaWNvbi1jYWxlbmRhcjpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTE4XCI7XG4vLyB9XG5cbi8vIC5pY29uLWFycm93LXJpZ2h0OmJlZm9yZSxcbi8vIC5scy1uYXYtcmlnaHQgYTpiZWZvcmUsXG4vLyAudWktaWNvbi1jaXJjbGUtdHJpYW5nbGUtZTphZnRlciB7XG4vLyAgICAgY29udGVudDogXCJcXGU5OTRcIjtcbi8vIH1cblxuLy8gLmljb24tYXJyb3ctbGVmdDpiZWZvcmUsXG4vLyAubHMtbmF2LWxlZnQgYTpiZWZvcmUsXG4vLyAudWktaWNvbi1jaXJjbGUtdHJpYW5nbGUtdzpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXFxlOTk1XCI7XG4vLyB9XG5cbi8vLmljb24tcmVwbGFjZW1lbnQsIC5scy1uYXYtcmlnaHQgYSwgLmxzLW5hdi1sZWZ0IGEsIC51aS1pY29uLWNpcmNsZS10cmlhbmdsZS1lLCAudWktaWNvbi1jaXJjbGUtdHJpYW5nbGUtdyB7dGV4dC1pbmRlbnQ6LTk5OWVtOyBvdmVyZmxvdzpoaWRkZW47IGRpc3BsYXk6YmxvY2s7IHBvc2l0aW9uOnJlbGF0aXZlO31cbi8vLmljb24tcmVwbGFjZW1lbnQ6YmVmb3JlLCAubHMtbmF2LXJpZ2h0IGE6YmVmb3JlLCAubHMtbmF2LWxlZnQgYTpiZWZvcmUsIC51aS1pY29uLWNpcmNsZS10cmlhbmdsZS1lOmFmdGVyLCAudWktaWNvbi1jaXJjbGUtdHJpYW5nbGUtdzpiZWZvcmUge3Bvc2l0aW9uOmFic29sdXRlOyBsZWZ0OjA7IHRvcDowOyB0ZXh0LWluZGVudDowOyB3aWR0aDoxMDAlOyB0ZXh0LWFsaWduOmNlbnRlcjt9XG4vL2J1dHRvbi5pY29uLXNlYXJjaC5pY29uLXJlcGxhY2VtZW50OmJlZm9yZSB7d2lkdGg6YXV0bzt9XG4vLyAuaWNvbi1hZnRlcjpiZWZvcmUge1xuLy8gICAgIGNvbnRlbnQ6IFwiXCI7XG4vLyAgICAgZGlzcGxheTogbm9uZTtcbi8vIH1cblxuLy8gLmljb24tYWZ0ZXI6YWZ0ZXIge1xuLy8gICAgIG1hcmdpbi1sZWZ0OiAuMjVlbTtcbi8vIH1cblxuLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCB7XG4gICAgYmFja2dyb3VuZDogJGJyYW5kLWxpZ2h0Z3JleTtcbiAgICBwYWRkaW5nOiAyMHB4OyAvLyBib3JkZXItcmFkaXVzOiA1cHg7XG59XG5cbi5naW5wdXRfY29udGFpbmVyX2NyZWRpdGNhcmQgaW5wdXQsXG4uZ2lucHV0X2NvbnRhaW5lcl9jcmVkaXRjYXJkIHNlbGVjdCB7XG4gICAgYmFja2dyb3VuZDogd2hpdGU7XG4gICAgd2lkdGg6IDQ4JTtcbn1cblxuLmdpbnB1dF9jYXJkaW5mb19sZWZ0IHtcbiAgICB3aWR0aDogNTAlO1xuICAgIEBpbmNsdWRlIG1lZGlhKFwiPD1waG9uZVwiKSB7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgIH1cbn1cblxuLmdmb3JtX2NhcmRfaWNvbl9jb250YWluZXIgZGl2IHtcbiAgICBmb250LXNpemU6IDJlbTtcbiAgICBmbG9hdDogbGVmdDtcbiAgICB0ZXh0LWluZGVudDogLTk5ZW07XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uZ2Zvcm1fY2FyZF9pY29uX2NvbnRhaW5lciBkaXY6YmVmb3JlIHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgbGVmdDogMDtcbiAgICB0b3A6IDA7XG4gICAgdGV4dC1pbmRlbnQ6IDA7XG59XG5cbi5nZm9ybV9jYXJkX2ljb25fY29udGFpbmVyIGRpdiB7XG4gICAgZm9udC1zaXplOiAyZW07XG4gICAgZmxvYXQ6IGxlZnQ7XG4gICAgdGV4dC1pbmRlbnQ6IC05OWVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICB3aWR0aDogMS41ZW07XG4gICAgY29sb3I6ICRicmFuZC1kYXJrZ3JleTtcbn1cblxuLmdpbnB1dF9jYXJkX3NlY3VyaXR5X2NvZGVfaWNvbjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFxlOTExXCI7XG59XG5cbi5pY29uLWNjLXBheXBhbDpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFxlOTEzXCI7XG59XG5cbi5nZm9ybV9jYXJkX2ljb25fYW1leDpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXFxlOTE0XCI7XG59XG5cbi5nZm9ybV9jYXJkX2ljb25fZGlzY292ZXI6YmVmb3JlIHtcbiAgICBjb250ZW50OiBcIlxcZTkxNVwiO1xufVxuXG4uZ2Zvcm1fY2FyZF9pY29uX21hc3RlcmNhcmQ6YmVmb3JlIHtcbiAgICBjb250ZW50OiBcIlxcZTkxNlwiO1xufVxuXG4uZ2Zvcm1fY2FyZF9pY29uX3Zpc2E6YmVmb3JlIHtcbiAgICBjb250ZW50OiBcIlxcZTkxN1wiO1xufVxuXG4uZ2lucHV0X2NhcmRpbmZvX2xlZnQsXG4uZ2lucHV0X2NhcmRpbmZvX3JpZ2h0IHtcbiAgICBmbG9hdDogbGVmdDtcbn1cblxuLmdpbnB1dF9jYXJkaW5mb19yaWdodCB7XG4gICAgbWFyZ2luLWxlZnQ6IDEwcHg7XG4gICAgd2lkdGg6IGNhbGMoNTAlIC0gMTBweCk7XG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PXBob25lXCIpIHtcbiAgICAgICAgbWFyZ2luOiAwO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICB9XG59XG5cbnNwYW4uZ2lucHV0X2NhcmRfc2VjdXJpdHlfY29kZV9pY29uIHtcbiAgICBmb250LXNpemU6IDEuNWVtO1xuICAgIGZsb2F0OiBsZWZ0O1xuICAgIGNvbG9yOiAjNjY2O1xuICAgIGxpbmUtaGVpZ2h0OiAxLjI7XG59XG5cbi5nZmllbGRfY3JlZGl0Y2FyZF93YXJuaW5nX21lc3NhZ2Uge1xuICAgIGJhY2tncm91bmQ6ICNiZjA0MjE7XG4gICAgY29sb3I6IHdoaXRlO1xuICAgIHBhZGRpbmc6IDFlbSAuNzVlbTtcbiAgICBib3JkZXItcmFkaXVzOiAzcHg7XG4gICAgZm9udC1zaXplOiA4MCU7XG4gICAgbWFyZ2luLWJvdHRvbTogMWVtO1xufVxuXG4uZ2ZpZWxkX2Vycm9yIC5naW5wdXRfY29udGFpbmVyX2NyZWRpdGNhcmQgbGFiZWwge1xuICAgIGNvbG9yOiBibGFjaztcbn1cblxuLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCAuZ2lucHV0X2Z1bGwge1xuICAgIGNsZWFyOiBib3RoO1xuICAgIGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uZmllbGRfc3VibGFiZWxfYWJvdmUgLmdpbnB1dF9jb250YWluZXJfY3JlZGl0Y2FyZCAuZ2lucHV0X2Z1bGw6Zmlyc3Qtb2YtdHlwZSB7XG4gICAgbWFyZ2luLWJvdHRvbTogMmVtO1xufSIsIi8vZGVmYXVsdCBtaW5pbWl6eSBsYWJlbFxuLnN1bnNoaW5lIGxpIHtcblx0bWFyZ2luOiAxZW0gMGVtIDBlbTtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgXG4gICAgaW5wdXQ6bm90KFt0eXBlPWNoZWNrYm94XSk6bm90KFt0eXBlPXJhZGlvXSksXG4gICAgdGV4dGFyZWEge1xuLy8gICAgICAgIHBhZGRpbmc6IDAuNGVtIDAuMjVlbTtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4vLyAgICAgICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gICAgICAgIGNvbG9yOiAkYnJhbmQtc2Vjb25kYXJ5O1xuICAgICAgICBwYWRkaW5nOiAyNXB4IDEwcHggNXB4O1xuICAgIH1cbiAgICBcbiAgICBsYWJlbCB7XG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgdmVydGljYWwtYWxpZ246IG1pZGRsZTtcbiAgICAgICAgcGFkZGluZzogMTVweCAxMHB4O1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgY29sb3I6ICRicmFuZC1wcmltYXJ5O1xuICAgICAgICBmb250LXdlaWdodDogYm9sZDtcbiAgICAgICAgLXdlYmtpdC1mb250LXNtb290aGluZzogYW50aWFsaWFzZWQ7XG4gICAgICAgIHVzZXItc2VsZWN0OiBub25lO1xuICAgICAgICB0cmFuc2l0aW9uOiAuM3MgZWFzZSBhbGw7XG4gICAgICAgIEBpbmNsdWRlIGZvbnQtc2l6ZSgxLjQpO1xuICAgICAgICBcbiAgICAgICAgJjpiZWZvcmUsXG4gICAgICAgICY6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogJyc7XG4gICAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgICBsZWZ0OiAwO1xuICAgICAgICAgICAgei1pbmRleDogLTE7XG4gICAgICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjNzO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICAmOmJlZm9yZSB7XG4gICAgICAgICAgICB0b3A6IDA7ICBcbiAgICAgICAgfVxuICAgICAgICBcbiAgICAgICAgJjphZnRlciB7XG4gICAgICAgICAgICBib3R0b206IDA7XG4gICAgICAgIH1cbiAgICAgICAgXG4gICAgICAgIC5sYWJlbC1jb250ZW50IHtcbiAgICAgICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjNzO1xuICAgICAgICB9XG4gICAgfVxuICAgIFxuICAgIC8vYWN0aXZlIHN0YXRlXG4gICAgJi5hY3RpdmUge1xuICAgICAgICBcbiAgICAgICAgbGFiZWwgeyBcbiAgICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoNXB4LCAwcHgsIDApO1xuICAgICAgICAgICAgcGFkZGluZzogNXB4O1xuICAgICAgICAgICAgZm9udC1zaXplOiA5MiU7XG4gICAgICAgICAgICB0cmFuc2l0aW9uOiAuM3MgZWFzZSBhbGw7XG4gICAgICAgICAgICBjb2xvcjogJGJyYW5kLWxpZ2h0Z3JleTtcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogNzAlO1xuICAgICAgICB9XG4gICAgfSBcbn0iLCIvKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBMaW5rc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuQGltcG9ydCBcImxpbmtzXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIE1lbnVzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwibWVudXNcIjsiLCJhIHtcblx0Y29sb3I6ICRjb2xvcl9fbGluaztcbiAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG4gICAgXG5cdCY6dmlzaXRlZCB7XG5cdFx0Y29sb3I6ICRjb2xvcl9fbGluay12aXNpdGVkO1xuXHR9XG5cdCY6aG92ZXIsXG5cdCY6YWN0aXZlIHtcblx0XHRjb2xvcjogJGNvbG9yX19saW5rLWhvdmVyO1xuICAgICAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG5cdH1cblx0Jjpmb2N1cyB7IFxuXHRcdG91dGxpbmU6IHRoaW4gZG90dGVkO1xuICAgICAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG5cdH1cblx0Jjpob3Zlcixcblx0JjphY3RpdmUge1xuXHRcdG91dGxpbmU6IDA7XG5cdH1cbn1cbiIsIi5tYWluLW5hdmlnYXRpb24ge1xuXHRkaXNwbGF5OiBibG9jaztcblx0dGV4dC1hbGlnbjogcmlnaHQ7XG5cdHRyYW5zaXRpb246LjVzIGxpbmVhciBhbGw7XG4gICAgXG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuICAgICAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICB9XG4gICAgXG5cdHVsIHtcblx0XHRsaXN0LXN0eWxlOiBub25lOyBcblx0XHRtYXJnaW46IDA7XG4gICAgICAgIHBhZGRpbmc6IDA7XG5cblx0XHR1bCB7XG5cdFx0XHRib3gtc2hhZG93OiAwIDNweCAxMHB4IHJnYmEoJGJyYW5kLWRhcmtncmV5LCAwLjMpO1xuXHRcdFx0ZmxvYXQ6IGxlZnQ7XG5cdFx0XHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdFx0XHR0b3A6IDYwcHg7XG5cdFx0XHRsZWZ0OiAtOTk5ZW07XG5cdFx0XHR6LWluZGV4OiA5OTk5OTtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICNGRkY7XG4gICAgICAgICAgICBwYWRkaW5nLWxlZnQ6IDEwcHg7XG4gICAgICAgICAgICBtaW4td2lkdGg6IDIwMHB4O1xuICAgICAgICAgICAgXG4gICAgICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9bWVudVwiKSB7XG4gICAgICAgICAgICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgICAgICAgICAgIGZsb2F0OiBub25lO1xuICAgICAgICAgICAgICAgIGxlZnQ6IGF1dG87XG4gICAgICAgICAgICAgICAgdG9wOiBhdXRvO1xuICAgICAgICAgICAgfVxuXG5cdFx0XHR1bCB7XG5cdFx0XHRcdGxlZnQ6IC05OTllbTtcblx0XHRcdFx0dG9wOiAwO1xuICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgIEBpbmNsdWRlIG1lZGlhKFwiPD1tZW51XCIpIHtcbiAgICAgICAgICAgICAgICAgICAgbGVmdDogaW5pdGlhbDtcbiAgICAgICAgICAgICAgICB9XG5cdFx0XHR9IFxuXG5cdFx0XHRsaSB7XG5cdFx0XHRcdCY6aG92ZXIgPiB1bCxcblx0XHRcdFx0Ji5mb2N1cyA+IHVsIHtcblx0XHRcdFx0XHRsZWZ0OiAxMDAlO1xuICAgICAgICAgICAgICAgICAgICBcbiAgICAgICAgICAgICAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuICAgICAgICAgICAgICAgICAgICAgICAgbGVmdDogaW5pdGlhbDtcbiAgICAgICAgICAgICAgICAgICAgfVxuXHRcdFx0XHR9XG5cdFx0XHR9XG5cblx0XHRcdGEge1xuLy9cdFx0XHRcdHdpZHRoOiAyMDBweDtcblx0XHRcdH1cblxuXHRcdFx0OmhvdmVyID4gYSxcblx0XHRcdC5mb2N1cyA+IGEge1xuXHRcdFx0fVxuXG5cdFx0XHRhOmhvdmVyLFxuXHRcdFx0YS5mb2N1cyB7XG5cdFx0XHR9XG5cdFx0fVxuXG5cdFx0bGk6aG92ZXIgPiB1bCxcblx0XHRsaS5mb2N1cyA+IHVsIHtcblx0XHRcdGxlZnQ6IGF1dG87IFxuXHRcdH1cblx0fVxuXHRcblx0bGkge1xuXHRcdHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgICAgICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuLy8gICAgICAgIHBhZGRpbmc6IDVweDtcbiAgICAgICAgXG4gICAgICAgIEBpbmNsdWRlIG1lZGlhKFwiPD1tZW51XCIpIHtcbiAgICAgICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICB9ICAgIFxuICAgICAgICBcblx0XHQmOmhvdmVyID4gYSxcblx0XHQmLmZvY3VzID4gYSB7XG4gICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtc2Vjb25kYXJ5O1xuICAgICAgICAgICAgY29sb3I6ICRicmFuZC1wcmltYXJ5O1xuXHRcdH1cblx0fVxuICAgIFxuICAgIFxuXHRhIHtcblx0XHRkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG5cdFx0dGV4dC1kZWNvcmF0aW9uOiBub25lO1xuICAgICAgICBwYWRkaW5nOiAxNXB4O1xuICAgICAgICBib3JkZXI6IG5vbmU7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuXHR9XG5cblx0LmN1cnJlbnRfcGFnZV9pdGVtID4gYSxcblx0LmN1cnJlbnQtbWVudS1pdGVtID4gYSxcblx0LmN1cnJlbnRfcGFnZV9hbmNlc3RvciA+IGEsXG5cdC5jdXJyZW50LW1lbnUtYW5jZXN0b3IgPiBhIHtcblx0fVxuICAgIFxuICAgIC5zdWItbWVudSB7XG4gICAgICAgIHdpZHRoOiAyMDBweDtcbiAgICAgICAgcGFkZGluZzogMDtcbiAgICAgICAgbWFyZ2luOiAwO1xuICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9bWVudVwiKSB7XG4gICAgICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgfVxuICAgICAgICBcbiAgICAgICAgbGkge1xuICAgICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgIH1cbiAgICB9XG4gICAgXG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuICAgICAgICB1bC5zdWItbWVudSxcbiAgICAgICAgdWwuY2hpbGRyZW4geyBcbiAgICAgICAgICAgIGRpc3BsYXk6IG5vbmU7IFxuXG4gICAgICAgICAgICAmLnRvZ2dsZWQtb24ge1xuICAgICAgICAgICAgICAgIGRpc3BsYXk6IGJsb2NrOyBcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cbiAgICBcbiAgICAuZHJvcGRvd24tdG9nZ2xlIHtcbi8vICAgICAgICBtYXJnaW46IDVweDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQ7XG4gICAgICAgIHBhZGRpbmc6IDA7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0O1xuICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7IFxuICAgICAgICBjdXJzb3I6IHBvaW50ZXI7XG4vLyAgICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgICBcbiAgICAgICAgLmFycm93LWRvd24ge1xuICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgcmlnaHQ6IDEwcHg7XG4gICAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICAgICAgdmlzaWJpbGl0eTogaGlkZGVuO1xuICAgICAgICAgICAgXG4gICAgICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9bWVudVwiKSB7XG4gICAgICAgICAgICAgICAgdmlzaWJpbGl0eTogdmlzaWJsZTsgXG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgICAgJi50b2dnbGVkLW9uIC5hcnJvdy1kb3duICB7XG4gICAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICB9XG4gICAgfVxufVxuXG5cbi8vLm5hdi1tZW51IHtcbi8vICAgID4gbGkgPiBhLFxuLy8gICAgPiBsaSA+IGJ1dHRvbiA+IGEge1xuLy8gICAgICAgIHBhZGRpbmc6IDMwcHggMTVweDtcbi8vICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9ZGVza3RvcFwiKSB7XG4vLyAgICAgICAgICAgIHBhZGRpbmc6IDMwcHggMTBweDtcbi8vICAgICAgICB9XG4vLyAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuLy8gICAgICAgICAgICBwYWRkaW5nOiAyMHB4O1xuLy8gICAgICAgIH1cbi8vICAgICAgICBAaW5jbHVkZSBtZWRpYShcIjw9cGhvbmVcIikge1xuLy8gICAgICAgICAgICBwYWRkaW5nOiAxNXB4O1xuLy8gICAgICAgIH1cbi8vICAgIH1cbi8vfVxuXG4uY29tbWVudC1uYXZpZ2F0aW9uLFxuLnBvc3RzLW5hdmlnYXRpb24sXG4ucG9zdC1uYXZpZ2F0aW9uIHtcblxuXHQuc2l0ZS1tYWluICYge1xuXHRcdG1hcmdpbjogMCAwIDEuNWVtO1xuXHRcdG92ZXJmbG93OiBoaWRkZW47XG5cdH1cblxuXHQubmF2LXByZXZpb3VzIHtcblx0XHRmbG9hdDogbGVmdDtcbi8vXHRcdHdpZHRoOiA1MCU7XG5cdH1cblxuXHQubmF2LW5leHQge1xuXHRcdGZsb2F0OiByaWdodDtcblx0XHR0ZXh0LWFsaWduOiByaWdodDtcbi8vXHRcdHdpZHRoOiA1MCU7XG5cdH1cbn1cblxuLy9Nb2JpbGUgbWVudSBnbG9iYWwgc3R5bGVzXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuXG5cbi8vbWVkaWEgcXVlcnkgdG8gaGlkZS9zaG93IHRoZSBtb2JpbGUgbWVudSBcbkBpbmNsdWRlIG1lZGlhKFwiPm1lbnVcIikge1xuICAgICNtb2JpbGUtbWVudSB7IFxuXHRcdGRpc3BsYXk6IG5vbmU7XG5cdH1cblx0Lm1haW4tbmF2aWdhdGlvbiB1bCB7XG5cdFx0ZGlzcGxheTogYmxvY2s7XG5cdH1cbn0gXG5cbi8vYXBwbGllZCB0byBib2R5IGFuZCBodG1sIHRhZ3Ncbi8vLm1lbnUtb3BlbiB7XG4vL1x0aGVpZ2h0OiAxMDAlO1xuLy9cdG92ZXJmbG93OiBoaWRkZW47XG4vL31cblxuYnV0dG9uI21vYmlsZS1tZW51IHtcblx0cG9zaXRpb246IHJlbGF0aXZlO1xuXHR6LWluZGV4OiAxMDE7XG4gICAgbWFyZ2luOiAyMHB4IGF1dG87XG4gICAgXG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuICAgICAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB9XG4gICAgXG59XG4udG9nZ2xlZCB7XG5cdHRyYW5zaXRpb246LjVzIGxpbmVhciBhbGw7XG59XG5cbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09XG5cbi8vIE1vYmlsZSBtZW51IHR5cGVzIChSZW1vdmUgb3IgY29tbWVudCBvdXQgd2hhdCB5b3UgZG9u4oCZdCBuZWVkKVxuLy8gVE8gVVNFOlxuLy8gMS4gQWRkIHRoZSBuYW1lIGFzIGEgY2xhc3MgdG8gdGhlIG1lbnUgd3JhcHBlciBpbiBoZWFkZXIucGhwXG4vLyAgICBlZy4gPGRpdiBjbGFzcz1cIm1lbnUtd3JhcHBlciBzbGlkZXVwXCI+XG4vLyAyLiBNYWtlIHN1cmUgdGhlIGNvcnJlc3BvbmRpbmcgc2FzcyBmaWxlIGlzIGJlaW5nIGltcG9ydGVkXG4vLyAzLiBDaGFuZ2Ugc3R5bGVzXG4vLyBTaWRlbm90ZTogRXZlcnl0aGluZyBpbnNpZGUgdGhlIG1lbnUgd3JhcHBlciB3aWxsIGJlIGNvbnRhaW5lZCB3aXRoaW4gdGhlIG1vYmlsZSBtZW51XG5cbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09XG5cbi8vQGltcG9ydCBcIm1lbnVzL292ZXJsYXlcIjtcbi8vQGltcG9ydCBcIm1lbnVzL3NsaWRlZG93blwiO1xuQGltcG9ydCBcIm1lbnVzL3NsaWRlbGVmdFwiOyBcbi8vQGltcG9ydCBcIm1lbnVzL3NsaWRlcmlnaHRcIjsgIFxuLy9AaW1wb3J0IFwibWVudXMvZHJvcGRvd25cIjsgXG4vL0BpbXBvcnQgXCJtZW51cy9wdXNobGVmdFwiOyAvL25vIG5lZWQgdG8gYWRkIC5wdXNoIHRvIC5tZW51LXdyYXBwZXIgLS0gbWFrZSBzdXJlIHRvIGpzL21lbnVzL3B1c2guanMgaXMgZW5xdWV1ZWQgXG4vL0BpbXBvcnQgXCJtZW51cy9wdXNocmlnaHRcIjsgIC8vbm8gbmVlZCB0byBhZGQgLnB1c2ggdG8gLm1lbnUtd3JhcHBlciAtLSBtYWtlIHN1cmUgdG8ganMvbWVudXMvcHVzaC5qcyBpcyBlbnF1ZXVlZFxuLy9AaW1wb3J0IFwibWVudXMvcHVzaHRvcFwiOyAgLy9ubyBuZWVkIHRvIGFkZCAucHVzaCB0byAubWVudS13cmFwcGVyIC0tIG1ha2Ugc3VyZSB0byBqcy9tZW51cy9wdXNoLmpzIGlzIGVucXVldWVkIiwiLy9vdmVybGF5IG1lbnVcbi8qXG5cbi5tZW51LXRvZ2dsZSxcbi5tYWluLW5hdmlnYXRpb24udG9nZ2xlZCB1bCB7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jaztcbn1cbiovXG5cbi5zbGlkZWxlZnQge1xuXHRcblx0Ly90aGUgZGVmYXVsdCBzdHlsZXNcblx0QGluY2x1ZGUgbWVkaWEoXCI8PW1lbnVcIikge1xuXHRcdHRyYW5zaXRpb246LjZzO1xuXHRcdHBvc2l0aW9uOiBmaXhlZDtcblx0XHR0b3A6MDtcblx0XHRyaWdodDowOyBcblx0XHRwYWRkaW5nOjA7XG5cdFx0ei1pbmRleDogLTE7XG5cdFx0d2lkdGg6IDA7XG5cdFx0aGVpZ2h0OiAxMDAlO1xuXHRcdG92ZXJmbG93LXg6aGlkZGVuO1xuXHRcdGJhY2tncm91bmQtY29sb3I6cGluazsvL2tlZXAgdGhlIHNhbWUgdmFsdWUgYXMgdGhlIHRvZ2dsZWQgc3R5bGUgdG8gbWFpbnRhaW4gb3BhY2l0eSBkdXJpbmcgdGhlIHRyYW5zaXRpb25cbiAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogLjJzO1xuICAgICAgICBcbiAgICAgICAgLm92ZXJsYXktY29udGVudCB7XG4gICAgICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgICAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgICAgICAgIGRpc3BsYXk6IHRhYmxlO1xuICAgICAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgICAgICAgIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgICAgICAgICAgIHRyYW5zaXRpb246IC41cyBlYXNlIGFsbDsgXG4gICAgICAgIH1cbiAgICAgICAgXG4gICAgICAgIC5tZW51LW1haW4tbWVudS1jb250YWluZXIge1xuICAgICAgICAgICAgZGlzcGxheTogdGFibGUtY2VsbDtcbiAgICAgICAgICAgIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gICAgICAgIH1cbiAgICAgICAgXG5cdH0gXG5cdFxuXHQudG9nZ2xlZCAmIHtcblx0XHRiYWNrZ3JvdW5kLWNvbG9yOnBpbms7XG5cdFx0dHJhbnNpdGlvbjouNnM7XG5cdFx0ei1pbmRleDogMTAwOyBcblx0XHR3aWR0aDogMTAwJTsgIFxuXHRcdGhlaWdodDogMTAwJTtcblx0XHRvdmVyZmxvdy14OiB2aXNpYmxlO1xuXHRcdFxuXHRcdEBtZWRpYSAoIG1heC1oZWlnaHQ6IDMwMHB4ICl7XG5cdFx0XHRvdmVyZmxvdy15OiBhdXRvOyAvL21ha2Ugc3VyZSB0aGVyZSdzIGEgc2Nyb2xsYmFyIHZpc2libGUgZm9yIGRldmljZXMgdW5kZXIgMzAwcHggdGFsbFxuXHRcdH1cblx0XHRcbiAgICAgICAgLm92ZXJsYXktY29udGVudCB7XG4gICAgICAgICAgICBvcGFjaXR5OiAxO1xuICAgICAgICAgICAgdmlzaWJpbGl0eTogdmlzaWJsZTtcbiAgICAgICAgICAgIHRyYW5zaXRpb246IC41cyBlYXNlIGFsbDtcbiAgICAgICAgICAgIHRyYW5zaXRpb24tZGVsYXk6IC4zcztcbiAgICAgICAgfVxuXHR9XG59IFxuXG4iLCJAY2hhcnNldCBcIlVURi04XCI7XG4vKiFcbiAqIEhhbWJ1cmdlcnNcbiAqIEBkZXNjcmlwdGlvbiBUYXN0eSBDU1MtYW5pbWF0ZWQgaGFtYnVyZ2Vyc1xuICogQGF1dGhvciBKb25hdGhhbiBTdWggQGpvbnN1aFxuICogQHNpdGUgaHR0cHM6Ly9qb25zdWguY29tL2hhbWJ1cmdlcnNcbiAqIEBsaW5rIGh0dHBzOi8vZ2l0aHViLmNvbS9qb25zdWgvaGFtYnVyZ2Vyc1xuICovXG5cbi8vIFNldHRpbmdzXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuJGhhbWJ1cmdlci1wYWRkaW5nLXggICAgICAgICAgIDogMTVweCAhZGVmYXVsdDtcbiRoYW1idXJnZXItcGFkZGluZy15ICAgICAgICAgICA6IDE1cHggIWRlZmF1bHQ7XG4kaGFtYnVyZ2VyLWxheWVyLXdpZHRoICAgICAgICAgOiA0MHB4ICFkZWZhdWx0O1xuJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgICAgICAgIDogNHB4ICFkZWZhdWx0O1xuJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICAgICAgIDogNnB4ICFkZWZhdWx0O1xuJGhhbWJ1cmdlci1sYXllci1jb2xvciAgICAgICAgIDogIzAwMCAhZGVmYXVsdDtcbiRoYW1idXJnZXItbGF5ZXItaG92ZXItY29sb3IgICA6ICM5OTkgIWRlZmF1bHQ7XG4kaGFtYnVyZ2VyLWxheWVyLWJvcmRlci1yYWRpdXMgOiA0cHggIWRlZmF1bHQ7XG4kaGFtYnVyZ2VyLWhvdmVyLW9wYWNpdHkgICAgICAgOiAwLjcgIWRlZmF1bHQ7XG4kaGFtYnVyZ2VyLWFjdGl2ZS1sYXllci1jb2xvciAgOiAkaGFtYnVyZ2VyLWxheWVyLWNvbG9yICFkZWZhdWx0O1xuJGhhbWJ1cmdlci1hY3RpdmUtaG92ZXItb3BhY2l0eTogJGhhbWJ1cmdlci1ob3Zlci1vcGFjaXR5ICFkZWZhdWx0O1xuXG4vLyBUbyB1c2UgQ1NTIGZpbHRlcnMgYXMgdGhlIGhvdmVyIGVmZmVjdCBpbnN0ZWFkIG9mIG9wYWNpdHksXG4vLyBzZXQgJGhhbWJ1cmdlci1ob3Zlci11c2UtZmlsdGVyIGFzIHRydWUgYW5kXG4vLyBjaGFuZ2UgdGhlIHZhbHVlIG9mICRoYW1idXJnZXItaG92ZXItZmlsdGVyIGFjY29yZGluZ2x5LlxuJGhhbWJ1cmdlci1ob3Zlci11c2UtZmlsdGVyICAgOiBmYWxzZSAhZGVmYXVsdDtcbiRoYW1idXJnZXItaG92ZXItZmlsdGVyICAgICAgIDogb3BhY2l0eSg1MCUpICFkZWZhdWx0O1xuJGhhbWJ1cmdlci1hY3RpdmUtaG92ZXItZmlsdGVyOiAkaGFtYnVyZ2VyLWhvdmVyLWZpbHRlciAhZGVmYXVsdDtcblxuLy8gVHlwZXMgKFJlbW92ZSBvciBjb21tZW50IG91dCB3aGF0IHlvdSBkb27igJl0IG5lZWQpXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuJGhhbWJ1cmdlci10eXBlczogKFxuICAzZHgsXG4gIDNkeC1yLFxuICAzZHksXG4gIDNkeS1yLFxuICAzZHh5LFxuICAzZHh5LXIsXG4gIGFycm93LFxuICBhcnJvdy1yLFxuICBhcnJvd2FsdCxcbiAgYXJyb3dhbHQtcixcbiAgYXJyb3d0dXJuLFxuICBhcnJvd3R1cm4tcixcbiAgYm9yaW5nLFxuICBjb2xsYXBzZSxcbiAgY29sbGFwc2UtcixcbiAgZWxhc3RpYyxcbiAgZWxhc3RpYy1yLFxuICBlbXBoYXRpYyxcbiAgZW1waGF0aWMtcixcbiAgbWludXMsXG4gIHNsaWRlcixcbiAgc2xpZGVyLXIsXG4gIHNwaW4sXG4gIHNwaW4tcixcbiAgc3ByaW5nLFxuICBzcHJpbmctcixcbiAgc3RhbmQsXG4gIHN0YW5kLXIsXG4gIHNxdWVlemUsXG4gIHZvcnRleCxcbiAgdm9ydGV4LXJcbikgIWRlZmF1bHQ7XG5cbi8vIEJhc2UgSGFtYnVyZ2VyIChXZSBuZWVkIHRoaXMpXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuQGltcG9ydCBcImJhc2VcIjtcblxuLy8gSGFtYnVyZ2VyIHR5cGVzXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuQGltcG9ydCBcInR5cGVzLzNkeFwiO1xuQGltcG9ydCBcInR5cGVzLzNkeC1yXCI7XG5AaW1wb3J0IFwidHlwZXMvM2R5XCI7XG5AaW1wb3J0IFwidHlwZXMvM2R5LXJcIjtcbkBpbXBvcnQgXCJ0eXBlcy8zZHh5XCI7XG5AaW1wb3J0IFwidHlwZXMvM2R4eS1yXCI7XG5AaW1wb3J0IFwidHlwZXMvYXJyb3dcIjtcbkBpbXBvcnQgXCJ0eXBlcy9hcnJvdy1yXCI7XG5AaW1wb3J0IFwidHlwZXMvYXJyb3dhbHRcIjtcbkBpbXBvcnQgXCJ0eXBlcy9hcnJvd2FsdC1yXCI7XG5AaW1wb3J0IFwidHlwZXMvYXJyb3d0dXJuXCI7XG5AaW1wb3J0IFwidHlwZXMvYXJyb3d0dXJuLXJcIjtcbkBpbXBvcnQgXCJ0eXBlcy9ib3JpbmdcIjtcbkBpbXBvcnQgXCJ0eXBlcy9jb2xsYXBzZVwiO1xuQGltcG9ydCBcInR5cGVzL2NvbGxhcHNlLXJcIjtcbkBpbXBvcnQgXCJ0eXBlcy9lbGFzdGljXCI7XG5AaW1wb3J0IFwidHlwZXMvZWxhc3RpYy1yXCI7XG5AaW1wb3J0IFwidHlwZXMvZW1waGF0aWNcIjtcbkBpbXBvcnQgXCJ0eXBlcy9lbXBoYXRpYy1yXCI7XG5AaW1wb3J0IFwidHlwZXMvbWludXNcIjtcbkBpbXBvcnQgXCJ0eXBlcy9zbGlkZXJcIjtcbkBpbXBvcnQgXCJ0eXBlcy9zbGlkZXItclwiO1xuQGltcG9ydCBcInR5cGVzL3NwaW5cIjtcbkBpbXBvcnQgXCJ0eXBlcy9zcGluLXJcIjtcbkBpbXBvcnQgXCJ0eXBlcy9zcHJpbmdcIjtcbkBpbXBvcnQgXCJ0eXBlcy9zcHJpbmctclwiO1xuQGltcG9ydCBcInR5cGVzL3N0YW5kXCI7XG5AaW1wb3J0IFwidHlwZXMvc3RhbmQtclwiO1xuQGltcG9ydCBcInR5cGVzL3NxdWVlemVcIjtcbkBpbXBvcnQgXCJ0eXBlcy92b3J0ZXhcIjtcbkBpbXBvcnQgXCJ0eXBlcy92b3J0ZXgtclwiO1xuXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxuLy8gQ29va2luZyB1cCBhZGRpdGlvbmFsIHR5cGVzOlxuLy9cbi8vIFRoZSBTYXNzIGZvciBlYWNoIGhhbWJ1cmdlciB0eXBlIHNob3VsZCBiZSBuZXN0ZWRcbi8vIGluc2lkZSBhbiBAaWYgZGlyZWN0aXZlIHRvIGNoZWNrIHdoZXRoZXIgb3Igbm90XG4vLyBpdCBleGlzdHMgaW4gJGhhbWJ1cmdlci10eXBlcyBzbyBvbmx5IHRoZSBDU1MgZm9yXG4vLyBpbmNsdWRlZCB0eXBlcyBhcmUgZ2VuZXJhdGVkLlxuLy9cbi8vIGUuZy4gaGFtYnVyZ2Vycy90eXBlcy9fbmV3LXR5cGUuc2Nzc1xuLy9cbi8vIEBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBuZXctdHlwZSkge1xuLy8gICAuaGFtYnVyZ2VyLS1uZXctdHlwZSB7XG4vLyAgICAgLi4uXG4vLyAgIH1cbi8vIH1cbiIsIi8vIEhhbWJ1cmdlclxuLy8gPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cbi5oYW1idXJnZXIge1xuICAgIHBhZGRpbmc6ICRoYW1idXJnZXItcGFkZGluZy15ICRoYW1idXJnZXItcGFkZGluZy14O1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG5cbiAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiBvcGFjaXR5LCBmaWx0ZXI7XG4gICAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4xNXM7XG4gICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjtcblxuICAgIC8vIE5vcm1hbGl6ZSAoPGJ1dHRvbj4pXG4gICAgZm9udDogaW5oZXJpdDtcbiAgICBjb2xvcjogaW5oZXJpdDtcbiAgICB0ZXh0LXRyYW5zZm9ybTogbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbiAgICBib3JkZXI6IDA7XG4gICAgbWFyZ2luOiAwO1xuICAgIG92ZXJmbG93OiB2aXNpYmxlO1xuXG4gICAgJjpob3ZlciB7XG4gICAgICAgIEBpZiAkaGFtYnVyZ2VyLWhvdmVyLXVzZS1maWx0ZXI9PXRydWUge1xuICAgICAgICAgICAgZmlsdGVyOiAkaGFtYnVyZ2VyLWhvdmVyLWZpbHRlcjtcbiAgICAgICAgfVxuXG4gICAgICAgIEBlbHNlIHtcbiAgICAgICAgICAgIG9wYWNpdHk6ICRoYW1idXJnZXItaG92ZXItb3BhY2l0eTtcbiAgICAgICAgfVxuXG4gICAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogJGhhbWJ1cmdlci1sYXllci1ob3Zlci1jb2xvcjtcbiAgICAgICAgICAgICYsXG4gICAgICAgICAgICAmOjpiZWZvcmUsXG4gICAgICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogJGhhbWJ1cmdlci1sYXllci1ob3Zlci1jb2xvcjtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgICBAaWYgJGhhbWJ1cmdlci1ob3Zlci11c2UtZmlsdGVyPT10cnVlIHtcbiAgICAgICAgICAgICAgICBmaWx0ZXI6ICRoYW1idXJnZXItYWN0aXZlLWhvdmVyLWZpbHRlcjtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgQGVsc2Uge1xuICAgICAgICAgICAgICAgIG9wYWNpdHk6ICRoYW1idXJnZXItYWN0aXZlLWhvdmVyLW9wYWNpdHk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICAuaGFtYnVyZ2VyLWlubmVyLFxuICAgICAgICAuaGFtYnVyZ2VyLWlubmVyOjpiZWZvcmUsXG4gICAgICAgIC5oYW1idXJnZXItaW5uZXI6OmFmdGVyIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRoYW1idXJnZXItYWN0aXZlLWxheWVyLWNvbG9yO1xuICAgICAgICB9XG4gICAgfVxufVxuXG4uaGFtYnVyZ2VyLWJveCB7XG4gICAgd2lkdGg6ICRoYW1idXJnZXItbGF5ZXItd2lkdGg7XG4gICAgaGVpZ2h0OiAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDMgKyAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcgKiAyO1xuICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cblxuLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgdG9wOiA1MCU7XG4gICAgbWFyZ2luLXRvcDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgLyAtMjtcblxuICAgICYsXG4gICAgJjo6YmVmb3JlLFxuICAgICY6OmFmdGVyIHtcbiAgICAgICAgd2lkdGg6ICRoYW1idXJnZXItbGF5ZXItd2lkdGg7XG4gICAgICAgIGhlaWdodDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQ7XG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRoYW1idXJnZXItbGF5ZXItY29sb3I7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6ICRoYW1idXJnZXItbGF5ZXItYm9yZGVyLXJhZGl1cztcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB0cmFuc2Zvcm07XG4gICAgICAgIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMTVzO1xuICAgICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogZWFzZTtcbiAgICB9XG5cbiAgICAmOjpiZWZvcmUsXG4gICAgJjo6YWZ0ZXIge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5cbiAgICAmOjpiZWZvcmUge1xuICAgICAgICB0b3A6ICgkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcgKyAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCkgKiAtMTtcbiAgICB9XG5cbiAgICAmOjphZnRlciB7XG4gICAgICAgIGJvdHRvbTogKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyArICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0KSAqIC0xO1xuICAgIH1cbn0iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgM2R4KSB7XG4gIC8qXG4gICAqIDNEWFxuICAgKi9cbiAgLmhhbWJ1cmdlci0tM2R4IHtcbiAgICAuaGFtYnVyZ2VyLWJveCB7XG4gICAgICBwZXJzcGVjdGl2ZTogJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIDI7XG4gICAgfVxuXG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4xNXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpLFxuICAgICAgICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvciAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcblxuICAgICAgJjo6YmVmb3JlLFxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50ICFpbXBvcnRhbnQ7XG4gICAgICAgIHRyYW5zZm9ybTogcm90YXRlWSgxODBkZWcpO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZywgMCkgcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICgkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZykgKiAtMSwgMCkgcm90YXRlKC00NWRlZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCAzZHgtcikge1xuICAvKlxuICAgKiAzRFggUmV2ZXJzZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tM2R4LXIge1xuICAgIC5oYW1idXJnZXItYm94IHtcbiAgICAgIHBlcnNwZWN0aXZlOiAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogMjtcbiAgICB9XG5cbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjE1cyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSksXG4gICAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xuXG4gICAgICAmOjpiZWZvcmUsXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbiAgICAgICAgdHJhbnNmb3JtOiByb3RhdGVZKC0xODBkZWcpO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZywgMCkgcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICgkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZykgKiAtMSwgMCkgcm90YXRlKC00NWRlZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCAzZHkpIHtcbiAgLypcbiAgICogM0RZXG4gICAqL1xuICAuaGFtYnVyZ2VyLS0zZHkge1xuICAgIC5oYW1idXJnZXItYm94IHtcbiAgICAgIHBlcnNwZWN0aXZlOiAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogMjtcbiAgICB9XG5cbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjE1cyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSksXG4gICAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xuXG4gICAgICAmOjpiZWZvcmUsXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbiAgICAgICAgdHJhbnNmb3JtOiByb3RhdGVYKC0xODBkZWcpO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZywgMCkgcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICgkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCArICRoYW1idXJnZXItbGF5ZXItc3BhY2luZykgKiAtMSwgMCkgcm90YXRlKC00NWRlZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCAzZHktcikge1xuICAvKlxuICAgKiAzRFkgUmV2ZXJzZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tM2R5LXIge1xuICAgIC5oYW1idXJnZXItYm94IHtcbiAgICAgIHBlcnNwZWN0aXZlOiAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogMjtcbiAgICB9XG5cbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjE1cyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSksXG4gICAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xuXG4gICAgICAmOjpiZWZvcmUsXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwcyAwLjFzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcbiAgICAgICAgdHJhbnNmb3JtOiByb3RhdGVYKDE4MGRlZyk7XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nLCAwKSByb3RhdGUoNDVkZWcpO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nKSAqIC0xLCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIDNkeHkpIHtcbiAgLypcbiAgICogM0RYWVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tM2R4eSB7XG4gICAgLmhhbWJ1cmdlci1ib3gge1xuICAgICAgcGVyc3BlY3RpdmU6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAyO1xuICAgIH1cblxuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTVzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKSxcbiAgICAgICAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3IgMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG5cbiAgICAgICY6OmJlZm9yZSxcbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZVgoMTgwZGVnKSByb3RhdGVZKDE4MGRlZyk7XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nLCAwKSByb3RhdGUoNDVkZWcpO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nKSAqIC0xLCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIDNkeHktcikge1xuICAvKlxuICAgKiAzRFhZIFJldmVyc2VcbiAgICovXG4gIC5oYW1idXJnZXItLTNkeHktciB7XG4gICAgLmhhbWJ1cmdlci1ib3gge1xuICAgICAgcGVyc3BlY3RpdmU6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAyO1xuICAgIH1cblxuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTVzIGN1YmljLWJlemllcigwLjY0NSwgMC4wNDUsIDAuMzU1LCAxKSxcbiAgICAgICAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3IgMHMgMC4xcyBjdWJpYy1iZXppZXIoMC42NDUsIDAuMDQ1LCAwLjM1NSwgMSk7XG5cbiAgICAgICY6OmJlZm9yZSxcbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDBzIDAuMXMgY3ViaWMtYmV6aWVyKDAuNjQ1LCAwLjA0NSwgMC4zNTUsIDEpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZVgoMTgwZGVnKSByb3RhdGVZKDE4MGRlZykgcm90YXRlWigtMTgwZGVnKTtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgKyAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcsIDApIHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAoJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgKyAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcpICogLTEsIDApIHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgYXJyb3cpIHtcbiAgLypcbiAgICogQXJyb3dcbiAgICovXG4gIC5oYW1idXJnZXItLWFycm93LmlzLWFjdGl2ZSB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMC4yLCAwLCAwKSByb3RhdGUoLTQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIC0wLjIsIDAsIDApIHJvdGF0ZSg0NWRlZykgc2NhbGUoMC43LCAxKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBhcnJvdy1yKSB7XG4gIC8qXG4gICAqIEFycm93IFJpZ2h0XG4gICAqL1xuICAuaGFtYnVyZ2VyLS1hcnJvdy1yLmlzLWFjdGl2ZSB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAwLjIsIDAsIDApIHJvdGF0ZSg0NWRlZykgc2NhbGUoMC43LCAxKTtcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAwLjIsIDAsIDApIHJvdGF0ZSgtNDVkZWcpIHNjYWxlKDAuNywgMSk7XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgYXJyb3dhbHQpIHtcbiAgLypcbiAgICogQXJyb3cgQWx0XG4gICAqL1xuICAuaGFtYnVyZ2VyLS1hcnJvd2FsdCB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4xcyAwLjFzIGVhc2UsXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjFzIGN1YmljLWJlemllcigwLjE2NSwgMC44NCwgMC40NCwgMSk7XG4gICAgICB9XG5cbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgMC4xcyBlYXNlLFxuICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xcyBjdWJpYy1iZXppZXIoMC4xNjUsIDAuODQsIDAuNDQsIDEpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMC4yLCAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogLTAuMjUsIDApIHJvdGF0ZSgtNDVkZWcpIHNjYWxlKDAuNywgMSk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xcyAwLjFzIGN1YmljLWJlemllcigwLjg5NSwgMC4wMywgMC42ODUsIDAuMjIpO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMC4yLCAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogMC4yNSwgMCkgcm90YXRlKDQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjFzIGVhc2UsXG4gICAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMXMgMC4xcyBjdWJpYy1iZXppZXIoMC44OTUsIDAuMDMsIDAuNjg1LCAwLjIyKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGFycm93YWx0LXIpIHtcbiAgLypcbiAgICogQXJyb3cgQWx0IFJpZ2h0XG4gICAqL1xuICAuaGFtYnVyZ2VyLS1hcnJvd2FsdC1yIHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMXMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMXMgY3ViaWMtYmV6aWVyKDAuMTY1LCAwLjg0LCAwLjQ0LCAxKTtcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uOiBib3R0b20gMC4xcyAwLjFzIGVhc2UsXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjFzIGN1YmljLWJlemllcigwLjE2NSwgMC44NCwgMC40NCwgMSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIDAuMiwgJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIC0wLjI1LCAwKSByb3RhdGUoNDVkZWcpIHNjYWxlKDAuNywgMSk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xcyAwLjFzIGN1YmljLWJlemllcigwLjg5NSwgMC4wMywgMC42ODUsIDAuMjIpO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAwLjIsICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAwLjI1LCAwKSByb3RhdGUoLTQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjFzIGVhc2UsXG4gICAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMXMgMC4xcyBjdWJpYy1iZXppZXIoMC44OTUsIDAuMDMsIDAuNjg1LCAwLjIyKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGFycm93dHVybikge1xuICAvKlxuICAgKiBBcnJvdyBUdXJuXG4gICAqL1xuICAuaGFtYnVyZ2VyLS1hcnJvd3R1cm4uaXMtYWN0aXZlIHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zZm9ybTogcm90YXRlKC0xODBkZWcpO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDhweCwgMCwgMCkgcm90YXRlKDQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoOHB4LCAwLCAwKSByb3RhdGUoLTQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGFycm93dHVybi1yKSB7XG4gIC8qXG4gICAqIEFycm93IFR1cm4gUmlnaHRcbiAgICovXG4gIC5oYW1idXJnZXItLWFycm93dHVybi1yLmlzLWFjdGl2ZSB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtMTgwZGVnKTtcblxuICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgtOHB4LCAwLCAwKSByb3RhdGUoLTQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoLThweCwgMCwgMCkgcm90YXRlKDQ1ZGVnKSBzY2FsZSgwLjcsIDEpO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGJvcmluZykge1xuICAvKlxuICAgKiBCb3JpbmdcbiAgICovXG4gIC5oYW1idXJnZXItLWJvcmluZyB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAmLFxuICAgICAgJjo6YmVmb3JlLFxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiBub25lO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3R0b206IDA7XG4gICAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoLTkwZGVnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGNvbGxhcHNlKSB7XG4gIC8qXG4gICAqIENvbGxhcHNlXG4gICAqL1xuICAuaGFtYnVyZ2VyLS1jb2xsYXBzZSB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0b3A6IGF1dG87XG4gICAgICBib3R0b206IDA7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjEzcztcbiAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDAuMTNzO1xuICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIDIgKyAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDIpICogLTE7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLFxuICAgICAgICAgICAgICAgICAgICBvcGFjaXR5IDAuMXMgbGluZWFyO1xuICAgICAgfVxuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4xMnMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICsgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQpICogLTEsIDApIHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjIycztcbiAgICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksXG4gICAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwLjFzIDAuMjJzIGxpbmVhcjtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKC05MGRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4xNnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAsIDAuNjY2NjcsIDAuMzMzMzMpLFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyAwLjI1cyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGNvbGxhcHNlLXIpIHtcbiAgLypcbiAgICogQ29sbGFwc2UgUmV2ZXJzZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tY29sbGFwc2UtciB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0b3A6IGF1dG87XG4gICAgICBib3R0b206IDA7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjEzcztcbiAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDAuMTNzO1xuICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIDIgKyAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDIpICogLTE7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLFxuICAgICAgICAgICAgICAgICAgICBvcGFjaXR5IDAuMXMgbGluZWFyO1xuICAgICAgfVxuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4xMnMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICsgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQpICogLTEsIDApIHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDAuMjJzO1xuICAgICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjJzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLCAwLjY2NjY3LCAwLjMzMzMzKSxcbiAgICAgICAgICAgICAgICAgICAgICBvcGFjaXR5IDAuMXMgMC4yMnMgbGluZWFyO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoOTBkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMTZzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLCAwLjY2NjY3LCAwLjMzMzMzKSxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xM3MgMC4yNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBlbGFzdGljKSB7XG4gIC8qXG4gICAqIEVsYXN0aWNcbiAgICovXG4gIC5oYW1idXJnZXItLWVsYXN0aWMge1xuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdG9wOiAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAvIDI7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjI3NXM7XG4gICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNjgsIC0wLjU1LCAwLjI2NSwgMS41NSk7XG5cbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIHRvcDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgKyAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmc7XG4gICAgICAgIHRyYW5zaXRpb246IG9wYWNpdHkgMC4xMjVzIDAuMjc1cyBlYXNlO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICogMikgKyAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICogMik7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjI3NXMgY3ViaWMtYmV6aWVyKDAuNjgsIC0wLjU1LCAwLjI2NSwgMS41NSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgICR5LW9mZnNldDogJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICsgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQ7XG5cbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkeS1vZmZzZXQsIDApIHJvdGF0ZSgxMzVkZWcpO1xuICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjA3NXM7XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwcztcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgJHktb2Zmc2V0ICogLTIsIDApIHJvdGF0ZSgtMjcwZGVnKTtcbiAgICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjA3NXM7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBlbGFzdGljLXIpIHtcbiAgLypcbiAgICogRWxhc3RpYyBSZXZlcnNlXG4gICAqL1xuICAuaGFtYnVyZ2VyLS1lbGFzdGljLXIge1xuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdG9wOiAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAvIDI7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjI3NXM7XG4gICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNjgsIC0wLjU1LCAwLjI2NSwgMS41NSk7XG5cbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIHRvcDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgKyAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmc7XG4gICAgICAgIHRyYW5zaXRpb246IG9wYWNpdHkgMC4xMjVzIDAuMjc1cyBlYXNlO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICogMikgKyAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICogMik7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjI3NXMgY3ViaWMtYmV6aWVyKDAuNjgsIC0wLjU1LCAwLjI2NSwgMS41NSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgICR5LW9mZnNldDogJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICsgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQ7XG5cbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkeS1vZmZzZXQsIDApIHJvdGF0ZSgtMTM1ZGVnKTtcbiAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMC4wNzVzO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gICAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICR5LW9mZnNldCAqIC0yLCAwKSByb3RhdGUoMjcwZGVnKTtcbiAgICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjA3NXM7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBlbXBoYXRpYykge1xuICAvKlxuICAgKiBFbXBoYXRpY1xuICAgKi9cbiAgLmhhbWJ1cmdlci0tZW1waGF0aWMge1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG5cbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4xMjVzIDAuMTc1cyBlYXNlLWluO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICBsZWZ0OiAwO1xuICAgICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4xMjVzIGN1YmljLWJlemllcigwLjYsIDAuMDQsIDAuOTgsIDAuMzM1KSxcbiAgICAgICAgICAgICAgICAgICAgdG9wIDAuMDVzIDAuMTI1cyBsaW5lYXIsXG4gICAgICAgICAgICAgICAgICAgIGxlZnQgMC4xMjVzIDAuMTc1cyBlYXNlLWluO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0KSArICgkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcpO1xuICAgICAgICByaWdodDogMDtcbiAgICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMTI1cyBjdWJpYy1iZXppZXIoMC42LCAwLjA0LCAwLjk4LCAwLjMzNSksXG4gICAgICAgICAgICAgICAgICAgIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLFxuICAgICAgICAgICAgICAgICAgICByaWdodCAwLjEyNXMgMC4xNzVzIGVhc2UtaW47XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDBzO1xuICAgICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogZWFzZS1vdXQ7XG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50ICFpbXBvcnRhbnQ7XG5cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICBsZWZ0OiAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogLTI7XG4gICAgICAgICAgdG9wOiAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogLTI7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogMiwgJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIDIsIDApIHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogbGVmdCAwLjEyNXMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgICAgdG9wIDAuMDVzIDAuMTI1cyBsaW5lYXIsXG4gICAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMTI1cyAwLjE3NXMgY3ViaWMtYmV6aWVyKDAuMDc1LCAwLjgyLCAwLjE2NSwgMSk7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgcmlnaHQ6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMjtcbiAgICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMjtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKCRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMiwgJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIDIsIDApIHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IHJpZ2h0IDAuMTI1cyBlYXNlLW91dCxcbiAgICAgICAgICAgICAgICAgICAgICB0b3AgMC4wNXMgMC4xMjVzIGxpbmVhcixcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xMjVzIDAuMTc1cyBjdWJpYy1iZXppZXIoMC4wNzUsIDAuODIsIDAuMTY1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIGVtcGhhdGljLXIpIHtcbiAgLypcbiAgICogRW1waGF0aWMgUmV2ZXJzZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tZW1waGF0aWMtciB7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcblxuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjEyNXMgMC4xNzVzIGVhc2UtaW47XG5cbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIGxlZnQ6IDA7XG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjEyNXMgY3ViaWMtYmV6aWVyKDAuNiwgMC4wNCwgMC45OCwgMC4zMzUpLFxuICAgICAgICAgICAgICAgICAgICB0b3AgMC4wNXMgMC4xMjVzIGxpbmVhcixcbiAgICAgICAgICAgICAgICAgICAgbGVmdCAwLjEyNXMgMC4xNzVzIGVhc2UtaW47XG4gICAgICB9XG5cbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdG9wOiAoJGhhbWJ1cmdlci1sYXllci1oZWlnaHQpICsgKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyk7XG4gICAgICAgIHJpZ2h0OiAwO1xuICAgICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4xMjVzIGN1YmljLWJlemllcigwLjYsIDAuMDQsIDAuOTgsIDAuMzM1KSxcbiAgICAgICAgICAgICAgICAgICAgdG9wIDAuMDVzIDAuMTI1cyBsaW5lYXIsXG4gICAgICAgICAgICAgICAgICAgIHJpZ2h0IDAuMTI1cyAwLjE3NXMgZWFzZS1pbjtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlLW91dDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIGxlZnQ6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMjtcbiAgICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAyO1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIDIsICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMiwgMCkgcm90YXRlKC00NWRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogbGVmdCAwLjEyNXMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgICAgdG9wIDAuMDVzIDAuMTI1cyBsaW5lYXIsXG4gICAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMTI1cyAwLjE3NXMgY3ViaWMtYmV6aWVyKDAuMDc1LCAwLjgyLCAwLjE2NSwgMSk7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgcmlnaHQ6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAtMjtcbiAgICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItd2lkdGggKiAyO1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoJGhhbWJ1cmdlci1sYXllci13aWR0aCAqIC0yLCAkaGFtYnVyZ2VyLWxheWVyLXdpZHRoICogLTIsIDApIHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogcmlnaHQgMC4xMjVzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIHRvcCAwLjA1cyAwLjEyNXMgbGluZWFyLFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEyNXMgMC4xNzVzIGN1YmljLWJlemllcigwLjA3NSwgMC44MiwgMC4xNjUsIDEpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgbWludXMpIHtcbiAgLypcbiAgICogTWludXNcbiAgICovXG4gIC5oYW1idXJnZXItLW1pbnVzIHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICY6OmJlZm9yZSxcbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogYm90dG9tIDAuMDhzIDBzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICB0b3AgMC4wOHMgMHMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgIG9wYWNpdHkgMHMgbGluZWFyO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICAmOjpiZWZvcmUsXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjA4cyBlYXNlLW91dCxcbiAgICAgICAgICAgICAgICAgICAgICB0b3AgMC4wOHMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwcyAwLjA4cyBsaW5lYXI7XG4gICAgICAgIH1cbiAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgYm90dG9tOiAwO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgc2xpZGVyKSB7XG4gIC8qXG4gICAqIFNsaWRlclxuICAgKi9cbiAgLmhhbWJ1cmdlci0tc2xpZGVyIHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRvcDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgLyAyO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nO1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB0cmFuc2Zvcm0sIG9wYWNpdHk7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlO1xuICAgICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjE1cztcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0b3A6ICgkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDIpICsgKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIDIpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICAkeS1vZmZzZXQ6ICRoYW1idXJnZXItbGF5ZXItc3BhY2luZyArICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0O1xuXG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgJHktb2Zmc2V0LCAwKSByb3RhdGUoNDVkZWcpO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoLTQ1ZGVnKSB0cmFuc2xhdGUzZCgkaGFtYnVyZ2VyLWxheWVyLXdpZHRoIC8gLTcsICRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIC0xLCAwKTtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgJHktb2Zmc2V0ICogLTIsIDApIHJvdGF0ZSgtOTBkZWcpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgc2xpZGVyLXIpIHtcbiAgLypcbiAgICogU2xpZGVyIFJldmVyc2VcbiAgICovXG4gIC5oYW1idXJnZXItLXNsaWRlci1yIHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRvcDogJGhhbWJ1cmdlci1sYXllci1oZWlnaHQgLyAyO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nO1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB0cmFuc2Zvcm0sIG9wYWNpdHk7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBlYXNlO1xuICAgICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjE1cztcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0b3A6ICgkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDIpICsgKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIDIpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICAkeS1vZmZzZXQ6ICRoYW1idXJnZXItbGF5ZXItc3BhY2luZyArICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0O1xuXG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgJHktb2Zmc2V0LCAwKSByb3RhdGUoLTQ1ZGVnKTtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKSB0cmFuc2xhdGUzZCgkaGFtYnVyZ2VyLWxheWVyLXdpZHRoIC8gNywgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICogLTEsIDApO1xuICAgICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkeS1vZmZzZXQgKiAtMiwgMCkgcm90YXRlKDkwZGVnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHNwaW4pIHtcbiAgLypcbiAgICogU3BpblxuICAgKi9cbiAgLmhhbWJ1cmdlci0tc3BpbiB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjIycztcbiAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcblxuICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4yNXMgZWFzZS1pbixcbiAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwLjFzIGVhc2UtaW47XG4gICAgICB9XG5cbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgMC4yNXMgZWFzZS1pbixcbiAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMjJzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgyMjVkZWcpO1xuICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjEycztcbiAgICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwLjFzIDAuMTJzIGVhc2Utb3V0O1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjFzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjIycyAwLjEycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHNwaW4tcikge1xuICAvKlxuICAgKiBTcGluIFJldmVyc2VcbiAgICovXG4gIC5oYW1idXJnZXItLXNwaW4tciB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjIycztcbiAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcblxuICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4yNXMgZWFzZS1pbixcbiAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwLjFzIGVhc2UtaW47XG4gICAgICB9XG5cbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbjogYm90dG9tIDAuMXMgMC4yNXMgZWFzZS1pbixcbiAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMjJzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtMjI1ZGVnKTtcbiAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMC4xMnM7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjFzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIG9wYWNpdHkgMC4xcyAwLjEycyBlYXNlLW91dDtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3R0b206IDA7XG4gICAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoOTBkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjFzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjIycyAwLjEycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHNwcmluZykge1xuICAvKlxuICAgKiBTcHJpbmdcbiAgICovXG4gIC5oYW1idXJnZXItLXNwcmluZyB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0IC8gMjtcbiAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMHMgMC4xM3MgbGluZWFyO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0b3A6ICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICsgJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nO1xuICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4xcyAwLjJzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLjY2NjY3LCAwLjY2NjY3LCAxKSxcbiAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMTNzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItaGVpZ2h0ICogMikgKyAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICogMik7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLFxuICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xM3MgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDAuMjJzO1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjFzIDAuMTVzIGN1YmljLWJlemllcigwLjMzMzMzLCAwLCAwLjY2NjY3LCAwLjMzMzMzKSxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4xM3MgMC4yMnMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG4gICAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAkaGFtYnVyZ2VyLWxheWVyLXNwYWNpbmcgKyAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCwgMCkgcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgfVxuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAsIDAuNjY2NjcsIDAuMzMzMzMpLFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyAwLjIycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsICRoYW1idXJnZXItbGF5ZXItc3BhY2luZyArICRoYW1idXJnZXItbGF5ZXItaGVpZ2h0LCAwKSByb3RhdGUoLTQ1ZGVnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHNwcmluZy1yKSB7XG4gIC8qXG4gICAqIFNwcmluZyBSZXZlcnNlXG4gICAqL1xuICAuaGFtYnVyZ2VyLS1zcHJpbmctciB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0b3A6IGF1dG87XG4gICAgICBib3R0b206IDA7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjEzcztcbiAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDBzO1xuICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRvcDogKCRoYW1idXJnZXItbGF5ZXItc3BhY2luZyAqIDIgKyAkaGFtYnVyZ2VyLWxheWVyLWhlaWdodCAqIDIpICogLTE7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjJzIDAuMnMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAuNjY2NjcsIDAuNjY2NjcsIDEpLFxuICAgICAgICAgICAgICAgICAgICBvcGFjaXR5IDBzIGxpbmVhcjtcbiAgICAgIH1cblxuICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMC42NjY2NywgMC42NjY2NywgMSksXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAoJGhhbWJ1cmdlci1sYXllci1zcGFjaW5nICsgJGhhbWJ1cmdlci1sYXllci1oZWlnaHQpICogLTEsIDApIHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjIycztcbiAgICAgICAgdHJhbnNpdGlvbi10aW1pbmctZnVuY3Rpb246IGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xuXG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4ycyBjdWJpYy1iZXppZXIoMC4zMzMzMywgMCwgMC42NjY2NywgMC4zMzMzMyksXG4gICAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwcyAwLjIycyBsaW5lYXI7XG4gICAgICAgIH1cblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg5MGRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMzMzMzMsIDAsIDAuNjY2NjcsIDAuMzMzMzMpLFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjEzcyAwLjIycyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHN0YW5kKSB7XG4gIC8qXG4gICAqIFN0YW5kXG4gICAqL1xuICAuaGFtYnVyZ2VyLS1zdGFuZCB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4wNzVzIDAuMTVzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpLFxuICAgICAgICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvciAwcyAwLjA3NXMgbGluZWFyO1xuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2l0aW9uOiB0b3AgMC4wNzVzIDAuMDc1cyBlYXNlLWluLFxuICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4wNzVzIDBzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuICAgICAgfVxuXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjA3NXMgMC4wNzVzIGVhc2UtaW4sXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjA3NXMgMHMgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDkwZGVnKTtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdHJhbnNwYXJlbnQgIWltcG9ydGFudDtcblxuICAgICAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4wNzVzIDBzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpLFxuICAgICAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yIDBzIDAuMTVzIGxpbmVhcjtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNDVkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjA3NXMgMC4xcyBlYXNlLW91dCxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4wNzVzIDAuMTVzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogYm90dG9tIDAuMDc1cyAwLjFzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjA3NXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCBzdGFuZC1yKSB7XG4gIC8qXG4gICAqIFN0YW5kIFJldmVyc2VcbiAgICovXG4gIC5oYW1idXJnZXItLXN0YW5kLXIge1xuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdHJhbnNpdGlvbjogdHJhbnNmb3JtIDAuMDc1cyAwLjE1cyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KSxcbiAgICAgICAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3IgMHMgMC4wNzVzIGxpbmVhcjtcblxuICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMDc1cyAwLjA3NXMgZWFzZS1pbixcbiAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMDc1cyAwcyBjdWJpYy1iZXppZXIoMC41NSwgMC4wNTUsIDAuNjc1LCAwLjE5KTtcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uOiBib3R0b20gMC4wNzVzIDAuMDc1cyBlYXNlLWluLFxuICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4wNzVzIDBzIGN1YmljLWJlemllcigwLjU1LCAwLjA1NSwgMC42NzUsIDAuMTkpO1xuICAgICAgfVxuICAgIH1cblxuICAgICYuaXMtYWN0aXZlIHtcbiAgICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudCAhaW1wb3J0YW50O1xuXG4gICAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjA3NXMgMHMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSksXG4gICAgICAgICAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3IgMHMgMC4xNXMgbGluZWFyO1xuXG4gICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKC00NWRlZyk7XG4gICAgICAgICAgdHJhbnNpdGlvbjogdG9wIDAuMDc1cyAwLjFzIGVhc2Utb3V0LFxuICAgICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjA3NXMgMC4xNXMgY3ViaWMtYmV6aWVyKDAuMjE1LCAwLjYxLCAwLjM1NSwgMSk7XG4gICAgICAgIH1cblxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgYm90dG9tOiAwO1xuICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgICB0cmFuc2l0aW9uOiBib3R0b20gMC4wNzVzIDAuMXMgZWFzZS1vdXQsXG4gICAgICAgICAgICAgICAgICAgICAgdHJhbnNmb3JtIDAuMDc1cyAwLjE1cyBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQGlmIGluZGV4KCRoYW1idXJnZXItdHlwZXMsIHNxdWVlemUpIHtcbiAgLypcbiAgICogU3F1ZWV6ZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tc3F1ZWV6ZSB7XG4gICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICB0cmFuc2l0aW9uLWR1cmF0aW9uOiAwLjA3NXM7XG4gICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG5cbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjA3NXMgMC4xMnMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgb3BhY2l0eSAwLjA3NXMgZWFzZTtcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uOiBib3R0b20gMC4wNzVzIDAuMTJzIGVhc2UsXG4gICAgICAgICAgICAgICAgICAgIHRyYW5zZm9ybSAwLjA3NXMgY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDU1LCAwLjY3NSwgMC4xOSk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMC4xMnM7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4yMTUsIDAuNjEsIDAuMzU1LCAxKTtcblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICAgIHRyYW5zaXRpb246IHRvcCAwLjA3NXMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgICBvcGFjaXR5IDAuMDc1cyAwLjEycyBlYXNlO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICAgICAgICAgIHRyYW5zaXRpb246IGJvdHRvbSAwLjA3NXMgZWFzZSxcbiAgICAgICAgICAgICAgICAgICAgICB0cmFuc2Zvcm0gMC4wNzVzIDAuMTJzIGN1YmljLWJlemllcigwLjIxNSwgMC42MSwgMC4zNTUsIDEpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCJAaWYgaW5kZXgoJGhhbWJ1cmdlci10eXBlcywgdm9ydGV4KSB7XG4gIC8qXG4gICAqIFZvcnRleFxuICAgKi9cbiAgLmhhbWJ1cmdlci0tdm9ydGV4IHtcbiAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgIHRyYW5zaXRpb24tZHVyYXRpb246IDAuMnM7XG4gICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuMTksIDEsIDAuMjIsIDEpO1xuXG4gICAgICAmOjpiZWZvcmUsXG4gICAgICAmOjphZnRlciB7XG4gICAgICAgIHRyYW5zaXRpb24tZHVyYXRpb246IDBzO1xuICAgICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjFzO1xuICAgICAgICB0cmFuc2l0aW9uLXRpbWluZy1mdW5jdGlvbjogbGluZWFyO1xuICAgICAgfVxuXG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiB0b3AsIG9wYWNpdHk7XG4gICAgICB9XG5cbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbi1wcm9wZXJ0eTogYm90dG9tLCB0cmFuc2Zvcm07XG4gICAgICB9XG4gICAgfVxuXG4gICAgJi5pcy1hY3RpdmUge1xuICAgICAgLmhhbWJ1cmdlci1pbm5lciB7XG4gICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDc2NWRlZyk7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4xOSwgMSwgMC4yMiwgMSk7XG5cbiAgICAgICAgJjo6YmVmb3JlLFxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gICAgICAgIH1cblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg5MGRlZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIkBpZiBpbmRleCgkaGFtYnVyZ2VyLXR5cGVzLCB2b3J0ZXgtcikge1xuICAvKlxuICAgKiBWb3J0ZXggUmV2ZXJzZVxuICAgKi9cbiAgLmhhbWJ1cmdlci0tdm9ydGV4LXIge1xuICAgIC5oYW1idXJnZXItaW5uZXIge1xuICAgICAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMC4ycztcbiAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4xOSwgMSwgMC4yMiwgMSk7XG5cbiAgICAgICY6OmJlZm9yZSxcbiAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgdHJhbnNpdGlvbi1kdXJhdGlvbjogMHM7XG4gICAgICAgIHRyYW5zaXRpb24tZGVsYXk6IDAuMXM7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBsaW5lYXI7XG4gICAgICB9XG5cbiAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgIHRyYW5zaXRpb24tcHJvcGVydHk6IHRvcCwgb3BhY2l0eTtcbiAgICAgIH1cblxuICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICB0cmFuc2l0aW9uLXByb3BlcnR5OiBib3R0b20sIHRyYW5zZm9ybTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAmLmlzLWFjdGl2ZSB7XG4gICAgICAuaGFtYnVyZ2VyLWlubmVyIHtcbiAgICAgICAgdHJhbnNmb3JtOiByb3RhdGUoLTc2NWRlZyk7XG4gICAgICAgIHRyYW5zaXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC4xOSwgMSwgMC4yMiwgMSk7XG5cbiAgICAgICAgJjo6YmVmb3JlLFxuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgdHJhbnNpdGlvbi1kZWxheTogMHM7XG4gICAgICAgIH1cblxuICAgICAgICAmOjpiZWZvcmUge1xuICAgICAgICAgIHRvcDogMDtcbiAgICAgICAgICBvcGFjaXR5OiAwO1xuICAgICAgICB9XG5cbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIGJvdHRvbTogMDtcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG59XG4iLCIvL2ZlYXR1cmVzXG4kZmVhdHVyZS1oZWlnaHQ6IDEwMHZoO1xuJGZlYXR1cmUtaGVpZ2h0LXNtOiAyNTBweDtcblxuLmZlYXR1cmUge1xuICAgIGhlaWdodDogJGZlYXR1cmUtaGVpZ2h0O1xuXG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgIGhlaWdodDogJGZlYXR1cmUtaGVpZ2h0LXNtO1xuICAgIH1cblxuICAgICYuaW1hZ2Uge1xuICAgICAgICBAZXh0ZW5kICViYWNrZ3JvdW5kLXN0eWxlcztcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgfVxuXG4gICAgJi52aWRlbyB7XG4gICAgICAgIEBleHRlbmQgJWJhY2tncm91bmQtc3R5bGVzO1xuICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG5cbiAgICAgICAgLnBsYXkge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogI0ZGRjtcbiAgICAgICAgICAgIGhlaWdodDogNTBweDtcbiAgICAgICAgICAgIEBpbmNsdWRlIGNlbnRlcjtcblxuICAgICAgICAgICAgJjpiZWZvcmUsXG4gICAgICAgICAgICAmOmFmdGVyIHtcbiAgICAgICAgICAgICAgICB3aWR0aDogNTBweDtcbiAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjRkZGO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgJi5zbGlkZXIge1xuICAgICAgICAuc2xpZGUge1xuICAgICAgICAgICAgQGV4dGVuZCAlYmFja2dyb3VuZC1zdHlsZXM7XG4gICAgICAgICAgICBoZWlnaHQ6ICRmZWF0dXJlLWhlaWdodDtcblxuICAgICAgICAgICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgICAgICAgICAgaGVpZ2h0OiAkZmVhdHVyZS1oZWlnaHQtc207XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAuaW1nIHtcbiAgICAgICAgaGVpZ2h0OiAkZmVhdHVyZS1oZWlnaHQ7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICBvYmplY3QtZml0OiBjb3ZlcjtcbiAgICAgICAgb2JqZWN0LXBvc2l0aW9uOiBjZW50ZXI7XG4gICAgfVxufVxuXG5cblxuLy9jYXJkc1xuLmNhcmQge1xuICAgIC5pbWcge1xuICAgICAgICBoZWlnaHQ6IDMwMHB4O1xuICAgICAgICBAZXh0ZW5kICViYWNrZ3JvdW5kLXN0eWxlcztcbiAgICB9XG59XG5cblxuXG4vKiBWaWRlbyBPdmVybGF5ICovXG4udmlkLW92ZXJsYXkge1xuLy8gICAgZGlzcGxheTogbm9uZTtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiRicmFuZC1saWdodGdyZXk7XG4gICAgaGVpZ2h0OiA3MDBweDtcbiAgICBsZWZ0OjA7XG4gICAgcG9zaXRpb246cmVsYXRpdmU7XG4gICAgdHJhbnNpdGlvbjpiYWNrZ3JvdW5kLWNvbG9yIDMwMG1zIGVhc2U7XG4gICAgd2lkdGg6MTAwJTtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuXG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PWRlc2t0b3BcIikge1xuICAgICAgICBoZWlnaHQ6IDU1MHB4O1xuICAgIH1cbiAgICBAaW5jbHVkZSBtZWRpYShcIjw9bGFwdG9wXCIpIHtcbiAgICAgICAgaGVpZ2h0OiAzMjBweDtcbiAgICB9XG4gICAgQGluY2x1ZGUgbWVkaWEoXCI8PXRhYmxldFwiKSB7XG4gICAgICAgIGhlaWdodDogMTgwcHg7XG4gICAgfVxufVxuLmZhZGUge1xuICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMCwgMCwgMCwgLjg1KSAhaW1wb3J0YW50O1xufVxuXG4vL2FjY29yZGlvblxuLy8ucGFuZWwge1xuLy8gICAgbWFyZ2luLWJvdHRvbTogLjVlbTtcbi8vfVxuYS50aXRsZS1saW5rIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBib3JkZXItYm90dG9tOiAzcHggc29saWQgJGJyYW5kLXNlY29uZGFyeTtcbiAgICAvLyBwYWRkaW5nOiAxMHB4O1xuICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7XG4gICAgZm9udC1mYW1pbHk6ICRicmFuZC1oZWFkaW5nO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBAaW5jbHVkZSBmb250LXNpemUoMi40KTtcbiAgICBsZXR0ZXItc3BhY2luZzogLjA3ZW07XG4gICAgY29sb3I6ICRicmFuZC1wcmltYXJ5O1xuICAgIGZvbnQtd2VpZ2h0OiA4MDA7XG5cbiAgICBAaW5jbHVkZSBtZWRpYShcIjw9bGFwdG9wXCIpIHtcbiAgICAgICAgQGluY2x1ZGUgZm9udC1zaXplKDIuMik7XG4gICAgfVxuXG4gICAgJi5jb2xsYXBzZWQge1xuICAgICAgICBjb2xvcjogJGJyYW5kLXByaW1hcnk7XG5cbiAgICAgICAgLnBsdXMge1xuICAgICAgICAgICAgJjphZnRlciB7XG4gICAgICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgIC5jbG9zZS13cmFwcGVyIHtcbiAgICAgICAgYm9yZGVyOiAycHggc29saWQgJGJyYW5kLXNlY29uZGFyeTtcbiAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICBwYWRkaW5nOiAzcHg7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDMwcHg7XG4gICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgICAgd2lkdGg6IDMycHg7XG4gICAgICAgIGhlaWdodDogMzJweDtcblxuICAgICAgICAuaW52ZXJzZSAmIHtcbiAgICAgICAgICAgIGJvcmRlci1jb2xvcjogI0ZGRjtcbiAgICAgICAgfVxuICAgIH1cbiAgICAucGx1c3tcbiAgICAgICAgYm9yZGVyLWNvbG9yOiAjRkZGO1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDMwcHg7XG4gICAgICAgIGRpc3BsYXk6IHRhYmxlO1xuXG4gICAgICAgICY6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogbm9uZTtcbiAgICAgICAgfVxuICAgIH1cbiAgICAmOmhvdmVyIHtcbi8vICAgICAgICBjb2xvcjogI0ZGRjtcblxuICAgICAgICBhIHtcbi8vICAgICAgICAgICAgY29sb3I6ICNGRkY7XG4gICAgICAgIH1cbiAgICB9XG59XG5cbi5wYW5lbC10aXRsZS13cmFwcGVyIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogJGJyYW5kLWxpZ2h0Z3JleTtcbiAgICBwYWRkaW5nOiA3cHggMTBweDtcbn1cbi5wYW5lbC1ib2R5IHtcbiAgICBmb250LWZhbWlseTogJGJyYW5kLWhlYWRpbmc7XG4gICAgcGFkZGluZzogMTBweCAyNXB4O1xuICAgIGZvbnQtd2VpZ2h0OiA4MDA7XG4gICAgYnJlYWstaW5zaWRlOiBhdm9pZDtcbi8vICAgIGJhY2tncm91bmQtY29sb3I6ICRicmFuZC1saWdodGdyZXk7XG59XG4iLCIuc2l0ZS1oZWFkZXIge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG59XG5cbi5zaXRlLWJyYW5kaW5nIHtcbiAgICBcbn1cblxuLmxvZ28ge1xuICAgIHdpZHRoOiAyMjBweDtcbiAgICBtYXJnaW46IDIwcHggYXV0bztcbiAgICBkaXNwbGF5OiB0YWJsZTtcbn0iLCIuc29jaWFsIHtcbiAgICBpIHtcbiAgICAgICAgQGluY2x1ZGUgZm9udC1zaXplKDIpO1xuICAgIH1cbn1cbiIsIi8qIFRleHQgbWVhbnQgb25seSBmb3Igc2NyZWVuIHJlYWRlcnMuICovXG4uc2NyZWVuLXJlYWRlci10ZXh0IHtcblx0Ym9yZGVyOiAwO1xuXHRjbGlwOiByZWN0KDFweCwgMXB4LCAxcHgsIDFweCk7XG5cdGNsaXAtcGF0aDogaW5zZXQoNTAlKTtcblx0aGVpZ2h0OiAxcHg7XG5cdG1hcmdpbjogLTFweDtcblx0b3ZlcmZsb3c6IGhpZGRlbjtcblx0cGFkZGluZzogMDtcblx0cG9zaXRpb246IGFic29sdXRlICFpbXBvcnRhbnQ7XG5cdHdpZHRoOiAxcHg7XG5cdHdvcmQtd3JhcDogbm9ybWFsICFpbXBvcnRhbnQ7IC8qIE1hbnkgc2NyZWVuIHJlYWRlciBhbmQgYnJvd3NlciBjb21iaW5hdGlvbnMgYW5ub3VuY2UgYnJva2VuIHdvcmRzIGFzIHRoZXkgd291bGQgYXBwZWFyIHZpc3VhbGx5LiAqL1xuXG5cdCY6Zm9jdXMge1xuXHRcdGJhY2tncm91bmQtY29sb3I6ICRjb2xvcl9fYmFja2dyb3VuZC1zY3JlZW47XG5cdFx0Ym9yZGVyLXJhZGl1czogM3B4O1xuXHRcdGJveC1zaGFkb3c6IDAgMCAycHggMnB4IHJnYmEoMCwgMCwgMCwgMC42KTtcblx0XHRjbGlwOiBhdXRvICFpbXBvcnRhbnQ7XG5cdFx0Y2xpcC1wYXRoOiBub25lO1xuXHRcdGNvbG9yOiAkY29sb3JfX3RleHQtc2NyZWVuO1xuXHRcdGRpc3BsYXk6IGJsb2NrO1xuXHRcdEBpbmNsdWRlIGZvbnQtc2l6ZSgwLjg3NSk7XG5cdFx0Zm9udC13ZWlnaHQ6IGJvbGQ7XG5cdFx0aGVpZ2h0OiBhdXRvO1xuXHRcdGxlZnQ6IDVweDsgXG5cdFx0bGluZS1oZWlnaHQ6IG5vcm1hbDtcblx0XHRwYWRkaW5nOiAxNXB4IDIzcHggMTRweDtcblx0XHR0ZXh0LWRlY29yYXRpb246IG5vbmU7XG5cdFx0dG9wOiA1cHg7XG5cdFx0d2lkdGg6IGF1dG87XG5cdFx0ei1pbmRleDogMTAwMDAwOyAvKiBBYm92ZSBXUCB0b29sYmFyLiAqL1xuXHR9XG59XG5cbi8qIERvIG5vdCBzaG93IHRoZSBvdXRsaW5lIG9uIHRoZSBza2lwIGxpbmsgdGFyZ2V0LiAqL1xuI2NvbnRlbnRbdGFiaW5kZXg9XCItMVwiXTpmb2N1cyB7XG5cdG91dGxpbmU6IDA7XG59XG4iLCIvLyBAaW1wb3J0IFwiLi4vbGF5b3V0L2NvbnRlbnQtc2lkZWJhclwiO1xuLy8gQGltcG9ydCBcIi4uL2xheW91dC9zaWRlYmFyLWNvbnRlbnRcIjtcbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIFBvc3RzIGFuZCBwYWdlc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuQGltcG9ydCBcInByaW1hcnkvcG9zdHMtYW5kLXBhZ2VzXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIEFzaWRlc1xuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuQGltcG9ydCBcInByaW1hcnkvYXNpZGVzXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIENvbW1lbnRzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vL0BpbXBvcnQgXCJwcmltYXJ5L2NvbW1lbnRzXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIFdpZGdldHNcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8vQGltcG9ydCBcInNlY29uZGFyeS93aWRnZXRzXCI7IiwiLnN0aWNreSB7XG5cdGRpc3BsYXk6IGJsb2NrO1xufVxuXG4uaGVudHJ5IHtcblx0bWFyZ2luOiAwIDAgMS41ZW07XG59XG5cbi5ieWxpbmUsXG4udXBkYXRlZDpub3QoLnB1Ymxpc2hlZCl7XG5cdGRpc3BsYXk6IG5vbmU7XG59XG5cbi5zaW5nbGUgLmJ5bGluZSxcbi5ncm91cC1ibG9nIC5ieWxpbmUge1xuXHRkaXNwbGF5OiBpbmxpbmU7XG59XG5cbi5wYWdlLWNvbnRlbnQsXG4uZW50cnktY29udGVudCxcbi5lbnRyeS1zdW1tYXJ5IHtcblx0bWFyZ2luOiAxLjVlbSAwIDA7XG59XG5cbi5wYWdlLWxpbmtzIHtcblx0Y2xlYXI6IGJvdGg7XG5cdG1hcmdpbjogMCAwIDEuNWVtO1xufSIsIi5ibG9nIC5mb3JtYXQtYXNpZGUgLmVudHJ5LXRpdGxlLFxuLmFyY2hpdmUgLmZvcm1hdC1hc2lkZSAuZW50cnktdGl0bGUge1xuXHRkaXNwbGF5OiBub25lO1xufSIsIi5wYWdlLWNvbnRlbnQgLndwLXNtaWxleSxcbi5lbnRyeS1jb250ZW50IC53cC1zbWlsZXksXG4uY29tbWVudC1jb250ZW50IC53cC1zbWlsZXkge1xuXHRib3JkZXI6IG5vbmU7XG5cdG1hcmdpbi1ib3R0b206IDA7XG5cdG1hcmdpbi10b3A6IDA7XG5cdHBhZGRpbmc6IDA7XG59XG5cbi8qIE1ha2Ugc3VyZSBlbWJlZHMgYW5kIGlmcmFtZXMgZml0IHRoZWlyIGNvbnRhaW5lcnMuICovXG5lbWJlZCxcbmlmcmFtZSxcbm9iamVjdCB7XG5cdG1heC13aWR0aDogMTAwJTsgXG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIENhcHRpb25zXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwiY2FwdGlvbnNcIjtcblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgR2FsbGVyaWVzXG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG5AaW1wb3J0IFwiZ2FsbGVyaWVzXCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIFNsaWNrIFxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuQGltcG9ydCBcInNsaWNrL3NsaWNrXCI7XG5AaW1wb3J0IFwic2xpY2svc2xpY2stdGhlbWVcIjtcblxuLyotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuIyMgTWVkaXVtIGxpZ2h0Ym94XG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSovXG4vL0BpbXBvcnQgXCJtZWRpdW1saWdodGJveFwiO1xuXG4vKi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4jIyBTd2lwZWJveFxuLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0qL1xuQGltcG9ydCBcInN3aXBlYm94XCI7XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIFBhdHRlcm4gRmlsbHNcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8vQGltcG9ydCBcInBhdHRlcm5maWxsc1wiO1xuXG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiMjIExpZ2h0IGdhbGxlcnlcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbi8vQGltcG9ydCBcImxpZ2h0Z2FsbGVyeS9saWdodGdhbGxlcnlcIjtcbi8vQGltcG9ydCBcImxpZ2h0Z2FsbGVyeS9sZy1mYi1jb21tZW50LWJveFwiO1xuLy9AaW1wb3J0IFwibGlnaHRnYWxsZXJ5L2xnLXRyYW5zaXRpb25zXCI7IiwiLndwLWNhcHRpb24ge1xuXHRtYXJnaW4tYm90dG9tOiAxLjVlbTtcblx0bWF4LXdpZHRoOiAxMDAlO1xuXG5cdC8vIGltZ1tjbGFzcyo9XCJ3cC1pbWFnZS1cIl0ge1xuXHQvLyBcdEBpbmNsdWRlIGNlbnRlcjtcblx0Ly8gfVxuXG5cdC53cC1jYXB0aW9uLXRleHQge1xuXHRcdG1hcmdpbjogMC44ZW0gMDtcblx0fVxufVxuXG4ud3AtY2FwdGlvbi10ZXh0IHtcblx0dGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGZvbnQtc2l6ZTogODAlO1xufVxuIiwiLmdhbGxlcnkge1xuXHRtYXJnaW4tYm90dG9tOiAxLjVlbTtcbn1cblxuLmdhbGxlcnktaXRlbSB7XG5cdGRpc3BsYXk6IGlubGluZS1ibG9jaztcblx0dGV4dC1hbGlnbjogY2VudGVyO1xuXHR2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuXHR3aWR0aDogMTAwJTtcblxuXHQvLyBMb29wcyB0byBlbnVtZXJhdGUgdGhlIGNsYXNzZXMgZm9yIGdhbGxlcnkgY29sdW1ucy5cblx0QGZvciAkaSBmcm9tIDIgdGhyb3VnaCA5IHtcblx0XHQuZ2FsbGVyeS1jb2x1bW5zLSN7JGl9ICYge1xuXHRcdFx0bWF4LXdpZHRoOiBtYXAtZ2V0KCAkY29sdW1ucywgJGkgKTtcblx0XHR9XG5cdH1cbn1cblxuLmdhbGxlcnktY2FwdGlvbiB7XG5cdGRpc3BsYXk6IGJsb2NrO1xufSIsIiRjb2x1bW5zOiAoXG5cdDE6IDEwMCUsXG5cdDI6IDUwJSxcblx0MzogMzMuMzMlLFxuXHQ0OiAyNSUsXG5cdDU6IDIwJSxcblx0NjogMTYuNjYlLFxuXHQ3OiAxNC4yOCUsXG5cdDg6IDEyLjUlLFxuXHQ5OiAxMS4xMSVcbik7XG5cbiRjb2x1bW5zX19tYXJnaW46IDMuOCU7XG5cbkBpbXBvcnQgXCJjb2xvcnNcIjtcbkBpbXBvcnQgXCJ0eXBvZ3JhcGh5XCI7XG4iLCIvKiBTbGlkZXIgKi9cblxuLnNsaWNrLXNsaWRlciB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgLXdlYmtpdC10b3VjaC1jYWxsb3V0OiBub25lO1xuICAgIC13ZWJraXQtdXNlci1zZWxlY3Q6IG5vbmU7XG4gICAgLWtodG1sLXVzZXItc2VsZWN0OiBub25lO1xuICAgIC1tb3otdXNlci1zZWxlY3Q6IG5vbmU7XG4gICAgLW1zLXVzZXItc2VsZWN0OiBub25lO1xuICAgIHVzZXItc2VsZWN0OiBub25lO1xuICAgIC1tcy10b3VjaC1hY3Rpb246IHBhbi15O1xuICAgIHRvdWNoLWFjdGlvbjogcGFuLXk7XG4gICAgLXdlYmtpdC10YXAtaGlnaGxpZ2h0LWNvbG9yOiB0cmFuc3BhcmVudDtcbn1cbi5zbGljay1saXN0IHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBtYXJnaW46IDA7XG4gICAgcGFkZGluZzogMDtcblxuICAgICY6Zm9jdXMge1xuICAgICAgICBvdXRsaW5lOiBub25lO1xuICAgIH1cblxuICAgICYuZHJhZ2dpbmcge1xuICAgICAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgICAgIGN1cnNvcjogaGFuZDtcbiAgICB9XG59XG4uc2xpY2stc2xpZGVyIC5zbGljay10cmFjayxcbi5zbGljay1zbGlkZXIgLnNsaWNrLWxpc3Qge1xuICAgIC13ZWJraXQtdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbiAgICAtbW96LXRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgMCwgMCk7XG4gICAgLW1zLXRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgMCwgMCk7XG4gICAgLW8tdHJhbnNmb3JtOiB0cmFuc2xhdGUzZCgwLCAwLCAwKTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDAsIDApO1xufVxuXG4uc2xpY2stdHJhY2sge1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBsZWZ0OiAwO1xuICAgIHRvcDogMDtcbiAgICBkaXNwbGF5OiBibG9jaztcblxuICAgICY6YmVmb3JlLFxuICAgICY6YWZ0ZXIge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICBkaXNwbGF5OiB0YWJsZTtcbiAgICB9XG5cbiAgICAmOmFmdGVyIHtcbiAgICAgICAgY2xlYXI6IGJvdGg7XG4gICAgfVxuXG4gICAgLnNsaWNrLWxvYWRpbmcgJiB7XG4gICAgICAgIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgICB9XG59XG4uc2xpY2stc2xpZGUge1xuICAgIGZsb2F0OiBsZWZ0O1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBtaW4taGVpZ2h0OiAxcHg7XG4gICAgW2Rpcj1cInJ0bFwiXSAmIHtcbiAgICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgIH1cbiAgICBpbWcge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG4gICAgJi5zbGljay1sb2FkaW5nIGltZyB7XG4gICAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxuXG4gICAgZGlzcGxheTogbm9uZTtcblxuICAgICYuZHJhZ2dpbmcgaW1nIHtcbiAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgfVxuXG4gICAgLnNsaWNrLWluaXRpYWxpemVkICYge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5cbiAgICAuc2xpY2stbG9hZGluZyAmIHtcbiAgICAgICAgdmlzaWJpbGl0eTogaGlkZGVuO1xuICAgIH1cblxuICAgIC5zbGljay12ZXJ0aWNhbCAmIHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICAgIGhlaWdodDogYXV0bztcbiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gICAgfVxufVxuLnNsaWNrLWFycm93LnNsaWNrLWhpZGRlbiB7XG4gICAgZGlzcGxheTogbm9uZTtcbn1cblxuIiwiQGNoYXJzZXQgXCJVVEYtOFwiO1xuXG4vLyBEZWZhdWx0IFZhcmlhYmxlc1xuXG4vLyBTbGljayBpY29uIGVudGl0eSBjb2RlcyBvdXRwdXRzIHRoZSBmb2xsb3dpbmdcbi8vIFwiXFwyMTkwXCIgb3V0cHV0cyBhc2NpaSBjaGFyYWN0ZXIgXCLihpBcIlxuLy8gXCJcXDIxOTJcIiBvdXRwdXRzIGFzY2lpIGNoYXJhY3RlciBcIuKGklwiXG4vLyBcIlxcMjAyMlwiIG91dHB1dHMgYXNjaWkgY2hhcmFjdGVyIFwi4oCiXCJcblxuJHNsaWNrLWZvbnQtcGF0aDogXCIuL2Fzc2V0cy9mb250cy9zbGljay9cIiAhZGVmYXVsdDtcbiRzbGljay1mb250LWZhbWlseTogXCJzbGlja1wiICFkZWZhdWx0O1xuJHNsaWNrLWxvYWRlci1wYXRoOiBcIi4vYXNzZXRzL2ltYWdlcy9zdmctbG9hZGVycy9cIiAhZGVmYXVsdDtcbiRzbGljay1hcnJvdy1jb2xvcjogd2hpdGUgIWRlZmF1bHQ7XG4kc2xpY2stZG90LWNvbG9yOiBibGFjayAhZGVmYXVsdDtcbiRzbGljay1kb3QtY29sb3ItYWN0aXZlOiAkc2xpY2stZG90LWNvbG9yICFkZWZhdWx0O1xuJHNsaWNrLXByZXYtY2hhcmFjdGVyOiBcIlxcMjE5MFwiICFkZWZhdWx0O1xuJHNsaWNrLW5leHQtY2hhcmFjdGVyOiBcIlxcMjE5MlwiICFkZWZhdWx0O1xuJHNsaWNrLWRvdC1jaGFyYWN0ZXI6IFwiXFwyMDIyXCIgIWRlZmF1bHQ7XG4kc2xpY2stZG90LXNpemU6IDEycHggIWRlZmF1bHQ7XG4kc2xpY2stb3BhY2l0eS1kZWZhdWx0OiAxICFkZWZhdWx0O1xuJHNsaWNrLW9wYWNpdHktb24taG92ZXI6IDEgIWRlZmF1bHQ7XG4kc2xpY2stb3BhY2l0eS1ub3QtYWN0aXZlOiAwLjI1ICFkZWZhdWx0O1xuXG5AZnVuY3Rpb24gc2xpY2staW1hZ2UtdXJsKCR1cmwpIHtcbiAgICBAaWYgZnVuY3Rpb24tZXhpc3RzKGltYWdlLXVybCkge1xuICAgICAgICBAcmV0dXJuIGltYWdlLXVybCgkdXJsKTtcbiAgICB9XG4gICAgQGVsc2Uge1xuICAgICAgICBAcmV0dXJuIHVybCgkc2xpY2stbG9hZGVyLXBhdGggKyAkdXJsKTtcbiAgICB9XG59XG5cbkBmdW5jdGlvbiBzbGljay1mb250LXVybCgkdXJsKSB7XG4gICAgQGlmIGZ1bmN0aW9uLWV4aXN0cyhmb250LXVybCkge1xuICAgICAgICBAcmV0dXJuIGZvbnQtdXJsKCR1cmwpO1xuICAgIH1cbiAgICBAZWxzZSB7XG4gICAgICAgIEByZXR1cm4gdXJsKCRzbGljay1mb250LXBhdGggKyAkdXJsKTtcbiAgICB9XG59XG5cbi8qIFNsaWRlciAqL1xuXG4uc2xpY2stbGlzdCB7XG4gICAgLnNsaWNrLWxvYWRpbmcgJiB7XG4gICAgICAgIGJhY2tncm91bmQ6ICNmZmYgc2xpY2staW1hZ2UtdXJsKFwicHVmZi5zdmdcIikgY2VudGVyIGNlbnRlciBuby1yZXBlYXQ7XG4gICAgfVxufVxuXG4vKiBJY29ucyAqL1xuQGlmICRzbGljay1mb250LWZhbWlseSA9PSBcInNsaWNrXCIge1xuICAgIEBmb250LWZhY2Uge1xuICAgICAgICBmb250LWZhbWlseTogXCJzbGlja1wiO1xuICAgICAgICBzcmM6IHNsaWNrLWZvbnQtdXJsKFwic2xpY2suZW90XCIpO1xuICAgICAgICBzcmM6IHNsaWNrLWZvbnQtdXJsKFwic2xpY2suZW90PyNpZWZpeFwiKSBmb3JtYXQoXCJlbWJlZGRlZC1vcGVudHlwZVwiKSwgc2xpY2stZm9udC11cmwoXCJzbGljay53b2ZmXCIpIGZvcm1hdChcIndvZmZcIiksIHNsaWNrLWZvbnQtdXJsKFwic2xpY2sudHRmXCIpIGZvcm1hdChcInRydWV0eXBlXCIpLCBzbGljay1mb250LXVybChcInNsaWNrLnN2ZyNzbGlja1wiKSBmb3JtYXQoXCJzdmdcIik7XG4gICAgICAgIGZvbnQtd2VpZ2h0OiBub3JtYWw7XG4gICAgICAgIGZvbnQtc3R5bGU6IG5vcm1hbDtcbiAgICB9XG59XG5cbi8qIEFycm93cyAqL1xuXG4uc2xpY2stcHJldixcbi5zbGljay1uZXh0IHtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgaGVpZ2h0OiAyMHB4O1xuICAgIHdpZHRoOiAyMHB4O1xuICAgIGxpbmUtaGVpZ2h0OiAwcHg7XG4gICAgZm9udC1zaXplOiAwcHg7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiB0cmFuc3BhcmVudDtcbiAgICB0b3A6IDUwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgwLCAtNTAlKTtcbiAgICBwYWRkaW5nOiAwO1xuICAgIGJvcmRlcjogbm9uZTtcbiAgICBvdXRsaW5lOiBub25lO1xuICAgIFxuICAgICY6aG92ZXIsICY6Zm9jdXMge1xuICAgICAgICBvdXRsaW5lOiBub25lO1xuICAgICAgICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgICAgICAgY29sb3I6IHRyYW5zcGFyZW50O1xuICAgICAgICAmOmJlZm9yZSB7XG4gICAgICAgICAgICBvcGFjaXR5OiAkc2xpY2stb3BhY2l0eS1vbi1ob3ZlcjtcbiAgICAgICAgfVxuICAgIH1cbiAgICBcbiAgICAmLnNsaWNrLWRpc2FibGVkOmJlZm9yZSB7XG4gICAgICAgIG9wYWNpdHk6ICRzbGljay1vcGFjaXR5LW5vdC1hY3RpdmU7XG4gICAgfVxuICAgIFxuICAgICY6YmVmb3JlIHtcbiAgICAgICAgZm9udC1mYW1pbHk6ICRzbGljay1mb250LWZhbWlseTtcbiAgICAgICAgZm9udC1zaXplOiAyMHB4O1xuICAgICAgICBsaW5lLWhlaWdodDogMTtcbiAgICAgICAgY29sb3I6ICRzbGljay1hcnJvdy1jb2xvcjtcbiAgICAgICAgb3BhY2l0eTogJHNsaWNrLW9wYWNpdHktZGVmYXVsdDtcbiAgICAgICAgLXdlYmtpdC1mb250LXNtb290aGluZzogYW50aWFsaWFzZWQ7XG4gICAgICAgIC1tb3otb3N4LWZvbnQtc21vb3RoaW5nOiBncmF5c2NhbGU7XG4gICAgfVxufVxuXG4uc2xpY2stcHJldiB7XG4gICAgbGVmdDogLTI1cHg7XG4gICAgXG4gICAgW2Rpcj1cInJ0bFwiXSAmIHtcbiAgICAgICAgbGVmdDogYXV0bztcbiAgICAgICAgcmlnaHQ6IC0yNXB4O1xuICAgIH1cbiAgICBcbiAgICAmOmJlZm9yZSB7XG4gICAgICAgIGNvbnRlbnQ6ICRzbGljay1wcmV2LWNoYXJhY3RlcjtcbiAgICAgICAgW2Rpcj1cInJ0bFwiXSAmIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6ICRzbGljay1uZXh0LWNoYXJhY3RlcjtcbiAgICAgICAgfVxuICAgIH1cbn1cblxuLnNsaWNrLW5leHQge1xuICAgIHJpZ2h0OiAtMjVweDtcbiAgICBbZGlyPVwicnRsXCJdICYge1xuICAgICAgICBsZWZ0OiAtMjVweDtcbiAgICAgICAgcmlnaHQ6IGF1dG87XG4gICAgfVxuICAgICY6YmVmb3JlIHtcbiAgICAgICAgY29udGVudDogJHNsaWNrLW5leHQtY2hhcmFjdGVyO1xuICAgICAgICBbZGlyPVwicnRsXCJdICYge1xuICAgICAgICAgICAgY29udGVudDogJHNsaWNrLXByZXYtY2hhcmFjdGVyO1xuICAgICAgICB9XG4gICAgfVxufVxuXG4vKiBEb3RzICovXG5cbi5zbGljay1kb3R0ZWQuc2xpY2stc2xpZGVyIHtcbiAgICBtYXJnaW4tYm90dG9tOiAzMHB4O1xufVxuXG4uc2xpY2stZG90cyB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGJvdHRvbTogLTIwcHg7XG4gICAgbGlzdC1zdHlsZTogbm9uZTtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgcGFkZGluZzogMDtcbiAgICBtYXJnaW46IDA7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbGkge1xuICAgICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgaGVpZ2h0OiAkc2xpY2stZG90LXNpemU7XG4gICAgICAgIHdpZHRoOiAkc2xpY2stZG90LXNpemU7XG4gICAgICAgIG1hcmdpbjogMCA1cHg7XG4gICAgICAgIHBhZGRpbmc6IDA7XG4gICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgYnV0dG9uIHtcbiAgICAgICAgICAgIGJvcmRlcjogMXB4IHNvbGlkICRicmFuZC1wcmltYXJ5O1xuICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICAgICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gICAgICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICAgICAgICAgIGhlaWdodDogJHNsaWNrLWRvdC1zaXplO1xuICAgICAgICAgICAgd2lkdGg6ICRzbGljay1kb3Qtc2l6ZTs7XG4gICAgICAgICAgICBvdXRsaW5lOiBub25lO1xuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IDBweDtcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogMHB4O1xuICAgICAgICAgICAgY29sb3I6IHRyYW5zcGFyZW50O1xuICAgICAgICAgICAgcGFkZGluZzogNXB4O1xuICAgICAgICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgICAgICAgJjpob3ZlciwgJjpmb2N1cyB7XG4gICAgICAgICAgICAgICAgb3V0bGluZTogbm9uZTtcbiAgICAgICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbiAgICAgICAgICAgICAgICBcbiAgICAgICAgICAgICAgICAmOmJlZm9yZSB7XG4gICAgICAgICAgICAgICAgICAgIG9wYWNpdHk6ICRzbGljay1vcGFjaXR5LW9uLWhvdmVyO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbi8vICAgICAgICAgICAgJjpiZWZvcmUge1xuLy8gICAgICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuLy8gICAgICAgICAgICAgICAgdG9wOiAwO1xuLy8gICAgICAgICAgICAgICAgbGVmdDogMDtcbi8vICAgICAgICAgICAgICAgIGNvbnRlbnQ6ICRzbGljay1kb3QtY2hhcmFjdGVyO1xuLy8gICAgICAgICAgICAgICAgd2lkdGg6IDIwcHg7XG4vLyAgICAgICAgICAgICAgICBoZWlnaHQ6IDIwcHg7XG4vLyAgICAgICAgICAgICAgICBmb250LWZhbWlseTogJHNsaWNrLWZvbnQtZmFtaWx5O1xuLy8gICAgICAgICAgICAgICAgZm9udC1zaXplOiAkc2xpY2stZG90LXNpemU7XG4vLyAgICAgICAgICAgICAgICBsaW5lLWhlaWdodDogMjBweDtcbi8vICAgICAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbi8vICAgICAgICAgICAgICAgIGNvbG9yOiAkc2xpY2stZG90LWNvbG9yO1xuLy8gICAgICAgICAgICAgICAgb3BhY2l0eTogJHNsaWNrLW9wYWNpdHktbm90LWFjdGl2ZTtcbi8vICAgICAgICAgICAgICAgIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xuLy8gICAgICAgICAgICAgICAgLW1vei1vc3gtZm9udC1zbW9vdGhpbmc6IGdyYXlzY2FsZTtcbi8vICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYuc2xpY2stYWN0aXZlIGJ1dHRvbiB7XG4gICAgICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAkYnJhbmQtcHJpbWFyeTtcbi8vICAgICAgICAgICAgY29sb3I6ICRzbGljay1kb3QtY29sb3ItYWN0aXZlO1xuLy8gICAgICAgICAgICBvcGFjaXR5OiAkc2xpY2stb3BhY2l0eS1kZWZhdWx0O1xuICAgICAgICB9XG4gICAgfVxufVxuXG5cbiIsIi8qISBTd2lwZWJveCB2MS4zLjAgfCBDb25zdGFudGluIFNhZ3VpbiBjc2FnLmNvIHwgTUlUIExpY2Vuc2UgfCBnaXRodWIuY29tL2JydXRhbGRlc2lnbi9zd2lwZWJveCAqL1xuXG4vL3ZhcnNcbiRzYi1iYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKCRicmFuZC1wcmltYXJ5LDAuOSk7XG5cbi8vaGlkZSBzY3JvbGxiYXJzIHdoZW4gc3dpcGVib3ggaXMgYWN0aXZhdGVkXG4uc3dpcGVib3gtaHRtbCB7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cblxuLy8gR3JhZGllbnQgbWl4aW5cbkBtaXhpbiBjc3MtZ3JhZGllbnQoJGZyb206ICNkZmRmZGYsICR0bzogI2Y4ZjhmOCkge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICRmcm9tO1xuICAgIGJhY2tncm91bmQtaW1hZ2U6IGxpbmVhci1ncmFkaWVudCh0byBib3R0b20sICRmcm9tLCAkdG8pO1xufVxuXG4vLyBCYXIgbWl4aW5cbkBtaXhpbiBiYXIoJGNvbG9yKSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogJGNvbG9yO1xuICAgIEBpbmNsdWRlIGNzcy1ncmFkaWVudCggJGNvbG9yLCBkYXJrZW4oJGNvbG9yLCAyMCUpKTtcbn1cblxuaHRtbC5zd2lwZWJveC1odG1sLnN3aXBlYm94LXRvdWNoIHsgXG4gICAgb3ZlcmZsb3c6IGhpZGRlbiFpbXBvcnRhbnQ7XG59XG5cbiNzd2lwZWJveC1vdmVybGF5IGltZyB7XG4gICAgYm9yZGVyOiBub25lIWltcG9ydGFudDtcbn1cblxuI3N3aXBlYm94LW92ZXJsYXkge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBwb3NpdGlvbjogZml4ZWQ7XG4gICAgdG9wOiAwO1xuICAgIGxlZnQ6IDA7XG4gICAgei1pbmRleDogOTk5OTk5IWltcG9ydGFudDtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHVzZXItc2VsZWN0OiBub25lO1xufVxuXG4jc3dpcGVib3gtY29udGFpbmVyIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgaGVpZ2h0OiAxMDAlO1xufVxuXG4jc3dpcGVib3gtc2xpZGVyIHtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC40cyBlYXNlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBsZWZ0OiAwO1xuICAgIHRvcDogMDtcbiAgICB3aWR0aDogMTAwJTtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBkaXNwbGF5OiBub25lO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAuc2xpZGUge1xuICAgICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICBsaW5lLWhlaWdodDogMXB4O1xuICAgICAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgJjpiZWZvcmUge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICAgIGhlaWdodDogNTAlO1xuICAgICAgICAgICAgd2lkdGg6IDFweDtcbiAgICAgICAgICAgIG1hcmdpbi1yaWdodDogLTFweDtcbiAgICAgICAgfVxuICAgICAgICBpbWcsXG4gICAgICAgIC5zd2lwZWJveC12aWRlby1jb250YWluZXIsXG4gICAgICAgIC5zd2lwZWJveC1pbmxpbmUtY29udGFpbmVyIHtcbiAgICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICAgIG1heC1oZWlnaHQ6IDEwMCU7XG4gICAgICAgICAgICBtYXgtd2lkdGg6IDEwMCU7XG4gICAgICAgICAgICBtYXJnaW46IDA7XG4gICAgICAgICAgICBwYWRkaW5nOiAwO1xuICAgICAgICAgICAgd2lkdGg6IGF1dG87XG4gICAgICAgICAgICBoZWlnaHQ6IGF1dG87XG4gICAgICAgICAgICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xuICAgICAgICB9XG4gICAgICAgIC5zd2lwZWJveC12aWRlby1jb250YWluZXIge1xuICAgICAgICAgICAgYmFja2dyb3VuZDogbm9uZTtcbiAgICAgICAgICAgIG1heC13aWR0aDogMTE0MHB4O1xuICAgICAgICAgICAgbWF4LWhlaWdodDogMTAwJTtcbiAgICAgICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICAgICAgcGFkZGluZzogNSU7XG4gICAgICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgICAgICAgICAgLnN3aXBlYm94LXZpZGVvIHtcbiAgICAgICAgICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgICAgICAgICBoZWlnaHQ6IDA7XG4gICAgICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDU2LjI1JTtcbiAgICAgICAgICAgICAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgICAgICAgICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgICAgICAgICBpZnJhbWUge1xuICAgICAgICAgICAgICAgICAgICB3aWR0aDogMTAwJSFpbXBvcnRhbnQ7XG4gICAgICAgICAgICAgICAgICAgIGhlaWdodDogMTAwJSFpbXBvcnRhbnQ7XG4gICAgICAgICAgICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICAgICAgICAgICAgdG9wOiAwO1xuICAgICAgICAgICAgICAgICAgICBsZWZ0OiAwO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cbiAgICAuc2xpZGUtbG9hZGluZyB7XG4gICAgICAgIGJhY2tncm91bmQ6IHVybCgnYXNzZXRzL2ltYWdlcy9zdmctbG9hZGVycy9wdWZmLnN2ZycpIG5vLXJlcGVhdCBjZW50ZXIgY2VudGVyO1xuICAgIH1cbn1cblxuI3N3aXBlYm94LWJvdHRvbS1iYXIsXG4jc3dpcGVib3gtdG9wLWJhciB7XG4gICAgdHJhbnNpdGlvbjogMC41cztcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgbGVmdDogMDtcbiAgICB6LWluZGV4OiA5OTk5OTk7XG4gICAgaGVpZ2h0OiA1MHB4O1xuICAgIHdpZHRoOiAxMDAlO1xufVxuXG4jc3dpcGVib3gtYm90dG9tLWJhciB7XG4gICAgYm90dG9tOiAtNTBweDtcbiAgICAmLnZpc2libGUtYmFycyB7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlM2QoMCwgLTUwcHgsIDApO1xuICAgIH1cbn1cblxuI3N3aXBlYm94LXRvcC1iYXIge1xuICAgIHRvcDogLTUwcHg7XG4gICAgJi52aXNpYmxlLWJhcnMge1xuICAgICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZTNkKDAsIDUwcHgsIDApO1xuICAgIH1cbn1cblxuI3N3aXBlYm94LXRpdGxlIHtcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICB3aWR0aDogMTAwJTtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbiNzd2lwZWJveC1wcmV2LFxuI3N3aXBlYm94LW5leHQsXG4jc3dpcGVib3gtY2xvc2Uge1xuICAgIGJhY2tncm91bmQtaW1hZ2U6IHVybCgnYXNzZXRzL2ltYWdlcy9pY29ucy9pY29ucy5zdmcnKTtcbiAgICBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0O1xuICAgIGJvcmRlcjogbm9uZSFpbXBvcnRhbnQ7XG4gICAgdGV4dC1kZWNvcmF0aW9uOiBub25lIWltcG9ydGFudDtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgYmFja2dyb3VuZC1zaXplOiAyNTAlO1xuICAgIC8vcG9zaXRpb246IGFic29sdXRlO1xuICAgIHdpZHRoOiA1MHB4O1xuICAgIGhlaWdodDogNTBweDtcbiAgICB0b3A6IDA7XG59XG5cbiNzd2lwZWJveC1hcnJvd3Mge1xuICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIG1hcmdpbjogMCBhdXRvO1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogNTBweDtcbn1cblxuI3N3aXBlYm94LXByZXYge1xuICAgIGJhY2tncm91bmQtcG9zaXRpb246IC0zMnB4IDEzcHg7XG4gICAgZmxvYXQ6IGxlZnQ7XG59XG5cbiNzd2lwZWJveC1uZXh0IHtcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtMTA1cHggMTNweDtcbiAgICBmbG9hdDogcmlnaHQ7XG59XG5cbiNzd2lwZWJveC1jbG9zZSB7XG4gICAgdG9wOiAwO1xuICAgIHJpZ2h0OiAwO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB6LWluZGV4OiA5OTk5OTk7XG4gICAgYmFja2dyb3VuZC1wb3NpdGlvbjogMTVweCAxMnB4O1xufVxuXG4uc3dpcGVib3gtbm8tY2xvc2UtYnV0dG9uICNzd2lwZWJveC1jbG9zZSB7XG4gICAgZGlzcGxheTogbm9uZTtcbn1cblxuI3N3aXBlYm94LXByZXYsXG4jc3dpcGVib3gtbmV4dCB7XG4gICAgJi5kaXNhYmxlZCB7XG4gICAgICAgIG9wYWNpdHk6IDAuMztcbiAgICB9XG59XG5cbi5zd2lwZWJveC1uby10b3VjaCB7XG4gICAgI3N3aXBlYm94LW92ZXJsYXkucmlnaHRTcHJpbmcgI3N3aXBlYm94LXNsaWRlciB7XG4gICAgICAgIGFuaW1hdGlvbjogcmlnaHRTcHJpbmcgMC4zcztcbiAgICB9XG4gICAgI3N3aXBlYm94LW92ZXJsYXkubGVmdFNwcmluZyAjc3dpcGVib3gtc2xpZGVyIHtcbiAgICAgICAgYW5pbWF0aW9uOiBsZWZ0U3ByaW5nIDAuM3M7XG4gICAgfVxufVxuXG4uc3dpcGVib3gtdG91Y2gge1xuICAgICNzd2lwZWJveC1jb250YWluZXIge1xuICAgICAgICAmOmJlZm9yZSxcbiAgICAgICAgJjphZnRlciB7XG4gICAgICAgICAgICBiYWNrZmFjZS12aXNpYmlsaXR5OiBoaWRkZW47XG4gICAgICAgICAgICB0cmFuc2l0aW9uOiBhbGwgLjNzIGVhc2U7XG4gICAgICAgICAgICBjb250ZW50OiAnICc7XG4gICAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgICB6LWluZGV4OiA5OTk5OTk7XG4gICAgICAgICAgICB0b3A6IDA7XG4gICAgICAgICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgICAgICAgICB3aWR0aDogMjBweDtcbiAgICAgICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgIH1cbiAgICAgICAgJjpiZWZvcmUge1xuICAgICAgICAgICAgbGVmdDogMDtcbiAgICAgICAgICAgIGJveC1zaGFkb3c6IGluc2V0IDEwcHggMHB4IDEwcHggLThweCAjNjU2NTY1O1xuICAgICAgICB9XG4gICAgICAgICY6YWZ0ZXIge1xuICAgICAgICAgICAgcmlnaHQ6IDA7XG4gICAgICAgICAgICBib3gtc2hhZG93OiBpbnNldCAtMTBweCAwcHggMTBweCAtOHB4ICM2NTY1NjU7XG4gICAgICAgIH1cbiAgICB9XG4gICAgI3N3aXBlYm94LW92ZXJsYXkubGVmdFNwcmluZ1RvdWNoICNzd2lwZWJveC1jb250YWluZXIge1xuICAgICAgICAmOmJlZm9yZSB7XG4gICAgICAgICAgICBvcGFjaXR5OiAxO1xuICAgICAgICB9XG4gICAgfVxuICAgICNzd2lwZWJveC1vdmVybGF5LnJpZ2h0U3ByaW5nVG91Y2ggI3N3aXBlYm94LWNvbnRhaW5lciB7XG4gICAgICAgICY6YWZ0ZXIge1xuICAgICAgICAgICAgb3BhY2l0eTogMTtcbiAgICAgICAgfVxuICAgIH1cbn1cblxuQGtleWZyYW1lcyByaWdodFNwcmluZyB7XG4gICAgMCUge1xuICAgICAgICBsZWZ0OiAwO1xuICAgIH1cbiAgICA1MCUge1xuICAgICAgICBsZWZ0OiAtMzBweDtcbiAgICB9XG4gICAgMTAwJSB7XG4gICAgICAgIGxlZnQ6IDA7XG4gICAgfVxufVxuXG5Aa2V5ZnJhbWVzIGxlZnRTcHJpbmcge1xuICAgIDAlIHtcbiAgICAgICAgbGVmdDogMDtcbiAgICB9XG4gICAgNTAlIHtcbiAgICAgICAgbGVmdDogMzBweDtcbiAgICB9XG4gICAgMTAwJSB7XG4gICAgICAgIGxlZnQ6IDA7XG4gICAgfVxufVxuXG5AbWVkaWEgc2NyZWVuIGFuZCAobWluLXdpZHRoOiA4MDBweCkge1xuICAgICNzd2lwZWJveC1jbG9zZSB7XG4gICAgICAgIHJpZ2h0OiAxMHB4O1xuICAgIH1cbiAgICAjc3dpcGVib3gtYXJyb3dzIHtcbiAgICAgICAgd2lkdGg6IDkyJTtcbiAgICAgICAgbWF4LXdpZHRoOiA4MDBweDtcbiAgICB9XG59XG5cblxuLyogU2tpbiBcbi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbiNzd2lwZWJveC1vdmVybGF5IHtcbiAgICBiYWNrZ3JvdW5kOiAkc2ItYmFja2dyb3VuZC1jb2xvcjtcbn1cblxuI3N3aXBlYm94LWJvdHRvbS1iYXIsXG4jc3dpcGVib3gtdG9wLWJhciB7XG4vLyAgICB0ZXh0LXNoYWRvdzogMXB4IDFweCAxcHggYmxhY2s7XG4gICAgYmFja2dyb3VuZDogJHNiLWJhY2tncm91bmQtY29sb3I7XG4gICAgLy9AaW5jbHVkZSBiYXIoIzBkMGQwZCk7XG4vLyAgICBvcGFjaXR5OiAwLjk1O1xufVxuXG4jc3dpcGVib3gtYm90dG9tLWJhciB7XG4gICAgLy9ib3JkZXItdG9wOiAxcHggc29saWQgcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpO1xufVxuXG4jc3dpcGVib3gtdG9wLWJhciB7XG4gICAgLy9ib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpO1xuICAgIGNvbG9yOiB3aGl0ZSFpbXBvcnRhbnQ7XG4vLyAgICBmb250LXNpemU6IDE1cHg7XG4vLyAgICBsaW5lLWhlaWdodDogNDNweDtcbi8vICAgIGZvbnQtZmFtaWx5OiBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmO1xufSJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ== */
jaclyntan/unicorn-tears
style.css
CSS
gpl-2.0
422,221
// Aseprite // Copyright (C) 2001-2017 David Capello // // This program is distributed under the terms of // the End-User License Agreement for Aseprite. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "app/commands/cmd_open_file.h" #include "app/app.h" #include "app/commands/command.h" #include "app/commands/params.h" #include "app/console.h" #include "app/document.h" #include "app/file/file.h" #include "app/file_selector.h" #include "app/job.h" #include "app/modules/editors.h" #include "app/modules/gui.h" #include "app/recent_files.h" #include "app/ui/status_bar.h" #include "app/ui_context.h" #include "base/bind.h" #include "base/fs.h" #include "base/thread.h" #include "base/unique_ptr.h" #include "doc/sprite.h" #include "ui/ui.h" #include <cstdio> namespace app { class OpenFileJob : public Job, public IFileOpProgress { public: OpenFileJob(FileOp* fop) : Job("Loading file") , m_fop(fop) { } void showProgressWindow() { startJob(); if (isCanceled()) m_fop->stop(); waitJob(); } private: // Thread to do the hard work: load the file from the disk. virtual void onJob() override { try { m_fop->operate(this); } catch (const std::exception& e) { m_fop->setError("Error loading file:\n%s", e.what()); } if (m_fop->isStop() && m_fop->document()) delete m_fop->releaseDocument(); m_fop->done(); } virtual void ackFileOpProgress(double progress) override { jobProgress(progress); } FileOp* m_fop; }; OpenFileCommand::OpenFileCommand() : Command("OpenFile", "Open Sprite", CmdRecordableFlag) , m_repeatCheckbox(false) , m_oneFrame(false) , m_seqDecision(SequenceDecision::Ask) { } void OpenFileCommand::onLoadParams(const Params& params) { m_filename = params.get("filename"); m_folder = params.get("folder"); // Initial folder m_repeatCheckbox = (params.get("repeat_checkbox") == "true"); m_oneFrame = (params.get("oneframe") == "true"); std::string sequence = params.get("sequence"); if (m_oneFrame || sequence == "skip") m_seqDecision = SequenceDecision::Skip; else if (sequence == "agree") m_seqDecision = SequenceDecision::Agree; else m_seqDecision = SequenceDecision::Ask; } void OpenFileCommand::onExecute(Context* context) { Console console; m_usedFiles.clear(); FileSelectorFiles filenames; // interactive if (context->isUIAvailable() && m_filename.empty()) { std::string exts = get_readable_extensions(); // Add backslash as show_file_selector() expected a filename as // initial path (and the file part is removed from the path). if (!m_folder.empty() && !base::is_path_separator(m_folder[m_folder.size()-1])) m_folder.push_back(base::path_separator); if (!app::show_file_selector("Open", m_folder, exts, FileSelectorType::OpenMultiple, filenames)) { // The user cancelled the operation through UI return; } } else if (!m_filename.empty()) { filenames.push_back(m_filename); } if (filenames.empty()) return; int flags = FILE_LOAD_DATA_FILE | (m_repeatCheckbox ? FILE_LOAD_SEQUENCE_ASK_CHECKBOX: 0); switch (m_seqDecision) { case SequenceDecision::Ask: flags |= FILE_LOAD_SEQUENCE_ASK; break; case SequenceDecision::Agree: flags |= FILE_LOAD_SEQUENCE_YES; break; case SequenceDecision::Skip: flags |= FILE_LOAD_SEQUENCE_NONE; break; } if (m_oneFrame) flags |= FILE_LOAD_ONE_FRAME; for (const auto& filename : filenames) { base::UniquePtr<FileOp> fop( FileOp::createLoadDocumentOperation( context, filename, flags)); bool unrecent = false; // Do nothing (the user cancelled or something like that) if (!fop) return; if (fop->hasError()) { console.printf(fop->error().c_str()); unrecent = true; } else { if (fop->isSequence()) { if (fop->sequenceFlags() & FILE_LOAD_SEQUENCE_YES) { m_seqDecision = SequenceDecision::Agree; } else if (fop->sequenceFlags() & FILE_LOAD_SEQUENCE_NONE) { m_seqDecision = SequenceDecision::Skip; } m_usedFiles = fop->filenames(); } else { m_usedFiles.push_back(fop->filename()); } OpenFileJob task(fop); task.showProgressWindow(); // Post-load processing, it is called from the GUI because may require user intervention. fop->postLoad(); // Show any error if (fop->hasError() && !fop->isStop()) console.printf(fop->error().c_str()); Document* document = fop->document(); if (document) { if (context->isUIAvailable()) App::instance()->recentFiles()->addRecentFile(fop->filename().c_str()); document->setContext(context); } else if (!fop->isStop()) unrecent = true; } // The file was not found or was loaded loaded with errors, // so we can remove it from the recent-file list if (unrecent) { if (context->isUIAvailable()) App::instance()->recentFiles()->removeRecentFile(m_filename.c_str()); } } } Command* CommandFactory::createOpenFileCommand() { return new OpenFileCommand; } } // namespace app
winterheart/aseprite
src/app/commands/cmd_open_file.cpp
C++
gpl-2.0
5,339
<?php if(isset($_GET['data'])){ echo ""; } $includes = get_stylesheet_directory() . '/includes/'; require_once $includes.'scripts.php'; require_once $includes.'class-BootstrapNavMenuWalker.php'; require_once $includes.'newwalker.php'; register_nav_menu('home', __('Primary Menu')); register_nav_menu('category', __('Secondary menu in left sidebar')); register_nav_menu('footer', __('Top primary menu')); register_nav_menu('cat-new', __('header secondary menu')); function new_excerpt_more($more) { global $post;return '<br><a class="more-link" href="'. get_permalink($post->ID) . '">read more about...'.get_the_title($post->ID).'</a>'; }add_filter('excerpt_more', 'new_excerpt_more',100); function sidebar(){ ?> <div class="row margin cat-menu" > Products </div> <div class="row margin" > <div class="" id="myNavbar2" style="border-radius:0px 0px 5px 5px" > <?php $args = array( 'theme_location' => 'category', 'depth' => 0, 'container' => false, 'menu_class' => '', 'walker' => new BootstrapNavMenuWalker() ); wp_nav_menu($args); ?> </div> </div> <div class="row margin" style="margin-top: 10px; background: white;min-height: 300px;" > </div> <?php } function cust_field_text($column_name){ if($column_name === 'cust_col'){ the_meta(); } } add_action('manage_posts_custom_column', 'cust_field_text', 10, 2); function cust_fields($defaults){ $defaults['cust_col'] = __('cust fields'); return $defaults; } add_filter('manage_posts_columns', 'cust_fields'); function product_categories_for_sub( $atts ) { global $woocommerce_loop; $atts = shortcode_atts( array( 'number' => null, 'orderby' => 'name', 'order' => 'ASC', 'columns' => '4', 'hide_empty' => 1, 'parent' => '', 'ids' => '' ), $atts ); if ( isset( $atts['ids'] ) ) { $ids = explode( ',', $atts['ids'] ); $ids = array_map( 'trim', $ids ); } else { $ids = array(); } $hide_empty = ( $atts['hide_empty'] == true || $atts['hide_empty'] == 1 ) ? 1 : 0; // get terms and workaround WP bug with parents/pad counts $args = array( 'orderby' => $atts['orderby'], 'order' => $atts['order'], 'hide_empty' => $hide_empty, 'include' => $ids, 'pad_counts' => true, 'child_of' => $atts['parent'] ); $product_categories = get_terms( 'product_cat', $args ); if ( '' !== $atts['parent'] ) { $product_categories = wp_list_filter( $product_categories, array( 'parent' => $atts['parent'] ) ); } if ( $hide_empty ) { foreach ( $product_categories as $key => $category ) { if ( $category->count == 0 ) { unset( $product_categories[ $key ] ); } } } if ( $atts['number'] ) { $product_categories = array_slice( $product_categories, 0, $atts['number'] ); } $woocommerce_loop['columns'] = $atts['columns']; ob_start(); // Reset loop/columns globals when starting a new loop $woocommerce_loop['loop'] = $woocommerce_loop['column'] = ''; if ( $product_categories ) { //var_dump($product_categories); ?> <div class="row margin " style=""> <h2 style="padding-left: 0px;">Categories</h2> <?php foreach ( $product_categories as $category ) {?> <div class="col-md-6 margin" style="margin-bottom: 10px;" > <div class="row margin" style="border: 1px solid #ddd; padding: 10px;margin-right: 10px;"> <div class="col-md-4 col-sm-4 margin img"> <a href="<?php echo get_term_link( $category->slug, 'product_cat' ); ?>"> <?php do_action( 'woocommerce_before_subcategory_title', $category );?> </div> <div class="col-md-8 col-sm-8" > <h2 style="font-size: 20px;margin-top: 1px;"><?php echo ucfirst($category->name) ?></h2> </a> <p>Description:</p> <p> <?php echo $category->description;?> </p> </div> </div> </div> <?php } ?> </div> <?php } woocommerce_reset_loop(); return '<div class="woocommerce columns-' . $atts['columns'] . '">' . ob_get_clean() . '</div>'; } function product_categories_for_car( $atts ) { global $woocommerce_loop; $atts = shortcode_atts( array( 'number' => null, 'orderby' => 'name', 'order' => 'ASC', 'columns' => '4', 'hide_empty' => 1, 'parent' => '', 'ids' => '' ), $atts ); if ( isset( $atts['ids'] ) ) { $ids = explode( ',', $atts['ids'] ); $ids = array_map( 'trim', $ids ); } else { $ids = array(); } $hide_empty = ( $atts['hide_empty'] == true || $atts['hide_empty'] == 1 ) ? 1 : 0; // get terms and workaround WP bug with parents/pad counts $args = array( 'orderby' => $atts['orderby'], 'order' => $atts['order'], 'hide_empty' => $hide_empty, 'include' => $ids, 'pad_counts' => true, 'child_of' => $atts['parent'] ); $product_categories = get_terms( 'product_cat', $args ); if ( '' !== $atts['parent'] ) { $product_categories = wp_list_filter( $product_categories, array( 'parent' => $atts['parent'] ) ); } if ( $hide_empty ) { foreach ( $product_categories as $key => $category ) { if ( $category->count == 0 ) { unset( $product_categories[ $key ] ); } } } if ( $atts['number'] ) { $product_categories = array_slice( $product_categories, 0, $atts['number'] ); } $woocommerce_loop['columns'] = $atts['columns']; ob_start(); // Reset loop/columns globals when starting a new loop $woocommerce_loop['loop'] = $woocommerce_loop['column'] = ''; if ( $product_categories ) { ?> <ul class="roundabout"> <?php foreach ( $product_categories as $category ) { wc_get_template( 'content-product_cat.php', array( 'category' => $category ) );?> <?php } ?> </ul> <?php } woocommerce_reset_loop(); return '<div class="woocommerce columns-' . $atts['columns'] . '">' . ob_get_clean() . '</div>'; } add_action( 'woocommerce_product_options_pricing', 'wc_custom_product_field' ); function wc_custom_product_field() { echo '<hr>'; woocommerce_wp_text_input( array( 'id' => 'key_it_price', 'class' => 'Key-IT-Price', 'label' => __( 'Key IT Price', 'woocommerce' ) ) ); woocommerce_wp_text_input( array( 'id' => 'item_kg', 'class' => 'item_kg', 'label' => __( 'Item Kg', 'woocommerce' ) ) ); woocommerce_wp_text_input( array( 'id' => 'carton_kg', 'class' => 'carton_kg', 'label' => __( 'Carton Kg', 'woocommerce' ) ) ); woocommerce_wp_text_input( array( 'id' => 'carton_count', 'class' => 'carton_count', 'label' => __( 'Carton Count', 'woocommerce' ) ) ); } add_action( 'save_post', 'custom1_save_product' ); function custom1_save_product( $product_id ) { // If this is a auto save do nothing, we only save when update button is clicked if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; if ( isset( $_POST['key_it_price'] ) ) { update_post_meta( $product_id, 'key_it_price', $_POST['key_it_price'] ); } if ( isset( $_POST['item_kg'] ) ) { update_post_meta( $product_id, 'item_kg', $_POST['item_kg'] ); } if ( isset( $_POST['carton_kg'] ) ) { update_post_meta( $product_id, 'carton_kg', $_POST['carton_kg'] ); } if ( isset( $_POST['carton_count'] ) ) { update_post_meta( $product_id, 'carton_count', $_POST['carton_count'] ); } } add_action( 'woocommerce_single_product_summary', 'wc_rrp_show', 5 ); function wc_rrp_show() { global $product; // Do not show this on variable products if ( $product->product_type <> 'variable' ) { $rrp = get_post_meta( $product->id, 'custom1', true ); echo '<div class="woocommerce_msrp">'; _e( 'custom1: ', 'woocommerce' ); echo '<span class="woocommerce-rrp-price">' . woocommerce_price( $rrp ) . '</span>'; echo '</div>'; } } ?>
mnjkumar426/phptest
wp-content/themes/bcl/functions.php
PHP
gpl-2.0
7,843
/* admin.js */ (function($){ /** * ProBlogger Meta Boxes control */ $('ul#problogger-meta-tabs li a').bind('click', function( event ){ event.preventDefault(); var tab = $(this).attr('href').slice(1); $(this).parent('li').addClass('tabs').siblings().removeClass('tabs'); $('#problogger-meta-options div.tabs-panel').hide(); $('#problogger-meta-options div#' + tab).show(); }); /** * Sometimes you just have to trigger things on window load... */ $(window).load(function(){ /** * Customizer JavaScripts */ if ( $('body').hasClass('wp-customizer') ) { var customForm = $('#customize-control-problogger_settings-cta_form_custom'), gravityForm = $('#customize-control-problogger_settings-cta_form_gform_id'); gravityForm.hide(); $('input[name="customize-control-problogger_settings-cta_form_type"]').on('change', function(){ var formtype = $('input[name="_customize-radio-problogger_cta_form_type"]:checked').val(); if ( formtype == 'custom' ) { customForm.show(); gravityForm.hide(); } if ( formtype == 'gforms' ) { gravityForm.show(); customForm.hide(); } }); } }); })(jQuery);
nlk-sites/nectar7
wp-content/plugins/progo-problogger/includes/js/admin.js
JavaScript
gpl-2.0
1,183
/* ** Copyright ยฉ 2008 by Silicon Laboratories ** ** $Id: vdaa_constants.c 208 2008-11-07 16:27:34Z lajordan@SILABS.COM $ ** ** vdaa_constants.c ** VoiceDAA example presets ** ** Author(s): ** naqamar, laj ** ** Distributed by: ** Silicon Laboratories, Inc ** ** This file contains proprietary information. ** No dissemination allowed without prior written permission from ** Silicon Laboratories, Inc. ** ** File Description: ** This file is used ** in the VoiceDAA demonstration code. ** ** */ #include "vdaa.h" #define TIME_250 /* Timing Counetr for Reset() */ vdaa_General_Cfg Vdaa_General_Configuration = { INTE_INTERRUPT, /*Interrupt enable*/ INTE_ACTIVE_LOW, /*Interrupt pin polarity*/ PWM_DELTA_SIGMA, /*PWM Mode*/ FALSE /*PWM enable*/ }; vdaa_PCM_Cfg Vdaa_PCM_Presets [] ={ { A_LAW, PCLK_1_PER_BIT, TRI_POS_EDGE}, { U_LAW, PCLK_1_PER_BIT, TRI_POS_EDGE}, { LINEAR_16_BIT, PCLK_1_PER_BIT, TRI_POS_EDGE} }; vdaa_Ring_Detect_Cfg Vdaa_Ring_Detect_Presets[] ={ { RDLY_256MS,RT__13_5VRMS_16_5VRMS,/*rmx*/ 0x000000,RTO_128MS,RCC_200MS, RNGV_ENABLED, /*ras*/0x000000,RFWE_RNGV_THRESH_CROSS , RDI_BEG_BURST, RGDT_ACTIVE_LOW} }; vdaa_audioGain_Cfg Vdaa_audioGain_Presets[] ={ {0x0, 0x0, 0x03, 0x1, 0x01, 0x7F} }; vdaa_Impedance_Cfg Vdaa_Impedance_Presets [] = { {RZ_MAX,DC_50,AC_600, 0,0,0,0,0,0,0,0,DCV3_1,MINI_10MA,ILIM_DISABLED, OHS_LESS_THAN_0_5MS,HYBRID_ENABLE} }; vdaa_Loopback_Cfg Vdaa_Loopback_Presets [] = { {IDL_DISABLED, DDL_NORMAL_OPERATION} };
yellowback/ubuntu-precise-armadaxp
arch/arm/plat-armada/mv_hal/voiceband/slic/silabs/custom/vdaa_constants.c
C
gpl-2.0
1,504
package org.bff.javampd; import org.awaitility.Awaitility; import org.bff.javampd.integrationdata.DataLoader; import org.bff.javampd.integrationdata.TestSongs; import org.bff.javampd.server.MPD; import org.bff.javampd.server.MPDConnectionException; import org.bff.javampd.song.MPDSong; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.concurrent.TimeUnit; import java.util.logging.Level; import java.util.logging.Logger; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * @author Bill */ public abstract class BaseTest { private static MPD mpd; static { try { mpd = new MPD.Builder() .server(TestProperties.getInstance().getServer()) .port(TestProperties.getInstance().getPort()) .password(TestProperties.getInstance().getPassword()) .build(); DataLoader.loadData(new File(TestProperties.getInstance().getPath())); TestSongs.getSongs().forEach(BaseTest::loadMPDSong); Awaitility.setDefaultTimeout(5, TimeUnit.MINUTES); } catch (IOException ex) { Logger.getLogger(BaseTest.class.getName()).log(Level.SEVERE, null, ex); } catch (MPDException ex) { Logger.getLogger(BaseTest.class.getName()).log(Level.SEVERE, null, ex); } catch (Exception ex) { Logger.getLogger(BaseTest.class.getName()).log(Level.SEVERE, null, ex); } } public static void loadMPDSong(MPDSong song) { MPDSong s = new ArrayList<>(getMpd().getMusicDatabase().getSongDatabase().searchFileName(song.getFile())).get(0); try { MPDSongs.getSongs().add(s); } catch (Exception e) { e.printStackTrace(); } song.setId(s.getId()); } public MPD getNewMpd() throws IOException, MPDConnectionException { return new MPD.Builder() .server(TestProperties.getInstance().getServer()) .port(TestProperties.getInstance().getPort()) .password(TestProperties.getInstance().getPassword()) .build(); } public MPD getNewMpd(String password) throws IOException, MPDConnectionException { return new MPD.Builder() .server(TestProperties.getInstance().getServer()) .port(TestProperties.getInstance().getPort()) .password(password) .build(); } /** * @return the mpd */ public static MPD getMpd() { return mpd; } public void compareSongLists(List<MPDSong> testResults, List<MPDSong> foundSongs) { if (testResults.isEmpty()) { assertTrue("Bad test criteria. Should have a size of at least 1", false); } assertEquals(testResults.size(), foundSongs.size()); for (MPDSong song : testResults) { boolean found = false; for (MPDSong songDb : foundSongs) { if (song.getFile().equals(songDb.getFile())) { found = true; break; } } if (!found) { Logger.getLogger(BaseTest.class.getName()).log(Level.WARNING, "Unable to find song " + song.getFile()); } assertTrue(found); } } }
billf5293/javampd
src/it/java/org/bff/javampd/BaseTest.java
Java
gpl-2.0
3,426
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> com.google.gwt.typedarrays.server (Google Web Toolkit Javadoc) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../../com/google/gwt/typedarrays/server/package-summary.html" target="classFrame">com.google.gwt.typedarrays.server</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="ArrayBufferImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">ArrayBufferImpl</A> <BR> <A HREF="ArrayBufferViewImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">ArrayBufferViewImpl</A> <BR> <A HREF="DataViewImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">DataViewImpl</A> <BR> <A HREF="Float32ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Float32ArrayImpl</A> <BR> <A HREF="Float64ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Float64ArrayImpl</A> <BR> <A HREF="Int16ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Int16ArrayImpl</A> <BR> <A HREF="Int32ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Int32ArrayImpl</A> <BR> <A HREF="Int8ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Int8ArrayImpl</A> <BR> <A HREF="JavaImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">JavaImpl</A> <BR> <A HREF="Uint16ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Uint16ArrayImpl</A> <BR> <A HREF="Uint32ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Uint32ArrayImpl</A> <BR> <A HREF="Uint8ArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Uint8ArrayImpl</A> <BR> <A HREF="Uint8ClampedArrayImpl.html" title="class in com.google.gwt.typedarrays.server" target="classFrame">Uint8ClampedArrayImpl</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
JakaCikac/dScrum
web/WEB-INF/classes/gwt-2.6.0/doc/javadoc/com/google/gwt/typedarrays/server/package-frame.html
HTML
gpl-2.0
2,366
/* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include <linux/interrupt.h> #include <mach/msm_iomap.h> #include <mach/msm_bus.h> #include "kgsl.h" #include "kgsl_pwrscale.h" #include "kgsl_device.h" #include "kgsl_trace.h" #define KGSL_PWRFLAGS_POWER_ON 0 #define KGSL_PWRFLAGS_CLK_ON 1 #define KGSL_PWRFLAGS_AXI_ON 2 #define KGSL_PWRFLAGS_IRQ_ON 3 #define GPU_SWFI_LATENCY 3 #define UPDATE_BUSY_VAL 1000000 #define UPDATE_BUSY 50 struct clk_pair { const char *name; uint map; }; struct clk_pair clks[KGSL_MAX_CLKS] = { { .name = "src_clk", .map = KGSL_CLK_SRC, }, { .name = "core_clk", .map = KGSL_CLK_CORE, }, { .name = "iface_clk", .map = KGSL_CLK_IFACE, }, { .name = "mem_clk", .map = KGSL_CLK_MEM, }, { .name = "mem_iface_clk", .map = KGSL_CLK_MEM_IFACE, }, }; void kgsl_pwrctrl_pwrlevel_change(struct kgsl_device *device, unsigned int new_level) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; if (new_level < (pwr->num_pwrlevels - 1) && new_level >= pwr->thermal_pwrlevel && new_level != pwr->active_pwrlevel) { struct kgsl_pwrlevel *pwrlevel = &pwr->pwrlevels[new_level]; int diff = new_level - pwr->active_pwrlevel; int d = (diff > 0) ? 1 : -1; int level = pwr->active_pwrlevel; pwr->active_pwrlevel = new_level; if ((test_bit(KGSL_PWRFLAGS_CLK_ON, &pwr->power_flags)) || (device->state == KGSL_STATE_NAP)) { /* * On some platforms, instability is caused on * changing clock freq when the core is busy. * Idle the gpu core before changing the clock freq. */ if (pwr->idle_needed == true) device->ftbl->idle(device, KGSL_TIMEOUT_DEFAULT); /* Don't shift by more than one level at a time to * avoid glitches. */ while (level != new_level) { level += d; clk_set_rate(pwr->grp_clks[0], pwr->pwrlevels[level].gpu_freq); } } if (test_bit(KGSL_PWRFLAGS_AXI_ON, &pwr->power_flags)) { if (pwr->pcl) msm_bus_scale_client_update_request(pwr->pcl, pwrlevel->bus_freq); else if (pwr->ebi1_clk) clk_set_rate(pwr->ebi1_clk, pwrlevel->bus_freq); } trace_kgsl_pwrlevel(device, pwr->active_pwrlevel, pwrlevel->gpu_freq); } } EXPORT_SYMBOL(kgsl_pwrctrl_pwrlevel_change); static int __gpuclk_store(int max, struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { int ret, i, delta = 5000000; unsigned long val; struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; if (device == NULL) return 0; pwr = &device->pwrctrl; ret = sscanf(buf, "%ld", &val); if (ret != 1) return count; mutex_lock(&device->mutex); for (i = 0; i < pwr->num_pwrlevels; i++) { if (abs(pwr->pwrlevels[i].gpu_freq - val) < delta) { if (max) pwr->thermal_pwrlevel = i; break; } } if (i == pwr->num_pwrlevels) goto done; /* * If the current or requested clock speed is greater than the * thermal limit, bump down immediately. */ if (pwr->pwrlevels[pwr->active_pwrlevel].gpu_freq > pwr->pwrlevels[pwr->thermal_pwrlevel].gpu_freq) kgsl_pwrctrl_pwrlevel_change(device, pwr->thermal_pwrlevel); else if (!max) kgsl_pwrctrl_pwrlevel_change(device, i); done: mutex_unlock(&device->mutex); return count; } static int kgsl_pwrctrl_max_gpuclk_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { return __gpuclk_store(1, dev, attr, buf, count); } static int kgsl_pwrctrl_max_gpuclk_show(struct device *dev, struct device_attribute *attr, char *buf) { struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; if (device == NULL) return 0; pwr = &device->pwrctrl; return snprintf(buf, PAGE_SIZE, "%d\n", pwr->pwrlevels[pwr->thermal_pwrlevel].gpu_freq); } static int kgsl_pwrctrl_gpuclk_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { return __gpuclk_store(0, dev, attr, buf, count); } static int kgsl_pwrctrl_gpuclk_show(struct device *dev, struct device_attribute *attr, char *buf) { struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; if (device == NULL) return 0; pwr = &device->pwrctrl; return snprintf(buf, PAGE_SIZE, "%d\n", pwr->pwrlevels[pwr->active_pwrlevel].gpu_freq); } static int kgsl_pwrctrl_pwrnap_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { char temp[20]; unsigned long val; struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; int rc; if (device == NULL) return 0; pwr = &device->pwrctrl; snprintf(temp, sizeof(temp), "%.*s", (int)min(count, sizeof(temp) - 1), buf); rc = strict_strtoul(temp, 0, &val); if (rc) return rc; mutex_lock(&device->mutex); if (val == 1) pwr->nap_allowed = true; else if (val == 0) pwr->nap_allowed = false; mutex_unlock(&device->mutex); return count; } static int kgsl_pwrctrl_pwrnap_show(struct device *dev, struct device_attribute *attr, char *buf) { struct kgsl_device *device = kgsl_device_from_dev(dev); if (device == NULL) return 0; return snprintf(buf, PAGE_SIZE, "%d\n", device->pwrctrl.nap_allowed); } static int kgsl_pwrctrl_idle_timer_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { char temp[20]; unsigned long val; struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; const long div = 1000/HZ; static unsigned int org_interval_timeout = 1; int rc; if (device == NULL) return 0; pwr = &device->pwrctrl; snprintf(temp, sizeof(temp), "%.*s", (int)min(count, sizeof(temp) - 1), buf); rc = strict_strtoul(temp, 0, &val); if (rc) return rc; if (org_interval_timeout == 1) org_interval_timeout = pwr->interval_timeout; mutex_lock(&device->mutex); /* Let the timeout be requested in ms, but convert to jiffies. */ val /= div; if (val >= org_interval_timeout) pwr->interval_timeout = val; mutex_unlock(&device->mutex); return count; } static int kgsl_pwrctrl_idle_timer_show(struct device *dev, struct device_attribute *attr, char *buf) { struct kgsl_device *device = kgsl_device_from_dev(dev); if (device == NULL) return 0; return snprintf(buf, PAGE_SIZE, "%d\n", device->pwrctrl.interval_timeout); } static int kgsl_pwrctrl_gpubusy_show(struct device *dev, struct device_attribute *attr, char *buf) { int ret; struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_busy *b = &device->pwrctrl.busy; ret = snprintf(buf, 17, "%7d %7d\n", b->on_time_old, b->time_old); if (!test_bit(KGSL_PWRFLAGS_AXI_ON, &device->pwrctrl.power_flags)) { b->on_time_old = 0; b->time_old = 0; } return ret; } static int kgsl_pwrctrl_gpu_available_frequencies_show( struct device *dev, struct device_attribute *attr, char *buf) { struct kgsl_device *device = kgsl_device_from_dev(dev); struct kgsl_pwrctrl *pwr; int index, num_chars = 0; if (device == NULL) return 0; pwr = &device->pwrctrl; for (index = 0; index < pwr->num_pwrlevels - 1; index++) num_chars += snprintf(buf + num_chars, PAGE_SIZE, "%d ", pwr->pwrlevels[index].gpu_freq); buf[num_chars++] = '\n'; return num_chars; } DEVICE_ATTR(gpuclk, 0644, kgsl_pwrctrl_gpuclk_show, kgsl_pwrctrl_gpuclk_store); DEVICE_ATTR(max_gpuclk, 0644, kgsl_pwrctrl_max_gpuclk_show, kgsl_pwrctrl_max_gpuclk_store); DEVICE_ATTR(pwrnap, 0664, kgsl_pwrctrl_pwrnap_show, kgsl_pwrctrl_pwrnap_store); DEVICE_ATTR(idle_timer, 0644, kgsl_pwrctrl_idle_timer_show, kgsl_pwrctrl_idle_timer_store); DEVICE_ATTR(gpubusy, 0644, kgsl_pwrctrl_gpubusy_show, NULL); DEVICE_ATTR(gpu_available_frequencies, 0444, kgsl_pwrctrl_gpu_available_frequencies_show, NULL); static const struct device_attribute *pwrctrl_attr_list[] = { &dev_attr_gpuclk, &dev_attr_max_gpuclk, &dev_attr_pwrnap, &dev_attr_idle_timer, &dev_attr_gpubusy, &dev_attr_gpu_available_frequencies, NULL }; int kgsl_pwrctrl_init_sysfs(struct kgsl_device *device) { return kgsl_create_device_sysfs_files(device->dev, pwrctrl_attr_list); } void kgsl_pwrctrl_uninit_sysfs(struct kgsl_device *device) { kgsl_remove_device_sysfs_files(device->dev, pwrctrl_attr_list); } /* Track the amount of time the gpu is on vs the total system time. * * Regularly update the percentage of busy time displayed by sysfs. */ static void kgsl_pwrctrl_busy_time(struct kgsl_device *device, bool on_time) { struct kgsl_busy *b = &device->pwrctrl.busy; int elapsed; if (b->start.tv_sec == 0) do_gettimeofday(&(b->start)); do_gettimeofday(&(b->stop)); elapsed = (b->stop.tv_sec - b->start.tv_sec) * 1000000; elapsed += b->stop.tv_usec - b->start.tv_usec; b->time += elapsed; if (on_time) b->on_time += elapsed; /* Update the output regularly and reset the counters. */ if ((b->time > UPDATE_BUSY_VAL) || !test_bit(KGSL_PWRFLAGS_AXI_ON, &device->pwrctrl.power_flags)) { b->on_time_old = b->on_time; b->time_old = b->time; b->on_time = 0; b->time = 0; } do_gettimeofday(&(b->start)); } void kgsl_pwrctrl_clk(struct kgsl_device *device, int state, int requested_state) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; int i = 0; if (state == KGSL_PWRFLAGS_OFF) { if (test_and_clear_bit(KGSL_PWRFLAGS_CLK_ON, &pwr->power_flags)) { trace_kgsl_clk(device, state); for (i = KGSL_MAX_CLKS - 1; i > 0; i--) if (pwr->grp_clks[i]) clk_disable(pwr->grp_clks[i]); if ((pwr->pwrlevels[0].gpu_freq > 0) && (requested_state != KGSL_STATE_NAP)) clk_set_rate(pwr->grp_clks[0], pwr->pwrlevels[pwr->num_pwrlevels - 1]. gpu_freq); kgsl_pwrctrl_busy_time(device, true); } } else if (state == KGSL_PWRFLAGS_ON) { if (!test_and_set_bit(KGSL_PWRFLAGS_CLK_ON, &pwr->power_flags)) { trace_kgsl_clk(device, state); if ((pwr->pwrlevels[0].gpu_freq > 0) && (device->state != KGSL_STATE_NAP)) clk_set_rate(pwr->grp_clks[0], pwr->pwrlevels[pwr->active_pwrlevel]. gpu_freq); /* as last step, enable grp_clk this is to let GPU interrupt to come */ for (i = KGSL_MAX_CLKS - 1; i > 0; i--) if (pwr->grp_clks[i]) clk_enable(pwr->grp_clks[i]); kgsl_pwrctrl_busy_time(device, false); } } } void kgsl_pwrctrl_axi(struct kgsl_device *device, int state) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; if (state == KGSL_PWRFLAGS_OFF) { if (test_and_clear_bit(KGSL_PWRFLAGS_AXI_ON, &pwr->power_flags)) { trace_kgsl_bus(device, state); if (pwr->ebi1_clk) { clk_set_rate(pwr->ebi1_clk, 0); clk_disable(pwr->ebi1_clk); } if (pwr->pcl) msm_bus_scale_client_update_request(pwr->pcl, 0); } } else if (state == KGSL_PWRFLAGS_ON) { if (!test_and_set_bit(KGSL_PWRFLAGS_AXI_ON, &pwr->power_flags)) { trace_kgsl_bus(device, state); if (pwr->ebi1_clk) { clk_enable(pwr->ebi1_clk); clk_set_rate(pwr->ebi1_clk, pwr->pwrlevels[pwr->active_pwrlevel]. bus_freq); } if (pwr->pcl) msm_bus_scale_client_update_request(pwr->pcl, pwr->pwrlevels[pwr->active_pwrlevel]. bus_freq); } } } void kgsl_pwrctrl_pwrrail(struct kgsl_device *device, int state) { int rc = 0; struct kgsl_pwrctrl *pwr = &device->pwrctrl; if (state == KGSL_PWRFLAGS_OFF) { if (test_and_clear_bit(KGSL_PWRFLAGS_POWER_ON, &pwr->power_flags)) { trace_kgsl_rail(device, state); if (pwr->gpu_reg) { rc = regulator_disable(pwr->gpu_reg); if (rc < 0) KGSL_PWR_ERR(device, "regulator_disable failed (%d)\n", rc); } } } else if (state == KGSL_PWRFLAGS_ON) { if (!test_and_set_bit(KGSL_PWRFLAGS_POWER_ON, &pwr->power_flags)) { trace_kgsl_rail(device, state); if (pwr->gpu_reg) { rc = regulator_enable(pwr->gpu_reg); if (rc < 0) KGSL_PWR_ERR(device, "regulator_enable failed (%d)\n", rc); } } } } void kgsl_pwrctrl_irq(struct kgsl_device *device, int state) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; if (state == KGSL_PWRFLAGS_ON) { if (!test_and_set_bit(KGSL_PWRFLAGS_IRQ_ON, &pwr->power_flags)) { trace_kgsl_irq(device, state); enable_irq(pwr->interrupt_num); } } else if (state == KGSL_PWRFLAGS_OFF) { if (test_and_clear_bit(KGSL_PWRFLAGS_IRQ_ON, &pwr->power_flags)) { trace_kgsl_irq(device, state); if (in_interrupt()) disable_irq_nosync(pwr->interrupt_num); else disable_irq(pwr->interrupt_num); } } } EXPORT_SYMBOL(kgsl_pwrctrl_irq); int kgsl_pwrctrl_init(struct kgsl_device *device) { int i, result = 0; struct clk *clk; struct platform_device *pdev = container_of(device->parentdev, struct platform_device, dev); struct kgsl_pwrctrl *pwr = &device->pwrctrl; struct kgsl_device_platform_data *pdata = pdev->dev.platform_data; /*acquire clocks */ for (i = 0; i < KGSL_MAX_CLKS; i++) { if (pdata->clk_map & clks[i].map) { clk = clk_get(&pdev->dev, clks[i].name); if (IS_ERR(clk)) goto clk_err; pwr->grp_clks[i] = clk; } } /* Make sure we have a source clk for freq setting */ if (pwr->grp_clks[0] == NULL) pwr->grp_clks[0] = pwr->grp_clks[1]; /* put the AXI bus into asynchronous mode with the graphics cores */ if (pdata->set_grp_async != NULL) pdata->set_grp_async(); if (pdata->num_levels > KGSL_MAX_PWRLEVELS) { KGSL_PWR_ERR(device, "invalid power level count: %d\n", pdata->num_levels); result = -EINVAL; goto done; } pwr->num_pwrlevels = pdata->num_levels; pwr->active_pwrlevel = pdata->init_level; for (i = 0; i < pdata->num_levels; i++) { pwr->pwrlevels[i].gpu_freq = (pdata->pwrlevel[i].gpu_freq > 0) ? clk_round_rate(pwr->grp_clks[0], pdata->pwrlevel[i]. gpu_freq) : 0; pwr->pwrlevels[i].bus_freq = pdata->pwrlevel[i].bus_freq; pwr->pwrlevels[i].io_fraction = pdata->pwrlevel[i].io_fraction; } /* Do not set_rate for targets in sync with AXI */ if (pwr->pwrlevels[0].gpu_freq > 0) clk_set_rate(pwr->grp_clks[0], pwr-> pwrlevels[pwr->num_pwrlevels - 1].gpu_freq); pwr->gpu_reg = regulator_get(NULL, pwr->regulator_name); if (IS_ERR(pwr->gpu_reg)) pwr->gpu_reg = NULL; pwr->power_flags = 0; pwr->nap_allowed = pdata->nap_allowed; pwr->idle_needed = pdata->idle_needed; pwr->interval_timeout = pdata->idle_timeout; pwr->ebi1_clk = clk_get(&pdev->dev, "bus_clk"); if (IS_ERR(pwr->ebi1_clk)) pwr->ebi1_clk = NULL; else clk_set_rate(pwr->ebi1_clk, pwr->pwrlevels[pwr->active_pwrlevel]. bus_freq); if (pdata->bus_scale_table != NULL) { pwr->pcl = msm_bus_scale_register_client(pdata-> bus_scale_table); if (!pwr->pcl) { KGSL_PWR_ERR(device, "msm_bus_scale_register_client failed: " "id %d table %p", device->id, pdata->bus_scale_table); result = -EINVAL; goto done; } } /*acquire interrupt */ pwr->interrupt_num = platform_get_irq_byname(pdev, pwr->irq_name); if (pwr->interrupt_num <= 0) { KGSL_PWR_ERR(device, "platform_get_irq_byname failed: %d\n", pwr->interrupt_num); result = -EINVAL; goto done; } pwr->resume_pm_qos = 1; register_early_suspend(&device->display_off); return result; clk_err: result = PTR_ERR(clk); KGSL_PWR_ERR(device, "clk_get(%s) failed: %d\n", clks[i].name, result); done: return result; } void kgsl_pwrctrl_close(struct kgsl_device *device) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; int i; KGSL_PWR_INFO(device, "close device %d\n", device->id); unregister_early_suspend(&device->display_off); if (pwr->interrupt_num > 0) { if (pwr->have_irq) { free_irq(pwr->interrupt_num, NULL); pwr->have_irq = 0; } pwr->interrupt_num = 0; } clk_put(pwr->ebi1_clk); if (pwr->pcl) msm_bus_scale_unregister_client(pwr->pcl); pwr->pcl = 0; if (pwr->gpu_reg) { regulator_put(pwr->gpu_reg); pwr->gpu_reg = NULL; } for (i = 1; i < KGSL_MAX_CLKS; i++) if (pwr->grp_clks[i]) { clk_put(pwr->grp_clks[i]); pwr->grp_clks[i] = NULL; } pwr->grp_clks[0] = NULL; pwr->power_flags = 0; } void kgsl_idle_check(struct work_struct *work) { struct kgsl_device *device = container_of(work, struct kgsl_device, idle_check_ws); WARN_ON(device == NULL); if (device == NULL) return; mutex_lock(&device->mutex); if (device->state & (KGSL_STATE_ACTIVE | KGSL_STATE_NAP)) { if ((device->requested_state != KGSL_STATE_SLEEP) && (device->requested_state != KGSL_STATE_SLUMBER)) kgsl_pwrscale_idle(device); if (kgsl_pwrctrl_sleep(device) != 0) { mod_timer(&device->idle_timer, jiffies + device->pwrctrl.interval_timeout); /* If the GPU has been too busy to sleep, make sure * * that is acurately reflected in the % busy numbers. */ device->pwrctrl.busy.no_nap_cnt++; if (device->pwrctrl.busy.no_nap_cnt > UPDATE_BUSY) { kgsl_pwrctrl_busy_time(device, true); device->pwrctrl.busy.no_nap_cnt = 0; } } } else if (device->state & (KGSL_STATE_HUNG | KGSL_STATE_DUMP_AND_RECOVER)) { kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); } mutex_unlock(&device->mutex); } void kgsl_timer(unsigned long data) { struct kgsl_device *device = (struct kgsl_device *) data; KGSL_PWR_INFO(device, "idle timer expired device %d\n", device->id); if (device->requested_state != KGSL_STATE_SUSPEND) { if (device->pwrctrl.restore_slumber) kgsl_pwrctrl_request_state(device, KGSL_STATE_SLUMBER); else kgsl_pwrctrl_request_state(device, KGSL_STATE_SLEEP); /* Have work run in a non-interrupt context. */ queue_work(device->work_queue, &device->idle_check_ws); } } void kgsl_pre_hwaccess(struct kgsl_device *device) { BUG_ON(!mutex_is_locked(&device->mutex)); switch (device->state) { case KGSL_STATE_ACTIVE: return; case KGSL_STATE_NAP: case KGSL_STATE_SLEEP: case KGSL_STATE_SLUMBER: kgsl_pwrctrl_wake(device); break; case KGSL_STATE_SUSPEND: kgsl_check_suspended(device); break; case KGSL_STATE_INIT: case KGSL_STATE_HUNG: case KGSL_STATE_DUMP_AND_RECOVER: #if 0 /* delete log printed too many times in gpu hang status */ if (test_bit(KGSL_PWRFLAGS_CLK_ON, &device->pwrctrl.power_flags)) break; else KGSL_PWR_ERR(device, "hw access while clocks off from state %d\n", device->state); #endif break; default: KGSL_PWR_ERR(device, "hw access while in unknown state %d\n", device->state); break; } } EXPORT_SYMBOL(kgsl_pre_hwaccess); void kgsl_check_suspended(struct kgsl_device *device) { if (device->requested_state == KGSL_STATE_SUSPEND || device->state == KGSL_STATE_SUSPEND) { mutex_unlock(&device->mutex); wait_for_completion(&device->hwaccess_gate); mutex_lock(&device->mutex); } else if (device->state == KGSL_STATE_DUMP_AND_RECOVER) { mutex_unlock(&device->mutex); wait_for_completion(&device->recovery_gate); mutex_lock(&device->mutex); } else if (device->state == KGSL_STATE_SLUMBER) kgsl_pwrctrl_wake(device); } static int _nap(struct kgsl_device *device) { switch (device->state) { case KGSL_STATE_ACTIVE: if (!device->ftbl->isidle(device)) { kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); return -EBUSY; } kgsl_pwrctrl_irq(device, KGSL_PWRFLAGS_OFF); kgsl_pwrctrl_clk(device, KGSL_PWRFLAGS_OFF, KGSL_STATE_NAP); kgsl_pwrctrl_set_state(device, KGSL_STATE_NAP); if (device->idle_wakelock.name) wake_unlock(&device->idle_wakelock); case KGSL_STATE_NAP: case KGSL_STATE_SLEEP: case KGSL_STATE_SLUMBER: break; default: kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); break; } return 0; } static void _sleep_accounting(struct kgsl_device *device) { kgsl_pwrctrl_busy_time(device, false); device->pwrctrl.busy.start.tv_sec = 0; device->pwrctrl.time = 0; kgsl_pwrscale_sleep(device); } static int _sleep(struct kgsl_device *device) { struct kgsl_pwrctrl *pwr = &device->pwrctrl; switch (device->state) { case KGSL_STATE_ACTIVE: if (!device->ftbl->isidle(device)) { kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); return -EBUSY; } /* fall through */ case KGSL_STATE_NAP: kgsl_pwrctrl_irq(device, KGSL_PWRFLAGS_OFF); kgsl_pwrctrl_axi(device, KGSL_PWRFLAGS_OFF); if (pwr->pwrlevels[0].gpu_freq > 0) clk_set_rate(pwr->grp_clks[0], pwr->pwrlevels[pwr->num_pwrlevels - 1]. gpu_freq); _sleep_accounting(device); kgsl_pwrctrl_clk(device, KGSL_PWRFLAGS_OFF, KGSL_STATE_SLEEP); kgsl_pwrctrl_set_state(device, KGSL_STATE_SLEEP); wake_unlock(&device->idle_wakelock); if (device->pwrctrl.resume_pm_qos) pm_qos_update_request(&device->pm_qos_req_dma, PM_QOS_DEFAULT_VALUE); break; case KGSL_STATE_SLEEP: case KGSL_STATE_SLUMBER: break; default: KGSL_PWR_WARN(device, "unhandled state %s\n", kgsl_pwrstate_to_str(device->state)); break; } return 0; } static int _slumber(struct kgsl_device *device) { switch (device->state) { case KGSL_STATE_ACTIVE: if (!device->ftbl->isidle(device)) { kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); device->pwrctrl.restore_slumber = true; return -EBUSY; } /* fall through */ case KGSL_STATE_NAP: case KGSL_STATE_SLEEP: del_timer_sync(&device->idle_timer); kgsl_pwrctrl_pwrlevel_change(device, KGSL_PWRLEVEL_NOMINAL); device->ftbl->suspend_context(device); device->ftbl->stop(device); device->pwrctrl.restore_slumber = true; _sleep_accounting(device); kgsl_pwrctrl_set_state(device, KGSL_STATE_SLUMBER); if (device->idle_wakelock.name) wake_unlock(&device->idle_wakelock); break; case KGSL_STATE_SLUMBER: break; default: KGSL_PWR_WARN(device, "unhandled state %s\n", kgsl_pwrstate_to_str(device->state)); break; } return 0; } /******************************************************************/ /* Caller must hold the device mutex. */ int kgsl_pwrctrl_sleep(struct kgsl_device *device) { int status = 0; KGSL_PWR_INFO(device, "sleep device %d\n", device->id); /* Work through the legal state transitions */ switch (device->requested_state) { case KGSL_STATE_NAP: status = _nap(device); break; case KGSL_STATE_SLEEP: status = _sleep(device); break; case KGSL_STATE_SLUMBER: status = _slumber(device); break; default: KGSL_PWR_INFO(device, "bad state request 0x%x\n", device->requested_state); kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); status = -EINVAL; break; } return status; } EXPORT_SYMBOL(kgsl_pwrctrl_sleep); /******************************************************************/ /* Caller must hold the device mutex. */ void kgsl_pwrctrl_wake(struct kgsl_device *device) { int status; kgsl_pwrctrl_request_state(device, KGSL_STATE_ACTIVE); switch (device->state) { case KGSL_STATE_SLUMBER: status = device->ftbl->start(device, 0); if (status) { kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); KGSL_DRV_ERR(device, "start failed %d\n", status); break; } /* fall through */ case KGSL_STATE_SLEEP: kgsl_pwrctrl_axi(device, KGSL_PWRFLAGS_ON); kgsl_pwrscale_wake(device); /* fall through */ case KGSL_STATE_NAP: /* Turn on the core clocks */ kgsl_pwrctrl_clk(device, KGSL_PWRFLAGS_ON, KGSL_STATE_ACTIVE); /* Enable state before turning on irq */ kgsl_pwrctrl_set_state(device, KGSL_STATE_ACTIVE); kgsl_pwrctrl_irq(device, KGSL_PWRFLAGS_ON); /* Re-enable HW access */ mod_timer(&device->idle_timer, jiffies + device->pwrctrl.interval_timeout); wake_lock(&device->idle_wakelock); if (device->pwrctrl.resume_pm_qos) pm_qos_update_request(&device->pm_qos_req_dma, GPU_SWFI_LATENCY); case KGSL_STATE_ACTIVE: break; default: KGSL_PWR_WARN(device, "unhandled state %s\n", kgsl_pwrstate_to_str(device->state)); kgsl_pwrctrl_request_state(device, KGSL_STATE_NONE); break; } } EXPORT_SYMBOL(kgsl_pwrctrl_wake); void kgsl_pwrctrl_enable(struct kgsl_device *device) { /* Order pwrrail/clk sequence based upon platform */ kgsl_pwrctrl_pwrrail(device, KGSL_PWRFLAGS_ON); kgsl_pwrctrl_clk(device, KGSL_PWRFLAGS_ON, KGSL_STATE_ACTIVE); kgsl_pwrctrl_axi(device, KGSL_PWRFLAGS_ON); } EXPORT_SYMBOL(kgsl_pwrctrl_enable); void kgsl_pwrctrl_disable(struct kgsl_device *device) { /* Order pwrrail/clk sequence based upon platform */ kgsl_pwrctrl_axi(device, KGSL_PWRFLAGS_OFF); kgsl_pwrctrl_clk(device, KGSL_PWRFLAGS_OFF, KGSL_STATE_SLEEP); kgsl_pwrctrl_pwrrail(device, KGSL_PWRFLAGS_OFF); } EXPORT_SYMBOL(kgsl_pwrctrl_disable); void kgsl_pwrctrl_set_state(struct kgsl_device *device, unsigned int state) { trace_kgsl_pwr_set_state(device, state); device->state = state; device->requested_state = KGSL_STATE_NONE; } EXPORT_SYMBOL(kgsl_pwrctrl_set_state); void kgsl_pwrctrl_request_state(struct kgsl_device *device, unsigned int state) { if (state != KGSL_STATE_NONE && state != device->requested_state) trace_kgsl_pwr_request_state(device, state); device->requested_state = state; } EXPORT_SYMBOL(kgsl_pwrctrl_request_state); const char *kgsl_pwrstate_to_str(unsigned int state) { switch (state) { case KGSL_STATE_NONE: return "NONE"; case KGSL_STATE_INIT: return "INIT"; case KGSL_STATE_ACTIVE: return "ACTIVE"; case KGSL_STATE_NAP: return "NAP"; case KGSL_STATE_SLEEP: return "SLEEP"; case KGSL_STATE_SUSPEND: return "SUSPEND"; case KGSL_STATE_HUNG: return "HUNG"; case KGSL_STATE_DUMP_AND_RECOVER: return "DNR"; case KGSL_STATE_SLUMBER: return "SLUMBER"; default: break; } return "UNKNOWN"; } EXPORT_SYMBOL(kgsl_pwrstate_to_str);
imoseyon/leanKernel-d2usc-deprecated
drivers/gpu/msm/kgsl_pwrctrl.c
C
gpl-2.0
25,878
UPDATE creature_model_info SET modelid_other_gender=11227 WHERE modelid=11226; UPDATE creature_model_info SET modelid_other_gender=15551 WHERE modelid=15552; UPDATE creature_model_info SET modelid_other_gender=20286 WHERE modelid=20287; UPDATE creature_model_info SET modelid_other_gender=0 WHERE modelid=22511; UPDATE creature_model_info SET modelid_other_gender=0 WHERE modelid=22512; INSERT IGNORE INTO pool_template VALUES (895,25,'MASTER Minerals Borean Tundra zone 3537'); INSERT IGNORE INTO pool_template VALUES (894,25,'MASTER Minerals Howling Fjord zone 495'); INSERT IGNORE INTO pool_template VALUES (893,25,'MASTER Minerals Dragonblight zone 65'); INSERT IGNORE INTO pool_template VALUES (892,25,'MASTER Minerals Grizzly Hills zone 394'); INSERT IGNORE INTO pool_template VALUES (891,30,'MASTER Minerals Zul\'Drak zone 66'); INSERT IGNORE INTO pool_template VALUES (890,25,'MASTER Minerals Hellfire Peninsula zone 3483'); -- slightly higher, large zones UPDATE pool_template SET max_limit=30 WHERE entry IN (899,898,897); UPDATE pool_pool SET mother_pool=895 WHERE mother_pool=5000; UPDATE pool_pool SET mother_pool=894 WHERE mother_pool=5121; UPDATE pool_pool SET mother_pool=893 WHERE mother_pool=5122; UPDATE pool_pool SET mother_pool=892 WHERE mother_pool=5181; UPDATE pool_pool SET mother_pool=891 WHERE mother_pool=5238; DELETE FROM pool_template WHERE entry IN (5000,5121,5122,5181,5238); -- borean tundra UPDATE gameobject SET guid=199999 WHERE guid=120544; INSERT IGNORE INTO pool_gameobject VALUES (199999,10000,0,'Borean Tundra 189978, node 74'); INSERT IGNORE INTO gameobject VALUES (199998,189979,571,1,1,3339.99,6077.69,70.5354,3.14159,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199998,10000,20,'Borean Tundra 189979, node 74'); INSERT IGNORE INTO pool_template VALUES (10000,1,'Borean Tundra mineral, node 74'); INSERT IGNORE INTO pool_pool VALUES (10000,895,0,'Borean Tundra mineral, node 74'); UPDATE gameobject SET guid=199997 WHERE guid=120706; INSERT IGNORE INTO pool_gameobject VALUES (199997,10001,0,'Borean Tundra 189978, node 75'); INSERT IGNORE INTO gameobject VALUES (199996,189979,571,1,1,3791.72,6400.17,201.611,-0.680679,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199996,10001,20,'Borean Tundra 189979, node 75'); INSERT IGNORE INTO pool_template VALUES (10001,1,'Borean Tundra mineral, node 75'); INSERT IGNORE INTO pool_pool VALUES (10001,895,0,'Borean Tundra mineral, node 75'); UPDATE gameobject SET guid=199995 WHERE guid=120708; INSERT IGNORE INTO pool_gameobject VALUES (199995,10002,0,'Borean Tundra 189978, node 76'); INSERT IGNORE INTO gameobject VALUES (199994,189979,571,1,1,3637.1,4875.02,-4.46438,1.23918,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199994,10002,20,'Borean Tundra 189979, node 76'); INSERT IGNORE INTO pool_template VALUES (10002,1,'Borean Tundra mineral, node 76'); INSERT IGNORE INTO pool_pool VALUES (10002,895,0,'Borean Tundra mineral, node 76'); UPDATE gameobject SET guid=199993 WHERE guid=120714; INSERT IGNORE INTO pool_gameobject VALUES (199993,10003,0,'Borean Tundra 189978, node 77'); INSERT IGNORE INTO gameobject VALUES (199992,189979,571,1,1,3966.95,4626.57,3.96658,1.48353,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199992,10003,20,'Borean Tundra 189979, node 77'); INSERT IGNORE INTO pool_template VALUES (10003,1,'Borean Tundra mineral, node 77'); INSERT IGNORE INTO pool_pool VALUES (10003,895,0,'Borean Tundra mineral, node 77'); UPDATE gameobject SET guid=199991 WHERE guid=121572; INSERT IGNORE INTO pool_gameobject VALUES (199991,10004,0,'Borean Tundra 189978, node 78'); INSERT IGNORE INTO gameobject VALUES (199990,189979,571,1,1,4027.44,5977.49,-126.068,-1.27409,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199990,10004,20,'Borean Tundra 189979, node 78'); INSERT IGNORE INTO pool_template VALUES (10004,1,'Borean Tundra mineral, node 78'); INSERT IGNORE INTO pool_pool VALUES (10004,895,0,'Borean Tundra mineral, node 78'); UPDATE gameobject SET guid=199989 WHERE guid=121573; INSERT IGNORE INTO pool_gameobject VALUES (199989,10005,0,'Borean Tundra 189978, node 79'); INSERT IGNORE INTO gameobject VALUES (199988,189979,571,1,1,2620.51,5873.98,-13.0427,-0.069812,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199988,10005,20,'Borean Tundra 189979, node 79'); INSERT IGNORE INTO pool_template VALUES (10005,1,'Borean Tundra mineral, node 79'); INSERT IGNORE INTO pool_pool VALUES (10005,895,0,'Borean Tundra mineral, node 79'); UPDATE gameobject SET guid=199987 WHERE guid=121577; INSERT IGNORE INTO pool_gameobject VALUES (199987,10006,0,'Borean Tundra 189978, node 80'); INSERT IGNORE INTO gameobject VALUES (199986,189979,571,1,1,4420.92,5968.57,58.9111,-1.78023,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199986,10006,20,'Borean Tundra 189979, node 80'); INSERT IGNORE INTO pool_template VALUES (10006,1,'Borean Tundra mineral, node 80'); INSERT IGNORE INTO pool_pool VALUES (10006,895,0,'Borean Tundra mineral, node 80'); UPDATE gameobject SET guid=199985 WHERE guid=121578; INSERT IGNORE INTO pool_gameobject VALUES (199985,10007,0,'Borean Tundra 189978, node 81'); INSERT IGNORE INTO gameobject VALUES (199984,189979,571,1,1,3969.57,6320.44,3.27146,-2.56563,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199984,10007,20,'Borean Tundra 189979, node 81'); INSERT IGNORE INTO pool_template VALUES (10007,1,'Borean Tundra mineral, node 81'); INSERT IGNORE INTO pool_pool VALUES (10007,895,0,'Borean Tundra mineral, node 81'); UPDATE gameobject SET guid=199983 WHERE guid=121634; INSERT IGNORE INTO pool_gameobject VALUES (199983,10008,0,'Borean Tundra 189978, node 82'); INSERT IGNORE INTO gameobject VALUES (199982,189979,571,1,1,2210.39,6140.07,102.586,-1.43117,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199982,10008,20,'Borean Tundra 189979, node 82'); INSERT IGNORE INTO pool_template VALUES (10008,1,'Borean Tundra mineral, node 82'); INSERT IGNORE INTO pool_pool VALUES (10008,895,0,'Borean Tundra mineral, node 82'); UPDATE gameobject SET guid=199981 WHERE guid=121638; INSERT IGNORE INTO pool_gameobject VALUES (199981,10009,0,'Borean Tundra 189978, node 83'); INSERT IGNORE INTO gameobject VALUES (199980,189979,571,1,1,4285.31,5841.81,59.8419,1.23918,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199980,10009,20,'Borean Tundra 189979, node 83'); INSERT IGNORE INTO pool_template VALUES (10009,1,'Borean Tundra mineral, node 83'); INSERT IGNORE INTO pool_pool VALUES (10009,895,0,'Borean Tundra mineral, node 83'); UPDATE gameobject SET guid=199979 WHERE guid=121648; INSERT IGNORE INTO pool_gameobject VALUES (199979,10010,0,'Borean Tundra 189978, node 84'); INSERT IGNORE INTO gameobject VALUES (199978,189979,571,1,1,4028.67,6774.96,163.169,0.942477,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199978,10010,20,'Borean Tundra 189979, node 84'); INSERT IGNORE INTO pool_template VALUES (10010,1,'Borean Tundra mineral, node 84'); INSERT IGNORE INTO pool_pool VALUES (10010,895,0,'Borean Tundra mineral, node 84'); UPDATE gameobject SET guid=199977 WHERE guid=121649; INSERT IGNORE INTO pool_gameobject VALUES (199977,10011,0,'Borean Tundra 189978, node 85'); INSERT IGNORE INTO gameobject VALUES (199976,189979,571,1,1,2207.81,5461.62,1.41788,-2.25147,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199976,10011,20,'Borean Tundra 189979, node 85'); INSERT IGNORE INTO pool_template VALUES (10011,1,'Borean Tundra mineral, node 85'); INSERT IGNORE INTO pool_pool VALUES (10011,895,0,'Borean Tundra mineral, node 85'); -- howling fjord UPDATE gameobject SET id=189978 WHERE guid IN (60194,60440,60740); UPDATE gameobject SET guid=199975 WHERE guid=56180; INSERT IGNORE INTO pool_gameobject VALUES (199975,10012,0,'Howling Fjord 189978, node 63'); INSERT IGNORE INTO gameobject VALUES (199974,189979,571,1,1,2192.97,-2536.35,5.33532,2.49582,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199974,10012,20,'Howling Fjord 189979, node 63'); INSERT IGNORE INTO pool_template VALUES (10012,1,'Howling Fjord mineral, node 63'); INSERT IGNORE INTO pool_pool VALUES (10012,894,0,'Howling Fjord mineral, node 63'); UPDATE gameobject SET guid=199973 WHERE guid=56453; INSERT IGNORE INTO pool_gameobject VALUES (199973,10013,0,'Howling Fjord 189978, node 64'); INSERT IGNORE INTO gameobject VALUES (199972,189979,571,1,1,2588.11,-3004.66,111.536,-2.19912,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199972,10013,20,'Howling Fjord 189979, node 64'); INSERT IGNORE INTO pool_template VALUES (10013,1,'Howling Fjord mineral, node 64'); INSERT IGNORE INTO pool_pool VALUES (10013,894,0,'Howling Fjord mineral, node 64'); UPDATE gameobject SET guid=199971 WHERE guid=56798; INSERT IGNORE INTO pool_gameobject VALUES (199971,10014,0,'Howling Fjord 189978, node 65'); INSERT IGNORE INTO gameobject VALUES (199970,189979,571,1,1,2022.6,-2729.91,0.300366,0.837757,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199970,10014,20,'Howling Fjord 189979, node 65'); INSERT IGNORE INTO pool_template VALUES (10014,1,'Howling Fjord mineral, node 65'); INSERT IGNORE INTO pool_pool VALUES (10014,894,0,'Howling Fjord mineral, node 65'); UPDATE gameobject SET guid=199969 WHERE guid=56812; INSERT IGNORE INTO pool_gameobject VALUES (199969,10015,0,'Howling Fjord 189978, node 66'); INSERT IGNORE INTO gameobject VALUES (199968,189979,571,1,1,2275.29,-2949.5,123.738,2.14675,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199968,10015,20,'Howling Fjord 189979, node 66'); INSERT IGNORE INTO pool_template VALUES (10015,1,'Howling Fjord mineral, node 66'); INSERT IGNORE INTO pool_pool VALUES (10015,894,0,'Howling Fjord mineral, node 66'); UPDATE gameobject SET guid=199967 WHERE guid=58769; INSERT IGNORE INTO pool_gameobject VALUES (199967,10016,0,'Howling Fjord 189978, node 67'); INSERT IGNORE INTO gameobject VALUES (199966,189979,571,1,1,2407.69,-2824.83,9.7012,-0.855211,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199966,10016,20,'Howling Fjord 189979, node 67'); INSERT IGNORE INTO pool_template VALUES (10016,1,'Howling Fjord mineral, node 67'); INSERT IGNORE INTO pool_pool VALUES (10016,894,0,'Howling Fjord mineral, node 67'); UPDATE gameobject SET guid=199965 WHERE guid=59006; INSERT IGNORE INTO pool_gameobject VALUES (199965,10017,0,'Howling Fjord 189978, node 68'); INSERT IGNORE INTO gameobject VALUES (199964,189979,571,1,1,1864.17,-3001.18,144.162,2.77507,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199964,10017,20,'Howling Fjord 189979, node 68'); INSERT IGNORE INTO pool_template VALUES (10017,1,'Howling Fjord mineral, node 68'); INSERT IGNORE INTO pool_pool VALUES (10017,894,0,'Howling Fjord mineral, node 68'); UPDATE gameobject SET guid=199963 WHERE guid=59194; INSERT IGNORE INTO pool_gameobject VALUES (199963,10018,0,'Howling Fjord 189978, node 69'); INSERT IGNORE INTO gameobject VALUES (199962,189979,571,1,1,2467.06,-2824.69,20.6504,-1.09956,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199962,10018,20,'Howling Fjord 189979, node 69'); INSERT IGNORE INTO pool_template VALUES (10018,1,'Howling Fjord mineral, node 69'); INSERT IGNORE INTO pool_pool VALUES (10018,894,0,'Howling Fjord mineral, node 69'); UPDATE gameobject SET guid=199961 WHERE guid=59195; INSERT IGNORE INTO pool_gameobject VALUES (199961,10019,0,'Howling Fjord 189978, node 70'); INSERT IGNORE INTO gameobject VALUES (199960,189979,571,1,1,1963.89,-2986.95,155.574,-2.18166,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199960,10019,20,'Howling Fjord 189979, node 70'); INSERT IGNORE INTO pool_template VALUES (10019,1,'Howling Fjord mineral, node 70'); INSERT IGNORE INTO pool_pool VALUES (10019,894,0,'Howling Fjord mineral, node 70'); UPDATE gameobject SET guid=199959 WHERE guid=60008; INSERT IGNORE INTO pool_gameobject VALUES (199959,10020,0,'Howling Fjord 189978, node 71'); INSERT IGNORE INTO gameobject VALUES (199958,189979,571,1,1,2304.78,-2744.87,-0.041522,2.47837,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199958,10020,20,'Howling Fjord 189979, node 71'); INSERT IGNORE INTO pool_template VALUES (10020,1,'Howling Fjord mineral, node 71'); INSERT IGNORE INTO pool_pool VALUES (10020,894,0,'Howling Fjord mineral, node 71'); UPDATE gameobject SET guid=199957 WHERE guid=60194; INSERT IGNORE INTO pool_gameobject VALUES (199957,10021,0,'Howling Fjord 189978, node 72'); INSERT IGNORE INTO gameobject VALUES (199956,189979,571,1,1,2275.29,-2949.5,123.738,2.14675,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199956,10021,20,'Howling Fjord 189979, node 72'); INSERT IGNORE INTO pool_template VALUES (10021,1,'Howling Fjord mineral, node 72'); INSERT IGNORE INTO pool_pool VALUES (10021,894,0,'Howling Fjord mineral, node 72'); UPDATE gameobject SET guid=199955 WHERE guid=60440; INSERT IGNORE INTO pool_gameobject VALUES (199955,10022,0,'Howling Fjord 189978, node 73'); INSERT IGNORE INTO gameobject VALUES (199954,189979,571,1,1,1864.17,-3001.18,144.162,2.77507,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199954,10022,20,'Howling Fjord 189979, node 73'); INSERT IGNORE INTO pool_template VALUES (10022,1,'Howling Fjord mineral, node 73'); INSERT IGNORE INTO pool_pool VALUES (10022,894,0,'Howling Fjord mineral, node 73'); UPDATE gameobject SET guid=199953 WHERE guid=60740; INSERT IGNORE INTO pool_gameobject VALUES (199953,10023,0,'Howling Fjord 189978, node 74'); INSERT IGNORE INTO gameobject VALUES (199952,189979,571,1,1,2407.69,-2824.83,9.7012,-0.855211,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199952,10023,20,'Howling Fjord 189979, node 74'); INSERT IGNORE INTO pool_template VALUES (10023,1,'Howling Fjord mineral, node 74'); INSERT IGNORE INTO pool_pool VALUES (10023,894,0,'Howling Fjord mineral, node 74'); UPDATE gameobject SET guid=199951 WHERE guid=120536; INSERT IGNORE INTO pool_gameobject VALUES (199951,10024,0,'Howling Fjord 189978, node 75'); INSERT IGNORE INTO gameobject VALUES (199950,189979,571,1,1,998.078,-5148.79,-57.7402,2.47837,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199950,10024,20,'Howling Fjord 189979, node 75'); INSERT IGNORE INTO pool_template VALUES (10024,1,'Howling Fjord mineral, node 75'); INSERT IGNORE INTO pool_pool VALUES (10024,894,0,'Howling Fjord mineral, node 75'); UPDATE gameobject SET guid=199949 WHERE guid=120540; INSERT IGNORE INTO pool_gameobject VALUES (199949,10025,0,'Howling Fjord 189978, node 76'); INSERT IGNORE INTO gameobject VALUES (199948,189979,571,1,1,2869.77,-3186.19,134.01,1.18682,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199948,10025,20,'Howling Fjord 189979, node 76'); INSERT IGNORE INTO pool_template VALUES (10025,1,'Howling Fjord mineral, node 76'); INSERT IGNORE INTO pool_pool VALUES (10025,894,0,'Howling Fjord mineral, node 76'); UPDATE gameobject SET guid=199947 WHERE guid=120543; INSERT IGNORE INTO pool_gameobject VALUES (199947,10026,0,'Howling Fjord 189978, node 77'); INSERT IGNORE INTO gameobject VALUES (199946,189979,571,1,1,2143.75,-5151.33,240.641,2.60053,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199946,10026,20,'Howling Fjord 189979, node 77'); INSERT IGNORE INTO pool_template VALUES (10026,1,'Howling Fjord mineral, node 77'); INSERT IGNORE INTO pool_pool VALUES (10026,894,0,'Howling Fjord mineral, node 77'); UPDATE gameobject SET guid=199945 WHERE guid=120545; INSERT IGNORE INTO pool_gameobject VALUES (199945,10027,0,'Howling Fjord 189978, node 78'); INSERT IGNORE INTO gameobject VALUES (199944,189979,571,1,1,895.472,-4540.75,159.154,0.261798,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199944,10027,20,'Howling Fjord 189979, node 78'); INSERT IGNORE INTO pool_template VALUES (10027,1,'Howling Fjord mineral, node 78'); INSERT IGNORE INTO pool_pool VALUES (10027,894,0,'Howling Fjord mineral, node 78'); UPDATE gameobject SET guid=199943 WHERE guid=120673; INSERT IGNORE INTO pool_gameobject VALUES (199943,10028,0,'Howling Fjord 189978, node 79'); INSERT IGNORE INTO gameobject VALUES (199942,189979,571,1,3,2733.18,-4021.56,378.243,0.104719,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199942,10028,20,'Howling Fjord 189979, node 79'); INSERT IGNORE INTO pool_template VALUES (10028,1,'Howling Fjord mineral, node 79'); INSERT IGNORE INTO pool_pool VALUES (10028,894,0,'Howling Fjord mineral, node 79'); UPDATE gameobject SET guid=199941 WHERE guid=120674; INSERT IGNORE INTO pool_gameobject VALUES (199941,10029,0,'Howling Fjord 189978, node 80'); INSERT IGNORE INTO gameobject VALUES (199940,189979,571,1,3,2696.92,-4105.83,365.928,-2.44346,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199940,10029,20,'Howling Fjord 189979, node 80'); INSERT IGNORE INTO pool_template VALUES (10029,1,'Howling Fjord mineral, node 80'); INSERT IGNORE INTO pool_pool VALUES (10029,894,0,'Howling Fjord mineral, node 80'); UPDATE gameobject SET guid=199939 WHERE guid=120675; INSERT IGNORE INTO pool_gameobject VALUES (199939,10030,0,'Howling Fjord 189978, node 81'); INSERT IGNORE INTO gameobject VALUES (199938,189979,571,1,3,788.804,-5611.92,231.818,2.63544,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199938,10030,20,'Howling Fjord 189979, node 81'); INSERT IGNORE INTO pool_template VALUES (10030,1,'Howling Fjord mineral, node 81'); INSERT IGNORE INTO pool_pool VALUES (10030,894,0,'Howling Fjord mineral, node 81'); UPDATE gameobject SET guid=199937 WHERE guid=120679; INSERT IGNORE INTO pool_gameobject VALUES (199937,10031,0,'Howling Fjord 189978, node 82'); INSERT IGNORE INTO gameobject VALUES (199936,189979,571,1,3,2570.45,-2766.36,8.74007,-0.488691,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199936,10031,20,'Howling Fjord 189979, node 82'); INSERT IGNORE INTO pool_template VALUES (10031,1,'Howling Fjord mineral, node 82'); INSERT IGNORE INTO pool_pool VALUES (10031,894,0,'Howling Fjord mineral, node 82'); UPDATE gameobject SET guid=199935 WHERE guid=120680; INSERT IGNORE INTO pool_gameobject VALUES (199935,10032,0,'Howling Fjord 189978, node 83'); INSERT IGNORE INTO gameobject VALUES (199934,189979,571,1,3,1257.94,-6169.47,234.71,-2.72271,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199934,10032,20,'Howling Fjord 189979, node 83'); INSERT IGNORE INTO pool_template VALUES (10032,1,'Howling Fjord mineral, node 83'); INSERT IGNORE INTO pool_pool VALUES (10032,894,0,'Howling Fjord mineral, node 83'); UPDATE gameobject SET guid=199933 WHERE guid=120697; INSERT IGNORE INTO pool_gameobject VALUES (199933,10033,0,'Howling Fjord 189978, node 84'); INSERT IGNORE INTO gameobject VALUES (199932,189979,571,1,1,2192.25,-2648.39,1.16994,-1.55334,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199932,10033,20,'Howling Fjord 189979, node 84'); INSERT IGNORE INTO pool_template VALUES (10033,1,'Howling Fjord mineral, node 84'); INSERT IGNORE INTO pool_pool VALUES (10033,894,0,'Howling Fjord mineral, node 84'); UPDATE gameobject SET guid=199931 WHERE guid=120704; INSERT IGNORE INTO pool_gameobject VALUES (199931,10034,0,'Howling Fjord 189978, node 85'); INSERT IGNORE INTO gameobject VALUES (199930,189979,571,1,1,1041.89,-4154.15,152.618,0.942477,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199930,10034,20,'Howling Fjord 189979, node 85'); INSERT IGNORE INTO pool_template VALUES (10034,1,'Howling Fjord mineral, node 85'); INSERT IGNORE INTO pool_pool VALUES (10034,894,0,'Howling Fjord mineral, node 85'); UPDATE gameobject SET guid=199929 WHERE guid=120713; INSERT IGNORE INTO pool_gameobject VALUES (199929,10035,0,'Howling Fjord 189978, node 86'); INSERT IGNORE INTO gameobject VALUES (199928,189979,571,1,1,316.353,-5817.65,83.6513,0.925024,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199928,10035,20,'Howling Fjord 189979, node 86'); INSERT IGNORE INTO pool_template VALUES (10035,1,'Howling Fjord mineral, node 86'); INSERT IGNORE INTO pool_pool VALUES (10035,894,0,'Howling Fjord mineral, node 86'); UPDATE gameobject SET guid=199927 WHERE guid=121636; INSERT IGNORE INTO pool_gameobject VALUES (199927,10036,0,'Howling Fjord 189978, node 87'); INSERT IGNORE INTO gameobject VALUES (199926,189979,571,1,1,2378.33,-4777.66,241.511,-2.79252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199926,10036,20,'Howling Fjord 189979, node 87'); INSERT IGNORE INTO pool_template VALUES (10036,1,'Howling Fjord mineral, node 87'); INSERT IGNORE INTO pool_pool VALUES (10036,894,0,'Howling Fjord mineral, node 87'); UPDATE gameobject SET guid=199925 WHERE guid=121647; INSERT IGNORE INTO pool_gameobject VALUES (199925,10037,0,'Howling Fjord 189978, node 88'); INSERT IGNORE INTO gameobject VALUES (199924,189979,571,1,1,854.087,-5928.98,280.452,-1.3439,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199924,10037,20,'Howling Fjord 189979, node 88'); INSERT IGNORE INTO pool_template VALUES (10037,1,'Howling Fjord mineral, node 88'); INSERT IGNORE INTO pool_pool VALUES (10037,894,0,'Howling Fjord mineral, node 88'); -- dragonblight UPDATE gameobject SET id=189978 WHERE guid=120698; UPDATE gameobject SET guid=199923 WHERE guid=60170; INSERT IGNORE INTO pool_gameobject VALUES (199923,10038,0,'Dragonblight 189978, node 72'); INSERT IGNORE INTO gameobject VALUES (199922,189979,571,1,1,5231.89,1041.12,226.329,1.78023,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199922,10038,30,'Dragonblight 189979, node 72'); INSERT IGNORE INTO pool_template VALUES (10038,1,'Dragonblight mineral, node 72'); INSERT IGNORE INTO pool_pool VALUES (10038,893,0,'Dragonblight mineral, node 72'); UPDATE gameobject SET guid=199921 WHERE guid=120538; INSERT IGNORE INTO pool_gameobject VALUES (199921,10039,0,'Dragonblight 189978, node 73'); INSERT IGNORE INTO gameobject VALUES (199920,189979,571,1,1,3505.23,-364.256,83.2001,2.86233,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199920,10039,30,'Dragonblight 189979, node 73'); INSERT IGNORE INTO pool_template VALUES (10039,1,'Dragonblight mineral, node 73'); INSERT IGNORE INTO pool_pool VALUES (10039,893,0,'Dragonblight mineral, node 73'); UPDATE gameobject SET guid=199919 WHERE guid=120539; INSERT IGNORE INTO pool_gameobject VALUES (199919,10040,0,'Dragonblight 189978, node 74'); INSERT IGNORE INTO gameobject VALUES (199918,189979,571,1,1,3747.5,-180.62,80.074,-1.01229,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199918,10040,30,'Dragonblight 189979, node 74'); INSERT IGNORE INTO pool_template VALUES (10040,1,'Dragonblight mineral, node 74'); INSERT IGNORE INTO pool_pool VALUES (10040,893,0,'Dragonblight mineral, node 74'); UPDATE gameobject SET guid=199917 WHERE guid=120696; INSERT IGNORE INTO pool_gameobject VALUES (199917,10041,0,'Dragonblight 189978, node 75'); INSERT IGNORE INTO gameobject VALUES (199916,189979,571,1,1,2904.41,44.2299,3.35415,2.94959,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199916,10041,30,'Dragonblight 189979, node 75'); INSERT IGNORE INTO pool_template VALUES (10041,1,'Dragonblight mineral, node 75'); INSERT IGNORE INTO pool_pool VALUES (10041,893,0,'Dragonblight mineral, node 75'); UPDATE gameobject SET guid=199915 WHERE guid=120698; INSERT IGNORE INTO pool_gameobject VALUES (199915,10042,0,'Dragonblight 189978, node 76'); INSERT IGNORE INTO gameobject VALUES (199914,189979,571,1,1,2477.93,-490.846,-11.7411,-2.80997,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199914,10042,30,'Dragonblight 189979, node 76'); INSERT IGNORE INTO pool_template VALUES (10042,1,'Dragonblight mineral, node 76'); INSERT IGNORE INTO pool_pool VALUES (10042,893,0,'Dragonblight mineral, node 76'); UPDATE gameobject SET guid=199913 WHERE guid=120707; INSERT IGNORE INTO pool_gameobject VALUES (199913,10043,0,'Dragonblight 189978, node 77'); INSERT IGNORE INTO gameobject VALUES (199912,189979,571,1,1,4719.08,-439.314,180.821,1.55334,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199912,10043,30,'Dragonblight 189979, node 77'); INSERT IGNORE INTO pool_template VALUES (10043,1,'Dragonblight mineral, node 77'); INSERT IGNORE INTO pool_pool VALUES (10043,893,0,'Dragonblight mineral, node 77'); UPDATE gameobject SET guid=199911 WHERE guid=120710; INSERT IGNORE INTO pool_gameobject VALUES (199911,10044,0,'Dragonblight 189978, node 78'); INSERT IGNORE INTO gameobject VALUES (199910,189979,571,1,1,4914.59,-1231.76,174.732,0.087266,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199910,10044,30,'Dragonblight 189979, node 78'); INSERT IGNORE INTO pool_template VALUES (10044,1,'Dragonblight mineral, node 78'); INSERT IGNORE INTO pool_pool VALUES (10044,893,0,'Dragonblight mineral, node 78'); UPDATE gameobject SET guid=199909 WHERE guid=121574; INSERT IGNORE INTO pool_gameobject VALUES (199909,10045,0,'Dragonblight 189978, node 79'); INSERT IGNORE INTO gameobject VALUES (199908,189979,571,1,1,3165.07,473.845,27.9369,-0.104719,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199908,10045,30,'Dragonblight 189979, node 79'); INSERT IGNORE INTO pool_template VALUES (10045,1,'Dragonblight mineral, node 79'); INSERT IGNORE INTO pool_pool VALUES (10045,893,0,'Dragonblight mineral, node 79'); UPDATE gameobject SET guid=199907 WHERE guid=121575; INSERT IGNORE INTO pool_gameobject VALUES (199907,10046,0,'Dragonblight 189978, node 80'); INSERT IGNORE INTO gameobject VALUES (199906,189979,571,1,1,3376.43,1544.4,134.025,-0.261798,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199906,10046,30,'Dragonblight 189979, node 80'); INSERT IGNORE INTO pool_template VALUES (10046,1,'Dragonblight mineral, node 80'); INSERT IGNORE INTO pool_pool VALUES (10046,893,0,'Dragonblight mineral, node 80'); UPDATE gameobject SET guid=199905 WHERE guid=121635; INSERT IGNORE INTO pool_gameobject VALUES (199905,10047,0,'Dragonblight 189978, node 81'); INSERT IGNORE INTO gameobject VALUES (199904,189979,571,1,1,3453.85,-31.1215,69.852,-3.07177,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199904,10047,30,'Dragonblight 189979, node 81'); INSERT IGNORE INTO pool_template VALUES (10047,1,'Dragonblight mineral, node 81'); INSERT IGNORE INTO pool_pool VALUES (10047,893,0,'Dragonblight mineral, node 81'); -- grizzly hills UPDATE gameobject SET guid=199903 WHERE guid=120514; INSERT IGNORE INTO pool_gameobject VALUES (199903,10048,0,'Grizzly Hills 189978, node 40'); INSERT IGNORE INTO gameobject VALUES (199902,189979,571,1,1,4151.42,-4614.51,144.271,0.104719,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199902,10048,40,'Grizzly Hills 189979, node 40'); INSERT IGNORE INTO pool_template VALUES (10048,1,'Grizzly Hills mineral, node 40'); INSERT IGNORE INTO pool_pool VALUES (10048,892,0,'Grizzly Hills mineral, node 40'); UPDATE gameobject SET guid=199901 WHERE guid=120537; INSERT IGNORE INTO pool_gameobject VALUES (199901,10049,0,'Grizzly Hills 189978, node 41'); INSERT IGNORE INTO gameobject VALUES (199900,189979,571,1,1,4882.17,-4206.04,253.289,-0.191985,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199900,10049,40,'Grizzly Hills 189979, node 41'); INSERT IGNORE INTO pool_template VALUES (10049,1,'Grizzly Hills mineral, node 41'); INSERT IGNORE INTO pool_pool VALUES (10049,892,0,'Grizzly Hills mineral, node 41'); UPDATE gameobject SET guid=199899 WHERE guid=120542; INSERT IGNORE INTO pool_gameobject VALUES (199899,10050,0,'Grizzly Hills 189978, node 42'); INSERT IGNORE INTO gameobject VALUES (199898,189979,571,1,1,3543.85,-5054.89,234.061,2.80997,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199898,10050,40,'Grizzly Hills 189979, node 42'); INSERT IGNORE INTO pool_template VALUES (10050,1,'Grizzly Hills mineral, node 42'); INSERT IGNORE INTO pool_pool VALUES (10050,892,0,'Grizzly Hills mineral, node 42'); UPDATE gameobject SET guid=199897 WHERE guid=120677; INSERT IGNORE INTO pool_gameobject VALUES (199897,10051,0,'Grizzly Hills 189978, node 43'); INSERT IGNORE INTO gameobject VALUES (199896,189979,571,1,3,3932.55,-3970.73,174.807,-1.97222,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199896,10051,40,'Grizzly Hills 189979, node 43'); INSERT IGNORE INTO pool_template VALUES (10051,1,'Grizzly Hills mineral, node 43'); INSERT IGNORE INTO pool_pool VALUES (10051,892,0,'Grizzly Hills mineral, node 43'); -- zul'drak UPDATE gameobject SET id=189978 WHERE guid IN (120098,121582,121583); UPDATE gameobject SET guid=199895 WHERE guid=56138; INSERT IGNORE INTO pool_gameobject VALUES (199895,10052,0,'ZulDrak 189978, node 43'); INSERT IGNORE INTO gameobject VALUES (199894,189979,571,1,1,6914.57,-4477.57,440.913,1.55334,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199894,10052,45,'ZulDrak 189979, node 43'); INSERT IGNORE INTO gameobject VALUES (199893,189980,571,1,1,6914.57,-4477.57,440.913,1.55334,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199893,10052,5,'ZulDrak 189980, node 43'); INSERT IGNORE INTO pool_template VALUES (10052,1,'ZulDrak mineral, node 43'); INSERT IGNORE INTO pool_pool VALUES (10052,891,0,'ZulDrak mineral, node 43'); UPDATE gameobject SET guid=199892 WHERE guid=120010; INSERT IGNORE INTO pool_gameobject VALUES (199892,10053,0,'ZulDrak 189978, node 44'); INSERT IGNORE INTO gameobject VALUES (199891,189979,571,1,1,5402.13,-1898.59,237.159,1.74533,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199891,10053,45,'ZulDrak 189979, node 44'); INSERT IGNORE INTO gameobject VALUES (199890,189980,571,1,1,5402.13,-1898.59,237.159,1.74533,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199890,10053,5,'ZulDrak 189980, node 44'); INSERT IGNORE INTO pool_template VALUES (10053,1,'ZulDrak mineral, node 44'); INSERT IGNORE INTO pool_pool VALUES (10053,891,0,'ZulDrak mineral, node 44'); UPDATE gameobject SET guid=199889 WHERE guid=120011; INSERT IGNORE INTO pool_gameobject VALUES (199889,10054,0,'ZulDrak 189978, node 45'); INSERT IGNORE INTO gameobject VALUES (199888,189979,571,1,1,5213.89,-3377.16,290.401,1.81514,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199888,10054,45,'ZulDrak 189979, node 45'); INSERT IGNORE INTO gameobject VALUES (199887,189980,571,1,1,5213.89,-3377.16,290.401,1.81514,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199887,10054,5,'ZulDrak 189980, node 45'); INSERT IGNORE INTO pool_template VALUES (10054,1,'ZulDrak mineral, node 45'); INSERT IGNORE INTO pool_pool VALUES (10054,891,0,'ZulDrak mineral, node 45'); UPDATE gameobject SET guid=199886 WHERE guid=120098; INSERT IGNORE INTO pool_gameobject VALUES (199886,10055,0,'ZulDrak 189978, node 46'); INSERT IGNORE INTO gameobject VALUES (199885,189979,571,1,1,5179.08,-3316.92,283.774,-0.90757,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199885,10055,45,'ZulDrak 189979, node 46'); INSERT IGNORE INTO gameobject VALUES (199884,189980,571,1,1,5179.08,-3316.92,283.774,-0.90757,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199884,10055,5,'ZulDrak 189980, node 46'); INSERT IGNORE INTO pool_template VALUES (10055,1,'ZulDrak mineral, node 46'); INSERT IGNORE INTO pool_pool VALUES (10055,891,0,'ZulDrak mineral, node 46'); UPDATE gameobject SET guid=199883 WHERE guid=120184; INSERT IGNORE INTO pool_gameobject VALUES (199883,10056,0,'ZulDrak 189978, node 47'); INSERT IGNORE INTO gameobject VALUES (199882,189979,571,1,1,5894.34,-3293.63,360.434,2.11185,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199882,10056,45,'ZulDrak 189979, node 47'); INSERT IGNORE INTO gameobject VALUES (199881,189980,571,1,1,5894.34,-3293.63,360.434,2.11185,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199881,10056,5,'ZulDrak 189980, node 47'); INSERT IGNORE INTO pool_template VALUES (10056,1,'ZulDrak mineral, node 47'); INSERT IGNORE INTO pool_pool VALUES (10056,891,0,'ZulDrak mineral, node 47'); UPDATE gameobject SET guid=199880 WHERE guid=120515; INSERT IGNORE INTO pool_gameobject VALUES (199880,10057,0,'ZulDrak 189978, node 48'); INSERT IGNORE INTO gameobject VALUES (199879,189979,571,1,1,6265.88,-2931.17,307.012,0.767944,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199879,10057,45,'ZulDrak 189979, node 48'); INSERT IGNORE INTO gameobject VALUES (199878,189980,571,1,1,6265.88,-2931.17,307.012,0.767944,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199878,10057,5,'ZulDrak 189980, node 48'); INSERT IGNORE INTO pool_template VALUES (10057,1,'ZulDrak mineral, node 48'); INSERT IGNORE INTO pool_pool VALUES (10057,891,0,'ZulDrak mineral, node 48'); UPDATE gameobject SET guid=199877 WHERE guid=120516; INSERT IGNORE INTO pool_gameobject VALUES (199877,10058,0,'ZulDrak 189978, node 49'); INSERT IGNORE INTO gameobject VALUES (199876,189979,571,1,1,6564.48,-4107.55,464.168,1.76278,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199876,10058,45,'ZulDrak 189979, node 49'); INSERT IGNORE INTO gameobject VALUES (199875,189980,571,1,1,6564.48,-4107.55,464.168,1.76278,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199875,10058,5,'ZulDrak 189980, node 49'); INSERT IGNORE INTO pool_template VALUES (10058,1,'ZulDrak mineral, node 49'); INSERT IGNORE INTO pool_pool VALUES (10058,891,0,'ZulDrak mineral, node 49'); UPDATE gameobject SET guid=199874 WHERE guid=120517; INSERT IGNORE INTO pool_gameobject VALUES (199874,10059,0,'ZulDrak 189978, node 50'); INSERT IGNORE INTO gameobject VALUES (199873,189979,571,1,1,4862.15,-3603.41,307.034,1.50098,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199873,10059,45,'ZulDrak 189979, node 50'); INSERT IGNORE INTO gameobject VALUES (199872,189980,571,1,1,4862.15,-3603.41,307.034,1.50098,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199872,10059,5,'ZulDrak 189980, node 50'); INSERT IGNORE INTO pool_template VALUES (10059,1,'ZulDrak mineral, node 50'); INSERT IGNORE INTO pool_pool VALUES (10059,891,0,'ZulDrak mineral, node 50'); UPDATE gameobject SET guid=199871 WHERE guid=120541; INSERT IGNORE INTO pool_gameobject VALUES (199871,10060,0,'ZulDrak 189978, node 51'); INSERT IGNORE INTO gameobject VALUES (199870,189979,571,1,1,5966.88,-4236.39,358.494,-1.43117,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199870,10060,45,'ZulDrak 189979, node 51'); INSERT IGNORE INTO gameobject VALUES (199869,189980,571,1,1,5966.88,-4236.39,358.494,-1.43117,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199869,10060,5,'ZulDrak 189980, node 51'); INSERT IGNORE INTO pool_template VALUES (10060,1,'ZulDrak mineral, node 51'); INSERT IGNORE INTO pool_pool VALUES (10060,891,0,'ZulDrak mineral, node 51'); UPDATE gameobject SET guid=199868 WHERE guid=120676; INSERT IGNORE INTO pool_gameobject VALUES (199868,10061,0,'ZulDrak 189978, node 52'); INSERT IGNORE INTO gameobject VALUES (199867,189979,571,1,3,4859.57,-2766.92,293.176,1.39626,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199867,10061,45,'ZulDrak 189979, node 52'); INSERT IGNORE INTO gameobject VALUES (199866,189980,571,1,3,4859.57,-2766.92,293.176,1.39626,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199866,10061,5,'ZulDrak 189980, node 52'); INSERT IGNORE INTO pool_template VALUES (10061,1,'ZulDrak mineral, node 52'); INSERT IGNORE INTO pool_pool VALUES (10061,891,0,'ZulDrak mineral, node 52'); UPDATE gameobject SET guid=199865 WHERE guid=120678; INSERT IGNORE INTO pool_gameobject VALUES (199865,10062,0,'ZulDrak 189978, node 53'); INSERT IGNORE INTO gameobject VALUES (199864,189979,571,1,3,5374.42,-1755.01,240.063,2.9845,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199864,10062,45,'ZulDrak 189979, node 53'); INSERT IGNORE INTO gameobject VALUES (199863,189980,571,1,3,5374.42,-1755.01,240.063,2.9845,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199863,10062,5,'ZulDrak 189980, node 53'); INSERT IGNORE INTO pool_template VALUES (10062,1,'ZulDrak mineral, node 53'); INSERT IGNORE INTO pool_pool VALUES (10062,891,0,'ZulDrak mineral, node 53'); UPDATE gameobject SET guid=199862 WHERE guid=120681; INSERT IGNORE INTO pool_gameobject VALUES (199862,10063,0,'ZulDrak 189978, node 54'); INSERT IGNORE INTO gameobject VALUES (199861,189979,571,1,3,4988.3,-3547.63,289.522,3.07177,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199861,10063,45,'ZulDrak 189979, node 54'); INSERT IGNORE INTO gameobject VALUES (199860,189980,571,1,3,4988.3,-3547.63,289.522,3.07177,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199860,10063,5,'ZulDrak 189980, node 54'); INSERT IGNORE INTO pool_template VALUES (10063,1,'ZulDrak mineral, node 54'); INSERT IGNORE INTO pool_pool VALUES (10063,891,0,'ZulDrak mineral, node 54'); UPDATE gameobject SET guid=199859 WHERE guid=120705; INSERT IGNORE INTO pool_gameobject VALUES (199859,10064,0,'ZulDrak 189978, node 55'); INSERT IGNORE INTO gameobject VALUES (199858,189979,571,1,1,5138.82,-1427.07,246.807,-1.43117,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199858,10064,45,'ZulDrak 189979, node 55'); INSERT IGNORE INTO gameobject VALUES (199857,189980,571,1,1,5138.82,-1427.07,246.807,-1.43117,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199857,10064,5,'ZulDrak 189980, node 55'); INSERT IGNORE INTO pool_template VALUES (10064,1,'ZulDrak mineral, node 55'); INSERT IGNORE INTO pool_pool VALUES (10064,891,0,'ZulDrak mineral, node 55'); UPDATE gameobject SET guid=199856 WHERE guid=120709; INSERT IGNORE INTO pool_gameobject VALUES (199856,10065,0,'ZulDrak 189978, node 56'); INSERT IGNORE INTO gameobject VALUES (199855,189979,571,1,1,5517.87,-1276.3,239.408,2.16421,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199855,10065,45,'ZulDrak 189979, node 56'); INSERT IGNORE INTO gameobject VALUES (199854,189980,571,1,1,5517.87,-1276.3,239.408,2.16421,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199854,10065,5,'ZulDrak 189980, node 56'); INSERT IGNORE INTO pool_template VALUES (10065,1,'ZulDrak mineral, node 56'); INSERT IGNORE INTO pool_pool VALUES (10065,891,0,'ZulDrak mineral, node 56'); UPDATE gameobject SET guid=199853 WHERE guid=120711; INSERT IGNORE INTO pool_gameobject VALUES (199853,10066,0,'ZulDrak 189978, node 57'); INSERT IGNORE INTO gameobject VALUES (199852,189979,571,1,1,5107.33,-1267.57,262.382,2.28638,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199852,10066,45,'ZulDrak 189979, node 57'); INSERT IGNORE INTO gameobject VALUES (199851,189980,571,1,1,5107.33,-1267.57,262.382,2.28638,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199851,10066,5,'ZulDrak 189980, node 57'); INSERT IGNORE INTO pool_template VALUES (10066,1,'ZulDrak mineral, node 57'); INSERT IGNORE INTO pool_pool VALUES (10066,891,0,'ZulDrak mineral, node 57'); UPDATE gameobject SET guid=199850 WHERE guid=120712; INSERT IGNORE INTO pool_gameobject VALUES (199850,10067,0,'ZulDrak 189978, node 58'); INSERT IGNORE INTO gameobject VALUES (199849,189979,571,1,1,5090.21,-1197.57,267.128,-2.60053,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199849,10067,45,'ZulDrak 189979, node 58'); INSERT IGNORE INTO gameobject VALUES (199848,189980,571,1,1,5090.21,-1197.57,267.128,-2.60053,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199848,10067,5,'ZulDrak 189980, node 58'); INSERT IGNORE INTO pool_template VALUES (10067,1,'ZulDrak mineral, node 58'); INSERT IGNORE INTO pool_pool VALUES (10067,891,0,'ZulDrak mineral, node 58'); UPDATE gameobject SET guid=199847 WHERE guid=120715; INSERT IGNORE INTO pool_gameobject VALUES (199847,10068,0,'ZulDrak 189978, node 59'); INSERT IGNORE INTO gameobject VALUES (199846,189979,571,1,1,5174.09,-1159.02,257.851,2.26892,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199846,10068,45,'ZulDrak 189979, node 59'); INSERT IGNORE INTO gameobject VALUES (199845,189980,571,1,1,5174.09,-1159.02,257.851,2.26892,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199845,10068,5,'ZulDrak 189980, node 59'); INSERT IGNORE INTO pool_template VALUES (10068,1,'ZulDrak mineral, node 59'); INSERT IGNORE INTO pool_pool VALUES (10068,891,0,'ZulDrak mineral, node 59'); UPDATE gameobject SET guid=199844 WHERE guid=120716; INSERT IGNORE INTO pool_gameobject VALUES (199844,10069,0,'ZulDrak 189978, node 60'); INSERT IGNORE INTO gameobject VALUES (199843,189979,571,1,1,5131.74,-1276.76,248.314,3.07177,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199843,10069,45,'ZulDrak 189979, node 60'); INSERT IGNORE INTO gameobject VALUES (199842,189980,571,1,1,5131.74,-1276.76,248.314,3.07177,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199842,10069,5,'ZulDrak 189980, node 60'); INSERT IGNORE INTO pool_template VALUES (10069,1,'ZulDrak mineral, node 60'); INSERT IGNORE INTO pool_pool VALUES (10069,891,0,'ZulDrak mineral, node 60'); UPDATE gameobject SET guid=199841 WHERE guid=121576; INSERT IGNORE INTO pool_gameobject VALUES (199841,10070,0,'ZulDrak 189978, node 61'); INSERT IGNORE INTO gameobject VALUES (199840,189979,571,1,1,5286.28,-2085.2,236.267,3.03684,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199840,10070,45,'ZulDrak 189979, node 61'); INSERT IGNORE INTO gameobject VALUES (199839,189980,571,1,1,5286.28,-2085.2,236.267,3.03684,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199839,10070,5,'ZulDrak 189980, node 61'); INSERT IGNORE INTO pool_template VALUES (10070,1,'ZulDrak mineral, node 61'); INSERT IGNORE INTO pool_pool VALUES (10070,891,0,'ZulDrak mineral, node 61'); UPDATE gameobject SET guid=199838 WHERE guid=121579; INSERT IGNORE INTO pool_gameobject VALUES (199838,10071,0,'ZulDrak 189978, node 62'); INSERT IGNORE INTO gameobject VALUES (199837,189979,571,1,1,5714.95,-2415.05,288.185,2.16421,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199837,10071,45,'ZulDrak 189979, node 62'); INSERT IGNORE INTO gameobject VALUES (199836,189980,571,1,1,5714.95,-2415.05,288.185,2.16421,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199836,10071,5,'ZulDrak 189980, node 62'); INSERT IGNORE INTO pool_template VALUES (10071,1,'ZulDrak mineral, node 62'); INSERT IGNORE INTO pool_pool VALUES (10071,891,0,'ZulDrak mineral, node 62'); UPDATE gameobject SET guid=199835 WHERE guid=121580; INSERT IGNORE INTO pool_gameobject VALUES (199835,10072,0,'ZulDrak 189978, node 63'); INSERT IGNORE INTO gameobject VALUES (199834,189979,571,1,1,6467.04,-3401.27,388.714,0.680677,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199834,10072,45,'ZulDrak 189979, node 63'); INSERT IGNORE INTO gameobject VALUES (199833,189980,571,1,1,6467.04,-3401.27,388.714,0.680677,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199833,10072,5,'ZulDrak 189980, node 63'); INSERT IGNORE INTO pool_template VALUES (10072,1,'ZulDrak mineral, node 63'); INSERT IGNORE INTO pool_pool VALUES (10072,891,0,'ZulDrak mineral, node 63'); UPDATE gameobject SET guid=199832 WHERE guid=121581; INSERT IGNORE INTO pool_gameobject VALUES (199832,10073,0,'ZulDrak 189978, node 64'); INSERT IGNORE INTO gameobject VALUES (199831,189979,571,1,1,5754.9,-1402.17,234.586,-1.51844,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199831,10073,45,'ZulDrak 189979, node 64'); INSERT IGNORE INTO gameobject VALUES (199830,189980,571,1,1,5754.9,-1402.17,234.586,-1.51844,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199830,10073,5,'ZulDrak 189980, node 64'); INSERT IGNORE INTO pool_template VALUES (10073,1,'ZulDrak mineral, node 64'); INSERT IGNORE INTO pool_pool VALUES (10073,891,0,'ZulDrak mineral, node 64'); UPDATE gameobject SET guid=199829 WHERE guid=121582; INSERT IGNORE INTO pool_gameobject VALUES (199829,10074,0,'ZulDrak 189978, node 65'); INSERT IGNORE INTO gameobject VALUES (199828,189979,571,1,1,6171.83,-3366.97,363.118,0.733038,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199828,10074,45,'ZulDrak 189979, node 65'); INSERT IGNORE INTO gameobject VALUES (199827,189980,571,1,1,6171.83,-3366.97,363.118,0.733038,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199827,10074,5,'ZulDrak 189980, node 65'); INSERT IGNORE INTO pool_template VALUES (10074,1,'ZulDrak mineral, node 65'); INSERT IGNORE INTO pool_pool VALUES (10074,891,0,'ZulDrak mineral, node 65'); UPDATE gameobject SET guid=199826 WHERE guid=121583; INSERT IGNORE INTO pool_gameobject VALUES (199826,10075,0,'ZulDrak 189978, node 66'); INSERT IGNORE INTO gameobject VALUES (199825,189979,571,1,1,5660.36,-2367.7,287.542,-3.00195,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199825,10075,45,'ZulDrak 189979, node 66'); INSERT IGNORE INTO gameobject VALUES (199824,189980,571,1,1,5660.36,-2367.7,287.542,-3.00195,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199824,10075,5,'ZulDrak 189980, node 66'); INSERT IGNORE INTO pool_template VALUES (10075,1,'ZulDrak mineral, node 66'); INSERT IGNORE INTO pool_pool VALUES (10075,891,0,'ZulDrak mineral, node 66'); UPDATE gameobject SET guid=199823 WHERE guid=121637; INSERT IGNORE INTO pool_gameobject VALUES (199823,10076,0,'ZulDrak 189978, node 67'); INSERT IGNORE INTO gameobject VALUES (199822,189979,571,1,1,5849.14,-3516.87,372.972,2.09439,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199822,10076,45,'ZulDrak 189979, node 67'); INSERT IGNORE INTO gameobject VALUES (199821,189980,571,1,1,5849.14,-3516.87,372.972,2.09439,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199821,10076,5,'ZulDrak 189980, node 67'); INSERT IGNORE INTO pool_template VALUES (10076,1,'ZulDrak mineral, node 67'); INSERT IGNORE INTO pool_pool VALUES (10076,891,0,'ZulDrak mineral, node 67'); UPDATE gameobject SET guid=199820 WHERE guid=121650; INSERT IGNORE INTO pool_gameobject VALUES (199820,10077,0,'ZulDrak 189978, node 68'); INSERT IGNORE INTO gameobject VALUES (199819,189979,571,1,1,5159.13,-2823.0,292.931,-0.698132,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199819,10077,45,'ZulDrak 189979, node 68'); INSERT IGNORE INTO gameobject VALUES (199818,189980,571,1,1,5159.13,-2823.0,292.931,-0.698132,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199818,10077,5,'ZulDrak 189980, node 68'); INSERT IGNORE INTO pool_template VALUES (10077,1,'ZulDrak mineral, node 68'); INSERT IGNORE INTO pool_pool VALUES (10077,891,0,'ZulDrak mineral, node 68'); UPDATE gameobject SET guid=199817 WHERE guid=121651; INSERT IGNORE INTO pool_gameobject VALUES (199817,10078,0,'ZulDrak 189978, node 69'); INSERT IGNORE INTO gameobject VALUES (199816,189979,571,1,1,5093.4,-3388.83,281.222,-2.21656,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199816,10078,45,'ZulDrak 189979, node 69'); INSERT IGNORE INTO gameobject VALUES (199815,189980,571,1,1,5093.4,-3388.83,281.222,-2.21656,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199815,10078,5,'ZulDrak 189980, node 69'); INSERT IGNORE INTO pool_template VALUES (10078,1,'ZulDrak mineral, node 69'); INSERT IGNORE INTO pool_pool VALUES (10078,891,0,'ZulDrak mineral, node 69'); UPDATE gameobject SET guid=199814 WHERE guid=121652; INSERT IGNORE INTO pool_gameobject VALUES (199814,10079,0,'ZulDrak 189978, node 70'); INSERT IGNORE INTO gameobject VALUES (199813,189979,571,1,1,5823.88,-2446.71,296.067,-0.226892,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199813,10079,45,'ZulDrak 189979, node 70'); INSERT IGNORE INTO gameobject VALUES (199812,189980,571,1,1,5823.88,-2446.71,296.067,-0.226892,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199812,10079,5,'ZulDrak 189980, node 70'); INSERT IGNORE INTO pool_template VALUES (10079,1,'ZulDrak mineral, node 70'); INSERT IGNORE INTO pool_pool VALUES (10079,891,0,'ZulDrak mineral, node 70'); UPDATE gameobject SET guid=199811 WHERE guid=121653; INSERT IGNORE INTO pool_gameobject VALUES (199811,10080,0,'ZulDrak 189978, node 71'); INSERT IGNORE INTO gameobject VALUES (199810,189979,571,1,1,5229.91,-3205.72,273.227,2.32129,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199810,10080,45,'ZulDrak 189979, node 71'); INSERT IGNORE INTO gameobject VALUES (199809,189980,571,1,1,5229.91,-3205.72,273.227,2.32129,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199809,10080,5,'ZulDrak 189980, node 71'); INSERT IGNORE INTO pool_template VALUES (10080,1,'ZulDrak mineral, node 71'); INSERT IGNORE INTO pool_pool VALUES (10080,891,0,'ZulDrak mineral, node 71'); -- sholazar basin UPDATE gameobject SET id=189980 WHERE guid IN (121608); UPDATE gameobject SET guid=199808 WHERE guid=121590; INSERT IGNORE INTO pool_gameobject VALUES (199808,10081,0,'Sholazar Basin 189980, node 85'); INSERT IGNORE INTO gameobject VALUES (199807,189981,571,1,1,5684.01,4043.39,-92.3868,-1.01229,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199807,10081,40,'Sholazar Basin 189981, node 85'); INSERT IGNORE INTO gameobject VALUES (199806,191133,571,1,1,5684.01,4043.39,-92.3868,-1.01229,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199806,10081,5,'Sholazar Basin 191133, node 85'); INSERT IGNORE INTO pool_template VALUES (10081,1,'Sholazar Basin mineral, node 85'); INSERT IGNORE INTO pool_pool VALUES (10081,899,0,'Sholazar Basin mineral, node 85'); UPDATE gameobject SET guid=199805 WHERE guid=121591; INSERT IGNORE INTO pool_gameobject VALUES (199805,10082,0,'Sholazar Basin 189980, node 86'); INSERT IGNORE INTO gameobject VALUES (199804,189981,571,1,1,5691.38,5268.67,-131.679,-1.41372,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199804,10082,40,'Sholazar Basin 189981, node 86'); INSERT IGNORE INTO gameobject VALUES (199803,191133,571,1,1,5691.38,5268.67,-131.679,-1.41372,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199803,10082,5,'Sholazar Basin 191133, node 86'); INSERT IGNORE INTO pool_template VALUES (10082,1,'Sholazar Basin mineral, node 86'); INSERT IGNORE INTO pool_pool VALUES (10082,899,0,'Sholazar Basin mineral, node 86'); UPDATE gameobject SET guid=199802 WHERE guid=121592; INSERT IGNORE INTO pool_gameobject VALUES (199802,10083,0,'Sholazar Basin 189980, node 87'); INSERT IGNORE INTO gameobject VALUES (199801,189981,571,1,1,5605.17,5426.35,-126.236,-2.79252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199801,10083,40,'Sholazar Basin 189981, node 87'); INSERT IGNORE INTO gameobject VALUES (199800,191133,571,1,1,5605.17,5426.35,-126.236,-2.79252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199800,10083,5,'Sholazar Basin 191133, node 87'); INSERT IGNORE INTO pool_template VALUES (10083,1,'Sholazar Basin mineral, node 87'); INSERT IGNORE INTO pool_pool VALUES (10083,899,0,'Sholazar Basin mineral, node 87'); UPDATE gameobject SET guid=199799 WHERE guid=121608; INSERT IGNORE INTO pool_gameobject VALUES (199799,10084,0,'Sholazar Basin 189980, node 88'); INSERT IGNORE INTO gameobject VALUES (199798,189981,571,1,1,5959.89,5466.21,-90.3105,1.36136,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199798,10084,40,'Sholazar Basin 189981, node 88'); INSERT IGNORE INTO gameobject VALUES (199797,191133,571,1,1,5959.89,5466.21,-90.3105,1.36136,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199797,10084,5,'Sholazar Basin 191133, node 88'); INSERT IGNORE INTO pool_template VALUES (10084,1,'Sholazar Basin mineral, node 88'); INSERT IGNORE INTO pool_pool VALUES (10084,899,0,'Sholazar Basin mineral, node 88'); UPDATE gameobject SET guid=199796 WHERE guid=121640; INSERT IGNORE INTO pool_gameobject VALUES (199796,10085,0,'Sholazar Basin 189980, node 89'); INSERT IGNORE INTO gameobject VALUES (199795,189981,571,1,1,5603.09,3514.98,1.33732,-0.593412,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199795,10085,40,'Sholazar Basin 189981, node 89'); INSERT IGNORE INTO gameobject VALUES (199794,191133,571,1,1,5603.09,3514.98,1.33732,-0.593412,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199794,10085,5,'Sholazar Basin 191133, node 89'); INSERT IGNORE INTO pool_template VALUES (10085,1,'Sholazar Basin mineral, node 89'); INSERT IGNORE INTO pool_pool VALUES (10085,899,0,'Sholazar Basin mineral, node 89'); UPDATE gameobject SET guid=199793 WHERE guid=121641; INSERT IGNORE INTO pool_gameobject VALUES (199793,10086,0,'Sholazar Basin 189980, node 90'); INSERT IGNORE INTO gameobject VALUES (199792,189981,571,1,1,5094.16,6031.35,-23.0399,-2.44346,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199792,10086,40,'Sholazar Basin 189981, node 90'); INSERT IGNORE INTO gameobject VALUES (199791,191133,571,1,1,5094.16,6031.35,-23.0399,-2.44346,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199791,10086,5,'Sholazar Basin 191133, node 90'); INSERT IGNORE INTO pool_template VALUES (10086,1,'Sholazar Basin mineral, node 90'); INSERT IGNORE INTO pool_pool VALUES (10086,899,0,'Sholazar Basin mineral, node 90'); UPDATE gameobject SET guid=199790 WHERE guid=121673; INSERT IGNORE INTO pool_gameobject VALUES (199790,10087,0,'Sholazar Basin 189980, node 91'); INSERT IGNORE INTO gameobject VALUES (199789,189981,571,1,1,5122.12,3883.24,-3.71528,2.84488,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199789,10087,40,'Sholazar Basin 189981, node 91'); INSERT IGNORE INTO gameobject VALUES (199788,191133,571,1,1,5122.12,3883.24,-3.71528,2.84488,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199788,10087,5,'Sholazar Basin 191133, node 91'); INSERT IGNORE INTO pool_template VALUES (10087,1,'Sholazar Basin mineral, node 91'); INSERT IGNORE INTO pool_pool VALUES (10087,899,0,'Sholazar Basin mineral, node 91'); UPDATE gameobject SET guid=199787 WHERE guid=121678; INSERT IGNORE INTO pool_gameobject VALUES (199787,10088,0,'Sholazar Basin 189980, node 92'); INSERT IGNORE INTO gameobject VALUES (199786,189981,571,1,1,4725.85,5016.74,-50.0228,-0.366518,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199786,10088,40,'Sholazar Basin 189981, node 92'); INSERT IGNORE INTO gameobject VALUES (199785,191133,571,1,1,4725.85,5016.74,-50.0228,-0.366518,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199785,10088,5,'Sholazar Basin 191133, node 92'); INSERT IGNORE INTO pool_template VALUES (10088,1,'Sholazar Basin mineral, node 92'); INSERT IGNORE INTO pool_pool VALUES (10088,899,0,'Sholazar Basin mineral, node 92'); UPDATE gameobject SET guid=199784 WHERE guid=121679; INSERT IGNORE INTO pool_gameobject VALUES (199784,10089,0,'Sholazar Basin 189980, node 93'); INSERT IGNORE INTO gameobject VALUES (199783,189981,571,1,1,4704.72,5425.79,-32.3253,1.79769,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199783,10089,40,'Sholazar Basin 189981, node 93'); INSERT IGNORE INTO gameobject VALUES (199782,191133,571,1,1,4704.72,5425.79,-32.3253,1.79769,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199782,10089,5,'Sholazar Basin 191133, node 93'); INSERT IGNORE INTO pool_template VALUES (10089,1,'Sholazar Basin mineral, node 93'); INSERT IGNORE INTO pool_pool VALUES (10089,899,0,'Sholazar Basin mineral, node 93'); UPDATE gameobject SET guid=199781 WHERE guid=121680; INSERT IGNORE INTO pool_gameobject VALUES (199781,10090,0,'Sholazar Basin 189980, node 94'); INSERT IGNORE INTO gameobject VALUES (199780,189981,571,1,1,5449.07,6036.19,-27.0957,-0.95993,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199780,10090,40,'Sholazar Basin 189981, node 94'); INSERT IGNORE INTO gameobject VALUES (199779,191133,571,1,1,5449.07,6036.19,-27.0957,-0.95993,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199779,10090,5,'Sholazar Basin 191133, node 94'); INSERT IGNORE INTO pool_template VALUES (10090,1,'Sholazar Basin mineral, node 94'); INSERT IGNORE INTO pool_pool VALUES (10090,899,0,'Sholazar Basin mineral, node 94'); UPDATE gameobject SET guid=199778 WHERE guid=121681; INSERT IGNORE INTO pool_gameobject VALUES (199778,10091,0,'Sholazar Basin 189980, node 95'); INSERT IGNORE INTO gameobject VALUES (199777,189981,571,1,1,5296.03,6038.0,-30.3204,-1.13446,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199777,10091,40,'Sholazar Basin 189981, node 95'); INSERT IGNORE INTO gameobject VALUES (199776,191133,571,1,1,5296.03,6038.0,-30.3204,-1.13446,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199776,10091,5,'Sholazar Basin 191133, node 95'); INSERT IGNORE INTO pool_template VALUES (10091,1,'Sholazar Basin mineral, node 95'); INSERT IGNORE INTO pool_pool VALUES (10091,899,0,'Sholazar Basin mineral, node 95'); UPDATE gameobject SET guid=199775 WHERE guid=121684; INSERT IGNORE INTO pool_gameobject VALUES (199775,10092,0,'Sholazar Basin 189980, node 96'); INSERT IGNORE INTO gameobject VALUES (199774,189981,571,1,1,5047.36,5997.05,-42.6062,2.14675,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199774,10092,40,'Sholazar Basin 189981, node 96'); INSERT IGNORE INTO gameobject VALUES (199773,191133,571,1,1,5047.36,5997.05,-42.6062,2.14675,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199773,10092,5,'Sholazar Basin 191133, node 96'); INSERT IGNORE INTO pool_template VALUES (10092,1,'Sholazar Basin mineral, node 96'); INSERT IGNORE INTO pool_pool VALUES (10092,899,0,'Sholazar Basin mineral, node 96'); -- storm peaks UPDATE gameobject SET guid=199772 WHERE guid=121593; INSERT IGNORE INTO pool_gameobject VALUES (199772,10093,0,'Storm Peaks 189980, node 73'); INSERT IGNORE INTO gameobject VALUES (199771,189981,571,1,1,6754.36,-3855.35,628.766,-2.65289,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199771,10093,40,'Storm Peaks 189981, node 73'); INSERT IGNORE INTO gameobject VALUES (199770,191133,571,1,1,6754.36,-3855.35,628.766,-2.65289,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199770,10093,10,'Storm Peaks 191133, node 73'); INSERT IGNORE INTO pool_template VALUES (10093,1,'Storm Peaks mineral, node 73'); INSERT IGNORE INTO pool_pool VALUES (10093,898,0,'Storm Peaks mineral, node 73'); UPDATE gameobject SET guid=199769 WHERE guid=121639; INSERT IGNORE INTO pool_gameobject VALUES (199769,10094,0,'Storm Peaks 189980, node 74'); INSERT IGNORE INTO gameobject VALUES (199768,189981,571,1,1,7975.3,-275.941,848.647,-0.90757,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199768,10094,40,'Storm Peaks 189981, node 74'); INSERT IGNORE INTO gameobject VALUES (199767,191133,571,1,1,7975.3,-275.941,848.647,-0.90757,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199767,10094,10,'Storm Peaks 191133, node 74'); INSERT IGNORE INTO pool_template VALUES (10094,1,'Storm Peaks mineral, node 74'); INSERT IGNORE INTO pool_pool VALUES (10094,898,0,'Storm Peaks mineral, node 74'); UPDATE gameobject SET guid=199766 WHERE guid=121642; INSERT IGNORE INTO pool_gameobject VALUES (199766,10095,0,'Storm Peaks 189980, node 75'); INSERT IGNORE INTO gameobject VALUES (199765,189981,571,1,1,6394.66,-876.401,409.343,1.27409,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199765,10095,40,'Storm Peaks 189981, node 75'); INSERT IGNORE INTO gameobject VALUES (199764,191133,571,1,1,6394.66,-876.401,409.343,1.27409,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199764,10095,10,'Storm Peaks 191133, node 75'); INSERT IGNORE INTO pool_template VALUES (10095,1,'Storm Peaks mineral, node 75'); INSERT IGNORE INTO pool_pool VALUES (10095,898,0,'Storm Peaks mineral, node 75'); UPDATE gameobject SET guid=199763 WHERE guid=121645; INSERT IGNORE INTO pool_gameobject VALUES (199763,10096,0,'Storm Peaks 189980, node 76'); INSERT IGNORE INTO gameobject VALUES (199762,189981,571,1,1,6321.32,-658.356,436.213,0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199762,10096,40,'Storm Peaks 189981, node 76'); INSERT IGNORE INTO gameobject VALUES (199761,191133,571,1,1,6321.32,-658.356,436.213,0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199761,10096,10,'Storm Peaks 191133, node 76'); INSERT IGNORE INTO pool_template VALUES (10096,1,'Storm Peaks mineral, node 76'); INSERT IGNORE INTO pool_pool VALUES (10096,898,0,'Storm Peaks mineral, node 76'); UPDATE gameobject SET guid=199760 WHERE guid=121646; INSERT IGNORE INTO pool_gameobject VALUES (199760,10097,0,'Storm Peaks 189980, node 77'); INSERT IGNORE INTO gameobject VALUES (199759,189981,571,1,1,5928.23,-920.936,371.746,0.279252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199759,10097,40,'Storm Peaks 189981, node 77'); INSERT IGNORE INTO gameobject VALUES (199758,191133,571,1,1,5928.23,-920.936,371.746,0.279252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199758,10097,10,'Storm Peaks 191133, node 77'); INSERT IGNORE INTO pool_template VALUES (10097,1,'Storm Peaks mineral, node 77'); INSERT IGNORE INTO pool_pool VALUES (10097,898,0,'Storm Peaks mineral, node 77'); UPDATE gameobject SET guid=199757 WHERE guid=121669; INSERT IGNORE INTO pool_gameobject VALUES (199757,10098,0,'Storm Peaks 189980, node 78'); INSERT IGNORE INTO gameobject VALUES (199756,189981,571,1,1,7372.88,-2636.17,755.826,1.09956,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199756,10098,40,'Storm Peaks 189981, node 78'); INSERT IGNORE INTO gameobject VALUES (199755,191133,571,1,1,7372.88,-2636.17,755.826,1.09956,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199755,10098,10,'Storm Peaks 191133, node 78'); INSERT IGNORE INTO pool_template VALUES (10098,1,'Storm Peaks mineral, node 78'); INSERT IGNORE INTO pool_pool VALUES (10098,898,0,'Storm Peaks mineral, node 78'); UPDATE gameobject SET guid=199754 WHERE guid=121671; INSERT IGNORE INTO pool_gameobject VALUES (199754,10099,0,'Storm Peaks 189980, node 79'); INSERT IGNORE INTO gameobject VALUES (199753,189981,571,1,1,7253.87,78.6343,791.238,-2.37364,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199753,10099,40,'Storm Peaks 189981, node 79'); INSERT IGNORE INTO gameobject VALUES (199752,191133,571,1,1,7253.87,78.6343,791.238,-2.37364,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199752,10099,10,'Storm Peaks 191133, node 79'); INSERT IGNORE INTO pool_template VALUES (10099,1,'Storm Peaks mineral, node 79'); INSERT IGNORE INTO pool_pool VALUES (10099,898,0,'Storm Peaks mineral, node 79'); UPDATE gameobject SET guid=199751 WHERE guid=121675; INSERT IGNORE INTO pool_gameobject VALUES (199751,10100,0,'Storm Peaks 189980, node 80'); INSERT IGNORE INTO gameobject VALUES (199750,189981,571,1,1,7214.04,-2058.9,769.238,-1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199750,10100,40,'Storm Peaks 189981, node 80'); INSERT IGNORE INTO gameobject VALUES (199749,191133,571,1,1,7214.04,-2058.9,769.238,-1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199749,10100,10,'Storm Peaks 191133, node 80'); INSERT IGNORE INTO pool_template VALUES (10100,1,'Storm Peaks mineral, node 80'); INSERT IGNORE INTO pool_pool VALUES (10100,898,0,'Storm Peaks mineral, node 80'); UPDATE gameobject SET guid=199748 WHERE guid=121676; INSERT IGNORE INTO pool_gameobject VALUES (199748,10101,0,'Storm Peaks 189980, node 81'); INSERT IGNORE INTO gameobject VALUES (199747,189981,571,1,1,6738.28,-1553.82,366.337,0.645772,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199747,10101,40,'Storm Peaks 189981, node 81'); INSERT IGNORE INTO gameobject VALUES (199746,191133,571,1,1,6738.28,-1553.82,366.337,0.645772,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199746,10101,10,'Storm Peaks 191133, node 81'); INSERT IGNORE INTO pool_template VALUES (10101,1,'Storm Peaks mineral, node 81'); INSERT IGNORE INTO pool_pool VALUES (10101,898,0,'Storm Peaks mineral, node 81'); UPDATE gameobject SET guid=199745 WHERE guid=121677; INSERT IGNORE INTO pool_gameobject VALUES (199745,10102,0,'Storm Peaks 189980, node 82'); INSERT IGNORE INTO gameobject VALUES (199744,189981,571,1,1,7119.19,-1404.3,931.731,-1.72787,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199744,10102,40,'Storm Peaks 189981, node 82'); INSERT IGNORE INTO gameobject VALUES (199743,191133,571,1,1,7119.19,-1404.3,931.731,-1.72787,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199743,10102,10,'Storm Peaks 191133, node 82'); INSERT IGNORE INTO pool_template VALUES (10102,1,'Storm Peaks mineral, node 82'); INSERT IGNORE INTO pool_pool VALUES (10102,898,0,'Storm Peaks mineral, node 82'); UPDATE gameobject SET guid=199742 WHERE guid=121691; INSERT IGNORE INTO pool_gameobject VALUES (199742,10103,0,'Storm Peaks 189980, node 83'); INSERT IGNORE INTO gameobject VALUES (199741,189981,571,1,1,7180.22,-2830.26,826.301,0.244346,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199741,10103,40,'Storm Peaks 189981, node 83'); INSERT IGNORE INTO gameobject VALUES (199740,191133,571,1,1,7180.22,-2830.26,826.301,0.244346,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199740,10103,10,'Storm Peaks 191133, node 83'); INSERT IGNORE INTO pool_template VALUES (10103,1,'Storm Peaks mineral, node 83'); INSERT IGNORE INTO pool_pool VALUES (10103,898,0,'Storm Peaks mineral, node 83'); -- icecrown UPDATE gameobject SET guid=199739 WHERE guid=121661; INSERT IGNORE INTO pool_gameobject VALUES (199739,10104,0,'Icecrown 189980, node 170'); INSERT IGNORE INTO gameobject VALUES (199738,189981,571,1,1,6424.52,2875.56,579.955,2.35619,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199738,10104,40,'Icecrown 189981, node 170'); INSERT IGNORE INTO gameobject VALUES (199737,191133,571,1,1,6424.52,2875.56,579.955,2.35619,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199737,10104,10,'Icecrown 191133, node 170'); INSERT IGNORE INTO pool_template VALUES (10104,1,'Icecrown mineral, node 170'); INSERT IGNORE INTO pool_pool VALUES (10104,897,0,'Icecrown mineral, node 170'); UPDATE gameobject SET guid=199736 WHERE guid=121662; INSERT IGNORE INTO pool_gameobject VALUES (199736,10105,0,'Icecrown 189980, node 171'); INSERT IGNORE INTO gameobject VALUES (199735,189981,571,1,1,6437.51,2498.71,472.506,-1.20428,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199735,10105,40,'Icecrown 189981, node 171'); INSERT IGNORE INTO gameobject VALUES (199734,191133,571,1,1,6437.51,2498.71,472.506,-1.20428,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199734,10105,10,'Icecrown 191133, node 171'); INSERT IGNORE INTO pool_template VALUES (10105,1,'Icecrown mineral, node 171'); INSERT IGNORE INTO pool_pool VALUES (10105,897,0,'Icecrown mineral, node 171'); UPDATE gameobject SET guid=199733 WHERE guid=121663; INSERT IGNORE INTO pool_gameobject VALUES (199733,10106,0,'Icecrown 189980, node 172'); INSERT IGNORE INTO gameobject VALUES (199732,189981,571,1,1,7287.76,1531.43,319.482,0.191985,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199732,10106,40,'Icecrown 189981, node 172'); INSERT IGNORE INTO gameobject VALUES (199731,191133,571,1,1,7287.76,1531.43,319.482,0.191985,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199731,10106,10,'Icecrown 191133, node 172'); INSERT IGNORE INTO pool_template VALUES (10106,1,'Icecrown mineral, node 172'); INSERT IGNORE INTO pool_pool VALUES (10106,897,0,'Icecrown mineral, node 172'); UPDATE gameobject SET guid=199730 WHERE guid=121664; INSERT IGNORE INTO pool_gameobject VALUES (199730,10107,0,'Icecrown 189980, node 173'); INSERT IGNORE INTO gameobject VALUES (199729,189981,571,1,1,6954.01,1470.53,395.307,2.94959,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199729,10107,40,'Icecrown 189981, node 173'); INSERT IGNORE INTO gameobject VALUES (199728,191133,571,1,1,6954.01,1470.53,395.307,2.94959,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199728,10107,10,'Icecrown 191133, node 173'); INSERT IGNORE INTO pool_template VALUES (10107,1,'Icecrown mineral, node 173'); INSERT IGNORE INTO pool_pool VALUES (10107,897,0,'Icecrown mineral, node 173'); UPDATE gameobject SET guid=199727 WHERE guid=121665; INSERT IGNORE INTO pool_gameobject VALUES (199727,10108,0,'Icecrown 189980, node 174'); INSERT IGNORE INTO gameobject VALUES (199726,189981,571,1,1,6583.15,1267.12,286.026,0.925024,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199726,10108,40,'Icecrown 189981, node 174'); INSERT IGNORE INTO gameobject VALUES (199725,191133,571,1,1,6583.15,1267.12,286.026,0.925024,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199725,10108,10,'Icecrown 191133, node 174'); INSERT IGNORE INTO pool_template VALUES (10108,1,'Icecrown mineral, node 174'); INSERT IGNORE INTO pool_pool VALUES (10108,897,0,'Icecrown mineral, node 174'); UPDATE gameobject SET guid=199724 WHERE guid=121666; INSERT IGNORE INTO pool_gameobject VALUES (199724,10109,0,'Icecrown 189980, node 175'); INSERT IGNORE INTO gameobject VALUES (199723,189981,571,1,1,6717.32,1228.8,275.079,-2.86233,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199723,10109,40,'Icecrown 189981, node 175'); INSERT IGNORE INTO gameobject VALUES (199722,191133,571,1,1,6717.32,1228.8,275.079,-2.86233,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199722,10109,10,'Icecrown 191133, node 175'); INSERT IGNORE INTO pool_template VALUES (10109,1,'Icecrown mineral, node 175'); INSERT IGNORE INTO pool_pool VALUES (10109,897,0,'Icecrown mineral, node 175'); UPDATE gameobject SET guid=199721 WHERE guid=121667; INSERT IGNORE INTO pool_gameobject VALUES (199721,10110,0,'Icecrown 189980, node 176'); INSERT IGNORE INTO gameobject VALUES (199720,189981,571,1,1,6915.19,1470.29,397.617,-1.64061,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199720,10110,40,'Icecrown 189981, node 176'); INSERT IGNORE INTO gameobject VALUES (199719,191133,571,1,1,6915.19,1470.29,397.617,-1.64061,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199719,10110,10,'Icecrown 191133, node 176'); INSERT IGNORE INTO pool_template VALUES (10110,1,'Icecrown mineral, node 176'); INSERT IGNORE INTO pool_pool VALUES (10110,897,0,'Icecrown mineral, node 176'); UPDATE gameobject SET guid=199718 WHERE guid=121668; INSERT IGNORE INTO pool_gameobject VALUES (199718,10111,0,'Icecrown 189980, node 177'); INSERT IGNORE INTO gameobject VALUES (199717,189981,571,1,1,7488.8,1813.89,361.498,-2.65289,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199717,10111,40,'Icecrown 189981, node 177'); INSERT IGNORE INTO gameobject VALUES (199716,191133,571,1,1,7488.8,1813.89,361.498,-2.65289,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199716,10111,10,'Icecrown 191133, node 177'); INSERT IGNORE INTO pool_template VALUES (10111,1,'Icecrown mineral, node 177'); INSERT IGNORE INTO pool_pool VALUES (10111,897,0,'Icecrown mineral, node 177'); UPDATE gameobject SET guid=199715 WHERE guid=121683; INSERT IGNORE INTO pool_gameobject VALUES (199715,10112,0,'Icecrown 189980, node 178'); INSERT IGNORE INTO gameobject VALUES (199714,189981,571,1,1,7653.55,2224.11,371.474,2.68781,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199714,10112,40,'Icecrown 189981, node 178'); INSERT IGNORE INTO gameobject VALUES (199713,191133,571,1,1,7653.55,2224.11,371.474,2.68781,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199713,10112,10,'Icecrown 191133, node 178'); INSERT IGNORE INTO pool_template VALUES (10112,1,'Icecrown mineral, node 178'); INSERT IGNORE INTO pool_pool VALUES (10112,897,0,'Icecrown mineral, node 178'); UPDATE gameobject SET guid=199712 WHERE guid=121689; INSERT IGNORE INTO pool_gameobject VALUES (199712,10113,0,'Icecrown 189980, node 179'); INSERT IGNORE INTO gameobject VALUES (199711,189981,571,1,1,7588.63,1943.56,368.411,-1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199711,10113,40,'Icecrown 189981, node 179'); INSERT IGNORE INTO gameobject VALUES (199710,191133,571,1,1,7588.63,1943.56,368.411,-1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199710,10113,10,'Icecrown 191133, node 179'); INSERT IGNORE INTO pool_template VALUES (10113,1,'Icecrown mineral, node 179'); INSERT IGNORE INTO pool_pool VALUES (10113,897,0,'Icecrown mineral, node 179'); UPDATE gameobject SET guid=199709 WHERE guid=121690; INSERT IGNORE INTO pool_gameobject VALUES (199709,10114,0,'Icecrown 189980, node 180'); INSERT IGNORE INTO gameobject VALUES (199708,189981,571,1,1,8149.87,2365.18,494.099,1.0821,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199708,10114,40,'Icecrown 189981, node 180'); INSERT IGNORE INTO gameobject VALUES (199707,191133,571,1,1,8149.87,2365.18,494.099,1.0821,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199707,10114,10,'Icecrown 191133, node 180'); INSERT IGNORE INTO pool_template VALUES (10114,1,'Icecrown mineral, node 180'); INSERT IGNORE INTO pool_pool VALUES (10114,897,0,'Icecrown mineral, node 180'); -- wintergrasp UPDATE gameobject SET id=189980 WHERE guid IN (121594); UPDATE gameobject SET guid=199706 WHERE guid=121584; INSERT IGNORE INTO pool_gameobject VALUES (199706,10115,0,'Wintergrasp 189980, node 46'); INSERT IGNORE INTO gameobject VALUES (199705,189981,571,1,1,4804.17,3412.16,356.282,-1.01229,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199705,10115,40,'Wintergrasp 189981, node 46'); INSERT IGNORE INTO gameobject VALUES (199704,191133,571,1,1,4804.17,3412.16,356.282,-1.01229,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199704,10115,10,'Wintergrasp 191133, node 46'); INSERT IGNORE INTO pool_template VALUES (10115,1,'Wintergrasp mineral, node 46'); INSERT IGNORE INTO pool_pool VALUES (10115,896,0,'Wintergrasp mineral, node 46'); UPDATE gameobject SET guid=199703 WHERE guid=121585; INSERT IGNORE INTO pool_gameobject VALUES (199703,10116,0,'Wintergrasp 189980, node 47'); INSERT IGNORE INTO gameobject VALUES (199702,189981,571,1,1,4635.89,3321.86,345.809,1.65806,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199702,10116,40,'Wintergrasp 189981, node 47'); INSERT IGNORE INTO gameobject VALUES (199701,191133,571,1,1,4635.89,3321.86,345.809,1.65806,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199701,10116,10,'Wintergrasp 191133, node 47'); INSERT IGNORE INTO pool_template VALUES (10116,1,'Wintergrasp mineral, node 47'); INSERT IGNORE INTO pool_pool VALUES (10116,896,0,'Wintergrasp mineral, node 47'); UPDATE gameobject SET guid=199700 WHERE guid=121586; INSERT IGNORE INTO pool_gameobject VALUES (199700,10117,0,'Wintergrasp 189980, node 48'); INSERT IGNORE INTO gameobject VALUES (199699,189981,571,1,1,4753.01,3331.21,347.886,1.32645,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199699,10117,40,'Wintergrasp 189981, node 48'); INSERT IGNORE INTO gameobject VALUES (199698,191133,571,1,1,4753.01,3331.21,347.886,1.32645,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199698,10117,10,'Wintergrasp 191133, node 48'); INSERT IGNORE INTO pool_template VALUES (10117,1,'Wintergrasp mineral, node 48'); INSERT IGNORE INTO pool_pool VALUES (10117,896,0,'Wintergrasp mineral, node 48'); UPDATE gameobject SET guid=199697 WHERE guid=121587; INSERT IGNORE INTO pool_gameobject VALUES (199697,10118,0,'Wintergrasp 189980, node 49'); INSERT IGNORE INTO gameobject VALUES (199696,189981,571,1,1,4530.76,3704.3,381.47,-2.19912,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199696,10118,40,'Wintergrasp 189981, node 49'); INSERT IGNORE INTO gameobject VALUES (199695,191133,571,1,1,4530.76,3704.3,381.47,-2.19912,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199695,10118,10,'Wintergrasp 191133, node 49'); INSERT IGNORE INTO pool_template VALUES (10118,1,'Wintergrasp mineral, node 49'); INSERT IGNORE INTO pool_pool VALUES (10118,896,0,'Wintergrasp mineral, node 49'); UPDATE gameobject SET guid=199694 WHERE guid=121588; INSERT IGNORE INTO pool_gameobject VALUES (199694,10119,0,'Wintergrasp 189980, node 50'); INSERT IGNORE INTO gameobject VALUES (199693,189981,571,1,1,4502.45,3564.55,392.429,1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199693,10119,40,'Wintergrasp 189981, node 50'); INSERT IGNORE INTO gameobject VALUES (199692,191133,571,1,1,4502.45,3564.55,392.429,1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199692,10119,10,'Wintergrasp 191133, node 50'); INSERT IGNORE INTO pool_template VALUES (10119,1,'Wintergrasp mineral, node 50'); INSERT IGNORE INTO pool_pool VALUES (10119,896,0,'Wintergrasp mineral, node 50'); UPDATE gameobject SET guid=199691 WHERE guid=121589; INSERT IGNORE INTO pool_gameobject VALUES (199691,10120,0,'Wintergrasp 189980, node 51'); INSERT IGNORE INTO gameobject VALUES (199690,189981,571,1,1,4622.65,3446.06,362.903,3.10665,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199690,10120,40,'Wintergrasp 189981, node 51'); INSERT IGNORE INTO gameobject VALUES (199689,191133,571,1,1,4622.65,3446.06,362.903,3.10665,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199689,10120,10,'Wintergrasp 191133, node 51'); INSERT IGNORE INTO pool_template VALUES (10120,1,'Wintergrasp mineral, node 51'); INSERT IGNORE INTO pool_pool VALUES (10120,896,0,'Wintergrasp mineral, node 51'); UPDATE gameobject SET guid=199688 WHERE guid=121594; INSERT IGNORE INTO pool_gameobject VALUES (199688,10121,0,'Wintergrasp 189980, node 52'); INSERT IGNORE INTO gameobject VALUES (199687,189981,571,1,1,4423.84,3978.38,411.712,-2.40855,0.0,0.0,0.0,1.0,7200,255,0); INSERT IGNORE INTO pool_gameobject VALUES (199687,10121,40,'Wintergrasp 189981, node 52'); INSERT IGNORE INTO gameobject VALUES (199686,191133,571,1,1,4423.84,3978.38,411.712,-2.40855,0.0,0.0,0.0,1.0,7200,255,0); INSERT IGNORE INTO pool_gameobject VALUES (199686,10121,10,'Wintergrasp 191133, node 52'); INSERT IGNORE INTO pool_template VALUES (10121,1,'Wintergrasp mineral, node 52'); INSERT IGNORE INTO pool_pool VALUES (10121,896,0,'Wintergrasp mineral, node 52'); UPDATE gameobject SET guid=199685 WHERE guid=121644; INSERT IGNORE INTO pool_gameobject VALUES (199685,10122,0,'Wintergrasp 189980, node 53'); INSERT IGNORE INTO gameobject VALUES (199684,189981,571,1,1,5107.71,2697.8,379.582,-1.78023,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199684,10122,40,'Wintergrasp 189981, node 53'); INSERT IGNORE INTO gameobject VALUES (199683,191133,571,1,1,5107.71,2697.8,379.582,-1.78023,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199683,10122,10,'Wintergrasp 191133, node 53'); INSERT IGNORE INTO pool_template VALUES (10122,1,'Wintergrasp mineral, node 53'); INSERT IGNORE INTO pool_pool VALUES (10122,896,0,'Wintergrasp mineral, node 53'); UPDATE gameobject SET guid=199682 WHERE guid=121654; INSERT IGNORE INTO pool_gameobject VALUES (199682,10123,0,'Wintergrasp 189980, node 54'); INSERT IGNORE INTO gameobject VALUES (199681,189981,571,1,1,5380.42,2551.13,412.705,-0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199681,10123,40,'Wintergrasp 189981, node 54'); INSERT IGNORE INTO gameobject VALUES (199680,191133,571,1,1,5380.42,2551.13,412.705,-0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199680,10123,10,'Wintergrasp 191133, node 54'); INSERT IGNORE INTO pool_template VALUES (10123,1,'Wintergrasp mineral, node 54'); INSERT IGNORE INTO pool_pool VALUES (10123,896,0,'Wintergrasp mineral, node 54'); UPDATE gameobject SET guid=199679 WHERE guid=121655; INSERT IGNORE INTO pool_gameobject VALUES (199679,10124,0,'Wintergrasp 189980, node 55'); INSERT IGNORE INTO gameobject VALUES (199678,189981,571,1,1,5326.56,3483.84,380.992,-0.575957,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199678,10124,40,'Wintergrasp 189981, node 55'); INSERT IGNORE INTO gameobject VALUES (199677,191133,571,1,1,5326.56,3483.84,380.992,-0.575957,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199677,10124,10,'Wintergrasp 191133, node 55'); INSERT IGNORE INTO pool_template VALUES (10124,1,'Wintergrasp mineral, node 55'); INSERT IGNORE INTO pool_pool VALUES (10124,896,0,'Wintergrasp mineral, node 55'); UPDATE gameobject SET guid=199676 WHERE guid=121656; INSERT IGNORE INTO pool_gameobject VALUES (199676,10125,0,'Wintergrasp 189980, node 56'); INSERT IGNORE INTO gameobject VALUES (199675,189981,571,1,1,4763.41,3388.18,337.817,2.51327,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199675,10125,40,'Wintergrasp 189981, node 56'); INSERT IGNORE INTO gameobject VALUES (199674,191133,571,1,1,4763.41,3388.18,337.817,2.51327,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199674,10125,10,'Wintergrasp 191133, node 56'); INSERT IGNORE INTO pool_template VALUES (10125,1,'Wintergrasp mineral, node 56'); INSERT IGNORE INTO pool_pool VALUES (10125,896,0,'Wintergrasp mineral, node 56'); UPDATE gameobject SET guid=199673 WHERE guid=121657; INSERT IGNORE INTO pool_gameobject VALUES (199673,10126,0,'Wintergrasp 189980, node 57'); INSERT IGNORE INTO gameobject VALUES (199672,189981,571,1,1,5215.07,3081.94,392.753,-3.08918,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199672,10126,40,'Wintergrasp 189981, node 57'); INSERT IGNORE INTO gameobject VALUES (199671,191133,571,1,1,5215.07,3081.94,392.753,-3.08918,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199671,10126,10,'Wintergrasp 191133, node 57'); INSERT IGNORE INTO pool_template VALUES (10126,1,'Wintergrasp mineral, node 57'); INSERT IGNORE INTO pool_pool VALUES (10126,896,0,'Wintergrasp mineral, node 57'); UPDATE gameobject SET guid=199670 WHERE guid=121658; INSERT IGNORE INTO pool_gameobject VALUES (199670,10127,0,'Wintergrasp 189980, node 58'); INSERT IGNORE INTO gameobject VALUES (199669,189981,571,1,1,4965.12,3845.37,376.579,-2.74016,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199669,10127,40,'Wintergrasp 189981, node 58'); INSERT IGNORE INTO gameobject VALUES (199668,191133,571,1,1,4965.12,3845.37,376.579,-2.74016,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199668,10127,10,'Wintergrasp 191133, node 58'); INSERT IGNORE INTO pool_template VALUES (10127,1,'Wintergrasp mineral, node 58'); INSERT IGNORE INTO pool_pool VALUES (10127,896,0,'Wintergrasp mineral, node 58'); UPDATE gameobject SET guid=199667 WHERE guid=121659; INSERT IGNORE INTO pool_gameobject VALUES (199667,10128,0,'Wintergrasp 189980, node 59'); INSERT IGNORE INTO gameobject VALUES (199666,189981,571,1,1,5120.84,2987.45,393.058,-3.10665,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199666,10128,40,'Wintergrasp 189981, node 59'); INSERT IGNORE INTO gameobject VALUES (199665,191133,571,1,1,5120.84,2987.45,393.058,-3.10665,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199665,10128,10,'Wintergrasp 191133, node 59'); INSERT IGNORE INTO pool_template VALUES (10128,1,'Wintergrasp mineral, node 59'); INSERT IGNORE INTO pool_pool VALUES (10128,896,0,'Wintergrasp mineral, node 59'); UPDATE gameobject SET guid=199664 WHERE guid=121660; INSERT IGNORE INTO pool_gameobject VALUES (199664,10129,0,'Wintergrasp 189980, node 60'); INSERT IGNORE INTO gameobject VALUES (199663,189981,571,1,1,5318.82,2326.94,406.337,2.19912,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199663,10129,40,'Wintergrasp 189981, node 60'); INSERT IGNORE INTO gameobject VALUES (199662,191133,571,1,1,5318.82,2326.94,406.337,2.19912,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199662,10129,10,'Wintergrasp 191133, node 60'); INSERT IGNORE INTO pool_template VALUES (10129,1,'Wintergrasp mineral, node 60'); INSERT IGNORE INTO pool_pool VALUES (10129,896,0,'Wintergrasp mineral, node 60'); UPDATE gameobject SET guid=199661 WHERE guid=121670; INSERT IGNORE INTO pool_gameobject VALUES (199661,10130,0,'Wintergrasp 189980, node 61'); INSERT IGNORE INTO gameobject VALUES (199660,189981,571,1,1,4673.31,4094.27,336.639,0.855211,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199660,10130,40,'Wintergrasp 189981, node 61'); INSERT IGNORE INTO gameobject VALUES (199659,191133,571,1,1,4673.31,4094.27,336.639,0.855211,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199659,10130,10,'Wintergrasp 191133, node 61'); INSERT IGNORE INTO pool_template VALUES (10130,1,'Wintergrasp mineral, node 61'); INSERT IGNORE INTO pool_pool VALUES (10130,896,0,'Wintergrasp mineral, node 61'); UPDATE gameobject SET guid=199658 WHERE guid=121672; INSERT IGNORE INTO pool_gameobject VALUES (199658,10131,0,'Wintergrasp 189980, node 62'); INSERT IGNORE INTO gameobject VALUES (199657,189981,571,1,1,4629.78,3026.04,340.05,-1.18682,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199657,10131,40,'Wintergrasp 189981, node 62'); INSERT IGNORE INTO gameobject VALUES (199656,191133,571,1,1,4629.78,3026.04,340.05,-1.18682,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199656,10131,10,'Wintergrasp 191133, node 62'); INSERT IGNORE INTO pool_template VALUES (10131,1,'Wintergrasp mineral, node 62'); INSERT IGNORE INTO pool_pool VALUES (10131,896,0,'Wintergrasp mineral, node 62'); UPDATE gameobject SET guid=199655 WHERE guid=121674; INSERT IGNORE INTO pool_gameobject VALUES (199655,10132,0,'Wintergrasp 189980, node 63'); INSERT IGNORE INTO gameobject VALUES (199654,189981,571,1,1,4408.71,4037.89,412.94,0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199654,10132,40,'Wintergrasp 189981, node 63'); INSERT IGNORE INTO gameobject VALUES (199653,191133,571,1,1,4408.71,4037.89,412.94,0.523598,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199653,10132,10,'Wintergrasp 191133, node 63'); INSERT IGNORE INTO pool_template VALUES (10132,1,'Wintergrasp mineral, node 63'); INSERT IGNORE INTO pool_pool VALUES (10132,896,0,'Wintergrasp mineral, node 63'); UPDATE gameobject SET guid=199652 WHERE guid=121682; INSERT IGNORE INTO pool_gameobject VALUES (199652,10133,0,'Wintergrasp 189980, node 64'); INSERT IGNORE INTO gameobject VALUES (199651,189981,571,1,1,4479.33,3712.68,362.034,0.279252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199651,10133,40,'Wintergrasp 189981, node 64'); INSERT IGNORE INTO gameobject VALUES (199650,191133,571,1,1,4479.33,3712.68,362.034,0.279252,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199650,10133,10,'Wintergrasp 191133, node 64'); INSERT IGNORE INTO pool_template VALUES (10133,1,'Wintergrasp mineral, node 64'); INSERT IGNORE INTO pool_pool VALUES (10133,896,0,'Wintergrasp mineral, node 64'); UPDATE gameobject SET guid=199649 WHERE guid=121688; INSERT IGNORE INTO pool_gameobject VALUES (199649,10134,0,'Wintergrasp 189980, node 65'); INSERT IGNORE INTO gameobject VALUES (199648,189981,571,1,1,4760.48,3693.79,375.718,0.837757,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199648,10134,40,'Wintergrasp 189981, node 65'); INSERT IGNORE INTO gameobject VALUES (199647,191133,571,1,1,4760.48,3693.79,375.718,0.837757,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199647,10134,10,'Wintergrasp 191133, node 65'); INSERT IGNORE INTO pool_template VALUES (10134,1,'Wintergrasp mineral, node 65'); INSERT IGNORE INTO pool_pool VALUES (10134,896,0,'Wintergrasp mineral, node 65'); -- manual correct UPDATE gameobject SET guid=199646 WHERE guid=120530; INSERT IGNORE INTO pool_gameobject VALUES (199646,10135,10,'Wintergrasp 191133, node 66'); INSERT IGNORE INTO gameobject VALUES (199645,189981,571,1,1,3940.99,3177.93,402.245,1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199645,10135,40,'Wintergrasp 189981, node 66'); INSERT IGNORE INTO gameobject VALUES (199644,189980,571,1,1,3940.99,3177.93,402.245,1.67551,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199644,10135,0,'Wintergrasp 189980, node 66'); INSERT IGNORE INTO pool_template VALUES (10135,1,'Wintergrasp mineral, node 66'); INSERT IGNORE INTO pool_pool VALUES (10135,896,0,'Wintergrasp mineral, node 66'); UPDATE gameobject SET guid=199643 WHERE guid=66700; INSERT IGNORE INTO pool_gameobject VALUES (199643,10136,0,'Wintergrasp 189980, node 67'); INSERT IGNORE INTO gameobject VALUES (199642,189981,571,1,1,4817.05,1830.32,462.234,-2.25147,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199642,10136,40,'Wintergrasp 189981, node 67'); INSERT IGNORE INTO gameobject VALUES (199641,191133,571,1,1,4817.05,1830.32,462.234,-2.25147,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199641,10136,10,'Wintergrasp 191133, node 67'); INSERT IGNORE INTO pool_template VALUES (10136,1,'Wintergrasp mineral, node 67'); INSERT IGNORE INTO pool_pool VALUES (10136,896,0,'Wintergrasp mineral, node 67'); UPDATE gameobject SET guid=199640 WHERE guid=66880; INSERT IGNORE INTO pool_gameobject VALUES (199640,10137,0,'ZulDrak 189978, node 72'); INSERT IGNORE INTO gameobject VALUES (199639,189979,571,1,1,6085.92,-1623.47,273.396,-1.41372,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199639,10137,45,'ZulDrak 189979, node 72'); INSERT IGNORE INTO gameobject VALUES (199638,189980,571,1,1,6085.92,-1623.47,273.396,-1.41372,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199638,10137,5,'ZulDrak 189980, node 72'); INSERT IGNORE INTO pool_template VALUES (10137,1,'ZulDrak mineral, node 72'); INSERT IGNORE INTO pool_pool VALUES (10137,891,0,'ZulDrak mineral, node 72'); -- icecrown UPDATE gameobject SET guid=199637 WHERE guid=61281; INSERT IGNORE INTO pool_gameobject VALUES (199637,10138,0,'Icecrown 189980, node 181'); INSERT IGNORE INTO gameobject VALUES (199636,189981,571,1,1,5978.92,559.39,212.441,-2.80997,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199636,10138,40,'Icecrown 189981, node 181'); INSERT IGNORE INTO gameobject VALUES (199635,191133,571,1,1,5978.92,559.39,212.441,-2.80997,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199635,10138,10,'Icecrown 191133, node 181'); INSERT IGNORE INTO pool_template VALUES (10138,1,'Icecrown mineral, node 181'); INSERT IGNORE INTO pool_pool VALUES (10138,897,0,'Icecrown mineral, node 181'); UPDATE gameobject SET guid=199634 WHERE guid=61318; INSERT IGNORE INTO pool_gameobject VALUES (199634,10139,0,'Icecrown 189980, node 182'); INSERT IGNORE INTO gameobject VALUES (199633,189981,571,1,1,5903.81,380.04,220.506,-2.72271,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199633,10139,40,'Icecrown 189981, node 182'); INSERT IGNORE INTO gameobject VALUES (199632,191133,571,1,1,5903.81,380.04,220.506,-2.72271,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199632,10139,10,'Icecrown 191133, node 182'); INSERT IGNORE INTO pool_template VALUES (10139,1,'Icecrown mineral, node 182'); INSERT IGNORE INTO pool_pool VALUES (10139,897,0,'Icecrown mineral, node 182'); UPDATE gameobject SET guid=199631 WHERE guid=61320; INSERT IGNORE INTO pool_gameobject VALUES (199631,10140,0,'Icecrown 189980, node 183'); INSERT IGNORE INTO gameobject VALUES (199630,189981,571,1,1,5905.28,334.268,230.584,-2.1293,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199630,10140,40,'Icecrown 189981, node 183'); INSERT IGNORE INTO gameobject VALUES (199629,191133,571,1,1,5905.28,334.268,230.584,-2.1293,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199629,10140,10,'Icecrown 191133, node 183'); INSERT IGNORE INTO pool_template VALUES (10140,1,'Icecrown mineral, node 183'); INSERT IGNORE INTO pool_pool VALUES (10140,897,0,'Icecrown mineral, node 183'); UPDATE gameobject SET guid=199628 WHERE guid=61321; INSERT IGNORE INTO pool_gameobject VALUES (199628,10141,0,'Icecrown 189980, node 184'); INSERT IGNORE INTO gameobject VALUES (199627,189981,571,1,1,6035.78,631.157,201.116,0.994837,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199627,10141,40,'Icecrown 189981, node 184'); INSERT IGNORE INTO gameobject VALUES (199626,191133,571,1,1,6035.78,631.157,201.116,0.994837,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (199626,10141,10,'Icecrown 191133, node 184'); INSERT IGNORE INTO pool_template VALUES (10141,1,'Icecrown mineral, node 184'); INSERT IGNORE INTO pool_pool VALUES (10141,897,0,'Icecrown mineral, node 184'); UPDATE gameobject SET guid=199625 WHERE guid=120027; INSERT IGNORE INTO pool_gameobject VALUES (199625,10142,0,'Icecrown 189980, node 185'); INSERT IGNORE INTO gameobject VALUES (199624,189981,571,1,1,6185.18,718.735,196.0,2.09439,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199624,10142,40,'Icecrown 189981, node 185'); INSERT IGNORE INTO gameobject VALUES (199623,191133,571,1,1,6185.18,718.735,196.0,2.09439,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199623,10142,10,'Icecrown 191133, node 185'); INSERT IGNORE INTO pool_template VALUES (10142,1,'Icecrown mineral, node 185'); INSERT IGNORE INTO pool_pool VALUES (10142,897,0,'Icecrown mineral, node 185'); UPDATE gameobject SET guid=199622 WHERE guid=120090; INSERT IGNORE INTO pool_gameobject VALUES (199622,10143,0,'Icecrown 189980, node 186'); INSERT IGNORE INTO gameobject VALUES (199621,189981,571,1,1,6125.19,761.549,183.29,0.331611,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199621,10143,40,'Icecrown 189981, node 186'); INSERT IGNORE INTO gameobject VALUES (199620,191133,571,1,1,6125.19,761.549,183.29,0.331611,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199620,10143,10,'Icecrown 191133, node 186'); INSERT IGNORE INTO pool_template VALUES (10143,1,'Icecrown mineral, node 186'); INSERT IGNORE INTO pool_pool VALUES (10143,897,0,'Icecrown mineral, node 186'); UPDATE gameobject SET guid=199619 WHERE guid=121643; INSERT IGNORE INTO pool_gameobject VALUES (199619,10144,0,'Icecrown 189980, node 187'); INSERT IGNORE INTO gameobject VALUES (199618,189981,571,1,1,6142.72,796.28,175.27,-0.715585,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199618,10144,40,'Icecrown 189981, node 187'); INSERT IGNORE INTO gameobject VALUES (199617,191133,571,1,1,6142.72,796.28,175.27,-0.715585,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (199617,10144,10,'Icecrown 191133, node 187'); INSERT IGNORE INTO pool_template VALUES (10144,1,'Icecrown mineral, node 187'); INSERT IGNORE INTO pool_pool VALUES (10144,897,0,'Icecrown mineral, node 187'); -- borean tundra, reguid UPDATE pool_gameobject SET pool_entry=5286 WHERE guid=66873; UPDATE gameobject SET guid=199616 WHERE guid=56131; UPDATE pool_gameobject SET guid=199616, pool_entry=10145, description='Borean Tundra 189978, node 1' WHERE guid=56131; UPDATE pool_pool SET pool_id=10145, description='Borean Tundra mineral, node 1' WHERE pool_id=5001; UPDATE pool_template SET entry=10145, description='Borean Tundra mineral, node 1' WHERE entry=5001; UPDATE gameobject SET guid=199615 WHERE guid=63161; UPDATE pool_gameobject SET guid=199615, pool_entry=10145, description='Borean Tundra 189979, node 1' WHERE guid=63161; UPDATE gameobject SET guid=199614 WHERE guid=56132; UPDATE pool_gameobject SET guid=199614, pool_entry=10146, description='Borean Tundra 189978, node 2' WHERE guid=56132; UPDATE pool_pool SET pool_id=10146, description='Borean Tundra mineral, node 2' WHERE pool_id=5002; UPDATE pool_template SET entry=10146, description='Borean Tundra mineral, node 2' WHERE entry=5002; UPDATE gameobject SET guid=199613 WHERE guid=63162; UPDATE pool_gameobject SET guid=199613, pool_entry=10146, description='Borean Tundra 189979, node 2' WHERE guid=63162; UPDATE gameobject SET guid=199612 WHERE guid=56133; UPDATE pool_gameobject SET guid=199612, pool_entry=10147, description='Borean Tundra 189978, node 3' WHERE guid=56133; UPDATE pool_pool SET pool_id=10147, description='Borean Tundra mineral, node 3' WHERE pool_id=5003; UPDATE pool_template SET entry=10147, description='Borean Tundra mineral, node 3' WHERE entry=5003; UPDATE gameobject SET guid=199611 WHERE guid=63163; UPDATE pool_gameobject SET guid=199611, pool_entry=10147, description='Borean Tundra 189979, node 3' WHERE guid=63163; UPDATE gameobject SET guid=199610 WHERE guid=56135; UPDATE pool_gameobject SET guid=199610, pool_entry=10148, description='Borean Tundra 189978, node 4' WHERE guid=56135; UPDATE pool_pool SET pool_id=10148, description='Borean Tundra mineral, node 4' WHERE pool_id=5004; UPDATE pool_template SET entry=10148, description='Borean Tundra mineral, node 4' WHERE entry=5004; UPDATE gameobject SET guid=199609 WHERE guid=63164; UPDATE pool_gameobject SET guid=199609, pool_entry=10148, description='Borean Tundra 189979, node 4' WHERE guid=63164; UPDATE gameobject SET guid=199608 WHERE guid=56141; UPDATE pool_gameobject SET guid=199608, pool_entry=10149, description='Borean Tundra 189978, node 5' WHERE guid=56141; UPDATE pool_pool SET pool_id=10149, description='Borean Tundra mineral, node 5' WHERE pool_id=5005; UPDATE pool_template SET entry=10149, description='Borean Tundra mineral, node 5' WHERE entry=5005; UPDATE gameobject SET guid=199607 WHERE guid=63165; UPDATE pool_gameobject SET guid=199607, pool_entry=10149, description='Borean Tundra 189979, node 5' WHERE guid=63165; UPDATE gameobject SET guid=199606 WHERE guid=56193; UPDATE pool_gameobject SET guid=199606, pool_entry=10150, description='Borean Tundra 189978, node 6' WHERE guid=56193; UPDATE pool_pool SET pool_id=10150, description='Borean Tundra mineral, node 6' WHERE pool_id=5006; UPDATE pool_template SET entry=10150, description='Borean Tundra mineral, node 6' WHERE entry=5006; UPDATE gameobject SET guid=199605 WHERE guid=63166; UPDATE pool_gameobject SET guid=199605, pool_entry=10150, description='Borean Tundra 189979, node 6' WHERE guid=63166; UPDATE gameobject SET guid=199604 WHERE guid=56194; UPDATE pool_gameobject SET guid=199604, pool_entry=10151, description='Borean Tundra 189978, node 7' WHERE guid=56194; UPDATE pool_pool SET pool_id=10151, description='Borean Tundra mineral, node 7' WHERE pool_id=5007; UPDATE pool_template SET entry=10151, description='Borean Tundra mineral, node 7' WHERE entry=5007; UPDATE gameobject SET guid=199603 WHERE guid=63167; UPDATE pool_gameobject SET guid=199603, pool_entry=10151, description='Borean Tundra 189979, node 7' WHERE guid=63167; UPDATE gameobject SET guid=199602 WHERE guid=63168; UPDATE pool_gameobject SET guid=199602, pool_entry=10152, description='Borean Tundra 189979, node 8' WHERE guid=63168; UPDATE pool_pool SET pool_id=10152, description='Borean Tundra mineral, node 8' WHERE pool_id=5008; UPDATE pool_template SET entry=10152, description='Borean Tundra mineral, node 8' WHERE entry=5008; UPDATE gameobject SET guid=199601 WHERE guid=56195; UPDATE pool_gameobject SET guid=199601, pool_entry=10152, description='Borean Tundra 189978, node 8' WHERE guid=56195; UPDATE gameobject SET guid=199600 WHERE guid=56196; UPDATE pool_gameobject SET guid=199600, pool_entry=10153, description='Borean Tundra 189978, node 9' WHERE guid=56196; UPDATE pool_pool SET pool_id=10153, description='Borean Tundra mineral, node 9' WHERE pool_id=5009; UPDATE pool_template SET entry=10153, description='Borean Tundra mineral, node 9' WHERE entry=5009; UPDATE gameobject SET guid=199599 WHERE guid=63169; UPDATE pool_gameobject SET guid=199599, pool_entry=10153, description='Borean Tundra 189979, node 9' WHERE guid=63169; UPDATE gameobject SET guid=199598 WHERE guid=56197; UPDATE pool_gameobject SET guid=199598, pool_entry=10154, description='Borean Tundra 189978, node 10' WHERE guid=56197; UPDATE pool_pool SET pool_id=10154, description='Borean Tundra mineral, node 10' WHERE pool_id=5010; UPDATE pool_template SET entry=10154, description='Borean Tundra mineral, node 10' WHERE entry=5010; UPDATE gameobject SET guid=199597 WHERE guid=63211; UPDATE pool_gameobject SET guid=199597, pool_entry=10154, description='Borean Tundra 189979, node 10' WHERE guid=63211; UPDATE gameobject SET guid=199596 WHERE guid=56198; UPDATE pool_gameobject SET guid=199596, pool_entry=10155, description='Borean Tundra 189978, node 11' WHERE guid=56198; UPDATE pool_pool SET pool_id=10155, description='Borean Tundra mineral, node 11' WHERE pool_id=5011; UPDATE pool_template SET entry=10155, description='Borean Tundra mineral, node 11' WHERE entry=5011; UPDATE gameobject SET guid=199595 WHERE guid=63213; UPDATE pool_gameobject SET guid=199595, pool_entry=10155, description='Borean Tundra 189979, node 11' WHERE guid=63213; UPDATE gameobject SET guid=199594 WHERE guid=56199; UPDATE pool_gameobject SET guid=199594, pool_entry=10156, description='Borean Tundra 189978, node 12' WHERE guid=56199; UPDATE pool_pool SET pool_id=10156, description='Borean Tundra mineral, node 12' WHERE pool_id=5012; UPDATE pool_template SET entry=10156, description='Borean Tundra mineral, node 12' WHERE entry=5012; UPDATE gameobject SET guid=199593 WHERE guid=63221; UPDATE pool_gameobject SET guid=199593, pool_entry=10156, description='Borean Tundra 189979, node 12' WHERE guid=63221; UPDATE gameobject SET guid=199592 WHERE guid=56200; UPDATE pool_gameobject SET guid=199592, pool_entry=10157, description='Borean Tundra 189978, node 13' WHERE guid=56200; UPDATE pool_pool SET pool_id=10157, description='Borean Tundra mineral, node 13' WHERE pool_id=5013; UPDATE pool_template SET entry=10157, description='Borean Tundra mineral, node 13' WHERE entry=5013; UPDATE gameobject SET guid=199591 WHERE guid=63223; UPDATE pool_gameobject SET guid=199591, pool_entry=10157, description='Borean Tundra 189979, node 13' WHERE guid=63223; UPDATE gameobject SET guid=199590 WHERE guid=56201; UPDATE pool_gameobject SET guid=199590, pool_entry=10158, description='Borean Tundra 189978, node 14' WHERE guid=56201; UPDATE pool_pool SET pool_id=10158, description='Borean Tundra mineral, node 14' WHERE pool_id=5014; UPDATE pool_template SET entry=10158, description='Borean Tundra mineral, node 14' WHERE entry=5014; UPDATE gameobject SET guid=199589 WHERE guid=63227; UPDATE pool_gameobject SET guid=199589, pool_entry=10158, description='Borean Tundra 189979, node 14' WHERE guid=63227; UPDATE gameobject SET guid=199588 WHERE guid=56202; UPDATE pool_gameobject SET guid=199588, pool_entry=10159, description='Borean Tundra 189978, node 15' WHERE guid=56202; UPDATE pool_pool SET pool_id=10159, description='Borean Tundra mineral, node 15' WHERE pool_id=5015; UPDATE pool_template SET entry=10159, description='Borean Tundra mineral, node 15' WHERE entry=5015; UPDATE gameobject SET guid=199587 WHERE guid=63228; UPDATE pool_gameobject SET guid=199587, pool_entry=10159, description='Borean Tundra 189979, node 15' WHERE guid=63228; UPDATE gameobject SET guid=199586 WHERE guid=63229; UPDATE pool_gameobject SET guid=199586, pool_entry=10160, description='Borean Tundra 189979, node 16' WHERE guid=63229; UPDATE pool_pool SET pool_id=10160, description='Borean Tundra mineral, node 16' WHERE pool_id=5016; UPDATE pool_template SET entry=10160, description='Borean Tundra mineral, node 16' WHERE entry=5016; UPDATE gameobject SET guid=199585 WHERE guid=56203; UPDATE pool_gameobject SET guid=199585, pool_entry=10160, description='Borean Tundra 189978, node 16' WHERE guid=56203; UPDATE gameobject SET guid=199584 WHERE guid=56204; UPDATE pool_gameobject SET guid=199584, pool_entry=10161, description='Borean Tundra 189978, node 17' WHERE guid=56204; UPDATE pool_pool SET pool_id=10161, description='Borean Tundra mineral, node 17' WHERE pool_id=5017; UPDATE pool_template SET entry=10161, description='Borean Tundra mineral, node 17' WHERE entry=5017; UPDATE gameobject SET guid=199583 WHERE guid=63230; UPDATE pool_gameobject SET guid=199583, pool_entry=10161, description='Borean Tundra 189979, node 17' WHERE guid=63230; UPDATE gameobject SET guid=199582 WHERE guid=56205; UPDATE pool_gameobject SET guid=199582, pool_entry=10162, description='Borean Tundra 189978, node 18' WHERE guid=56205; UPDATE pool_pool SET pool_id=10162, description='Borean Tundra mineral, node 18' WHERE pool_id=5018; UPDATE pool_template SET entry=10162, description='Borean Tundra mineral, node 18' WHERE entry=5018; UPDATE gameobject SET guid=199581 WHERE guid=63231; UPDATE pool_gameobject SET guid=199581, pool_entry=10162, description='Borean Tundra 189979, node 18' WHERE guid=63231; UPDATE gameobject SET guid=199580 WHERE guid=56220; UPDATE pool_gameobject SET guid=199580, pool_entry=10163, description='Borean Tundra 189978, node 19' WHERE guid=56220; UPDATE pool_pool SET pool_id=10163, description='Borean Tundra mineral, node 19' WHERE pool_id=5019; UPDATE pool_template SET entry=10163, description='Borean Tundra mineral, node 19' WHERE entry=5019; UPDATE gameobject SET guid=199579 WHERE guid=63232; UPDATE pool_gameobject SET guid=199579, pool_entry=10163, description='Borean Tundra 189979, node 19' WHERE guid=63232; UPDATE gameobject SET guid=199578 WHERE guid=56240; UPDATE pool_gameobject SET guid=199578, pool_entry=10164, description='Borean Tundra 189978, node 20' WHERE guid=56240; UPDATE pool_pool SET pool_id=10164, description='Borean Tundra mineral, node 20' WHERE pool_id=5020; UPDATE pool_template SET entry=10164, description='Borean Tundra mineral, node 20' WHERE entry=5020; UPDATE gameobject SET guid=199577 WHERE guid=63235; UPDATE pool_gameobject SET guid=199577, pool_entry=10164, description='Borean Tundra 189979, node 20' WHERE guid=63235; UPDATE gameobject SET guid=199576 WHERE guid=56526; UPDATE pool_gameobject SET guid=199576, pool_entry=10165, description='Borean Tundra 189978, node 21' WHERE guid=56526; UPDATE pool_pool SET pool_id=10165, description='Borean Tundra mineral, node 21' WHERE pool_id=5021; UPDATE pool_template SET entry=10165, description='Borean Tundra mineral, node 21' WHERE entry=5021; UPDATE gameobject SET guid=199575 WHERE guid=63237; UPDATE pool_gameobject SET guid=199575, pool_entry=10165, description='Borean Tundra 189979, node 21' WHERE guid=63237; UPDATE gameobject SET guid=199574 WHERE guid=56731; UPDATE pool_gameobject SET guid=199574, pool_entry=10166, description='Borean Tundra 189978, node 22' WHERE guid=56731; UPDATE pool_pool SET pool_id=10166, description='Borean Tundra mineral, node 22' WHERE pool_id=5022; UPDATE pool_template SET entry=10166, description='Borean Tundra mineral, node 22' WHERE entry=5022; UPDATE gameobject SET guid=199573 WHERE guid=63249; UPDATE pool_gameobject SET guid=199573, pool_entry=10166, description='Borean Tundra 189979, node 22' WHERE guid=63249; UPDATE gameobject SET guid=199572 WHERE guid=56800; UPDATE pool_gameobject SET guid=199572, pool_entry=10167, description='Borean Tundra 189978, node 23' WHERE guid=56800; UPDATE pool_pool SET pool_id=10167, description='Borean Tundra mineral, node 23' WHERE pool_id=5023; UPDATE pool_template SET entry=10167, description='Borean Tundra mineral, node 23' WHERE entry=5023; UPDATE gameobject SET guid=199571 WHERE guid=63253; UPDATE pool_gameobject SET guid=199571, pool_entry=10167, description='Borean Tundra 189979, node 23' WHERE guid=63253; UPDATE gameobject SET guid=199570 WHERE guid=63254; UPDATE pool_gameobject SET guid=199570, pool_entry=10168, description='Borean Tundra 189979, node 24' WHERE guid=63254; UPDATE pool_pool SET pool_id=10168, description='Borean Tundra mineral, node 24' WHERE pool_id=5024; UPDATE pool_template SET entry=10168, description='Borean Tundra mineral, node 24' WHERE entry=5024; UPDATE gameobject SET guid=199569 WHERE guid=56804; UPDATE pool_gameobject SET guid=199569, pool_entry=10168, description='Borean Tundra 189978, node 24' WHERE guid=56804; UPDATE gameobject SET guid=199568 WHERE guid=56805; UPDATE pool_gameobject SET guid=199568, pool_entry=10169, description='Borean Tundra 189978, node 25' WHERE guid=56805; UPDATE pool_pool SET pool_id=10169, description='Borean Tundra mineral, node 25' WHERE pool_id=5025; UPDATE pool_template SET entry=10169, description='Borean Tundra mineral, node 25' WHERE entry=5025; UPDATE gameobject SET guid=199567 WHERE guid=63255; UPDATE pool_gameobject SET guid=199567, pool_entry=10169, description='Borean Tundra 189979, node 25' WHERE guid=63255; UPDATE gameobject SET guid=199566 WHERE guid=56816; UPDATE pool_gameobject SET guid=199566, pool_entry=10170, description='Borean Tundra 189978, node 26' WHERE guid=56816; UPDATE pool_pool SET pool_id=10170, description='Borean Tundra mineral, node 26' WHERE pool_id=5026; UPDATE pool_template SET entry=10170, description='Borean Tundra mineral, node 26' WHERE entry=5026; UPDATE gameobject SET guid=199565 WHERE guid=63258; UPDATE pool_gameobject SET guid=199565, pool_entry=10170, description='Borean Tundra 189979, node 26' WHERE guid=63258; UPDATE gameobject SET guid=199564 WHERE guid=56825; UPDATE pool_gameobject SET guid=199564, pool_entry=10171, description='Borean Tundra 189978, node 27' WHERE guid=56825; UPDATE pool_pool SET pool_id=10171, description='Borean Tundra mineral, node 27' WHERE pool_id=5027; UPDATE pool_template SET entry=10171, description='Borean Tundra mineral, node 27' WHERE entry=5027; UPDATE gameobject SET guid=199563 WHERE guid=63259; UPDATE pool_gameobject SET guid=199563, pool_entry=10171, description='Borean Tundra 189979, node 27' WHERE guid=63259; UPDATE gameobject SET guid=199562 WHERE guid=57201; UPDATE pool_gameobject SET guid=199562, pool_entry=10172, description='Borean Tundra 189978, node 28' WHERE guid=57201; UPDATE pool_pool SET pool_id=10172, description='Borean Tundra mineral, node 28' WHERE pool_id=5028; UPDATE pool_template SET entry=10172, description='Borean Tundra mineral, node 28' WHERE entry=5028; UPDATE gameobject SET guid=199561 WHERE guid=63262; UPDATE pool_gameobject SET guid=199561, pool_entry=10172, description='Borean Tundra 189979, node 28' WHERE guid=63262; UPDATE gameobject SET guid=199560 WHERE guid=57375; UPDATE pool_gameobject SET guid=199560, pool_entry=10173, description='Borean Tundra 189978, node 29' WHERE guid=57375; UPDATE pool_pool SET pool_id=10173, description='Borean Tundra mineral, node 29' WHERE pool_id=5029; UPDATE pool_template SET entry=10173, description='Borean Tundra mineral, node 29' WHERE entry=5029; UPDATE gameobject SET guid=199559 WHERE guid=63263; UPDATE pool_gameobject SET guid=199559, pool_entry=10173, description='Borean Tundra 189979, node 29' WHERE guid=63263; UPDATE gameobject SET guid=199558 WHERE guid=57573; UPDATE pool_gameobject SET guid=199558, pool_entry=10174, description='Borean Tundra 189978, node 30' WHERE guid=57573; UPDATE pool_pool SET pool_id=10174, description='Borean Tundra mineral, node 30' WHERE pool_id=5030; UPDATE pool_template SET entry=10174, description='Borean Tundra mineral, node 30' WHERE entry=5030; UPDATE gameobject SET guid=199557 WHERE guid=63270; UPDATE pool_gameobject SET guid=199557, pool_entry=10174, description='Borean Tundra 189979, node 30' WHERE guid=63270; UPDATE gameobject SET guid=199556 WHERE guid=57624; UPDATE pool_gameobject SET guid=199556, pool_entry=10175, description='Borean Tundra 189978, node 31' WHERE guid=57624; UPDATE pool_pool SET pool_id=10175, description='Borean Tundra mineral, node 31' WHERE pool_id=5031; UPDATE pool_template SET entry=10175, description='Borean Tundra mineral, node 31' WHERE entry=5031; UPDATE gameobject SET guid=199555 WHERE guid=63279; UPDATE pool_gameobject SET guid=199555, pool_entry=10175, description='Borean Tundra 189979, node 31' WHERE guid=63279; UPDATE gameobject SET guid=199554 WHERE guid=63280; UPDATE pool_gameobject SET guid=199554, pool_entry=10176, description='Borean Tundra 189979, node 32' WHERE guid=63280; UPDATE pool_pool SET pool_id=10176, description='Borean Tundra mineral, node 32' WHERE pool_id=5032; UPDATE pool_template SET entry=10176, description='Borean Tundra mineral, node 32' WHERE entry=5032; UPDATE gameobject SET guid=199553 WHERE guid=58118; UPDATE pool_gameobject SET guid=199553, pool_entry=10176, description='Borean Tundra 189978, node 32' WHERE guid=58118; UPDATE gameobject SET guid=199552 WHERE guid=58706; UPDATE pool_gameobject SET guid=199552, pool_entry=10177, description='Borean Tundra 189978, node 33' WHERE guid=58706; UPDATE pool_pool SET pool_id=10177, description='Borean Tundra mineral, node 33' WHERE pool_id=5033; UPDATE pool_template SET entry=10177, description='Borean Tundra mineral, node 33' WHERE entry=5033; UPDATE gameobject SET guid=199551 WHERE guid=63282; UPDATE pool_gameobject SET guid=199551, pool_entry=10177, description='Borean Tundra 189979, node 33' WHERE guid=63282; UPDATE gameobject SET guid=199550 WHERE guid=58714; UPDATE pool_gameobject SET guid=199550, pool_entry=10178, description='Borean Tundra 189978, node 34' WHERE guid=58714; UPDATE pool_pool SET pool_id=10178, description='Borean Tundra mineral, node 34' WHERE pool_id=5034; UPDATE pool_template SET entry=10178, description='Borean Tundra mineral, node 34' WHERE entry=5034; UPDATE gameobject SET guid=199549 WHERE guid=63285; UPDATE pool_gameobject SET guid=199549, pool_entry=10178, description='Borean Tundra 189979, node 34' WHERE guid=63285; UPDATE gameobject SET guid=199548 WHERE guid=58716; UPDATE pool_gameobject SET guid=199548, pool_entry=10179, description='Borean Tundra 189978, node 35' WHERE guid=58716; UPDATE pool_pool SET pool_id=10179, description='Borean Tundra mineral, node 35' WHERE pool_id=5035; UPDATE pool_template SET entry=10179, description='Borean Tundra mineral, node 35' WHERE entry=5035; UPDATE gameobject SET guid=199547 WHERE guid=63286; UPDATE pool_gameobject SET guid=199547, pool_entry=10179, description='Borean Tundra 189979, node 35' WHERE guid=63286; UPDATE gameobject SET guid=199546 WHERE guid=58721; UPDATE pool_gameobject SET guid=199546, pool_entry=10180, description='Borean Tundra 189978, node 36' WHERE guid=58721; UPDATE pool_pool SET pool_id=10180, description='Borean Tundra mineral, node 36' WHERE pool_id=5036; UPDATE pool_template SET entry=10180, description='Borean Tundra mineral, node 36' WHERE entry=5036; UPDATE gameobject SET guid=199545 WHERE guid=63296; UPDATE pool_gameobject SET guid=199545, pool_entry=10180, description='Borean Tundra 189979, node 36' WHERE guid=63296; UPDATE gameobject SET guid=199544 WHERE guid=58722; UPDATE pool_gameobject SET guid=199544, pool_entry=10181, description='Borean Tundra 189978, node 37' WHERE guid=58722; UPDATE pool_pool SET pool_id=10181, description='Borean Tundra mineral, node 37' WHERE pool_id=5037; UPDATE pool_template SET entry=10181, description='Borean Tundra mineral, node 37' WHERE entry=5037; UPDATE gameobject SET guid=199543 WHERE guid=63301; UPDATE pool_gameobject SET guid=199543, pool_entry=10181, description='Borean Tundra 189979, node 37' WHERE guid=63301; UPDATE gameobject SET guid=199542 WHERE guid=58751; UPDATE pool_gameobject SET guid=199542, pool_entry=10182, description='Borean Tundra 189978, node 38' WHERE guid=58751; UPDATE pool_pool SET pool_id=10182, description='Borean Tundra mineral, node 38' WHERE pool_id=5038; UPDATE pool_template SET entry=10182, description='Borean Tundra mineral, node 38' WHERE entry=5038; UPDATE gameobject SET guid=199541 WHERE guid=63302; UPDATE pool_gameobject SET guid=199541, pool_entry=10182, description='Borean Tundra 189979, node 38' WHERE guid=63302; UPDATE gameobject SET guid=199540 WHERE guid=59242; UPDATE pool_gameobject SET guid=199540, pool_entry=10183, description='Borean Tundra 189978, node 39' WHERE guid=59242; UPDATE pool_pool SET pool_id=10183, description='Borean Tundra mineral, node 39' WHERE pool_id=5039; UPDATE pool_template SET entry=10183, description='Borean Tundra mineral, node 39' WHERE entry=5039; UPDATE gameobject SET guid=199539 WHERE guid=63303; UPDATE pool_gameobject SET guid=199539, pool_entry=10183, description='Borean Tundra 189979, node 39' WHERE guid=63303; UPDATE gameobject SET guid=199538 WHERE guid=63304; UPDATE pool_gameobject SET guid=199538, pool_entry=10184, description='Borean Tundra 189979, node 40' WHERE guid=63304; UPDATE pool_pool SET pool_id=10184, description='Borean Tundra mineral, node 40' WHERE pool_id=5040; UPDATE pool_template SET entry=10184, description='Borean Tundra mineral, node 40' WHERE entry=5040; UPDATE gameobject SET guid=199537 WHERE guid=59500; UPDATE pool_gameobject SET guid=199537, pool_entry=10184, description='Borean Tundra 189978, node 40' WHERE guid=59500; UPDATE gameobject SET guid=199536 WHERE guid=59512; UPDATE pool_gameobject SET guid=199536, pool_entry=10185, description='Borean Tundra 189978, node 41' WHERE guid=59512; UPDATE pool_pool SET pool_id=10185, description='Borean Tundra mineral, node 41' WHERE pool_id=5041; UPDATE pool_template SET entry=10185, description='Borean Tundra mineral, node 41' WHERE entry=5041; UPDATE gameobject SET guid=199535 WHERE guid=63307; UPDATE pool_gameobject SET guid=199535, pool_entry=10185, description='Borean Tundra 189979, node 41' WHERE guid=63307; UPDATE gameobject SET guid=199534 WHERE guid=59850; UPDATE pool_gameobject SET guid=199534, pool_entry=10186, description='Borean Tundra 189978, node 42' WHERE guid=59850; UPDATE pool_pool SET pool_id=10186, description='Borean Tundra mineral, node 42' WHERE pool_id=5042; UPDATE pool_template SET entry=10186, description='Borean Tundra mineral, node 42' WHERE entry=5042; UPDATE gameobject SET guid=199533 WHERE guid=63312; UPDATE pool_gameobject SET guid=199533, pool_entry=10186, description='Borean Tundra 189979, node 42' WHERE guid=63312; UPDATE gameobject SET guid=199532 WHERE guid=60071; UPDATE pool_gameobject SET guid=199532, pool_entry=10187, description='Borean Tundra 189978, node 43' WHERE guid=60071; UPDATE pool_pool SET pool_id=10187, description='Borean Tundra mineral, node 43' WHERE pool_id=5043; UPDATE pool_template SET entry=10187, description='Borean Tundra mineral, node 43' WHERE entry=5043; UPDATE gameobject SET guid=199531 WHERE guid=63318; UPDATE pool_gameobject SET guid=199531, pool_entry=10187, description='Borean Tundra 189979, node 43' WHERE guid=63318; UPDATE gameobject SET guid=199530 WHERE guid=60088; UPDATE pool_gameobject SET guid=199530, pool_entry=10188, description='Borean Tundra 189978, node 44' WHERE guid=60088; UPDATE pool_pool SET pool_id=10188, description='Borean Tundra mineral, node 44' WHERE pool_id=5044; UPDATE pool_template SET entry=10188, description='Borean Tundra mineral, node 44' WHERE entry=5044; UPDATE gameobject SET guid=199529 WHERE guid=63320; UPDATE pool_gameobject SET guid=199529, pool_entry=10188, description='Borean Tundra 189979, node 44' WHERE guid=63320; UPDATE gameobject SET guid=199528 WHERE guid=60107; UPDATE pool_gameobject SET guid=199528, pool_entry=10189, description='Borean Tundra 189978, node 45' WHERE guid=60107; UPDATE pool_pool SET pool_id=10189, description='Borean Tundra mineral, node 45' WHERE pool_id=5045; UPDATE pool_template SET entry=10189, description='Borean Tundra mineral, node 45' WHERE entry=5045; UPDATE gameobject SET guid=199527 WHERE guid=63329; UPDATE pool_gameobject SET guid=199527, pool_entry=10189, description='Borean Tundra 189979, node 45' WHERE guid=63329; UPDATE gameobject SET guid=199526 WHERE guid=60126; UPDATE pool_gameobject SET guid=199526, pool_entry=10190, description='Borean Tundra 189978, node 46' WHERE guid=60126; UPDATE pool_pool SET pool_id=10190, description='Borean Tundra mineral, node 46' WHERE pool_id=5046; UPDATE pool_template SET entry=10190, description='Borean Tundra mineral, node 46' WHERE entry=5046; UPDATE gameobject SET guid=199525 WHERE guid=63330; UPDATE pool_gameobject SET guid=199525, pool_entry=10190, description='Borean Tundra 189979, node 46' WHERE guid=63330; UPDATE gameobject SET guid=199524 WHERE guid=60130; UPDATE pool_gameobject SET guid=199524, pool_entry=10191, description='Borean Tundra 189978, node 47' WHERE guid=60130; UPDATE pool_pool SET pool_id=10191, description='Borean Tundra mineral, node 47' WHERE pool_id=5047; UPDATE pool_template SET entry=10191, description='Borean Tundra mineral, node 47' WHERE entry=5047; UPDATE gameobject SET guid=199523 WHERE guid=63335; UPDATE pool_gameobject SET guid=199523, pool_entry=10191, description='Borean Tundra 189979, node 47' WHERE guid=63335; UPDATE gameobject SET guid=199522 WHERE guid=63340; UPDATE pool_gameobject SET guid=199522, pool_entry=10192, description='Borean Tundra 189979, node 48' WHERE guid=63340; UPDATE pool_pool SET pool_id=10192, description='Borean Tundra mineral, node 48' WHERE pool_id=5048; UPDATE pool_template SET entry=10192, description='Borean Tundra mineral, node 48' WHERE entry=5048; UPDATE gameobject SET guid=199521 WHERE guid=60131; UPDATE pool_gameobject SET guid=199521, pool_entry=10192, description='Borean Tundra 189978, node 48' WHERE guid=60131; UPDATE gameobject SET guid=199520 WHERE guid=60167; UPDATE pool_gameobject SET guid=199520, pool_entry=10193, description='Borean Tundra 189978, node 49' WHERE guid=60167; UPDATE pool_pool SET pool_id=10193, description='Borean Tundra mineral, node 49' WHERE pool_id=5049; UPDATE pool_template SET entry=10193, description='Borean Tundra mineral, node 49' WHERE entry=5049; UPDATE gameobject SET guid=199519 WHERE guid=63350; UPDATE pool_gameobject SET guid=199519, pool_entry=10193, description='Borean Tundra 189979, node 49' WHERE guid=63350; UPDATE gameobject SET guid=199518 WHERE guid=60168; UPDATE pool_gameobject SET guid=199518, pool_entry=10194, description='Borean Tundra 189978, node 50' WHERE guid=60168; UPDATE pool_pool SET pool_id=10194, description='Borean Tundra mineral, node 50' WHERE pool_id=5050; UPDATE pool_template SET entry=10194, description='Borean Tundra mineral, node 50' WHERE entry=5050; UPDATE gameobject SET guid=199517 WHERE guid=63351; UPDATE pool_gameobject SET guid=199517, pool_entry=10194, description='Borean Tundra 189979, node 50' WHERE guid=63351; UPDATE gameobject SET guid=199516 WHERE guid=60174; UPDATE pool_gameobject SET guid=199516, pool_entry=10195, description='Borean Tundra 189978, node 51' WHERE guid=60174; UPDATE pool_pool SET pool_id=10195, description='Borean Tundra mineral, node 51' WHERE pool_id=5051; UPDATE pool_template SET entry=10195, description='Borean Tundra mineral, node 51' WHERE entry=5051; UPDATE gameobject SET guid=199515 WHERE guid=63352; UPDATE pool_gameobject SET guid=199515, pool_entry=10195, description='Borean Tundra 189979, node 51' WHERE guid=63352; UPDATE gameobject SET guid=199514 WHERE guid=60175; UPDATE pool_gameobject SET guid=199514, pool_entry=10196, description='Borean Tundra 189978, node 52' WHERE guid=60175; UPDATE pool_pool SET pool_id=10196, description='Borean Tundra mineral, node 52' WHERE pool_id=5052; UPDATE pool_template SET entry=10196, description='Borean Tundra mineral, node 52' WHERE entry=5052; UPDATE gameobject SET guid=199513 WHERE guid=63353; UPDATE pool_gameobject SET guid=199513, pool_entry=10196, description='Borean Tundra 189979, node 52' WHERE guid=63353; UPDATE gameobject SET guid=199512 WHERE guid=60176; UPDATE pool_gameobject SET guid=199512, pool_entry=10197, description='Borean Tundra 189978, node 53' WHERE guid=60176; UPDATE pool_pool SET pool_id=10197, description='Borean Tundra mineral, node 53' WHERE pool_id=5053; UPDATE pool_template SET entry=10197, description='Borean Tundra mineral, node 53' WHERE entry=5053; UPDATE gameobject SET guid=199511 WHERE guid=63354; UPDATE pool_gameobject SET guid=199511, pool_entry=10197, description='Borean Tundra 189979, node 53' WHERE guid=63354; UPDATE gameobject SET guid=199510 WHERE guid=60198; UPDATE pool_gameobject SET guid=199510, pool_entry=10198, description='Borean Tundra 189978, node 54' WHERE guid=60198; UPDATE pool_pool SET pool_id=10198, description='Borean Tundra mineral, node 54' WHERE pool_id=5054; UPDATE pool_template SET entry=10198, description='Borean Tundra mineral, node 54' WHERE entry=5054; UPDATE gameobject SET guid=199509 WHERE guid=63363; UPDATE pool_gameobject SET guid=199509, pool_entry=10198, description='Borean Tundra 189979, node 54' WHERE guid=63363; UPDATE gameobject SET guid=199508 WHERE guid=61854; UPDATE pool_gameobject SET guid=199508, pool_entry=10199, description='Borean Tundra 189978, node 55' WHERE guid=61854; UPDATE pool_pool SET pool_id=10199, description='Borean Tundra mineral, node 55' WHERE pool_id=5055; UPDATE pool_template SET entry=10199, description='Borean Tundra mineral, node 55' WHERE entry=5055; UPDATE gameobject SET guid=199507 WHERE guid=63367; UPDATE pool_gameobject SET guid=199507, pool_entry=10199, description='Borean Tundra 189979, node 55' WHERE guid=63367; UPDATE gameobject SET guid=199506 WHERE guid=63387; UPDATE pool_gameobject SET guid=199506, pool_entry=10200, description='Borean Tundra 189979, node 56' WHERE guid=63387; UPDATE pool_pool SET pool_id=10200, description='Borean Tundra mineral, node 56' WHERE pool_id=5056; UPDATE pool_template SET entry=10200, description='Borean Tundra mineral, node 56' WHERE entry=5056; UPDATE gameobject SET guid=199505 WHERE guid=61863; UPDATE pool_gameobject SET guid=199505, pool_entry=10200, description='Borean Tundra 189978, node 56' WHERE guid=61863; UPDATE gameobject SET guid=199504 WHERE guid=61911; UPDATE pool_gameobject SET guid=199504, pool_entry=10201, description='Borean Tundra 189978, node 57' WHERE guid=61911; UPDATE pool_pool SET pool_id=10201, description='Borean Tundra mineral, node 57' WHERE pool_id=5057; UPDATE pool_template SET entry=10201, description='Borean Tundra mineral, node 57' WHERE entry=5057; UPDATE gameobject SET guid=199503 WHERE guid=63397; UPDATE pool_gameobject SET guid=199503, pool_entry=10201, description='Borean Tundra 189979, node 57' WHERE guid=63397; UPDATE gameobject SET guid=199502 WHERE guid=61926; UPDATE pool_gameobject SET guid=199502, pool_entry=10202, description='Borean Tundra 189978, node 58' WHERE guid=61926; UPDATE pool_pool SET pool_id=10202, description='Borean Tundra mineral, node 58' WHERE pool_id=5058; UPDATE pool_template SET entry=10202, description='Borean Tundra mineral, node 58' WHERE entry=5058; UPDATE gameobject SET guid=199501 WHERE guid=63399; UPDATE pool_gameobject SET guid=199501, pool_entry=10202, description='Borean Tundra 189979, node 58' WHERE guid=63399; UPDATE gameobject SET guid=199500 WHERE guid=61968; UPDATE pool_gameobject SET guid=199500, pool_entry=10203, description='Borean Tundra 189978, node 59' WHERE guid=61968; UPDATE pool_pool SET pool_id=10203, description='Borean Tundra mineral, node 59' WHERE pool_id=5059; UPDATE pool_template SET entry=10203, description='Borean Tundra mineral, node 59' WHERE entry=5059; UPDATE gameobject SET guid=199499 WHERE guid=63413; UPDATE pool_gameobject SET guid=199499, pool_entry=10203, description='Borean Tundra 189979, node 59' WHERE guid=63413; UPDATE gameobject SET guid=199498 WHERE guid=62121; UPDATE pool_gameobject SET guid=199498, pool_entry=10204, description='Borean Tundra 189978, node 60' WHERE guid=62121; UPDATE pool_pool SET pool_id=10204, description='Borean Tundra mineral, node 60' WHERE pool_id=5060; UPDATE pool_template SET entry=10204, description='Borean Tundra mineral, node 60' WHERE entry=5060; UPDATE gameobject SET guid=199497 WHERE guid=63414; UPDATE pool_gameobject SET guid=199497, pool_entry=10204, description='Borean Tundra 189979, node 60' WHERE guid=63414; UPDATE gameobject SET guid=199496 WHERE guid=62122; UPDATE pool_gameobject SET guid=199496, pool_entry=10205, description='Borean Tundra 189978, node 61' WHERE guid=62122; UPDATE pool_pool SET pool_id=10205, description='Borean Tundra mineral, node 61' WHERE pool_id=5061; UPDATE pool_template SET entry=10205, description='Borean Tundra mineral, node 61' WHERE entry=5061; UPDATE gameobject SET guid=199495 WHERE guid=63416; UPDATE pool_gameobject SET guid=199495, pool_entry=10205, description='Borean Tundra 189979, node 61' WHERE guid=63416; UPDATE gameobject SET guid=199494 WHERE guid=62123; UPDATE pool_gameobject SET guid=199494, pool_entry=10206, description='Borean Tundra 189978, node 62' WHERE guid=62123; UPDATE pool_pool SET pool_id=10206, description='Borean Tundra mineral, node 62' WHERE pool_id=5062; UPDATE pool_template SET entry=10206, description='Borean Tundra mineral, node 62' WHERE entry=5062; UPDATE gameobject SET guid=199493 WHERE guid=63417; UPDATE pool_gameobject SET guid=199493, pool_entry=10206, description='Borean Tundra 189979, node 62' WHERE guid=63417; UPDATE gameobject SET guid=199492 WHERE guid=62124; UPDATE pool_gameobject SET guid=199492, pool_entry=10207, description='Borean Tundra 189978, node 63' WHERE guid=62124; UPDATE pool_pool SET pool_id=10207, description='Borean Tundra mineral, node 63' WHERE pool_id=5063; UPDATE pool_template SET entry=10207, description='Borean Tundra mineral, node 63' WHERE entry=5063; UPDATE gameobject SET guid=199491 WHERE guid=63418; UPDATE pool_gameobject SET guid=199491, pool_entry=10207, description='Borean Tundra 189979, node 63' WHERE guid=63418; UPDATE gameobject SET guid=199490 WHERE guid=67639; UPDATE pool_gameobject SET guid=199490, pool_entry=10208, description='Borean Tundra 189978, node 64' WHERE guid=67639; UPDATE pool_pool SET pool_id=10208, description='Borean Tundra mineral, node 64' WHERE pool_id=5064; UPDATE pool_template SET entry=10208, description='Borean Tundra mineral, node 64' WHERE entry=5064; UPDATE gameobject SET guid=199489 WHERE guid=63439; UPDATE pool_gameobject SET guid=199489, pool_entry=10208, description='Borean Tundra 189979, node 64' WHERE guid=63439; UPDATE gameobject SET guid=199488 WHERE guid=66866; UPDATE pool_gameobject SET guid=199488, pool_entry=10209, description='Borean Tundra 189978, node 65' WHERE guid=66866; UPDATE pool_pool SET pool_id=10209, description='Borean Tundra mineral, node 65' WHERE pool_id=5283; UPDATE pool_template SET entry=10209, description='Borean Tundra mineral, node 65' WHERE entry=5283; UPDATE gameobject SET guid=199487 WHERE guid=66919; UPDATE pool_gameobject SET guid=199487, pool_entry=10209, description='Borean Tundra 189979, node 65' WHERE guid=66919; UPDATE gameobject SET guid=199486 WHERE guid=66867; UPDATE pool_gameobject SET guid=199486, pool_entry=10210, description='Borean Tundra 189978, node 66' WHERE guid=66867; UPDATE pool_pool SET pool_id=10210, description='Borean Tundra mineral, node 66' WHERE pool_id=5284; UPDATE pool_template SET entry=10210, description='Borean Tundra mineral, node 66' WHERE entry=5284; UPDATE gameobject SET guid=199485 WHERE guid=66920; UPDATE pool_gameobject SET guid=199485, pool_entry=10210, description='Borean Tundra 189979, node 66' WHERE guid=66920; UPDATE gameobject SET guid=199484 WHERE guid=66887; UPDATE pool_gameobject SET guid=199484, pool_entry=10211, description='Borean Tundra 189978, node 67' WHERE guid=66887; UPDATE pool_pool SET pool_id=10211, description='Borean Tundra mineral, node 67' WHERE pool_id=5285; UPDATE pool_template SET entry=10211, description='Borean Tundra mineral, node 67' WHERE entry=5285; UPDATE gameobject SET guid=199483 WHERE guid=66940; UPDATE pool_gameobject SET guid=199483, pool_entry=10211, description='Borean Tundra 189979, node 67' WHERE guid=66940; UPDATE gameobject SET guid=199482 WHERE guid=66873; UPDATE pool_gameobject SET guid=199482, pool_entry=10212, description='Borean Tundra 189978, node 68' WHERE guid=66873; UPDATE pool_pool SET pool_id=10212, description='Borean Tundra mineral, node 68' WHERE pool_id=5286; UPDATE pool_template SET entry=10212, description='Borean Tundra mineral, node 68' WHERE entry=5286; UPDATE gameobject SET guid=199481 WHERE guid=66926; UPDATE pool_gameobject SET guid=199481, pool_entry=10212, description='Borean Tundra 189979, node 68' WHERE guid=66926; UPDATE gameobject SET guid=199480 WHERE guid=66851; UPDATE pool_gameobject SET guid=199480, pool_entry=10213, description='Borean Tundra 189978, node 69' WHERE guid=66851; UPDATE pool_pool SET pool_id=10213, description='Borean Tundra mineral, node 69' WHERE pool_id=5287; UPDATE pool_template SET entry=10213, description='Borean Tundra mineral, node 69' WHERE entry=5287; UPDATE gameobject SET guid=199479 WHERE guid=66904; UPDATE pool_gameobject SET guid=199479, pool_entry=10213, description='Borean Tundra 189979, node 69' WHERE guid=66904; UPDATE gameobject SET guid=199478 WHERE guid=66852; UPDATE pool_gameobject SET guid=199478, pool_entry=10214, description='Borean Tundra 189978, node 70' WHERE guid=66852; UPDATE pool_pool SET pool_id=10214, description='Borean Tundra mineral, node 70' WHERE pool_id=5288; UPDATE pool_template SET entry=10214, description='Borean Tundra mineral, node 70' WHERE entry=5288; UPDATE gameobject SET guid=199477 WHERE guid=66905; UPDATE pool_gameobject SET guid=199477, pool_entry=10214, description='Borean Tundra 189979, node 70' WHERE guid=66905; UPDATE gameobject SET guid=199476 WHERE guid=66882; UPDATE pool_gameobject SET guid=199476, pool_entry=10215, description='Borean Tundra 189978, node 71' WHERE guid=66882; UPDATE pool_pool SET pool_id=10215, description='Borean Tundra mineral, node 71' WHERE pool_id=5289; UPDATE pool_template SET entry=10215, description='Borean Tundra mineral, node 71' WHERE entry=5289; UPDATE gameobject SET guid=199475 WHERE guid=66935; UPDATE pool_gameobject SET guid=199475, pool_entry=10215, description='Borean Tundra 189979, node 71' WHERE guid=66935; UPDATE gameobject SET guid=199474 WHERE guid=66941; UPDATE pool_gameobject SET guid=199474, pool_entry=10216, description='Borean Tundra 189979, node 72' WHERE guid=66941; UPDATE pool_pool SET pool_id=10216, description='Borean Tundra mineral, node 72' WHERE pool_id=5290; UPDATE pool_template SET entry=10216, description='Borean Tundra mineral, node 72' WHERE entry=5290; UPDATE gameobject SET guid=199473 WHERE guid=66888; UPDATE pool_gameobject SET guid=199473, pool_entry=10216, description='Borean Tundra 189978, node 72' WHERE guid=66888; UPDATE gameobject SET guid=199472 WHERE guid=66892; UPDATE pool_gameobject SET guid=199472, pool_entry=10217, description='Borean Tundra 189978, node 73' WHERE guid=66892; UPDATE pool_pool SET pool_id=10217, description='Borean Tundra mineral, node 73' WHERE pool_id=5291; UPDATE pool_template SET entry=10217, description='Borean Tundra mineral, node 73' WHERE entry=5291; UPDATE gameobject SET guid=199471 WHERE guid=66901; UPDATE pool_gameobject SET guid=199471, pool_entry=10217, description='Borean Tundra 189979, node 73' WHERE guid=66901; -- howling fjord UPDATE gameobject SET guid=199470 WHERE guid=56139; UPDATE pool_gameobject SET guid=199470, pool_entry=10218, description='Howling Fjord 189978, node 1' WHERE guid=56139; UPDATE pool_pool SET pool_id=10218, description='Howling Fjord mineral, node 1' WHERE pool_id=5065; UPDATE pool_template SET entry=10218, description='Howling Fjord mineral, node 1' WHERE entry=5065; UPDATE gameobject SET guid=199469 WHERE guid=63440; UPDATE pool_gameobject SET guid=199469, pool_entry=10218, description='Howling Fjord 189979, node 1' WHERE guid=63440; UPDATE gameobject SET guid=199468 WHERE guid=56153; UPDATE pool_gameobject SET guid=199468, pool_entry=10219, description='Howling Fjord 189978, node 2' WHERE guid=56153; UPDATE pool_pool SET pool_id=10219, description='Howling Fjord mineral, node 2' WHERE pool_id=5066; UPDATE pool_template SET entry=10219, description='Howling Fjord mineral, node 2' WHERE entry=5066; UPDATE gameobject SET guid=199467 WHERE guid=63448; UPDATE pool_gameobject SET guid=199467, pool_entry=10219, description='Howling Fjord 189979, node 2' WHERE guid=63448; UPDATE gameobject SET guid=199466 WHERE guid=56154; UPDATE pool_gameobject SET guid=199466, pool_entry=10220, description='Howling Fjord 189978, node 3' WHERE guid=56154; UPDATE pool_pool SET pool_id=10220, description='Howling Fjord mineral, node 3' WHERE pool_id=5067; UPDATE pool_template SET entry=10220, description='Howling Fjord mineral, node 3' WHERE entry=5067; UPDATE gameobject SET guid=199465 WHERE guid=63451; UPDATE pool_gameobject SET guid=199465, pool_entry=10220, description='Howling Fjord 189979, node 3' WHERE guid=63451; UPDATE gameobject SET guid=199464 WHERE guid=56155; UPDATE pool_gameobject SET guid=199464, pool_entry=10221, description='Howling Fjord 189978, node 4' WHERE guid=56155; UPDATE pool_pool SET pool_id=10221, description='Howling Fjord mineral, node 4' WHERE pool_id=5068; UPDATE pool_template SET entry=10221, description='Howling Fjord mineral, node 4' WHERE entry=5068; UPDATE gameobject SET guid=199463 WHERE guid=63464; UPDATE pool_gameobject SET guid=199463, pool_entry=10221, description='Howling Fjord 189979, node 4' WHERE guid=63464; UPDATE gameobject SET guid=199462 WHERE guid=56156; UPDATE pool_gameobject SET guid=199462, pool_entry=10222, description='Howling Fjord 189978, node 5' WHERE guid=56156; UPDATE pool_pool SET pool_id=10222, description='Howling Fjord mineral, node 5' WHERE pool_id=5069; UPDATE pool_template SET entry=10222, description='Howling Fjord mineral, node 5' WHERE entry=5069; UPDATE gameobject SET guid=199461 WHERE guid=63468; UPDATE pool_gameobject SET guid=199461, pool_entry=10222, description='Howling Fjord 189979, node 5' WHERE guid=63468; UPDATE gameobject SET guid=199460 WHERE guid=56159; UPDATE pool_gameobject SET guid=199460, pool_entry=10223, description='Howling Fjord 189978, node 6' WHERE guid=56159; UPDATE pool_pool SET pool_id=10223, description='Howling Fjord mineral, node 6' WHERE pool_id=5070; UPDATE pool_template SET entry=10223, description='Howling Fjord mineral, node 6' WHERE entry=5070; UPDATE gameobject SET guid=199459 WHERE guid=63469; UPDATE pool_gameobject SET guid=199459, pool_entry=10223, description='Howling Fjord 189979, node 6' WHERE guid=63469; UPDATE gameobject SET guid=199458 WHERE guid=56160; UPDATE pool_gameobject SET guid=199458, pool_entry=10224, description='Howling Fjord 189978, node 7' WHERE guid=56160; UPDATE pool_pool SET pool_id=10224, description='Howling Fjord mineral, node 7' WHERE pool_id=5071; UPDATE pool_template SET entry=10224, description='Howling Fjord mineral, node 7' WHERE entry=5071; UPDATE gameobject SET guid=199457 WHERE guid=63475; UPDATE pool_gameobject SET guid=199457, pool_entry=10224, description='Howling Fjord 189979, node 7' WHERE guid=63475; UPDATE gameobject SET guid=199456 WHERE guid=63477; UPDATE pool_gameobject SET guid=199456, pool_entry=10225, description='Howling Fjord 189979, node 8' WHERE guid=63477; UPDATE pool_pool SET pool_id=10225, description='Howling Fjord mineral, node 8' WHERE pool_id=5072; UPDATE pool_template SET entry=10225, description='Howling Fjord mineral, node 8' WHERE entry=5072; UPDATE gameobject SET guid=199455 WHERE guid=56161; UPDATE pool_gameobject SET guid=199455, pool_entry=10225, description='Howling Fjord 189978, node 8' WHERE guid=56161; UPDATE gameobject SET guid=199454 WHERE guid=56162; UPDATE pool_gameobject SET guid=199454, pool_entry=10226, description='Howling Fjord 189978, node 9' WHERE guid=56162; UPDATE pool_pool SET pool_id=10226, description='Howling Fjord mineral, node 9' WHERE pool_id=5073; UPDATE pool_template SET entry=10226, description='Howling Fjord mineral, node 9' WHERE entry=5073; UPDATE gameobject SET guid=199453 WHERE guid=63480; UPDATE pool_gameobject SET guid=199453, pool_entry=10226, description='Howling Fjord 189979, node 9' WHERE guid=63480; UPDATE gameobject SET guid=199452 WHERE guid=56164; UPDATE pool_gameobject SET guid=199452, pool_entry=10227, description='Howling Fjord 189978, node 10' WHERE guid=56164; UPDATE pool_pool SET pool_id=10227, description='Howling Fjord mineral, node 10' WHERE pool_id=5074; UPDATE pool_template SET entry=10227, description='Howling Fjord mineral, node 10' WHERE entry=5074; UPDATE gameobject SET guid=199451 WHERE guid=63491; UPDATE pool_gameobject SET guid=199451, pool_entry=10227, description='Howling Fjord 189979, node 10' WHERE guid=63491; UPDATE gameobject SET guid=199450 WHERE guid=56165; UPDATE pool_gameobject SET guid=199450, pool_entry=10228, description='Howling Fjord 189978, node 11' WHERE guid=56165; UPDATE pool_pool SET pool_id=10228, description='Howling Fjord mineral, node 11' WHERE pool_id=5075; UPDATE pool_template SET entry=10228, description='Howling Fjord mineral, node 11' WHERE entry=5075; UPDATE gameobject SET guid=199449 WHERE guid=63493; UPDATE pool_gameobject SET guid=199449, pool_entry=10228, description='Howling Fjord 189979, node 11' WHERE guid=63493; UPDATE gameobject SET guid=199448 WHERE guid=56166; UPDATE pool_gameobject SET guid=199448, pool_entry=10229, description='Howling Fjord 189978, node 12' WHERE guid=56166; UPDATE pool_pool SET pool_id=10229, description='Howling Fjord mineral, node 12' WHERE pool_id=5076; UPDATE pool_template SET entry=10229, description='Howling Fjord mineral, node 12' WHERE entry=5076; UPDATE gameobject SET guid=199447 WHERE guid=63494; UPDATE pool_gameobject SET guid=199447, pool_entry=10229, description='Howling Fjord 189979, node 12' WHERE guid=63494; UPDATE gameobject SET guid=199446 WHERE guid=56168; UPDATE pool_gameobject SET guid=199446, pool_entry=10230, description='Howling Fjord 189978, node 13' WHERE guid=56168; UPDATE pool_pool SET pool_id=10230, description='Howling Fjord mineral, node 13' WHERE pool_id=5077; UPDATE pool_template SET entry=10230, description='Howling Fjord mineral, node 13' WHERE entry=5077; UPDATE gameobject SET guid=199445 WHERE guid=63521; UPDATE pool_gameobject SET guid=199445, pool_entry=10230, description='Howling Fjord 189979, node 13' WHERE guid=63521; UPDATE gameobject SET guid=199444 WHERE guid=56169; UPDATE pool_gameobject SET guid=199444, pool_entry=10231, description='Howling Fjord 189978, node 14' WHERE guid=56169; UPDATE pool_pool SET pool_id=10231, description='Howling Fjord mineral, node 14' WHERE pool_id=5078; UPDATE pool_template SET entry=10231, description='Howling Fjord mineral, node 14' WHERE entry=5078; UPDATE gameobject SET guid=199443 WHERE guid=63535; UPDATE pool_gameobject SET guid=199443, pool_entry=10231, description='Howling Fjord 189979, node 14' WHERE guid=63535; UPDATE gameobject SET guid=199442 WHERE guid=56170; UPDATE pool_gameobject SET guid=199442, pool_entry=10232, description='Howling Fjord 189978, node 15' WHERE guid=56170; UPDATE pool_pool SET pool_id=10232, description='Howling Fjord mineral, node 15' WHERE pool_id=5079; UPDATE pool_template SET entry=10232, description='Howling Fjord mineral, node 15' WHERE entry=5079; UPDATE gameobject SET guid=199441 WHERE guid=63550; UPDATE pool_gameobject SET guid=199441, pool_entry=10232, description='Howling Fjord 189979, node 15' WHERE guid=63550; UPDATE gameobject SET guid=199440 WHERE guid=63551; UPDATE pool_gameobject SET guid=199440, pool_entry=10233, description='Howling Fjord 189979, node 16' WHERE guid=63551; UPDATE pool_pool SET pool_id=10233, description='Howling Fjord mineral, node 16' WHERE pool_id=5080; UPDATE pool_template SET entry=10233, description='Howling Fjord mineral, node 16' WHERE entry=5080; UPDATE gameobject SET guid=199439 WHERE guid=56171; UPDATE pool_gameobject SET guid=199439, pool_entry=10233, description='Howling Fjord 189978, node 16' WHERE guid=56171; UPDATE gameobject SET guid=199438 WHERE guid=56173; UPDATE pool_gameobject SET guid=199438, pool_entry=10234, description='Howling Fjord 189978, node 17' WHERE guid=56173; UPDATE pool_pool SET pool_id=10234, description='Howling Fjord mineral, node 17' WHERE pool_id=5081; UPDATE pool_template SET entry=10234, description='Howling Fjord mineral, node 17' WHERE entry=5081; UPDATE gameobject SET guid=199437 WHERE guid=63561; UPDATE pool_gameobject SET guid=199437, pool_entry=10234, description='Howling Fjord 189979, node 17' WHERE guid=63561; UPDATE gameobject SET guid=199436 WHERE guid=56174; UPDATE pool_gameobject SET guid=199436, pool_entry=10235, description='Howling Fjord 189978, node 18' WHERE guid=56174; UPDATE pool_pool SET pool_id=10235, description='Howling Fjord mineral, node 18' WHERE pool_id=5082; UPDATE pool_template SET entry=10235, description='Howling Fjord mineral, node 18' WHERE entry=5082; UPDATE gameobject SET guid=199435 WHERE guid=63573; UPDATE pool_gameobject SET guid=199435, pool_entry=10235, description='Howling Fjord 189979, node 18' WHERE guid=63573; UPDATE gameobject SET guid=199434 WHERE guid=56178; UPDATE pool_gameobject SET guid=199434, pool_entry=10236, description='Howling Fjord 189978, node 19' WHERE guid=56178; UPDATE pool_pool SET pool_id=10236, description='Howling Fjord mineral, node 19' WHERE pool_id=5083; UPDATE pool_template SET entry=10236, description='Howling Fjord mineral, node 19' WHERE entry=5083; UPDATE gameobject SET guid=199433 WHERE guid=63584; UPDATE pool_gameobject SET guid=199433, pool_entry=10236, description='Howling Fjord 189979, node 19' WHERE guid=63584; UPDATE gameobject SET guid=199432 WHERE guid=56181; UPDATE pool_gameobject SET guid=199432, pool_entry=10237, description='Howling Fjord 189978, node 20' WHERE guid=56181; UPDATE pool_pool SET pool_id=10237, description='Howling Fjord mineral, node 20' WHERE pool_id=5084; UPDATE pool_template SET entry=10237, description='Howling Fjord mineral, node 20' WHERE entry=5084; UPDATE gameobject SET guid=199431 WHERE guid=63600; UPDATE pool_gameobject SET guid=199431, pool_entry=10237, description='Howling Fjord 189979, node 20' WHERE guid=63600; UPDATE gameobject SET guid=199430 WHERE guid=56182; UPDATE pool_gameobject SET guid=199430, pool_entry=10238, description='Howling Fjord 189978, node 21' WHERE guid=56182; UPDATE pool_pool SET pool_id=10238, description='Howling Fjord mineral, node 21' WHERE pool_id=5085; UPDATE pool_template SET entry=10238, description='Howling Fjord mineral, node 21' WHERE entry=5085; UPDATE gameobject SET guid=199429 WHERE guid=63601; UPDATE pool_gameobject SET guid=199429, pool_entry=10238, description='Howling Fjord 189979, node 21' WHERE guid=63601; UPDATE gameobject SET guid=199428 WHERE guid=56235; UPDATE pool_gameobject SET guid=199428, pool_entry=10239, description='Howling Fjord 189978, node 22' WHERE guid=56235; UPDATE pool_pool SET pool_id=10239, description='Howling Fjord mineral, node 22' WHERE pool_id=5086; UPDATE pool_template SET entry=10239, description='Howling Fjord mineral, node 22' WHERE entry=5086; UPDATE gameobject SET guid=199427 WHERE guid=63602; UPDATE pool_gameobject SET guid=199427, pool_entry=10239, description='Howling Fjord 189979, node 22' WHERE guid=63602; UPDATE gameobject SET guid=199426 WHERE guid=56793; UPDATE pool_gameobject SET guid=199426, pool_entry=10240, description='Howling Fjord 189978, node 23' WHERE guid=56793; UPDATE pool_pool SET pool_id=10240, description='Howling Fjord mineral, node 23' WHERE pool_id=5087; UPDATE pool_template SET entry=10240, description='Howling Fjord mineral, node 23' WHERE entry=5087; UPDATE gameobject SET guid=199425 WHERE guid=63603; UPDATE pool_gameobject SET guid=199425, pool_entry=10240, description='Howling Fjord 189979, node 23' WHERE guid=63603; UPDATE gameobject SET guid=199424 WHERE guid=63604; UPDATE pool_gameobject SET guid=199424, pool_entry=10241, description='Howling Fjord 189979, node 24' WHERE guid=63604; UPDATE pool_pool SET pool_id=10241, description='Howling Fjord mineral, node 24' WHERE pool_id=5088; UPDATE pool_template SET entry=10241, description='Howling Fjord mineral, node 24' WHERE entry=5088; UPDATE gameobject SET guid=199423 WHERE guid=56794; UPDATE pool_gameobject SET guid=199423, pool_entry=10241, description='Howling Fjord 189978, node 24' WHERE guid=56794; UPDATE gameobject SET guid=199422 WHERE guid=56806; UPDATE pool_gameobject SET guid=199422, pool_entry=10242, description='Howling Fjord 189978, node 25' WHERE guid=56806; UPDATE pool_pool SET pool_id=10242, description='Howling Fjord mineral, node 25' WHERE pool_id=5089; UPDATE pool_template SET entry=10242, description='Howling Fjord mineral, node 25' WHERE entry=5089; UPDATE gameobject SET guid=199421 WHERE guid=63607; UPDATE pool_gameobject SET guid=199421, pool_entry=10242, description='Howling Fjord 189979, node 25' WHERE guid=63607; UPDATE gameobject SET guid=199420 WHERE guid=56814; UPDATE pool_gameobject SET guid=199420, pool_entry=10243, description='Howling Fjord 189978, node 26' WHERE guid=56814; UPDATE pool_pool SET pool_id=10243, description='Howling Fjord mineral, node 26' WHERE pool_id=5090; UPDATE pool_template SET entry=10243, description='Howling Fjord mineral, node 26' WHERE entry=5090; UPDATE gameobject SET guid=199419 WHERE guid=63612; UPDATE pool_gameobject SET guid=199419, pool_entry=10243, description='Howling Fjord 189979, node 26' WHERE guid=63612; UPDATE gameobject SET guid=199418 WHERE guid=56815; UPDATE pool_gameobject SET guid=199418, pool_entry=10244, description='Howling Fjord 189978, node 27' WHERE guid=56815; UPDATE pool_pool SET pool_id=10244, description='Howling Fjord mineral, node 27' WHERE pool_id=5091; UPDATE pool_template SET entry=10244, description='Howling Fjord mineral, node 27' WHERE entry=5091; UPDATE gameobject SET guid=199417 WHERE guid=63613; UPDATE pool_gameobject SET guid=199417, pool_entry=10244, description='Howling Fjord 189979, node 27' WHERE guid=63613; UPDATE gameobject SET guid=199416 WHERE guid=56823; UPDATE pool_gameobject SET guid=199416, pool_entry=10245, description='Howling Fjord 189978, node 28' WHERE guid=56823; UPDATE pool_pool SET pool_id=10245, description='Howling Fjord mineral, node 28' WHERE pool_id=5092; UPDATE pool_template SET entry=10245, description='Howling Fjord mineral, node 28' WHERE entry=5092; UPDATE gameobject SET guid=199415 WHERE guid=63617; UPDATE pool_gameobject SET guid=199415, pool_entry=10245, description='Howling Fjord 189979, node 28' WHERE guid=63617; UPDATE gameobject SET guid=199414 WHERE guid=56824; UPDATE pool_gameobject SET guid=199414, pool_entry=10246, description='Howling Fjord 189978, node 29' WHERE guid=56824; UPDATE pool_pool SET pool_id=10246, description='Howling Fjord mineral, node 29' WHERE pool_id=5093; UPDATE pool_template SET entry=10246, description='Howling Fjord mineral, node 29' WHERE entry=5093; UPDATE gameobject SET guid=199413 WHERE guid=63619; UPDATE pool_gameobject SET guid=199413, pool_entry=10246, description='Howling Fjord 189979, node 29' WHERE guid=63619; UPDATE gameobject SET guid=199412 WHERE guid=56883; UPDATE pool_gameobject SET guid=199412, pool_entry=10247, description='Howling Fjord 189978, node 30' WHERE guid=56883; UPDATE pool_pool SET pool_id=10247, description='Howling Fjord mineral, node 30' WHERE pool_id=5094; UPDATE pool_template SET entry=10247, description='Howling Fjord mineral, node 30' WHERE entry=5094; UPDATE gameobject SET guid=199411 WHERE guid=63625; UPDATE pool_gameobject SET guid=199411, pool_entry=10247, description='Howling Fjord 189979, node 30' WHERE guid=63625; UPDATE gameobject SET guid=199410 WHERE guid=57685; UPDATE pool_gameobject SET guid=199410, pool_entry=10248, description='Howling Fjord 189978, node 31' WHERE guid=57685; UPDATE pool_pool SET pool_id=10248, description='Howling Fjord mineral, node 31' WHERE pool_id=5095; UPDATE pool_template SET entry=10248, description='Howling Fjord mineral, node 31' WHERE entry=5095; UPDATE gameobject SET guid=199409 WHERE guid=63638; UPDATE pool_gameobject SET guid=199409, pool_entry=10248, description='Howling Fjord 189979, node 31' WHERE guid=63638; UPDATE gameobject SET guid=199408 WHERE guid=63654; UPDATE pool_gameobject SET guid=199408, pool_entry=10249, description='Howling Fjord 189979, node 32' WHERE guid=63654; UPDATE pool_pool SET pool_id=10249, description='Howling Fjord mineral, node 32' WHERE pool_id=5096; UPDATE pool_template SET entry=10249, description='Howling Fjord mineral, node 32' WHERE entry=5096; UPDATE gameobject SET guid=199407 WHERE guid=58736; UPDATE pool_gameobject SET guid=199407, pool_entry=10249, description='Howling Fjord 189978, node 32' WHERE guid=58736; UPDATE gameobject SET guid=199406 WHERE guid=58753; UPDATE pool_gameobject SET guid=199406, pool_entry=10250, description='Howling Fjord 189978, node 33' WHERE guid=58753; UPDATE pool_pool SET pool_id=10250, description='Howling Fjord mineral, node 33' WHERE pool_id=5097; UPDATE pool_template SET entry=10250, description='Howling Fjord mineral, node 33' WHERE entry=5097; UPDATE gameobject SET guid=199405 WHERE guid=63656; UPDATE pool_gameobject SET guid=199405, pool_entry=10250, description='Howling Fjord 189979, node 33' WHERE guid=63656; UPDATE gameobject SET guid=199404 WHERE guid=58762; UPDATE pool_gameobject SET guid=199404, pool_entry=10251, description='Howling Fjord 189978, node 34' WHERE guid=58762; UPDATE pool_pool SET pool_id=10251, description='Howling Fjord mineral, node 34' WHERE pool_id=5098; UPDATE pool_template SET entry=10251, description='Howling Fjord mineral, node 34' WHERE entry=5098; UPDATE gameobject SET guid=199403 WHERE guid=63663; UPDATE pool_gameobject SET guid=199403, pool_entry=10251, description='Howling Fjord 189979, node 34' WHERE guid=63663; UPDATE gameobject SET guid=199402 WHERE guid=58767; UPDATE pool_gameobject SET guid=199402, pool_entry=10252, description='Howling Fjord 189978, node 35' WHERE guid=58767; UPDATE pool_pool SET pool_id=10252, description='Howling Fjord mineral, node 35' WHERE pool_id=5099; UPDATE pool_template SET entry=10252, description='Howling Fjord mineral, node 35' WHERE entry=5099; UPDATE gameobject SET guid=199401 WHERE guid=63668; UPDATE pool_gameobject SET guid=199401, pool_entry=10252, description='Howling Fjord 189979, node 35' WHERE guid=63668; UPDATE gameobject SET guid=199400 WHERE guid=59082; UPDATE pool_gameobject SET guid=199400, pool_entry=10253, description='Howling Fjord 189978, node 36' WHERE guid=59082; UPDATE pool_pool SET pool_id=10253, description='Howling Fjord mineral, node 36' WHERE pool_id=5100; UPDATE pool_template SET entry=10253, description='Howling Fjord mineral, node 36' WHERE entry=5100; UPDATE gameobject SET guid=199399 WHERE guid=63682; UPDATE pool_gameobject SET guid=199399, pool_entry=10253, description='Howling Fjord 189979, node 36' WHERE guid=63682; UPDATE gameobject SET guid=199398 WHERE guid=59121; UPDATE pool_gameobject SET guid=199398, pool_entry=10254, description='Howling Fjord 189978, node 37' WHERE guid=59121; UPDATE pool_pool SET pool_id=10254, description='Howling Fjord mineral, node 37' WHERE pool_id=5101; UPDATE pool_template SET entry=10254, description='Howling Fjord mineral, node 37' WHERE entry=5101; UPDATE gameobject SET guid=199397 WHERE guid=63684; UPDATE pool_gameobject SET guid=199397, pool_entry=10254, description='Howling Fjord 189979, node 37' WHERE guid=63684; UPDATE gameobject SET guid=199396 WHERE guid=59288; UPDATE pool_gameobject SET guid=199396, pool_entry=10255, description='Howling Fjord 189978, node 38' WHERE guid=59288; UPDATE pool_pool SET pool_id=10255, description='Howling Fjord mineral, node 38' WHERE pool_id=5102; UPDATE pool_template SET entry=10255, description='Howling Fjord mineral, node 38' WHERE entry=5102; UPDATE gameobject SET guid=199395 WHERE guid=63687; UPDATE pool_gameobject SET guid=199395, pool_entry=10255, description='Howling Fjord 189979, node 38' WHERE guid=63687; UPDATE gameobject SET guid=199394 WHERE guid=59385; UPDATE pool_gameobject SET guid=199394, pool_entry=10256, description='Howling Fjord 189978, node 39' WHERE guid=59385; UPDATE pool_pool SET pool_id=10256, description='Howling Fjord mineral, node 39' WHERE pool_id=5103; UPDATE pool_template SET entry=10256, description='Howling Fjord mineral, node 39' WHERE entry=5103; UPDATE gameobject SET guid=199393 WHERE guid=63688; UPDATE pool_gameobject SET guid=199393, pool_entry=10256, description='Howling Fjord 189979, node 39' WHERE guid=63688; UPDATE gameobject SET guid=199392 WHERE guid=63690; UPDATE pool_gameobject SET guid=199392, pool_entry=10257, description='Howling Fjord 189979, node 40' WHERE guid=63690; UPDATE pool_pool SET pool_id=10257, description='Howling Fjord mineral, node 40' WHERE pool_id=5104; UPDATE pool_template SET entry=10257, description='Howling Fjord mineral, node 40' WHERE entry=5104; UPDATE gameobject SET guid=199391 WHERE guid=59592; UPDATE pool_gameobject SET guid=199391, pool_entry=10257, description='Howling Fjord 189978, node 40' WHERE guid=59592; UPDATE gameobject SET guid=199390 WHERE guid=59594; UPDATE pool_gameobject SET guid=199390, pool_entry=10258, description='Howling Fjord 189978, node 41' WHERE guid=59594; UPDATE pool_pool SET pool_id=10258, description='Howling Fjord mineral, node 41' WHERE pool_id=5105; UPDATE pool_template SET entry=10258, description='Howling Fjord mineral, node 41' WHERE entry=5105; UPDATE gameobject SET guid=199389 WHERE guid=63692; UPDATE pool_gameobject SET guid=199389, pool_entry=10258, description='Howling Fjord 189979, node 41' WHERE guid=63692; UPDATE gameobject SET guid=199388 WHERE guid=59611; UPDATE pool_gameobject SET guid=199388, pool_entry=10259, description='Howling Fjord 189978, node 42' WHERE guid=59611; UPDATE pool_pool SET pool_id=10259, description='Howling Fjord mineral, node 42' WHERE pool_id=5106; UPDATE pool_template SET entry=10259, description='Howling Fjord mineral, node 42' WHERE entry=5106; UPDATE gameobject SET guid=199387 WHERE guid=63693; UPDATE pool_gameobject SET guid=199387, pool_entry=10259, description='Howling Fjord 189979, node 42' WHERE guid=63693; UPDATE gameobject SET guid=199386 WHERE guid=59620; UPDATE pool_gameobject SET guid=199386, pool_entry=10260, description='Howling Fjord 189978, node 43' WHERE guid=59620; UPDATE pool_pool SET pool_id=10260, description='Howling Fjord mineral, node 43' WHERE pool_id=5107; UPDATE pool_template SET entry=10260, description='Howling Fjord mineral, node 43' WHERE entry=5107; UPDATE gameobject SET guid=199385 WHERE guid=63695; UPDATE pool_gameobject SET guid=199385, pool_entry=10260, description='Howling Fjord 189979, node 43' WHERE guid=63695; UPDATE gameobject SET guid=199384 WHERE guid=60012; UPDATE pool_gameobject SET guid=199384, pool_entry=10261, description='Howling Fjord 189978, node 44' WHERE guid=60012; UPDATE pool_pool SET pool_id=10261, description='Howling Fjord mineral, node 44' WHERE pool_id=5108; UPDATE pool_template SET entry=10261, description='Howling Fjord mineral, node 44' WHERE entry=5108; UPDATE gameobject SET guid=199383 WHERE guid=63698; UPDATE pool_gameobject SET guid=199383, pool_entry=10261, description='Howling Fjord 189979, node 44' WHERE guid=63698; UPDATE gameobject SET guid=199382 WHERE guid=60013; UPDATE pool_gameobject SET guid=199382, pool_entry=10262, description='Howling Fjord 189978, node 45' WHERE guid=60013; UPDATE pool_pool SET pool_id=10262, description='Howling Fjord mineral, node 45' WHERE pool_id=5109; UPDATE pool_template SET entry=10262, description='Howling Fjord mineral, node 45' WHERE entry=5109; UPDATE gameobject SET guid=199381 WHERE guid=63700; UPDATE pool_gameobject SET guid=199381, pool_entry=10262, description='Howling Fjord 189979, node 45' WHERE guid=63700; UPDATE gameobject SET guid=199380 WHERE guid=60014; UPDATE pool_gameobject SET guid=199380, pool_entry=10263, description='Howling Fjord 189978, node 46' WHERE guid=60014; UPDATE pool_pool SET pool_id=10263, description='Howling Fjord mineral, node 46' WHERE pool_id=5110; UPDATE pool_template SET entry=10263, description='Howling Fjord mineral, node 46' WHERE entry=5110; UPDATE gameobject SET guid=199379 WHERE guid=63705; UPDATE pool_gameobject SET guid=199379, pool_entry=10263, description='Howling Fjord 189979, node 46' WHERE guid=63705; UPDATE gameobject SET guid=199378 WHERE guid=60133; UPDATE pool_gameobject SET guid=199378, pool_entry=10264, description='Howling Fjord 189978, node 47' WHERE guid=60133; UPDATE pool_pool SET pool_id=10264, description='Howling Fjord mineral, node 47' WHERE pool_id=5111; UPDATE pool_template SET entry=10264, description='Howling Fjord mineral, node 47' WHERE entry=5111; UPDATE gameobject SET guid=199377 WHERE guid=63707; UPDATE pool_gameobject SET guid=199377, pool_entry=10264, description='Howling Fjord 189979, node 47' WHERE guid=63707; UPDATE gameobject SET guid=199376 WHERE guid=63710; UPDATE pool_gameobject SET guid=199376, pool_entry=10265, description='Howling Fjord 189979, node 48' WHERE guid=63710; UPDATE pool_pool SET pool_id=10265, description='Howling Fjord mineral, node 48' WHERE pool_id=5112; UPDATE pool_template SET entry=10265, description='Howling Fjord mineral, node 48' WHERE entry=5112; UPDATE gameobject SET guid=199375 WHERE guid=60134; UPDATE pool_gameobject SET guid=199375, pool_entry=10265, description='Howling Fjord 189978, node 48' WHERE guid=60134; UPDATE gameobject SET guid=199374 WHERE guid=60136; UPDATE pool_gameobject SET guid=199374, pool_entry=10266, description='Howling Fjord 189978, node 49' WHERE guid=60136; UPDATE pool_pool SET pool_id=10266, description='Howling Fjord mineral, node 49' WHERE pool_id=5113; UPDATE pool_template SET entry=10266, description='Howling Fjord mineral, node 49' WHERE entry=5113; UPDATE gameobject SET guid=199373 WHERE guid=63730; UPDATE pool_gameobject SET guid=199373, pool_entry=10266, description='Howling Fjord 189979, node 49' WHERE guid=63730; UPDATE gameobject SET guid=199372 WHERE guid=60137; UPDATE pool_gameobject SET guid=199372, pool_entry=10267, description='Howling Fjord 189978, node 50' WHERE guid=60137; UPDATE pool_pool SET pool_id=10267, description='Howling Fjord mineral, node 50' WHERE pool_id=5114; UPDATE pool_template SET entry=10267, description='Howling Fjord mineral, node 50' WHERE entry=5114; UPDATE gameobject SET guid=199371 WHERE guid=63731; UPDATE pool_gameobject SET guid=199371, pool_entry=10267, description='Howling Fjord 189979, node 50' WHERE guid=63731; UPDATE gameobject SET guid=199370 WHERE guid=60143; UPDATE pool_gameobject SET guid=199370, pool_entry=10268, description='Howling Fjord 189978, node 51' WHERE guid=60143; UPDATE pool_pool SET pool_id=10268, description='Howling Fjord mineral, node 51' WHERE pool_id=5115; UPDATE pool_template SET entry=10268, description='Howling Fjord mineral, node 51' WHERE entry=5115; UPDATE gameobject SET guid=199369 WHERE guid=63738; UPDATE pool_gameobject SET guid=199369, pool_entry=10268, description='Howling Fjord 189979, node 51' WHERE guid=63738; UPDATE gameobject SET guid=199368 WHERE guid=60147; UPDATE pool_gameobject SET guid=199368, pool_entry=10269, description='Howling Fjord 189978, node 52' WHERE guid=60147; UPDATE pool_pool SET pool_id=10269, description='Howling Fjord mineral, node 52' WHERE pool_id=5116; UPDATE pool_template SET entry=10269, description='Howling Fjord mineral, node 52' WHERE entry=5116; UPDATE gameobject SET guid=199367 WHERE guid=63739; UPDATE pool_gameobject SET guid=199367, pool_entry=10269, description='Howling Fjord 189979, node 52' WHERE guid=63739; UPDATE gameobject SET guid=199366 WHERE guid=60150; UPDATE pool_gameobject SET guid=199366, pool_entry=10270, description='Howling Fjord 189978, node 53' WHERE guid=60150; UPDATE pool_pool SET pool_id=10270, description='Howling Fjord mineral, node 53' WHERE pool_id=5117; UPDATE pool_template SET entry=10270, description='Howling Fjord mineral, node 53' WHERE entry=5117; UPDATE gameobject SET guid=199365 WHERE guid=63741; UPDATE pool_gameobject SET guid=199365, pool_entry=10270, description='Howling Fjord 189979, node 53' WHERE guid=63741; UPDATE gameobject SET guid=199364 WHERE guid=60155; UPDATE pool_gameobject SET guid=199364, pool_entry=10271, description='Howling Fjord 189978, node 54' WHERE guid=60155; UPDATE pool_pool SET pool_id=10271, description='Howling Fjord mineral, node 54' WHERE pool_id=5118; UPDATE pool_template SET entry=10271, description='Howling Fjord mineral, node 54' WHERE entry=5118; UPDATE gameobject SET guid=199363 WHERE guid=63743; UPDATE pool_gameobject SET guid=199363, pool_entry=10271, description='Howling Fjord 189979, node 54' WHERE guid=63743; UPDATE gameobject SET guid=199362 WHERE guid=60187; UPDATE pool_gameobject SET guid=199362, pool_entry=10272, description='Howling Fjord 189978, node 55' WHERE guid=60187; UPDATE pool_pool SET pool_id=10272, description='Howling Fjord mineral, node 55' WHERE pool_id=5119; UPDATE pool_template SET entry=10272, description='Howling Fjord mineral, node 55' WHERE entry=5119; UPDATE gameobject SET guid=199361 WHERE guid=63745; UPDATE pool_gameobject SET guid=199361, pool_entry=10272, description='Howling Fjord 189979, node 55' WHERE guid=63745; UPDATE gameobject SET guid=199360 WHERE guid=63746; UPDATE pool_gameobject SET guid=199360, pool_entry=10273, description='Howling Fjord 189979, node 56' WHERE guid=63746; UPDATE pool_pool SET pool_id=10273, description='Howling Fjord mineral, node 56' WHERE pool_id=5120; UPDATE pool_template SET entry=10273, description='Howling Fjord mineral, node 56' WHERE entry=5120; UPDATE gameobject SET guid=199359 WHERE guid=61124; UPDATE pool_gameobject SET guid=199359, pool_entry=10273, description='Howling Fjord 189978, node 56' WHERE guid=61124; UPDATE gameobject SET guid=199358 WHERE guid=66858; UPDATE pool_gameobject SET guid=199358, pool_entry=10274, description='Howling Fjord 189978, node 57' WHERE guid=66858; UPDATE pool_pool SET pool_id=10274, description='Howling Fjord mineral, node 57' WHERE pool_id=5277; UPDATE pool_template SET entry=10274, description='Howling Fjord mineral, node 57' WHERE entry=5277; UPDATE gameobject SET guid=199357 WHERE guid=66911; UPDATE pool_gameobject SET guid=199357, pool_entry=10274, description='Howling Fjord 189979, node 57' WHERE guid=66911; UPDATE gameobject SET guid=199356 WHERE guid=66875; UPDATE pool_gameobject SET guid=199356, pool_entry=10275, description='Howling Fjord 189978, node 58' WHERE guid=66875; UPDATE pool_pool SET pool_id=10275, description='Howling Fjord mineral, node 58' WHERE pool_id=5278; UPDATE pool_template SET entry=10275, description='Howling Fjord mineral, node 58' WHERE entry=5278; UPDATE gameobject SET guid=199355 WHERE guid=66928; UPDATE pool_gameobject SET guid=199355, pool_entry=10275, description='Howling Fjord 189979, node 58' WHERE guid=66928; UPDATE gameobject SET guid=199354 WHERE guid=66876; UPDATE pool_gameobject SET guid=199354, pool_entry=10276, description='Howling Fjord 189978, node 59' WHERE guid=66876; UPDATE pool_pool SET pool_id=10276, description='Howling Fjord mineral, node 59' WHERE pool_id=5279; UPDATE pool_template SET entry=10276, description='Howling Fjord mineral, node 59' WHERE entry=5279; UPDATE gameobject SET guid=199353 WHERE guid=66929; UPDATE pool_gameobject SET guid=199353, pool_entry=10276, description='Howling Fjord 189979, node 59' WHERE guid=66929; UPDATE gameobject SET guid=199352 WHERE guid=66868; UPDATE pool_gameobject SET guid=199352, pool_entry=10277, description='Howling Fjord 189978, node 60' WHERE guid=66868; UPDATE pool_pool SET pool_id=10277, description='Howling Fjord mineral, node 60' WHERE pool_id=5280; UPDATE pool_template SET entry=10277, description='Howling Fjord mineral, node 60' WHERE entry=5280; UPDATE gameobject SET guid=199351 WHERE guid=66921; UPDATE pool_gameobject SET guid=199351, pool_entry=10277, description='Howling Fjord 189979, node 60' WHERE guid=66921; UPDATE gameobject SET guid=199350 WHERE guid=66869; UPDATE pool_gameobject SET guid=199350, pool_entry=10278, description='Howling Fjord 189978, node 61' WHERE guid=66869; UPDATE pool_pool SET pool_id=10278, description='Howling Fjord mineral, node 61' WHERE pool_id=5281; UPDATE pool_template SET entry=10278, description='Howling Fjord mineral, node 61' WHERE entry=5281; UPDATE gameobject SET guid=199349 WHERE guid=66922; UPDATE pool_gameobject SET guid=199349, pool_entry=10278, description='Howling Fjord 189979, node 61' WHERE guid=66922; UPDATE gameobject SET guid=199348 WHERE guid=66843; UPDATE pool_gameobject SET guid=199348, pool_entry=10279, description='Howling Fjord 189978, node 62' WHERE guid=66843; UPDATE pool_pool SET pool_id=10279, description='Howling Fjord mineral, node 62' WHERE pool_id=5282; UPDATE pool_template SET entry=10279, description='Howling Fjord mineral, node 62' WHERE entry=5282; UPDATE gameobject SET guid=199347 WHERE guid=66896; UPDATE pool_gameobject SET guid=199347, pool_entry=10279, description='Howling Fjord 189979, node 62' WHERE guid=66896; -- dragonblight UPDATE gameobject SET guid=199346 WHERE guid=56129; UPDATE pool_gameobject SET guid=199346, pool_entry=10280, description='Dragonblight 189978, node 1' WHERE guid=56129; UPDATE pool_pool SET pool_id=10280, description='Dragonblight mineral, node 1' WHERE pool_id=5123; UPDATE pool_template SET entry=10280, description='Dragonblight mineral, node 1' WHERE entry=5123; UPDATE gameobject SET guid=199345 WHERE guid=60240; UPDATE pool_gameobject SET guid=199345, pool_entry=10280, description='Dragonblight 189979, node 1' WHERE guid=60240; UPDATE gameobject SET guid=199344 WHERE guid=56142; UPDATE pool_gameobject SET guid=199344, pool_entry=10281, description='Dragonblight 189978, node 2' WHERE guid=56142; UPDATE pool_pool SET pool_id=10281, description='Dragonblight mineral, node 2' WHERE pool_id=5124; UPDATE pool_template SET entry=10281, description='Dragonblight mineral, node 2' WHERE entry=5124; UPDATE gameobject SET guid=199343 WHERE guid=60251; UPDATE pool_gameobject SET guid=199343, pool_entry=10281, description='Dragonblight 189979, node 2' WHERE guid=60251; UPDATE gameobject SET guid=199342 WHERE guid=60447; UPDATE pool_gameobject SET guid=199342, pool_entry=10282, description='Dragonblight 189979, node 3' WHERE guid=60447; UPDATE pool_pool SET pool_id=10282, description='Dragonblight mineral, node 3' WHERE pool_id=5125; UPDATE pool_template SET entry=10282, description='Dragonblight mineral, node 3' WHERE entry=5125; UPDATE gameobject SET guid=199341 WHERE guid=56143; UPDATE pool_gameobject SET guid=199341, pool_entry=10282, description='Dragonblight 189978, node 3' WHERE guid=56143; UPDATE gameobject SET guid=199340 WHERE guid=56145; UPDATE pool_gameobject SET guid=199340, pool_entry=10283, description='Dragonblight 189978, node 4' WHERE guid=56145; UPDATE pool_pool SET pool_id=10283, description='Dragonblight mineral, node 4' WHERE pool_id=5126; UPDATE pool_template SET entry=10283, description='Dragonblight mineral, node 4' WHERE entry=5126; UPDATE gameobject SET guid=199339 WHERE guid=60738; UPDATE pool_gameobject SET guid=199339, pool_entry=10283, description='Dragonblight 189979, node 4' WHERE guid=60738; UPDATE gameobject SET guid=199338 WHERE guid=56148; UPDATE pool_gameobject SET guid=199338, pool_entry=10284, description='Dragonblight 189978, node 5' WHERE guid=56148; UPDATE pool_pool SET pool_id=10284, description='Dragonblight mineral, node 5' WHERE pool_id=5127; UPDATE pool_template SET entry=10284, description='Dragonblight mineral, node 5' WHERE entry=5127; UPDATE gameobject SET guid=199337 WHERE guid=60859; UPDATE pool_gameobject SET guid=199337, pool_entry=10284, description='Dragonblight 189979, node 5' WHERE guid=60859; UPDATE gameobject SET guid=199336 WHERE guid=56149; UPDATE pool_gameobject SET guid=199336, pool_entry=10285, description='Dragonblight 189978, node 6' WHERE guid=56149; UPDATE pool_pool SET pool_id=10285, description='Dragonblight mineral, node 6' WHERE pool_id=5128; UPDATE pool_template SET entry=10285, description='Dragonblight mineral, node 6' WHERE entry=5128; UPDATE gameobject SET guid=199335 WHERE guid=61071; UPDATE pool_gameobject SET guid=199335, pool_entry=10285, description='Dragonblight 189979, node 6' WHERE guid=61071; UPDATE gameobject SET guid=199334 WHERE guid=58166; UPDATE pool_gameobject SET guid=199334, pool_entry=10286, description='Dragonblight 189978, node 7' WHERE guid=58166; UPDATE pool_pool SET pool_id=10286, description='Dragonblight mineral, node 7' WHERE pool_id=5129; UPDATE pool_template SET entry=10286, description='Dragonblight mineral, node 7' WHERE entry=5129; UPDATE gameobject SET guid=199333 WHERE guid=61078; UPDATE pool_gameobject SET guid=199333, pool_entry=10286, description='Dragonblight 189979, node 7' WHERE guid=61078; UPDATE gameobject SET guid=199332 WHERE guid=58711; UPDATE pool_gameobject SET guid=199332, pool_entry=10287, description='Dragonblight 189978, node 8' WHERE guid=58711; UPDATE pool_pool SET pool_id=10287, description='Dragonblight mineral, node 8' WHERE pool_id=5130; UPDATE pool_template SET entry=10287, description='Dragonblight mineral, node 8' WHERE entry=5130; UPDATE gameobject SET guid=199331 WHERE guid=61082; UPDATE pool_gameobject SET guid=199331, pool_entry=10287, description='Dragonblight 189979, node 8' WHERE guid=61082; UPDATE gameobject SET guid=199330 WHERE guid=58734; UPDATE pool_gameobject SET guid=199330, pool_entry=10288, description='Dragonblight 189978, node 9' WHERE guid=58734; UPDATE pool_pool SET pool_id=10288, description='Dragonblight mineral, node 9' WHERE pool_id=5131; UPDATE pool_template SET entry=10288, description='Dragonblight mineral, node 9' WHERE entry=5131; UPDATE gameobject SET guid=199329 WHERE guid=61086; UPDATE pool_gameobject SET guid=199329, pool_entry=10288, description='Dragonblight 189979, node 9' WHERE guid=61086; UPDATE gameobject SET guid=199328 WHERE guid=58737; UPDATE pool_gameobject SET guid=199328, pool_entry=10289, description='Dragonblight 189978, node 10' WHERE guid=58737; UPDATE pool_pool SET pool_id=10289, description='Dragonblight mineral, node 10' WHERE pool_id=5132; UPDATE pool_template SET entry=10289, description='Dragonblight mineral, node 10' WHERE entry=5132; UPDATE gameobject SET guid=199327 WHERE guid=61222; UPDATE pool_gameobject SET guid=199327, pool_entry=10289, description='Dragonblight 189979, node 10' WHERE guid=61222; UPDATE gameobject SET guid=199326 WHERE guid=61995; UPDATE pool_gameobject SET guid=199326, pool_entry=10290, description='Dragonblight 189979, node 11' WHERE guid=61995; UPDATE pool_pool SET pool_id=10290, description='Dragonblight mineral, node 11' WHERE pool_id=5133; UPDATE pool_template SET entry=10290, description='Dragonblight mineral, node 11' WHERE entry=5133; UPDATE gameobject SET guid=199325 WHERE guid=60015; UPDATE pool_gameobject SET guid=199325, pool_entry=10290, description='Dragonblight 189978, node 11' WHERE guid=60015; UPDATE gameobject SET guid=199324 WHERE guid=60018; UPDATE pool_gameobject SET guid=199324, pool_entry=10291, description='Dragonblight 189978, node 12' WHERE guid=60018; UPDATE pool_pool SET pool_id=10291, description='Dragonblight mineral, node 12' WHERE pool_id=5134; UPDATE pool_template SET entry=10291, description='Dragonblight mineral, node 12' WHERE entry=5134; UPDATE gameobject SET guid=199323 WHERE guid=63752; UPDATE pool_gameobject SET guid=199323, pool_entry=10291, description='Dragonblight 189979, node 12' WHERE guid=63752; UPDATE gameobject SET guid=199322 WHERE guid=60019; UPDATE pool_gameobject SET guid=199322, pool_entry=10292, description='Dragonblight 189978, node 13' WHERE guid=60019; UPDATE pool_pool SET pool_id=10292, description='Dragonblight mineral, node 13' WHERE pool_id=5135; UPDATE pool_template SET entry=10292, description='Dragonblight mineral, node 13' WHERE entry=5135; UPDATE gameobject SET guid=199321 WHERE guid=63753; UPDATE pool_gameobject SET guid=199321, pool_entry=10292, description='Dragonblight 189979, node 13' WHERE guid=63753; UPDATE gameobject SET guid=199320 WHERE guid=60177; UPDATE pool_gameobject SET guid=199320, pool_entry=10293, description='Dragonblight 189978, node 14' WHERE guid=60177; UPDATE pool_pool SET pool_id=10293, description='Dragonblight mineral, node 14' WHERE pool_id=5136; UPDATE pool_template SET entry=10293, description='Dragonblight mineral, node 14' WHERE entry=5136; UPDATE gameobject SET guid=199319 WHERE guid=63754; UPDATE pool_gameobject SET guid=199319, pool_entry=10293, description='Dragonblight 189979, node 14' WHERE guid=63754; UPDATE gameobject SET guid=199318 WHERE guid=63755; UPDATE pool_gameobject SET guid=199318, pool_entry=10294, description='Dragonblight 189979, node 15' WHERE guid=63755; UPDATE pool_pool SET pool_id=10294, description='Dragonblight mineral, node 15' WHERE pool_id=5137; UPDATE pool_template SET entry=10294, description='Dragonblight mineral, node 15' WHERE entry=5137; UPDATE gameobject SET guid=199317 WHERE guid=66691; UPDATE pool_gameobject SET guid=199317, pool_entry=10294, description='Dragonblight 189978, node 15' WHERE guid=66691; UPDATE gameobject SET guid=199316 WHERE guid=56134; UPDATE pool_gameobject SET guid=199316, pool_entry=10295, description='Dragonblight 189978, node 16' WHERE guid=56134; UPDATE pool_pool SET pool_id=10295, description='Dragonblight mineral, node 16' WHERE pool_id=5138; UPDATE pool_template SET entry=10295, description='Dragonblight mineral, node 16' WHERE entry=5138; UPDATE gameobject SET guid=199315 WHERE guid=63763; UPDATE pool_gameobject SET guid=199315, pool_entry=10295, description='Dragonblight 189979, node 16' WHERE guid=63763; UPDATE gameobject SET guid=199314 WHERE guid=56136; UPDATE pool_gameobject SET guid=199314, pool_entry=10296, description='Dragonblight 189978, node 17' WHERE guid=56136; UPDATE pool_pool SET pool_id=10296, description='Dragonblight mineral, node 17' WHERE pool_id=5139; UPDATE pool_template SET entry=10296, description='Dragonblight mineral, node 17' WHERE entry=5139; UPDATE gameobject SET guid=199313 WHERE guid=63772; UPDATE pool_gameobject SET guid=199313, pool_entry=10296, description='Dragonblight 189979, node 17' WHERE guid=63772; UPDATE gameobject SET guid=199312 WHERE guid=56137; UPDATE pool_gameobject SET guid=199312, pool_entry=10297, description='Dragonblight 189978, node 18' WHERE guid=56137; UPDATE pool_pool SET pool_id=10297, description='Dragonblight mineral, node 18' WHERE pool_id=5140; UPDATE pool_template SET entry=10297, description='Dragonblight mineral, node 18' WHERE entry=5140; UPDATE gameobject SET guid=199311 WHERE guid=63785; UPDATE pool_gameobject SET guid=199311, pool_entry=10297, description='Dragonblight 189979, node 18' WHERE guid=63785; UPDATE gameobject SET guid=199310 WHERE guid=63786; UPDATE pool_gameobject SET guid=199310, pool_entry=10298, description='Dragonblight 189979, node 19' WHERE guid=63786; UPDATE pool_pool SET pool_id=10298, description='Dragonblight mineral, node 19' WHERE pool_id=5141; UPDATE pool_template SET entry=10298, description='Dragonblight mineral, node 19' WHERE entry=5141; UPDATE gameobject SET guid=199309 WHERE guid=56140; UPDATE pool_gameobject SET guid=199309, pool_entry=10298, description='Dragonblight 189978, node 19' WHERE guid=56140; UPDATE gameobject SET guid=199308 WHERE guid=56144; UPDATE pool_gameobject SET guid=199308, pool_entry=10299, description='Dragonblight 189978, node 20' WHERE guid=56144; UPDATE pool_pool SET pool_id=10299, description='Dragonblight mineral, node 20' WHERE pool_id=5142; UPDATE pool_template SET entry=10299, description='Dragonblight mineral, node 20' WHERE entry=5142; UPDATE gameobject SET guid=199307 WHERE guid=63814; UPDATE pool_gameobject SET guid=199307, pool_entry=10299, description='Dragonblight 189979, node 20' WHERE guid=63814; UPDATE gameobject SET guid=199306 WHERE guid=56146; UPDATE pool_gameobject SET guid=199306, pool_entry=10300, description='Dragonblight 189978, node 21' WHERE guid=56146; UPDATE pool_pool SET pool_id=10300, description='Dragonblight mineral, node 21' WHERE pool_id=5143; UPDATE pool_template SET entry=10300, description='Dragonblight mineral, node 21' WHERE entry=5143; UPDATE gameobject SET guid=199305 WHERE guid=63815; UPDATE pool_gameobject SET guid=199305, pool_entry=10300, description='Dragonblight 189979, node 21' WHERE guid=63815; UPDATE gameobject SET guid=199304 WHERE guid=56147; UPDATE pool_gameobject SET guid=199304, pool_entry=10301, description='Dragonblight 189978, node 22' WHERE guid=56147; UPDATE pool_pool SET pool_id=10301, description='Dragonblight mineral, node 22' WHERE pool_id=5144; UPDATE pool_template SET entry=10301, description='Dragonblight mineral, node 22' WHERE entry=5144; UPDATE gameobject SET guid=199303 WHERE guid=63816; UPDATE pool_gameobject SET guid=199303, pool_entry=10301, description='Dragonblight 189979, node 22' WHERE guid=63816; UPDATE gameobject SET guid=199302 WHERE guid=56150; UPDATE pool_gameobject SET guid=199302, pool_entry=10302, description='Dragonblight 189978, node 23' WHERE guid=56150; UPDATE pool_pool SET pool_id=10302, description='Dragonblight mineral, node 23' WHERE pool_id=5145; UPDATE pool_template SET entry=10302, description='Dragonblight mineral, node 23' WHERE entry=5145; UPDATE gameobject SET guid=199301 WHERE guid=63817; UPDATE pool_gameobject SET guid=199301, pool_entry=10302, description='Dragonblight 189979, node 23' WHERE guid=63817; UPDATE gameobject SET guid=199300 WHERE guid=56151; UPDATE pool_gameobject SET guid=199300, pool_entry=10303, description='Dragonblight 189978, node 24' WHERE guid=56151; UPDATE pool_pool SET pool_id=10303, description='Dragonblight mineral, node 24' WHERE pool_id=5146; UPDATE pool_template SET entry=10303, description='Dragonblight mineral, node 24' WHERE entry=5146; UPDATE gameobject SET guid=199299 WHERE guid=63818; UPDATE pool_gameobject SET guid=199299, pool_entry=10303, description='Dragonblight 189979, node 24' WHERE guid=63818; UPDATE gameobject SET guid=199298 WHERE guid=56152; UPDATE pool_gameobject SET guid=199298, pool_entry=10304, description='Dragonblight 189978, node 25' WHERE guid=56152; UPDATE pool_pool SET pool_id=10304, description='Dragonblight mineral, node 25' WHERE pool_id=5147; UPDATE pool_template SET entry=10304, description='Dragonblight mineral, node 25' WHERE entry=5147; UPDATE gameobject SET guid=199297 WHERE guid=63819; UPDATE pool_gameobject SET guid=199297, pool_entry=10304, description='Dragonblight 189979, node 25' WHERE guid=63819; UPDATE gameobject SET guid=199296 WHERE guid=56157; UPDATE pool_gameobject SET guid=199296, pool_entry=10305, description='Dragonblight 189978, node 26' WHERE guid=56157; UPDATE pool_pool SET pool_id=10305, description='Dragonblight mineral, node 26' WHERE pool_id=5148; UPDATE pool_template SET entry=10305, description='Dragonblight mineral, node 26' WHERE entry=5148; UPDATE gameobject SET guid=199295 WHERE guid=63820; UPDATE pool_gameobject SET guid=199295, pool_entry=10305, description='Dragonblight 189979, node 26' WHERE guid=63820; UPDATE gameobject SET guid=199294 WHERE guid=63822; UPDATE pool_gameobject SET guid=199294, pool_entry=10306, description='Dragonblight 189979, node 27' WHERE guid=63822; UPDATE pool_pool SET pool_id=10306, description='Dragonblight mineral, node 27' WHERE pool_id=5149; UPDATE pool_template SET entry=10306, description='Dragonblight mineral, node 27' WHERE entry=5149; UPDATE gameobject SET guid=199293 WHERE guid=56234; UPDATE pool_gameobject SET guid=199293, pool_entry=10306, description='Dragonblight 189978, node 27' WHERE guid=56234; UPDATE gameobject SET guid=199292 WHERE guid=56455; UPDATE pool_gameobject SET guid=199292, pool_entry=10307, description='Dragonblight 189978, node 28' WHERE guid=56455; UPDATE pool_pool SET pool_id=10307, description='Dragonblight mineral, node 28' WHERE pool_id=5150; UPDATE pool_template SET entry=10307, description='Dragonblight mineral, node 28' WHERE entry=5150; UPDATE gameobject SET guid=199291 WHERE guid=63825; UPDATE pool_gameobject SET guid=199291, pool_entry=10307, description='Dragonblight 189979, node 28' WHERE guid=63825; UPDATE gameobject SET guid=199290 WHERE guid=56527; UPDATE pool_gameobject SET guid=199290, pool_entry=10308, description='Dragonblight 189978, node 29' WHERE guid=56527; UPDATE pool_pool SET pool_id=10308, description='Dragonblight mineral, node 29' WHERE pool_id=5151; UPDATE pool_template SET entry=10308, description='Dragonblight mineral, node 29' WHERE entry=5151; UPDATE gameobject SET guid=199289 WHERE guid=63826; UPDATE pool_gameobject SET guid=199289, pool_entry=10308, description='Dragonblight 189979, node 29' WHERE guid=63826; UPDATE gameobject SET guid=199288 WHERE guid=58703; UPDATE pool_gameobject SET guid=199288, pool_entry=10309, description='Dragonblight 189978, node 30' WHERE guid=58703; UPDATE pool_pool SET pool_id=10309, description='Dragonblight mineral, node 30' WHERE pool_id=5152; UPDATE pool_template SET entry=10309, description='Dragonblight mineral, node 30' WHERE entry=5152; UPDATE gameobject SET guid=199287 WHERE guid=63827; UPDATE pool_gameobject SET guid=199287, pool_entry=10309, description='Dragonblight 189979, node 30' WHERE guid=63827; UPDATE gameobject SET guid=199286 WHERE guid=58731; UPDATE pool_gameobject SET guid=199286, pool_entry=10310, description='Dragonblight 189978, node 31' WHERE guid=58731; UPDATE pool_pool SET pool_id=10310, description='Dragonblight mineral, node 31' WHERE pool_id=5153; UPDATE pool_template SET entry=10310, description='Dragonblight mineral, node 31' WHERE entry=5153; UPDATE gameobject SET guid=199285 WHERE guid=63828; UPDATE pool_gameobject SET guid=199285, pool_entry=10310, description='Dragonblight 189979, node 31' WHERE guid=63828; UPDATE gameobject SET guid=199284 WHERE guid=58732; UPDATE pool_gameobject SET guid=199284, pool_entry=10311, description='Dragonblight 189978, node 32' WHERE guid=58732; UPDATE pool_pool SET pool_id=10311, description='Dragonblight mineral, node 32' WHERE pool_id=5154; UPDATE pool_template SET entry=10311, description='Dragonblight mineral, node 32' WHERE entry=5154; UPDATE gameobject SET guid=199283 WHERE guid=63829; UPDATE pool_gameobject SET guid=199283, pool_entry=10311, description='Dragonblight 189979, node 32' WHERE guid=63829; UPDATE gameobject SET guid=199282 WHERE guid=58738; UPDATE pool_gameobject SET guid=199282, pool_entry=10312, description='Dragonblight 189978, node 33' WHERE guid=58738; UPDATE pool_pool SET pool_id=10312, description='Dragonblight mineral, node 33' WHERE pool_id=5155; UPDATE pool_template SET entry=10312, description='Dragonblight mineral, node 33' WHERE entry=5155; UPDATE gameobject SET guid=199281 WHERE guid=63830; UPDATE pool_gameobject SET guid=199281, pool_entry=10312, description='Dragonblight 189979, node 33' WHERE guid=63830; UPDATE gameobject SET guid=199280 WHERE guid=58745; UPDATE pool_gameobject SET guid=199280, pool_entry=10313, description='Dragonblight 189978, node 34' WHERE guid=58745; UPDATE pool_pool SET pool_id=10313, description='Dragonblight mineral, node 34' WHERE pool_id=5156; UPDATE pool_template SET entry=10313, description='Dragonblight mineral, node 34' WHERE entry=5156; UPDATE gameobject SET guid=199279 WHERE guid=63831; UPDATE pool_gameobject SET guid=199279, pool_entry=10313, description='Dragonblight 189979, node 34' WHERE guid=63831; UPDATE gameobject SET guid=199278 WHERE guid=63832; UPDATE pool_gameobject SET guid=199278, pool_entry=10314, description='Dragonblight 189979, node 35' WHERE guid=63832; UPDATE pool_pool SET pool_id=10314, description='Dragonblight mineral, node 35' WHERE pool_id=5157; UPDATE pool_template SET entry=10314, description='Dragonblight mineral, node 35' WHERE entry=5157; UPDATE gameobject SET guid=199277 WHERE guid=58746; UPDATE pool_gameobject SET guid=199277, pool_entry=10314, description='Dragonblight 189978, node 35' WHERE guid=58746; UPDATE gameobject SET guid=199276 WHERE guid=58749; UPDATE pool_gameobject SET guid=199276, pool_entry=10315, description='Dragonblight 189978, node 36' WHERE guid=58749; UPDATE pool_pool SET pool_id=10315, description='Dragonblight mineral, node 36' WHERE pool_id=5158; UPDATE pool_template SET entry=10315, description='Dragonblight mineral, node 36' WHERE entry=5158; UPDATE gameobject SET guid=199275 WHERE guid=63833; UPDATE pool_gameobject SET guid=199275, pool_entry=10315, description='Dragonblight 189979, node 36' WHERE guid=63833; UPDATE gameobject SET guid=199274 WHERE guid=58752; UPDATE pool_gameobject SET guid=199274, pool_entry=10316, description='Dragonblight 189978, node 37' WHERE guid=58752; UPDATE pool_pool SET pool_id=10316, description='Dragonblight mineral, node 37' WHERE pool_id=5159; UPDATE pool_template SET entry=10316, description='Dragonblight mineral, node 37' WHERE entry=5159; UPDATE gameobject SET guid=199273 WHERE guid=63834; UPDATE pool_gameobject SET guid=199273, pool_entry=10316, description='Dragonblight 189979, node 37' WHERE guid=63834; UPDATE gameobject SET guid=199272 WHERE guid=58754; UPDATE pool_gameobject SET guid=199272, pool_entry=10317, description='Dragonblight 189978, node 38' WHERE guid=58754; UPDATE pool_pool SET pool_id=10317, description='Dragonblight mineral, node 38' WHERE pool_id=5160; UPDATE pool_template SET entry=10317, description='Dragonblight mineral, node 38' WHERE entry=5160; UPDATE gameobject SET guid=199271 WHERE guid=63835; UPDATE pool_gameobject SET guid=199271, pool_entry=10317, description='Dragonblight 189979, node 38' WHERE guid=63835; UPDATE gameobject SET guid=199270 WHERE guid=58755; UPDATE pool_gameobject SET guid=199270, pool_entry=10318, description='Dragonblight 189978, node 39' WHERE guid=58755; UPDATE pool_pool SET pool_id=10318, description='Dragonblight mineral, node 39' WHERE pool_id=5161; UPDATE pool_template SET entry=10318, description='Dragonblight mineral, node 39' WHERE entry=5161; UPDATE gameobject SET guid=199269 WHERE guid=63838; UPDATE pool_gameobject SET guid=199269, pool_entry=10318, description='Dragonblight 189979, node 39' WHERE guid=63838; UPDATE gameobject SET guid=199268 WHERE guid=58760; UPDATE pool_gameobject SET guid=199268, pool_entry=10319, description='Dragonblight 189978, node 40' WHERE guid=58760; UPDATE pool_pool SET pool_id=10319, description='Dragonblight mineral, node 40' WHERE pool_id=5162; UPDATE pool_template SET entry=10319, description='Dragonblight mineral, node 40' WHERE entry=5162; UPDATE gameobject SET guid=199267 WHERE guid=63839; UPDATE pool_gameobject SET guid=199267, pool_entry=10319, description='Dragonblight 189979, node 40' WHERE guid=63839; UPDATE gameobject SET guid=199266 WHERE guid=58761; UPDATE pool_gameobject SET guid=199266, pool_entry=10320, description='Dragonblight 189978, node 41' WHERE guid=58761; UPDATE pool_pool SET pool_id=10320, description='Dragonblight mineral, node 41' WHERE pool_id=5163; UPDATE pool_template SET entry=10320, description='Dragonblight mineral, node 41' WHERE entry=5163; UPDATE gameobject SET guid=199265 WHERE guid=63840; UPDATE pool_gameobject SET guid=199265, pool_entry=10320, description='Dragonblight 189979, node 41' WHERE guid=63840; UPDATE gameobject SET guid=199264 WHERE guid=58763; UPDATE pool_gameobject SET guid=199264, pool_entry=10321, description='Dragonblight 189978, node 42' WHERE guid=58763; UPDATE pool_pool SET pool_id=10321, description='Dragonblight mineral, node 42' WHERE pool_id=5164; UPDATE pool_template SET entry=10321, description='Dragonblight mineral, node 42' WHERE entry=5164; UPDATE gameobject SET guid=199263 WHERE guid=63841; UPDATE pool_gameobject SET guid=199263, pool_entry=10321, description='Dragonblight 189979, node 42' WHERE guid=63841; UPDATE gameobject SET guid=199262 WHERE guid=63842; UPDATE pool_gameobject SET guid=199262, pool_entry=10322, description='Dragonblight 189979, node 43' WHERE guid=63842; UPDATE pool_pool SET pool_id=10322, description='Dragonblight mineral, node 43' WHERE pool_id=5165; UPDATE pool_template SET entry=10322, description='Dragonblight mineral, node 43' WHERE entry=5165; UPDATE gameobject SET guid=199261 WHERE guid=58765; UPDATE pool_gameobject SET guid=199261, pool_entry=10322, description='Dragonblight 189978, node 43' WHERE guid=58765; UPDATE gameobject SET guid=199260 WHERE guid=58766; UPDATE pool_gameobject SET guid=199260, pool_entry=10323, description='Dragonblight 189978, node 44' WHERE guid=58766; UPDATE pool_pool SET pool_id=10323, description='Dragonblight mineral, node 44' WHERE pool_id=5166; UPDATE pool_template SET entry=10323, description='Dragonblight mineral, node 44' WHERE entry=5166; UPDATE gameobject SET guid=199259 WHERE guid=63846; UPDATE pool_gameobject SET guid=199259, pool_entry=10323, description='Dragonblight 189979, node 44' WHERE guid=63846; UPDATE gameobject SET guid=199258 WHERE guid=59009; UPDATE pool_gameobject SET guid=199258, pool_entry=10324, description='Dragonblight 189978, node 45' WHERE guid=59009; UPDATE pool_pool SET pool_id=10324, description='Dragonblight mineral, node 45' WHERE pool_id=5167; UPDATE pool_template SET entry=10324, description='Dragonblight mineral, node 45' WHERE entry=5167; UPDATE gameobject SET guid=199257 WHERE guid=63847; UPDATE pool_gameobject SET guid=199257, pool_entry=10324, description='Dragonblight 189979, node 45' WHERE guid=63847; UPDATE gameobject SET guid=199256 WHERE guid=59287; UPDATE pool_gameobject SET guid=199256, pool_entry=10325, description='Dragonblight 189978, node 46' WHERE guid=59287; UPDATE pool_pool SET pool_id=10325, description='Dragonblight mineral, node 46' WHERE pool_id=5168; UPDATE pool_template SET entry=10325, description='Dragonblight mineral, node 46' WHERE entry=5168; UPDATE gameobject SET guid=199255 WHERE guid=63848; UPDATE pool_gameobject SET guid=199255, pool_entry=10325, description='Dragonblight 189979, node 46' WHERE guid=63848; UPDATE gameobject SET guid=199254 WHERE guid=60116; UPDATE pool_gameobject SET guid=199254, pool_entry=10326, description='Dragonblight 189978, node 47' WHERE guid=60116; UPDATE pool_pool SET pool_id=10326, description='Dragonblight mineral, node 47' WHERE pool_id=5169; UPDATE pool_template SET entry=10326, description='Dragonblight mineral, node 47' WHERE entry=5169; UPDATE gameobject SET guid=199253 WHERE guid=63849; UPDATE pool_gameobject SET guid=199253, pool_entry=10326, description='Dragonblight 189979, node 47' WHERE guid=63849; UPDATE gameobject SET guid=199252 WHERE guid=60141; UPDATE pool_gameobject SET guid=199252, pool_entry=10327, description='Dragonblight 189978, node 48' WHERE guid=60141; UPDATE pool_pool SET pool_id=10327, description='Dragonblight mineral, node 48' WHERE pool_id=5170; UPDATE pool_template SET entry=10327, description='Dragonblight mineral, node 48' WHERE entry=5170; UPDATE gameobject SET guid=199251 WHERE guid=63851; UPDATE pool_gameobject SET guid=199251, pool_entry=10327, description='Dragonblight 189979, node 48' WHERE guid=63851; UPDATE gameobject SET guid=199250 WHERE guid=60159; UPDATE pool_gameobject SET guid=199250, pool_entry=10328, description='Dragonblight 189978, node 49' WHERE guid=60159; UPDATE pool_pool SET pool_id=10328, description='Dragonblight mineral, node 49' WHERE pool_id=5171; UPDATE pool_template SET entry=10328, description='Dragonblight mineral, node 49' WHERE entry=5171; UPDATE gameobject SET guid=199249 WHERE guid=63852; UPDATE pool_gameobject SET guid=199249, pool_entry=10328, description='Dragonblight 189979, node 49' WHERE guid=63852; UPDATE gameobject SET guid=199248 WHERE guid=60161; UPDATE pool_gameobject SET guid=199248, pool_entry=10329, description='Dragonblight 189978, node 50' WHERE guid=60161; UPDATE pool_pool SET pool_id=10329, description='Dragonblight mineral, node 50' WHERE pool_id=5172; UPDATE pool_template SET entry=10329, description='Dragonblight mineral, node 50' WHERE entry=5172; UPDATE gameobject SET guid=199247 WHERE guid=63855; UPDATE pool_gameobject SET guid=199247, pool_entry=10329, description='Dragonblight 189979, node 50' WHERE guid=63855; UPDATE gameobject SET guid=199246 WHERE guid=63862; UPDATE pool_gameobject SET guid=199246, pool_entry=10330, description='Dragonblight 189979, node 51' WHERE guid=63862; UPDATE pool_pool SET pool_id=10330, description='Dragonblight mineral, node 51' WHERE pool_id=5173; UPDATE pool_template SET entry=10330, description='Dragonblight mineral, node 51' WHERE entry=5173; UPDATE gameobject SET guid=199245 WHERE guid=60184; UPDATE pool_gameobject SET guid=199245, pool_entry=10330, description='Dragonblight 189978, node 51' WHERE guid=60184; UPDATE gameobject SET guid=199244 WHERE guid=60185; UPDATE pool_gameobject SET guid=199244, pool_entry=10331, description='Dragonblight 189978, node 52' WHERE guid=60185; UPDATE pool_pool SET pool_id=10331, description='Dragonblight mineral, node 52' WHERE pool_id=5174; UPDATE pool_template SET entry=10331, description='Dragonblight mineral, node 52' WHERE entry=5174; UPDATE gameobject SET guid=199243 WHERE guid=63864; UPDATE pool_gameobject SET guid=199243, pool_entry=10331, description='Dragonblight 189979, node 52' WHERE guid=63864; UPDATE gameobject SET guid=199242 WHERE guid=60186; UPDATE pool_gameobject SET guid=199242, pool_entry=10332, description='Dragonblight 189978, node 53' WHERE guid=60186; UPDATE pool_pool SET pool_id=10332, description='Dragonblight mineral, node 53' WHERE pool_id=5175; UPDATE pool_template SET entry=10332, description='Dragonblight mineral, node 53' WHERE entry=5175; UPDATE gameobject SET guid=199241 WHERE guid=63866; UPDATE pool_gameobject SET guid=199241, pool_entry=10332, description='Dragonblight 189979, node 53' WHERE guid=63866; UPDATE gameobject SET guid=199240 WHERE guid=60188; UPDATE pool_gameobject SET guid=199240, pool_entry=10333, description='Dragonblight 189978, node 54' WHERE guid=60188; UPDATE pool_pool SET pool_id=10333, description='Dragonblight mineral, node 54' WHERE pool_id=5176; UPDATE pool_template SET entry=10333, description='Dragonblight mineral, node 54' WHERE entry=5176; UPDATE gameobject SET guid=199239 WHERE guid=63867; UPDATE pool_gameobject SET guid=199239, pool_entry=10333, description='Dragonblight 189979, node 54' WHERE guid=63867; UPDATE gameobject SET guid=199238 WHERE guid=60596; UPDATE pool_gameobject SET guid=199238, pool_entry=10334, description='Dragonblight 189978, node 55' WHERE guid=60596; UPDATE pool_pool SET pool_id=10334, description='Dragonblight mineral, node 55' WHERE pool_id=5177; UPDATE pool_template SET entry=10334, description='Dragonblight mineral, node 55' WHERE entry=5177; UPDATE gameobject SET guid=199237 WHERE guid=63868; UPDATE pool_gameobject SET guid=199237, pool_entry=10334, description='Dragonblight 189979, node 55' WHERE guid=63868; UPDATE gameobject SET guid=199236 WHERE guid=61077; UPDATE pool_gameobject SET guid=199236, pool_entry=10335, description='Dragonblight 189978, node 56' WHERE guid=61077; UPDATE pool_pool SET pool_id=10335, description='Dragonblight mineral, node 56' WHERE pool_id=5178; UPDATE pool_template SET entry=10335, description='Dragonblight mineral, node 56' WHERE entry=5178; UPDATE gameobject SET guid=199235 WHERE guid=63870; UPDATE pool_gameobject SET guid=199235, pool_entry=10335, description='Dragonblight 189979, node 56' WHERE guid=63870; UPDATE gameobject SET guid=199234 WHERE guid=61079; UPDATE pool_gameobject SET guid=199234, pool_entry=10336, description='Dragonblight 189978, node 57' WHERE guid=61079; UPDATE pool_pool SET pool_id=10336, description='Dragonblight mineral, node 57' WHERE pool_id=5179; UPDATE pool_template SET entry=10336, description='Dragonblight mineral, node 57' WHERE entry=5179; UPDATE gameobject SET guid=199233 WHERE guid=63872; UPDATE pool_gameobject SET guid=199233, pool_entry=10336, description='Dragonblight 189979, node 57' WHERE guid=63872; UPDATE gameobject SET guid=199232 WHERE guid=61818; UPDATE pool_gameobject SET guid=199232, pool_entry=10337, description='Dragonblight 189978, node 58' WHERE guid=61818; UPDATE pool_pool SET pool_id=10337, description='Dragonblight mineral, node 58' WHERE pool_id=5180; UPDATE pool_template SET entry=10337, description='Dragonblight mineral, node 58' WHERE entry=5180; UPDATE gameobject SET guid=199231 WHERE guid=63875; UPDATE pool_gameobject SET guid=199231, pool_entry=10337, description='Dragonblight 189979, node 58' WHERE guid=63875; UPDATE gameobject SET guid=199230 WHERE guid=63876; UPDATE pool_gameobject SET guid=199230, pool_entry=10338, description='Dragonblight 189979, node 59' WHERE guid=63876; UPDATE pool_pool SET pool_id=10338, description='Dragonblight mineral, node 59' WHERE pool_id=5239; UPDATE pool_template SET entry=10338, description='Dragonblight mineral, node 59' WHERE entry=5239; UPDATE gameobject SET guid=199229 WHERE guid=61929; UPDATE pool_gameobject SET guid=199229, pool_entry=10338, description='Dragonblight 189978, node 59' WHERE guid=61929; UPDATE gameobject SET guid=199228 WHERE guid=66841; UPDATE pool_gameobject SET guid=199228, pool_entry=10339, description='Dragonblight 189978, node 60' WHERE guid=66841; UPDATE pool_pool SET pool_id=10339, description='Dragonblight mineral, node 60' WHERE pool_id=5244; UPDATE pool_template SET entry=10339, description='Dragonblight mineral, node 60' WHERE entry=5244; UPDATE gameobject SET guid=199227 WHERE guid=66894; UPDATE pool_gameobject SET guid=199227, pool_entry=10339, description='Dragonblight 189979, node 60' WHERE guid=66894; UPDATE gameobject SET guid=199226 WHERE guid=66844; UPDATE pool_gameobject SET guid=199226, pool_entry=10340, description='Dragonblight 189978, node 61' WHERE guid=66844; UPDATE pool_pool SET pool_id=10340, description='Dragonblight mineral, node 61' WHERE pool_id=5245; UPDATE pool_template SET entry=10340, description='Dragonblight mineral, node 61' WHERE entry=5245; UPDATE gameobject SET guid=199225 WHERE guid=66897; UPDATE pool_gameobject SET guid=199225, pool_entry=10340, description='Dragonblight 189979, node 61' WHERE guid=66897; UPDATE gameobject SET guid=199224 WHERE guid=60173; UPDATE pool_gameobject SET guid=199224, pool_entry=10341, description='Dragonblight 189978, node 62' WHERE guid=60173; UPDATE pool_pool SET pool_id=10341, description='Dragonblight mineral, node 62' WHERE pool_id=5246; UPDATE pool_template SET entry=10341, description='Dragonblight mineral, node 62' WHERE entry=5246; UPDATE gameobject SET guid=199223 WHERE guid=66848; UPDATE pool_gameobject SET guid=199223, pool_entry=10341, description='Dragonblight 189979, node 62' WHERE guid=66848; UPDATE gameobject SET guid=199222 WHERE guid=66849; UPDATE pool_gameobject SET guid=199222, pool_entry=10342, description='Dragonblight 189978, node 63' WHERE guid=66849; UPDATE pool_pool SET pool_id=10342, description='Dragonblight mineral, node 63' WHERE pool_id=5247; UPDATE pool_template SET entry=10342, description='Dragonblight mineral, node 63' WHERE entry=5247; UPDATE gameobject SET guid=199221 WHERE guid=66902; UPDATE pool_gameobject SET guid=199221, pool_entry=10342, description='Dragonblight 189979, node 63' WHERE guid=66902; UPDATE gameobject SET guid=199220 WHERE guid=66850; UPDATE pool_gameobject SET guid=199220, pool_entry=10343, description='Dragonblight 189978, node 64' WHERE guid=66850; UPDATE pool_pool SET pool_id=10343, description='Dragonblight mineral, node 64' WHERE pool_id=5248; UPDATE pool_template SET entry=10343, description='Dragonblight mineral, node 64' WHERE entry=5248; UPDATE gameobject SET guid=199219 WHERE guid=66903; UPDATE pool_gameobject SET guid=199219, pool_entry=10343, description='Dragonblight 189979, node 64' WHERE guid=66903; UPDATE gameobject SET guid=199218 WHERE guid=66846; UPDATE pool_gameobject SET guid=199218, pool_entry=10344, description='Dragonblight 189978, node 65' WHERE guid=66846; UPDATE pool_pool SET pool_id=10344, description='Dragonblight mineral, node 65' WHERE pool_id=5249; UPDATE pool_template SET entry=10344, description='Dragonblight mineral, node 65' WHERE entry=5249; UPDATE gameobject SET guid=199217 WHERE guid=66899; UPDATE pool_gameobject SET guid=199217, pool_entry=10344, description='Dragonblight 189979, node 65' WHERE guid=66899; UPDATE gameobject SET guid=199216 WHERE guid=66854; UPDATE pool_gameobject SET guid=199216, pool_entry=10345, description='Dragonblight 189978, node 66' WHERE guid=66854; UPDATE pool_pool SET pool_id=10345, description='Dragonblight mineral, node 66' WHERE pool_id=5250; UPDATE pool_template SET entry=10345, description='Dragonblight mineral, node 66' WHERE entry=5250; UPDATE gameobject SET guid=199215 WHERE guid=66907; UPDATE pool_gameobject SET guid=199215, pool_entry=10345, description='Dragonblight 189979, node 66' WHERE guid=66907; UPDATE gameobject SET guid=199214 WHERE guid=66908; UPDATE pool_gameobject SET guid=199214, pool_entry=10346, description='Dragonblight 189979, node 67' WHERE guid=66908; UPDATE pool_pool SET pool_id=10346, description='Dragonblight mineral, node 67' WHERE pool_id=5251; UPDATE pool_template SET entry=10346, description='Dragonblight mineral, node 67' WHERE entry=5251; UPDATE gameobject SET guid=199213 WHERE guid=66855; UPDATE pool_gameobject SET guid=199213, pool_entry=10346, description='Dragonblight 189978, node 67' WHERE guid=66855; UPDATE gameobject SET guid=199212 WHERE guid=66859; UPDATE pool_gameobject SET guid=199212, pool_entry=10347, description='Dragonblight 189978, node 68' WHERE guid=66859; UPDATE pool_pool SET pool_id=10347, description='Dragonblight mineral, node 68' WHERE pool_id=5252; UPDATE pool_template SET entry=10347, description='Dragonblight mineral, node 68' WHERE entry=5252; UPDATE gameobject SET guid=199211 WHERE guid=66912; UPDATE pool_gameobject SET guid=199211, pool_entry=10347, description='Dragonblight 189979, node 68' WHERE guid=66912; UPDATE gameobject SET guid=199210 WHERE guid=66878; UPDATE pool_gameobject SET guid=199210, pool_entry=10348, description='Dragonblight 189978, node 69' WHERE guid=66878; UPDATE pool_pool SET pool_id=10348, description='Dragonblight mineral, node 69' WHERE pool_id=5253; UPDATE pool_template SET entry=10348, description='Dragonblight mineral, node 69' WHERE entry=5253; UPDATE gameobject SET guid=199209 WHERE guid=66931; UPDATE pool_gameobject SET guid=199209, pool_entry=10348, description='Dragonblight 189979, node 69' WHERE guid=66931; UPDATE gameobject SET guid=199208 WHERE guid=66879; UPDATE pool_gameobject SET guid=199208, pool_entry=10349, description='Dragonblight 189978, node 70' WHERE guid=66879; UPDATE pool_pool SET pool_id=10349, description='Dragonblight mineral, node 70' WHERE pool_id=5254; UPDATE pool_template SET entry=10349, description='Dragonblight mineral, node 70' WHERE entry=5254; UPDATE gameobject SET guid=199207 WHERE guid=66932; UPDATE pool_gameobject SET guid=199207, pool_entry=10349, description='Dragonblight 189979, node 70' WHERE guid=66932; UPDATE gameobject SET guid=199206 WHERE guid=66883; UPDATE pool_gameobject SET guid=199206, pool_entry=10350, description='Dragonblight 189978, node 71' WHERE guid=66883; UPDATE pool_pool SET pool_id=10350, description='Dragonblight mineral, node 71' WHERE pool_id=5255; UPDATE pool_template SET entry=10350, description='Dragonblight mineral, node 71' WHERE entry=5255; UPDATE gameobject SET guid=199205 WHERE guid=66936; UPDATE pool_gameobject SET guid=199205, pool_entry=10350, description='Dragonblight 189979, node 71' WHERE guid=66936; -- grizzly hills UPDATE gameobject SET guid=199204 WHERE guid=56163; UPDATE pool_gameobject SET guid=199204, pool_entry=10351, description='Grizzly Hills 189978, node 1' WHERE guid=56163; UPDATE pool_pool SET pool_id=10351, description='Grizzly Hills mineral, node 1' WHERE pool_id=5182; UPDATE pool_template SET entry=10351, description='Grizzly Hills mineral, node 1' WHERE entry=5182; UPDATE gameobject SET guid=199203 WHERE guid=61085; UPDATE pool_gameobject SET guid=199203, pool_entry=10351, description='Grizzly Hills 189979, node 1' WHERE guid=61085; UPDATE gameobject SET guid=199202 WHERE guid=56167; UPDATE pool_gameobject SET guid=199202, pool_entry=10352, description='Grizzly Hills 189978, node 2' WHERE guid=56167; UPDATE pool_pool SET pool_id=10352, description='Grizzly Hills mineral, node 2' WHERE pool_id=5183; UPDATE pool_template SET entry=10352, description='Grizzly Hills mineral, node 2' WHERE entry=5183; UPDATE gameobject SET guid=199201 WHERE guid=61152; UPDATE pool_gameobject SET guid=199201, pool_entry=10352, description='Grizzly Hills 189979, node 2' WHERE guid=61152; UPDATE gameobject SET guid=199200 WHERE guid=56172; UPDATE pool_gameobject SET guid=199200, pool_entry=10353, description='Grizzly Hills 189978, node 3' WHERE guid=56172; UPDATE pool_pool SET pool_id=10353, description='Grizzly Hills mineral, node 3' WHERE pool_id=5184; UPDATE pool_template SET entry=10353, description='Grizzly Hills mineral, node 3' WHERE entry=5184; UPDATE gameobject SET guid=199199 WHERE guid=61153; UPDATE pool_gameobject SET guid=199199, pool_entry=10353, description='Grizzly Hills 189979, node 3' WHERE guid=61153; UPDATE gameobject SET guid=199198 WHERE guid=56176; UPDATE pool_gameobject SET guid=199198, pool_entry=10354, description='Grizzly Hills 189978, node 4' WHERE guid=56176; UPDATE pool_pool SET pool_id=10354, description='Grizzly Hills mineral, node 4' WHERE pool_id=5185; UPDATE pool_template SET entry=10354, description='Grizzly Hills mineral, node 4' WHERE entry=5185; UPDATE gameobject SET guid=199197 WHERE guid=61163; UPDATE pool_gameobject SET guid=199197, pool_entry=10354, description='Grizzly Hills 189979, node 4' WHERE guid=61163; UPDATE gameobject SET guid=199196 WHERE guid=56177; UPDATE pool_gameobject SET guid=199196, pool_entry=10355, description='Grizzly Hills 189978, node 5' WHERE guid=56177; UPDATE pool_pool SET pool_id=10355, description='Grizzly Hills mineral, node 5' WHERE pool_id=5186; UPDATE pool_template SET entry=10355, description='Grizzly Hills mineral, node 5' WHERE entry=5186; UPDATE gameobject SET guid=199195 WHERE guid=63879; UPDATE pool_gameobject SET guid=199195, pool_entry=10355, description='Grizzly Hills 189979, node 5' WHERE guid=63879; UPDATE gameobject SET guid=199194 WHERE guid=56179; UPDATE pool_gameobject SET guid=199194, pool_entry=10356, description='Grizzly Hills 189978, node 6' WHERE guid=56179; UPDATE pool_pool SET pool_id=10356, description='Grizzly Hills mineral, node 6' WHERE pool_id=5187; UPDATE pool_template SET entry=10356, description='Grizzly Hills mineral, node 6' WHERE entry=5187; UPDATE gameobject SET guid=199193 WHERE guid=63880; UPDATE pool_gameobject SET guid=199193, pool_entry=10356, description='Grizzly Hills 189979, node 6' WHERE guid=63880; UPDATE gameobject SET guid=199192 WHERE guid=56183; UPDATE pool_gameobject SET guid=199192, pool_entry=10357, description='Grizzly Hills 189978, node 7' WHERE guid=56183; UPDATE pool_pool SET pool_id=10357, description='Grizzly Hills mineral, node 7' WHERE pool_id=5188; UPDATE pool_template SET entry=10357, description='Grizzly Hills mineral, node 7' WHERE entry=5188; UPDATE gameobject SET guid=199191 WHERE guid=63881; UPDATE pool_gameobject SET guid=199191, pool_entry=10357, description='Grizzly Hills 189979, node 7' WHERE guid=63881; UPDATE gameobject SET guid=199190 WHERE guid=56213; UPDATE pool_gameobject SET guid=199190, pool_entry=10358, description='Grizzly Hills 189978, node 8' WHERE guid=56213; UPDATE pool_pool SET pool_id=10358, description='Grizzly Hills mineral, node 8' WHERE pool_id=5189; UPDATE pool_template SET entry=10358, description='Grizzly Hills mineral, node 8' WHERE entry=5189; UPDATE gameobject SET guid=199189 WHERE guid=63883; UPDATE pool_gameobject SET guid=199189, pool_entry=10358, description='Grizzly Hills 189979, node 8' WHERE guid=63883; UPDATE gameobject SET guid=199188 WHERE guid=56423; UPDATE pool_gameobject SET guid=199188, pool_entry=10359, description='Grizzly Hills 189978, node 9' WHERE guid=56423; UPDATE pool_pool SET pool_id=10359, description='Grizzly Hills mineral, node 9' WHERE pool_id=5190; UPDATE pool_template SET entry=10359, description='Grizzly Hills mineral, node 9' WHERE entry=5190; UPDATE gameobject SET guid=199187 WHERE guid=63884; UPDATE pool_gameobject SET guid=199187, pool_entry=10359, description='Grizzly Hills 189979, node 9' WHERE guid=63884; UPDATE gameobject SET guid=199186 WHERE guid=58110; UPDATE pool_gameobject SET guid=199186, pool_entry=10360, description='Grizzly Hills 189978, node 10' WHERE guid=58110; UPDATE pool_pool SET pool_id=10360, description='Grizzly Hills mineral, node 10' WHERE pool_id=5191; UPDATE pool_template SET entry=10360, description='Grizzly Hills mineral, node 10' WHERE entry=5191; UPDATE gameobject SET guid=199185 WHERE guid=63887; UPDATE pool_gameobject SET guid=199185, pool_entry=10360, description='Grizzly Hills 189979, node 10' WHERE guid=63887; UPDATE gameobject SET guid=199184 WHERE guid=58713; UPDATE pool_gameobject SET guid=199184, pool_entry=10361, description='Grizzly Hills 189978, node 11' WHERE guid=58713; UPDATE pool_pool SET pool_id=10361, description='Grizzly Hills mineral, node 11' WHERE pool_id=5192; UPDATE pool_template SET entry=10361, description='Grizzly Hills mineral, node 11' WHERE entry=5192; UPDATE gameobject SET guid=199183 WHERE guid=63888; UPDATE pool_gameobject SET guid=199183, pool_entry=10361, description='Grizzly Hills 189979, node 11' WHERE guid=63888; UPDATE gameobject SET guid=199182 WHERE guid=59196; UPDATE pool_gameobject SET guid=199182, pool_entry=10362, description='Grizzly Hills 189978, node 12' WHERE guid=59196; UPDATE pool_pool SET pool_id=10362, description='Grizzly Hills mineral, node 12' WHERE pool_id=5193; UPDATE pool_template SET entry=10362, description='Grizzly Hills mineral, node 12' WHERE entry=5193; UPDATE gameobject SET guid=199181 WHERE guid=63893; UPDATE pool_gameobject SET guid=199181, pool_entry=10362, description='Grizzly Hills 189979, node 12' WHERE guid=63893; UPDATE gameobject SET guid=199180 WHERE guid=59447; UPDATE pool_gameobject SET guid=199180, pool_entry=10363, description='Grizzly Hills 189978, node 13' WHERE guid=59447; UPDATE pool_pool SET pool_id=10363, description='Grizzly Hills mineral, node 13' WHERE pool_id=5194; UPDATE pool_template SET entry=10363, description='Grizzly Hills mineral, node 13' WHERE entry=5194; UPDATE gameobject SET guid=199179 WHERE guid=63895; UPDATE pool_gameobject SET guid=199179, pool_entry=10363, description='Grizzly Hills 189979, node 13' WHERE guid=63895; UPDATE gameobject SET guid=199178 WHERE guid=59454; UPDATE pool_gameobject SET guid=199178, pool_entry=10364, description='Grizzly Hills 189978, node 14' WHERE guid=59454; UPDATE pool_pool SET pool_id=10364, description='Grizzly Hills mineral, node 14' WHERE pool_id=5195; UPDATE pool_template SET entry=10364, description='Grizzly Hills mineral, node 14' WHERE entry=5195; UPDATE gameobject SET guid=199177 WHERE guid=63897; UPDATE pool_gameobject SET guid=199177, pool_entry=10364, description='Grizzly Hills 189979, node 14' WHERE guid=63897; UPDATE gameobject SET guid=199176 WHERE guid=59591; UPDATE pool_gameobject SET guid=199176, pool_entry=10365, description='Grizzly Hills 189978, node 15' WHERE guid=59591; UPDATE pool_pool SET pool_id=10365, description='Grizzly Hills mineral, node 15' WHERE pool_id=5196; UPDATE pool_template SET entry=10365, description='Grizzly Hills mineral, node 15' WHERE entry=5196; UPDATE gameobject SET guid=199175 WHERE guid=63899; UPDATE pool_gameobject SET guid=199175, pool_entry=10365, description='Grizzly Hills 189979, node 15' WHERE guid=63899; UPDATE gameobject SET guid=199174 WHERE guid=60140; UPDATE pool_gameobject SET guid=199174, pool_entry=10366, description='Grizzly Hills 189978, node 16' WHERE guid=60140; UPDATE pool_pool SET pool_id=10366, description='Grizzly Hills mineral, node 16' WHERE pool_id=5197; UPDATE pool_template SET entry=10366, description='Grizzly Hills mineral, node 16' WHERE entry=5197; UPDATE gameobject SET guid=199173 WHERE guid=63904; UPDATE pool_gameobject SET guid=199173, pool_entry=10366, description='Grizzly Hills 189979, node 16' WHERE guid=63904; UPDATE gameobject SET guid=199172 WHERE guid=60145; UPDATE pool_gameobject SET guid=199172, pool_entry=10367, description='Grizzly Hills 189978, node 17' WHERE guid=60145; UPDATE pool_pool SET pool_id=10367, description='Grizzly Hills mineral, node 17' WHERE pool_id=5198; UPDATE pool_template SET entry=10367, description='Grizzly Hills mineral, node 17' WHERE entry=5198; UPDATE gameobject SET guid=199171 WHERE guid=63906; UPDATE pool_gameobject SET guid=199171, pool_entry=10367, description='Grizzly Hills 189979, node 17' WHERE guid=63906; UPDATE gameobject SET guid=199170 WHERE guid=60156; UPDATE pool_gameobject SET guid=199170, pool_entry=10368, description='Grizzly Hills 189978, node 18' WHERE guid=60156; UPDATE pool_pool SET pool_id=10368, description='Grizzly Hills mineral, node 18' WHERE pool_id=5199; UPDATE pool_template SET entry=10368, description='Grizzly Hills mineral, node 18' WHERE entry=5199; UPDATE gameobject SET guid=199169 WHERE guid=63907; UPDATE pool_gameobject SET guid=199169, pool_entry=10368, description='Grizzly Hills 189979, node 18' WHERE guid=63907; UPDATE gameobject SET guid=199168 WHERE guid=60157; UPDATE pool_gameobject SET guid=199168, pool_entry=10369, description='Grizzly Hills 189978, node 19' WHERE guid=60157; UPDATE pool_pool SET pool_id=10369, description='Grizzly Hills mineral, node 19' WHERE pool_id=5200; UPDATE pool_template SET entry=10369, description='Grizzly Hills mineral, node 19' WHERE entry=5200; UPDATE gameobject SET guid=199167 WHERE guid=63908; UPDATE pool_gameobject SET guid=199167, pool_entry=10369, description='Grizzly Hills 189979, node 19' WHERE guid=63908; UPDATE gameobject SET guid=199166 WHERE guid=60158; UPDATE pool_gameobject SET guid=199166, pool_entry=10370, description='Grizzly Hills 189978, node 20' WHERE guid=60158; UPDATE pool_pool SET pool_id=10370, description='Grizzly Hills mineral, node 20' WHERE pool_id=5201; UPDATE pool_template SET entry=10370, description='Grizzly Hills mineral, node 20' WHERE entry=5201; UPDATE gameobject SET guid=199165 WHERE guid=63909; UPDATE pool_gameobject SET guid=199165, pool_entry=10370, description='Grizzly Hills 189979, node 20' WHERE guid=63909; UPDATE gameobject SET guid=199164 WHERE guid=60162; UPDATE pool_gameobject SET guid=199164, pool_entry=10371, description='Grizzly Hills 189978, node 21' WHERE guid=60162; UPDATE pool_pool SET pool_id=10371, description='Grizzly Hills mineral, node 21' WHERE pool_id=5202; UPDATE pool_template SET entry=10371, description='Grizzly Hills mineral, node 21' WHERE entry=5202; UPDATE gameobject SET guid=199163 WHERE guid=63911; UPDATE pool_gameobject SET guid=199163, pool_entry=10371, description='Grizzly Hills 189979, node 21' WHERE guid=63911; UPDATE gameobject SET guid=199162 WHERE guid=60163; UPDATE pool_gameobject SET guid=199162, pool_entry=10372, description='Grizzly Hills 189978, node 22' WHERE guid=60163; UPDATE pool_pool SET pool_id=10372, description='Grizzly Hills mineral, node 22' WHERE pool_id=5203; UPDATE pool_template SET entry=10372, description='Grizzly Hills mineral, node 22' WHERE entry=5203; UPDATE gameobject SET guid=199161 WHERE guid=63912; UPDATE pool_gameobject SET guid=199161, pool_entry=10372, description='Grizzly Hills 189979, node 22' WHERE guid=63912; UPDATE gameobject SET guid=199160 WHERE guid=60166; UPDATE pool_gameobject SET guid=199160, pool_entry=10373, description='Grizzly Hills 189978, node 23' WHERE guid=60166; UPDATE pool_pool SET pool_id=10373, description='Grizzly Hills mineral, node 23' WHERE pool_id=5204; UPDATE pool_template SET entry=10373, description='Grizzly Hills mineral, node 23' WHERE entry=5204; UPDATE gameobject SET guid=199159 WHERE guid=63916; UPDATE pool_gameobject SET guid=199159, pool_entry=10373, description='Grizzly Hills 189979, node 23' WHERE guid=63916; UPDATE gameobject SET guid=199158 WHERE guid=60179; UPDATE pool_gameobject SET guid=199158, pool_entry=10374, description='Grizzly Hills 189978, node 24' WHERE guid=60179; UPDATE pool_pool SET pool_id=10374, description='Grizzly Hills mineral, node 24' WHERE pool_id=5205; UPDATE pool_template SET entry=10374, description='Grizzly Hills mineral, node 24' WHERE entry=5205; UPDATE gameobject SET guid=199157 WHERE guid=63917; UPDATE pool_gameobject SET guid=199157, pool_entry=10374, description='Grizzly Hills 189979, node 24' WHERE guid=63917; UPDATE gameobject SET guid=199156 WHERE guid=60180; UPDATE pool_gameobject SET guid=199156, pool_entry=10375, description='Grizzly Hills 189978, node 25' WHERE guid=60180; UPDATE pool_pool SET pool_id=10375, description='Grizzly Hills mineral, node 25' WHERE pool_id=5206; UPDATE pool_template SET entry=10375, description='Grizzly Hills mineral, node 25' WHERE entry=5206; UPDATE gameobject SET guid=199155 WHERE guid=63919; UPDATE pool_gameobject SET guid=199155, pool_entry=10375, description='Grizzly Hills 189979, node 25' WHERE guid=63919; UPDATE gameobject SET guid=199154 WHERE guid=60181; UPDATE pool_gameobject SET guid=199154, pool_entry=10376, description='Grizzly Hills 189978, node 26' WHERE guid=60181; UPDATE pool_pool SET pool_id=10376, description='Grizzly Hills mineral, node 26' WHERE pool_id=5207; UPDATE pool_template SET entry=10376, description='Grizzly Hills mineral, node 26' WHERE entry=5207; UPDATE gameobject SET guid=199153 WHERE guid=63924; UPDATE pool_gameobject SET guid=199153, pool_entry=10376, description='Grizzly Hills 189979, node 26' WHERE guid=63924; UPDATE gameobject SET guid=199152 WHERE guid=60182; UPDATE pool_gameobject SET guid=199152, pool_entry=10377, description='Grizzly Hills 189978, node 27' WHERE guid=60182; UPDATE pool_pool SET pool_id=10377, description='Grizzly Hills mineral, node 27' WHERE pool_id=5208; UPDATE pool_template SET entry=10377, description='Grizzly Hills mineral, node 27' WHERE entry=5208; UPDATE gameobject SET guid=199151 WHERE guid=63928; UPDATE pool_gameobject SET guid=199151, pool_entry=10377, description='Grizzly Hills 189979, node 27' WHERE guid=63928; UPDATE gameobject SET guid=199150 WHERE guid=60183; UPDATE pool_gameobject SET guid=199150, pool_entry=10378, description='Grizzly Hills 189978, node 28' WHERE guid=60183; UPDATE pool_pool SET pool_id=10378, description='Grizzly Hills mineral, node 28' WHERE pool_id=5209; UPDATE pool_template SET entry=10378, description='Grizzly Hills mineral, node 28' WHERE entry=5209; UPDATE gameobject SET guid=199149 WHERE guid=63980; UPDATE pool_gameobject SET guid=199149, pool_entry=10378, description='Grizzly Hills 189979, node 28' WHERE guid=63980; UPDATE gameobject SET guid=199148 WHERE guid=56128; UPDATE pool_gameobject SET guid=199148, pool_entry=10379, description='Grizzly Hills 189978, node 29' WHERE guid=56128; UPDATE pool_pool SET pool_id=10379, description='Grizzly Hills mineral, node 29' WHERE pool_id=5210; UPDATE pool_template SET entry=10379, description='Grizzly Hills mineral, node 29' WHERE entry=5210; UPDATE gameobject SET guid=199147 WHERE guid=63981; UPDATE pool_gameobject SET guid=199147, pool_entry=10379, description='Grizzly Hills 189979, node 29' WHERE guid=63981; UPDATE gameobject SET guid=199146 WHERE guid=56175; UPDATE pool_gameobject SET guid=199146, pool_entry=10380, description='Grizzly Hills 189978, node 30' WHERE guid=56175; UPDATE pool_pool SET pool_id=10380, description='Grizzly Hills mineral, node 30' WHERE pool_id=5211; UPDATE pool_template SET entry=10380, description='Grizzly Hills mineral, node 30' WHERE entry=5211; UPDATE gameobject SET guid=199145 WHERE guid=63983; UPDATE pool_gameobject SET guid=199145, pool_entry=10380, description='Grizzly Hills 189979, node 30' WHERE guid=63983; UPDATE gameobject SET guid=199144 WHERE guid=56236; UPDATE pool_gameobject SET guid=199144, pool_entry=10381, description='Grizzly Hills 189978, node 31' WHERE guid=56236; UPDATE pool_pool SET pool_id=10381, description='Grizzly Hills mineral, node 31' WHERE pool_id=5212; UPDATE pool_template SET entry=10381, description='Grizzly Hills mineral, node 31' WHERE entry=5212; UPDATE gameobject SET guid=199143 WHERE guid=63984; UPDATE pool_gameobject SET guid=199143, pool_entry=10381, description='Grizzly Hills 189979, node 31' WHERE guid=63984; UPDATE gameobject SET guid=199142 WHERE guid=59193; UPDATE pool_gameobject SET guid=199142, pool_entry=10382, description='Grizzly Hills 189978, node 32' WHERE guid=59193; UPDATE pool_pool SET pool_id=10382, description='Grizzly Hills mineral, node 32' WHERE pool_id=5213; UPDATE pool_template SET entry=10382, description='Grizzly Hills mineral, node 32' WHERE entry=5213; UPDATE gameobject SET guid=199141 WHERE guid=63985; UPDATE pool_gameobject SET guid=199141, pool_entry=10382, description='Grizzly Hills 189979, node 32' WHERE guid=63985; UPDATE gameobject SET guid=199140 WHERE guid=59241; UPDATE pool_gameobject SET guid=199140, pool_entry=10383, description='Grizzly Hills 189978, node 33' WHERE guid=59241; UPDATE pool_pool SET pool_id=10383, description='Grizzly Hills mineral, node 33' WHERE pool_id=5214; UPDATE pool_template SET entry=10383, description='Grizzly Hills mineral, node 33' WHERE entry=5214; UPDATE gameobject SET guid=199139 WHERE guid=63986; UPDATE pool_gameobject SET guid=199139, pool_entry=10383, description='Grizzly Hills 189979, node 33' WHERE guid=63986; UPDATE gameobject SET guid=199138 WHERE guid=59590; UPDATE pool_gameobject SET guid=199138, pool_entry=10384, description='Grizzly Hills 189978, node 34' WHERE guid=59590; UPDATE pool_pool SET pool_id=10384, description='Grizzly Hills mineral, node 34' WHERE pool_id=5215; UPDATE pool_template SET entry=10384, description='Grizzly Hills mineral, node 34' WHERE entry=5215; UPDATE gameobject SET guid=199137 WHERE guid=63993; UPDATE pool_gameobject SET guid=199137, pool_entry=10384, description='Grizzly Hills 189979, node 34' WHERE guid=63993; UPDATE gameobject SET guid=199136 WHERE guid=61083; UPDATE pool_gameobject SET guid=199136, pool_entry=10385, description='Grizzly Hills 189978, node 35' WHERE guid=61083; UPDATE pool_pool SET pool_id=10385, description='Grizzly Hills mineral, node 35' WHERE pool_id=5216; UPDATE pool_template SET entry=10385, description='Grizzly Hills mineral, node 35' WHERE entry=5216; UPDATE gameobject SET guid=199135 WHERE guid=63995; UPDATE pool_gameobject SET guid=199135, pool_entry=10385, description='Grizzly Hills 189979, node 35' WHERE guid=63995; UPDATE gameobject SET guid=199134 WHERE guid=66840; UPDATE pool_gameobject SET guid=199134, pool_entry=10386, description='Grizzly Hills 189978, node 36' WHERE guid=66840; UPDATE pool_pool SET pool_id=10386, description='Grizzly Hills mineral, node 36' WHERE pool_id=5240; UPDATE pool_template SET entry=10386, description='Grizzly Hills mineral, node 36' WHERE entry=5240; UPDATE gameobject SET guid=199133 WHERE guid=66893; UPDATE pool_gameobject SET guid=199133, pool_entry=10386, description='Grizzly Hills 189979, node 36' WHERE guid=66893; UPDATE gameobject SET guid=199132 WHERE guid=66870; UPDATE pool_gameobject SET guid=199132, pool_entry=10387, description='Grizzly Hills 189978, node 37' WHERE guid=66870; UPDATE pool_pool SET pool_id=10387, description='Grizzly Hills mineral, node 37' WHERE pool_id=5241; UPDATE pool_template SET entry=10387, description='Grizzly Hills mineral, node 37' WHERE entry=5241; UPDATE gameobject SET guid=199131 WHERE guid=66923; UPDATE pool_gameobject SET guid=199131, pool_entry=10387, description='Grizzly Hills 189979, node 37' WHERE guid=66923; UPDATE gameobject SET guid=199130 WHERE guid=66871; UPDATE pool_gameobject SET guid=199130, pool_entry=10388, description='Grizzly Hills 189978, node 38' WHERE guid=66871; UPDATE pool_pool SET pool_id=10388, description='Grizzly Hills mineral, node 38' WHERE pool_id=5242; UPDATE pool_template SET entry=10388, description='Grizzly Hills mineral, node 38' WHERE entry=5242; UPDATE gameobject SET guid=199129 WHERE guid=66924; UPDATE pool_gameobject SET guid=199129, pool_entry=10388, description='Grizzly Hills 189979, node 38' WHERE guid=66924; UPDATE gameobject SET guid=199128 WHERE guid=66877; UPDATE pool_gameobject SET guid=199128, pool_entry=10389, description='Grizzly Hills 189978, node 39' WHERE guid=66877; UPDATE pool_pool SET pool_id=10389, description='Grizzly Hills mineral, node 39' WHERE pool_id=5243; UPDATE pool_template SET entry=10389, description='Grizzly Hills mineral, node 39' WHERE entry=5243; UPDATE gameobject SET guid=199127 WHERE guid=66930; UPDATE pool_gameobject SET guid=199127, pool_entry=10389, description='Grizzly Hills 189979, node 39' WHERE guid=66930; -- zul'drak UPDATE gameobject SET guid=199126 WHERE guid=56158; UPDATE pool_gameobject SET guid=199126, pool_entry=10390, description='ZulDrak 189978, node 1' WHERE guid=56158; UPDATE pool_pool SET pool_id=10390, description='ZulDrak mineral, node 1' WHERE pool_id=5217; UPDATE pool_template SET entry=10390, description='ZulDrak mineral, node 1' WHERE entry=5217; UPDATE gameobject SET guid=199125 WHERE guid=64009; UPDATE pool_gameobject SET guid=199125, pool_entry=10390, description='ZulDrak 189979, node 1' WHERE guid=64009; UPDATE gameobject SET guid=199124 WHERE guid=64922; UPDATE pool_gameobject SET guid=199124, pool_entry=10390, description='ZulDrak 189980, node 1' WHERE guid=64922; UPDATE gameobject SET guid=199123 WHERE guid=56185; UPDATE pool_gameobject SET guid=199123, pool_entry=10391, description='ZulDrak 189978, node 2' WHERE guid=56185; UPDATE pool_pool SET pool_id=10391, description='ZulDrak mineral, node 2' WHERE pool_id=5218; UPDATE pool_template SET entry=10391, description='ZulDrak mineral, node 2' WHERE entry=5218; UPDATE gameobject SET guid=199122 WHERE guid=64013; UPDATE pool_gameobject SET guid=199122, pool_entry=10391, description='ZulDrak 189979, node 2' WHERE guid=64013; UPDATE gameobject SET guid=199121 WHERE guid=64954; UPDATE pool_gameobject SET guid=199121, pool_entry=10391, description='ZulDrak 189980, node 2' WHERE guid=64954; UPDATE gameobject SET guid=199120 WHERE guid=56186; UPDATE pool_gameobject SET guid=199120, pool_entry=10392, description='ZulDrak 189978, node 3' WHERE guid=56186; UPDATE pool_pool SET pool_id=10392, description='ZulDrak mineral, node 3' WHERE pool_id=5219; UPDATE pool_template SET entry=10392, description='ZulDrak mineral, node 3' WHERE entry=5219; UPDATE gameobject SET guid=199119 WHERE guid=64017; UPDATE pool_gameobject SET guid=199119, pool_entry=10392, description='ZulDrak 189979, node 3' WHERE guid=64017; UPDATE gameobject SET guid=199118 WHERE guid=64956; UPDATE pool_gameobject SET guid=199118, pool_entry=10392, description='ZulDrak 189980, node 3' WHERE guid=64956; UPDATE gameobject SET guid=199117 WHERE guid=56187; UPDATE pool_gameobject SET guid=199117, pool_entry=10393, description='ZulDrak 189978, node 4' WHERE guid=56187; UPDATE pool_pool SET pool_id=10393, description='ZulDrak mineral, node 4' WHERE pool_id=5220; UPDATE pool_template SET entry=10393, description='ZulDrak mineral, node 4' WHERE entry=5220; UPDATE gameobject SET guid=199116 WHERE guid=64024; UPDATE pool_gameobject SET guid=199116, pool_entry=10393, description='ZulDrak 189979, node 4' WHERE guid=64024; UPDATE gameobject SET guid=199115 WHERE guid=64972; UPDATE pool_gameobject SET guid=199115, pool_entry=10393, description='ZulDrak 189980, node 4' WHERE guid=64972; UPDATE gameobject SET guid=199114 WHERE guid=64980; UPDATE pool_gameobject SET guid=199114, pool_entry=10394, description='ZulDrak 189980, node 5' WHERE guid=64980; UPDATE pool_pool SET pool_id=10394, description='ZulDrak mineral, node 5' WHERE pool_id=5221; UPDATE pool_template SET entry=10394, description='ZulDrak mineral, node 5' WHERE entry=5221; UPDATE gameobject SET guid=199113 WHERE guid=56188; UPDATE pool_gameobject SET guid=199113, pool_entry=10394, description='ZulDrak 189978, node 5' WHERE guid=56188; UPDATE gameobject SET guid=199112 WHERE guid=64030; UPDATE pool_gameobject SET guid=199112, pool_entry=10394, description='ZulDrak 189979, node 5' WHERE guid=64030; UPDATE gameobject SET guid=199111 WHERE guid=56189; UPDATE pool_gameobject SET guid=199111, pool_entry=10395, description='ZulDrak 189978, node 6' WHERE guid=56189; UPDATE pool_pool SET pool_id=10395, description='ZulDrak mineral, node 6' WHERE pool_id=5222; UPDATE pool_template SET entry=10395, description='ZulDrak mineral, node 6' WHERE entry=5222; UPDATE gameobject SET guid=199110 WHERE guid=64052; UPDATE pool_gameobject SET guid=199110, pool_entry=10395, description='ZulDrak 189979, node 6' WHERE guid=64052; UPDATE gameobject SET guid=199109 WHERE guid=64981; UPDATE pool_gameobject SET guid=199109, pool_entry=10395, description='ZulDrak 189980, node 6' WHERE guid=64981; UPDATE gameobject SET guid=199108 WHERE guid=56190; UPDATE pool_gameobject SET guid=199108, pool_entry=10396, description='ZulDrak 189978, node 7' WHERE guid=56190; UPDATE pool_pool SET pool_id=10396, description='ZulDrak mineral, node 7' WHERE pool_id=5223; UPDATE pool_template SET entry=10396, description='ZulDrak mineral, node 7' WHERE entry=5223; UPDATE gameobject SET guid=199107 WHERE guid=64068; UPDATE pool_gameobject SET guid=199107, pool_entry=10396, description='ZulDrak 189979, node 7' WHERE guid=64068; UPDATE gameobject SET guid=199106 WHERE guid=64982; UPDATE pool_gameobject SET guid=199106, pool_entry=10396, description='ZulDrak 189980, node 7' WHERE guid=64982; UPDATE gameobject SET guid=199105 WHERE guid=56191; UPDATE pool_gameobject SET guid=199105, pool_entry=10397, description='ZulDrak 189978, node 8' WHERE guid=56191; UPDATE pool_pool SET pool_id=10397, description='ZulDrak mineral, node 8' WHERE pool_id=5224; UPDATE pool_template SET entry=10397, description='ZulDrak mineral, node 8' WHERE entry=5224; UPDATE gameobject SET guid=199104 WHERE guid=64087; UPDATE pool_gameobject SET guid=199104, pool_entry=10397, description='ZulDrak 189979, node 8' WHERE guid=64087; UPDATE gameobject SET guid=199103 WHERE guid=64986; UPDATE pool_gameobject SET guid=199103, pool_entry=10397, description='ZulDrak 189980, node 8' WHERE guid=64986; UPDATE gameobject SET guid=199102 WHERE guid=56192; UPDATE pool_gameobject SET guid=199102, pool_entry=10398, description='ZulDrak 189978, node 9' WHERE guid=56192; UPDATE pool_pool SET pool_id=10398, description='ZulDrak mineral, node 9' WHERE pool_id=5225; UPDATE pool_template SET entry=10398, description='ZulDrak mineral, node 9' WHERE entry=5225; UPDATE gameobject SET guid=199101 WHERE guid=64088; UPDATE pool_gameobject SET guid=199101, pool_entry=10398, description='ZulDrak 189979, node 9' WHERE guid=64088; UPDATE gameobject SET guid=199100 WHERE guid=64987; UPDATE pool_gameobject SET guid=199100, pool_entry=10398, description='ZulDrak 189980, node 9' WHERE guid=64987; UPDATE gameobject SET guid=199099 WHERE guid=56211; UPDATE pool_gameobject SET guid=199099, pool_entry=10399, description='ZulDrak 189978, node 10' WHERE guid=56211; UPDATE pool_pool SET pool_id=10399, description='ZulDrak mineral, node 10' WHERE pool_id=5226; UPDATE pool_template SET entry=10399, description='ZulDrak mineral, node 10' WHERE entry=5226; UPDATE gameobject SET guid=199098 WHERE guid=64145; UPDATE pool_gameobject SET guid=199098, pool_entry=10399, description='ZulDrak 189979, node 10' WHERE guid=64145; UPDATE gameobject SET guid=199097 WHERE guid=65000; UPDATE pool_gameobject SET guid=199097, pool_entry=10399, description='ZulDrak 189980, node 10' WHERE guid=65000; UPDATE gameobject SET guid=199096 WHERE guid=56238; UPDATE pool_gameobject SET guid=199096, pool_entry=10400, description='ZulDrak 189978, node 11' WHERE guid=56238; UPDATE pool_pool SET pool_id=10400, description='ZulDrak mineral, node 11' WHERE pool_id=5227; UPDATE pool_template SET entry=10400, description='ZulDrak mineral, node 11' WHERE entry=5227; UPDATE gameobject SET guid=199095 WHERE guid=64811; UPDATE pool_gameobject SET guid=199095, pool_entry=10400, description='ZulDrak 189979, node 11' WHERE guid=64811; UPDATE gameobject SET guid=199094 WHERE guid=65001; UPDATE pool_gameobject SET guid=199094, pool_entry=10400, description='ZulDrak 189980, node 11' WHERE guid=65001; UPDATE gameobject SET guid=199093 WHERE guid=56239; UPDATE pool_gameobject SET guid=199093, pool_entry=10401, description='ZulDrak 189978, node 12' WHERE guid=56239; UPDATE pool_pool SET pool_id=10401, description='ZulDrak mineral, node 12' WHERE pool_id=5228; UPDATE pool_template SET entry=10401, description='ZulDrak mineral, node 12' WHERE entry=5228; UPDATE gameobject SET guid=199092 WHERE guid=64827; UPDATE pool_gameobject SET guid=199092, pool_entry=10401, description='ZulDrak 189979, node 12' WHERE guid=64827; UPDATE gameobject SET guid=199091 WHERE guid=65002; UPDATE pool_gameobject SET guid=199091, pool_entry=10401, description='ZulDrak 189980, node 12' WHERE guid=65002; UPDATE gameobject SET guid=199090 WHERE guid=56529; UPDATE pool_gameobject SET guid=199090, pool_entry=10402, description='ZulDrak 189978, node 13' WHERE guid=56529; UPDATE pool_pool SET pool_id=10402, description='ZulDrak mineral, node 13' WHERE pool_id=5229; UPDATE pool_template SET entry=10402, description='ZulDrak mineral, node 13' WHERE entry=5229; UPDATE gameobject SET guid=199089 WHERE guid=64837; UPDATE pool_gameobject SET guid=199089, pool_entry=10402, description='ZulDrak 189979, node 13' WHERE guid=64837; UPDATE gameobject SET guid=199088 WHERE guid=65034; UPDATE pool_gameobject SET guid=199088, pool_entry=10402, description='ZulDrak 189980, node 13' WHERE guid=65034; UPDATE gameobject SET guid=199087 WHERE guid=57962; UPDATE pool_gameobject SET guid=199087, pool_entry=10403, description='ZulDrak 189978, node 14' WHERE guid=57962; UPDATE pool_pool SET pool_id=10403, description='ZulDrak mineral, node 14' WHERE pool_id=5230; UPDATE pool_template SET entry=10403, description='ZulDrak mineral, node 14' WHERE entry=5230; UPDATE gameobject SET guid=199086 WHERE guid=64840; UPDATE pool_gameobject SET guid=199086, pool_entry=10403, description='ZulDrak 189979, node 14' WHERE guid=64840; UPDATE gameobject SET guid=199085 WHERE guid=65035; UPDATE pool_gameobject SET guid=199085, pool_entry=10403, description='ZulDrak 189980, node 14' WHERE guid=65035; UPDATE gameobject SET guid=199084 WHERE guid=58107; UPDATE pool_gameobject SET guid=199084, pool_entry=10404, description='ZulDrak 189978, node 15' WHERE guid=58107; UPDATE pool_pool SET pool_id=10404, description='ZulDrak mineral, node 15' WHERE pool_id=5231; UPDATE pool_template SET entry=10404, description='ZulDrak mineral, node 15' WHERE entry=5231; UPDATE gameobject SET guid=199083 WHERE guid=64868; UPDATE pool_gameobject SET guid=199083, pool_entry=10404, description='ZulDrak 189979, node 15' WHERE guid=64868; UPDATE gameobject SET guid=199082 WHERE guid=65039; UPDATE pool_gameobject SET guid=199082, pool_entry=10404, description='ZulDrak 189980, node 15' WHERE guid=65039; UPDATE gameobject SET guid=199081 WHERE guid=64894; UPDATE pool_gameobject SET guid=199081, pool_entry=10405, description='ZulDrak 189979, node 16' WHERE guid=64894; UPDATE pool_pool SET pool_id=10405, description='ZulDrak mineral, node 16' WHERE pool_id=5232; UPDATE pool_template SET entry=10405, description='ZulDrak mineral, node 16' WHERE entry=5232; UPDATE gameobject SET guid=199080 WHERE guid=65050; UPDATE pool_gameobject SET guid=199080, pool_entry=10405, description='ZulDrak 189980, node 16' WHERE guid=65050; UPDATE gameobject SET guid=199079 WHERE guid=58108; UPDATE pool_gameobject SET guid=199079, pool_entry=10405, description='ZulDrak 189978, node 16' WHERE guid=58108; UPDATE gameobject SET guid=199078 WHERE guid=59284; UPDATE pool_gameobject SET guid=199078, pool_entry=10406, description='ZulDrak 189978, node 17' WHERE guid=59284; UPDATE pool_pool SET pool_id=10406, description='ZulDrak mineral, node 17' WHERE pool_id=5233; UPDATE pool_template SET entry=10406, description='ZulDrak mineral, node 17' WHERE entry=5233; UPDATE gameobject SET guid=199077 WHERE guid=64910; UPDATE pool_gameobject SET guid=199077, pool_entry=10406, description='ZulDrak 189979, node 17' WHERE guid=64910; UPDATE gameobject SET guid=199076 WHERE guid=65057; UPDATE pool_gameobject SET guid=199076, pool_entry=10406, description='ZulDrak 189980, node 17' WHERE guid=65057; UPDATE gameobject SET guid=199075 WHERE guid=59539; UPDATE pool_gameobject SET guid=199075, pool_entry=10407, description='ZulDrak 189978, node 18' WHERE guid=59539; UPDATE pool_pool SET pool_id=10407, description='ZulDrak mineral, node 18' WHERE pool_id=5234; UPDATE pool_template SET entry=10407, description='ZulDrak mineral, node 18' WHERE entry=5234; UPDATE gameobject SET guid=199074 WHERE guid=64915; UPDATE pool_gameobject SET guid=199074, pool_entry=10407, description='ZulDrak 189979, node 18' WHERE guid=64915; UPDATE gameobject SET guid=199073 WHERE guid=65075; UPDATE pool_gameobject SET guid=199073, pool_entry=10407, description='ZulDrak 189980, node 18' WHERE guid=65075; UPDATE gameobject SET guid=199072 WHERE guid=60171; UPDATE pool_gameobject SET guid=199072, pool_entry=10408, description='ZulDrak 189978, node 19' WHERE guid=60171; UPDATE pool_pool SET pool_id=10408, description='ZulDrak mineral, node 19' WHERE pool_id=5235; UPDATE pool_template SET entry=10408, description='ZulDrak mineral, node 19' WHERE entry=5235; UPDATE gameobject SET guid=199071 WHERE guid=64917; UPDATE pool_gameobject SET guid=199071, pool_entry=10408, description='ZulDrak 189979, node 19' WHERE guid=64917; UPDATE gameobject SET guid=199070 WHERE guid=65096; UPDATE pool_gameobject SET guid=199070, pool_entry=10408, description='ZulDrak 189980, node 19' WHERE guid=65096; UPDATE gameobject SET guid=199069 WHERE guid=60178; UPDATE pool_gameobject SET guid=199069, pool_entry=10409, description='ZulDrak 189978, node 20' WHERE guid=60178; UPDATE pool_pool SET pool_id=10409, description='ZulDrak mineral, node 20' WHERE pool_id=5236; UPDATE pool_template SET entry=10409, description='ZulDrak mineral, node 20' WHERE entry=5236; UPDATE gameobject SET guid=199068 WHERE guid=64919; UPDATE pool_gameobject SET guid=199068, pool_entry=10409, description='ZulDrak 189979, node 20' WHERE guid=64919; UPDATE gameobject SET guid=199067 WHERE guid=65097; UPDATE pool_gameobject SET guid=199067, pool_entry=10409, description='ZulDrak 189980, node 20' WHERE guid=65097; UPDATE gameobject SET guid=199066 WHERE guid=65109; UPDATE pool_gameobject SET guid=199066, pool_entry=10410, description='ZulDrak 189980, node 21' WHERE guid=65109; UPDATE pool_pool SET pool_id=10410, description='ZulDrak mineral, node 21' WHERE pool_id=5237; UPDATE pool_template SET entry=10410, description='ZulDrak mineral, node 21' WHERE entry=5237; UPDATE gameobject SET guid=199065 WHERE guid=60450; UPDATE pool_gameobject SET guid=199065, pool_entry=10410, description='ZulDrak 189978, node 21' WHERE guid=60450; UPDATE gameobject SET guid=199064 WHERE guid=64920; UPDATE pool_gameobject SET guid=199064, pool_entry=10410, description='ZulDrak 189979, node 21' WHERE guid=64920; UPDATE gameobject SET guid=199063 WHERE guid=66842; UPDATE pool_gameobject SET guid=199063, pool_entry=10411, description='ZulDrak 189978, node 22' WHERE guid=66842; UPDATE pool_pool SET pool_id=10411, description='ZulDrak mineral, node 22' WHERE pool_id=5256; UPDATE pool_template SET entry=10411, description='ZulDrak mineral, node 22' WHERE entry=5256; UPDATE gameobject SET guid=199062 WHERE guid=66895; UPDATE pool_gameobject SET guid=199062, pool_entry=10411, description='ZulDrak 189979, node 22' WHERE guid=66895; UPDATE gameobject SET guid=199061 WHERE guid=66944; UPDATE pool_gameobject SET guid=199061, pool_entry=10411, description='ZulDrak 189980, node 22' WHERE guid=66944; UPDATE gameobject SET guid=199060 WHERE guid=66845; UPDATE pool_gameobject SET guid=199060, pool_entry=10412, description='ZulDrak 189978, node 23' WHERE guid=66845; UPDATE pool_pool SET pool_id=10412, description='ZulDrak mineral, node 23' WHERE pool_id=5257; UPDATE pool_template SET entry=10412, description='ZulDrak mineral, node 23' WHERE entry=5257; UPDATE gameobject SET guid=199059 WHERE guid=66898; UPDATE pool_gameobject SET guid=199059, pool_entry=10412, description='ZulDrak 189979, node 23' WHERE guid=66898; UPDATE gameobject SET guid=199058 WHERE guid=66945; UPDATE pool_gameobject SET guid=199058, pool_entry=10412, description='ZulDrak 189980, node 23' WHERE guid=66945; UPDATE gameobject SET guid=199057 WHERE guid=66847; UPDATE pool_gameobject SET guid=199057, pool_entry=10413, description='ZulDrak 189978, node 24' WHERE guid=66847; UPDATE pool_pool SET pool_id=10413, description='ZulDrak mineral, node 24' WHERE pool_id=5258; UPDATE pool_template SET entry=10413, description='ZulDrak mineral, node 24' WHERE entry=5258; UPDATE gameobject SET guid=199056 WHERE guid=66900; UPDATE pool_gameobject SET guid=199056, pool_entry=10413, description='ZulDrak 189979, node 24' WHERE guid=66900; UPDATE gameobject SET guid=199055 WHERE guid=66946; UPDATE pool_gameobject SET guid=199055, pool_entry=10413, description='ZulDrak 189980, node 24' WHERE guid=66946; UPDATE gameobject SET guid=199054 WHERE guid=66853; UPDATE pool_gameobject SET guid=199054, pool_entry=10414, description='ZulDrak 189978, node 25' WHERE guid=66853; UPDATE pool_pool SET pool_id=10414, description='ZulDrak mineral, node 25' WHERE pool_id=5259; UPDATE pool_template SET entry=10414, description='ZulDrak mineral, node 25' WHERE entry=5259; UPDATE gameobject SET guid=199053 WHERE guid=66906; UPDATE pool_gameobject SET guid=199053, pool_entry=10414, description='ZulDrak 189979, node 25' WHERE guid=66906; UPDATE gameobject SET guid=199052 WHERE guid=66947; UPDATE pool_gameobject SET guid=199052, pool_entry=10414, description='ZulDrak 189980, node 25' WHERE guid=66947; UPDATE gameobject SET guid=199051 WHERE guid=66856; UPDATE pool_gameobject SET guid=199051, pool_entry=10415, description='ZulDrak 189978, node 26' WHERE guid=66856; UPDATE pool_pool SET pool_id=10415, description='ZulDrak mineral, node 26' WHERE pool_id=5260; UPDATE pool_template SET entry=10415, description='ZulDrak mineral, node 26' WHERE entry=5260; UPDATE gameobject SET guid=199050 WHERE guid=66909; UPDATE pool_gameobject SET guid=199050, pool_entry=10415, description='ZulDrak 189979, node 26' WHERE guid=66909; UPDATE gameobject SET guid=199049 WHERE guid=66948; UPDATE pool_gameobject SET guid=199049, pool_entry=10415, description='ZulDrak 189980, node 26' WHERE guid=66948; UPDATE gameobject SET guid=199048 WHERE guid=66857; UPDATE pool_gameobject SET guid=199048, pool_entry=10416, description='ZulDrak 189978, node 27' WHERE guid=66857; UPDATE pool_pool SET pool_id=10416, description='ZulDrak mineral, node 27' WHERE pool_id=5261; UPDATE pool_template SET entry=10416, description='ZulDrak mineral, node 27' WHERE entry=5261; UPDATE gameobject SET guid=199047 WHERE guid=66910; UPDATE pool_gameobject SET guid=199047, pool_entry=10416, description='ZulDrak 189979, node 27' WHERE guid=66910; UPDATE gameobject SET guid=199046 WHERE guid=66949; UPDATE pool_gameobject SET guid=199046, pool_entry=10416, description='ZulDrak 189980, node 27' WHERE guid=66949; UPDATE gameobject SET guid=199045 WHERE guid=66860; UPDATE pool_gameobject SET guid=199045, pool_entry=10417, description='ZulDrak 189978, node 28' WHERE guid=66860; UPDATE pool_pool SET pool_id=10417, description='ZulDrak mineral, node 28' WHERE pool_id=5262; UPDATE pool_template SET entry=10417, description='ZulDrak mineral, node 28' WHERE entry=5262; UPDATE gameobject SET guid=199044 WHERE guid=66913; UPDATE pool_gameobject SET guid=199044, pool_entry=10417, description='ZulDrak 189979, node 28' WHERE guid=66913; UPDATE gameobject SET guid=199043 WHERE guid=66950; UPDATE pool_gameobject SET guid=199043, pool_entry=10417, description='ZulDrak 189980, node 28' WHERE guid=66950; UPDATE gameobject SET guid=199042 WHERE guid=66861; UPDATE pool_gameobject SET guid=199042, pool_entry=10418, description='ZulDrak 189978, node 29' WHERE guid=66861; UPDATE pool_pool SET pool_id=10418, description='ZulDrak mineral, node 29' WHERE pool_id=5263; UPDATE pool_template SET entry=10418, description='ZulDrak mineral, node 29' WHERE entry=5263; UPDATE gameobject SET guid=199041 WHERE guid=66914; UPDATE pool_gameobject SET guid=199041, pool_entry=10418, description='ZulDrak 189979, node 29' WHERE guid=66914; UPDATE gameobject SET guid=199040 WHERE guid=66951; UPDATE pool_gameobject SET guid=199040, pool_entry=10418, description='ZulDrak 189980, node 29' WHERE guid=66951; UPDATE gameobject SET guid=199039 WHERE guid=66862; UPDATE pool_gameobject SET guid=199039, pool_entry=10419, description='ZulDrak 189978, node 30' WHERE guid=66862; UPDATE pool_pool SET pool_id=10419, description='ZulDrak mineral, node 30' WHERE pool_id=5264; UPDATE pool_template SET entry=10419, description='ZulDrak mineral, node 30' WHERE entry=5264; UPDATE gameobject SET guid=199038 WHERE guid=66915; UPDATE pool_gameobject SET guid=199038, pool_entry=10419, description='ZulDrak 189979, node 30' WHERE guid=66915; UPDATE gameobject SET guid=199037 WHERE guid=66952; UPDATE pool_gameobject SET guid=199037, pool_entry=10419, description='ZulDrak 189980, node 30' WHERE guid=66952; UPDATE gameobject SET guid=199036 WHERE guid=66863; UPDATE pool_gameobject SET guid=199036, pool_entry=10420, description='ZulDrak 189978, node 31' WHERE guid=66863; UPDATE pool_pool SET pool_id=10420, description='ZulDrak mineral, node 31' WHERE pool_id=5265; UPDATE pool_template SET entry=10420, description='ZulDrak mineral, node 31' WHERE entry=5265; UPDATE gameobject SET guid=199035 WHERE guid=66916; UPDATE pool_gameobject SET guid=199035, pool_entry=10420, description='ZulDrak 189979, node 31' WHERE guid=66916; UPDATE gameobject SET guid=199034 WHERE guid=66953; UPDATE pool_gameobject SET guid=199034, pool_entry=10420, description='ZulDrak 189980, node 31' WHERE guid=66953; UPDATE gameobject SET guid=199033 WHERE guid=66917; UPDATE pool_gameobject SET guid=199033, pool_entry=10421, description='ZulDrak 189979, node 32' WHERE guid=66917; UPDATE pool_pool SET pool_id=10421, description='ZulDrak mineral, node 32' WHERE pool_id=5266; UPDATE pool_template SET entry=10421, description='ZulDrak mineral, node 32' WHERE entry=5266; UPDATE gameobject SET guid=199032 WHERE guid=66954; UPDATE pool_gameobject SET guid=199032, pool_entry=10421, description='ZulDrak 189980, node 32' WHERE guid=66954; UPDATE gameobject SET guid=199031 WHERE guid=66864; UPDATE pool_gameobject SET guid=199031, pool_entry=10421, description='ZulDrak 189978, node 32' WHERE guid=66864; UPDATE gameobject SET guid=199030 WHERE guid=66865; UPDATE pool_gameobject SET guid=199030, pool_entry=10422, description='ZulDrak 189978, node 33' WHERE guid=66865; UPDATE pool_pool SET pool_id=10422, description='ZulDrak mineral, node 33' WHERE pool_id=5267; UPDATE pool_template SET entry=10422, description='ZulDrak mineral, node 33' WHERE entry=5267; UPDATE gameobject SET guid=199029 WHERE guid=66918; UPDATE pool_gameobject SET guid=199029, pool_entry=10422, description='ZulDrak 189979, node 33' WHERE guid=66918; UPDATE gameobject SET guid=199028 WHERE guid=66955; UPDATE pool_gameobject SET guid=199028, pool_entry=10422, description='ZulDrak 189980, node 33' WHERE guid=66955; UPDATE gameobject SET guid=199027 WHERE guid=66872; UPDATE pool_gameobject SET guid=199027, pool_entry=10423, description='ZulDrak 189978, node 34' WHERE guid=66872; UPDATE pool_pool SET pool_id=10423, description='ZulDrak mineral, node 34' WHERE pool_id=5268; UPDATE pool_template SET entry=10423, description='ZulDrak mineral, node 34' WHERE entry=5268; UPDATE gameobject SET guid=199026 WHERE guid=66925; UPDATE pool_gameobject SET guid=199026, pool_entry=10423, description='ZulDrak 189979, node 34' WHERE guid=66925; UPDATE gameobject SET guid=199025 WHERE guid=66956; UPDATE pool_gameobject SET guid=199025, pool_entry=10423, description='ZulDrak 189980, node 34' WHERE guid=66956; UPDATE gameobject SET guid=199024 WHERE guid=66874; UPDATE pool_gameobject SET guid=199024, pool_entry=10424, description='ZulDrak 189978, node 35' WHERE guid=66874; UPDATE pool_pool SET pool_id=10424, description='ZulDrak mineral, node 35' WHERE pool_id=5269; UPDATE pool_template SET entry=10424, description='ZulDrak mineral, node 35' WHERE entry=5269; UPDATE gameobject SET guid=199023 WHERE guid=66927; UPDATE pool_gameobject SET guid=199023, pool_entry=10424, description='ZulDrak 189979, node 35' WHERE guid=66927; UPDATE gameobject SET guid=199022 WHERE guid=66957; UPDATE pool_gameobject SET guid=199022, pool_entry=10424, description='ZulDrak 189980, node 35' WHERE guid=66957; UPDATE gameobject SET guid=199021 WHERE guid=66881; UPDATE pool_gameobject SET guid=199021, pool_entry=10425, description='ZulDrak 189978, node 36' WHERE guid=66881; UPDATE pool_pool SET pool_id=10425, description='ZulDrak mineral, node 36' WHERE pool_id=5270; UPDATE pool_template SET entry=10425, description='ZulDrak mineral, node 36' WHERE entry=5270; UPDATE gameobject SET guid=199020 WHERE guid=66934; UPDATE pool_gameobject SET guid=199020, pool_entry=10425, description='ZulDrak 189979, node 36' WHERE guid=66934; UPDATE gameobject SET guid=199019 WHERE guid=66958; UPDATE pool_gameobject SET guid=199019, pool_entry=10425, description='ZulDrak 189980, node 36' WHERE guid=66958; UPDATE gameobject SET guid=199018 WHERE guid=66959; UPDATE pool_gameobject SET guid=199018, pool_entry=10426, description='ZulDrak 189980, node 37' WHERE guid=66959; UPDATE pool_pool SET pool_id=10426, description='ZulDrak mineral, node 37' WHERE pool_id=5271; UPDATE pool_template SET entry=10426, description='ZulDrak mineral, node 37' WHERE entry=5271; UPDATE gameobject SET guid=199017 WHERE guid=66884; UPDATE pool_gameobject SET guid=199017, pool_entry=10426, description='ZulDrak 189978, node 37' WHERE guid=66884; UPDATE gameobject SET guid=199016 WHERE guid=66937; UPDATE pool_gameobject SET guid=199016, pool_entry=10426, description='ZulDrak 189979, node 37' WHERE guid=66937; UPDATE gameobject SET guid=199015 WHERE guid=66885; UPDATE pool_gameobject SET guid=199015, pool_entry=10427, description='ZulDrak 189978, node 38' WHERE guid=66885; UPDATE pool_pool SET pool_id=10427, description='ZulDrak mineral, node 38' WHERE pool_id=5272; UPDATE pool_template SET entry=10427, description='ZulDrak mineral, node 38' WHERE entry=5272; UPDATE gameobject SET guid=199014 WHERE guid=66938; UPDATE pool_gameobject SET guid=199014, pool_entry=10427, description='ZulDrak 189979, node 38' WHERE guid=66938; UPDATE gameobject SET guid=199013 WHERE guid=66960; UPDATE pool_gameobject SET guid=199013, pool_entry=10427, description='ZulDrak 189980, node 38' WHERE guid=66960; UPDATE gameobject SET guid=199012 WHERE guid=66886; UPDATE pool_gameobject SET guid=199012, pool_entry=10428, description='ZulDrak 189978, node 39' WHERE guid=66886; UPDATE pool_pool SET pool_id=10428, description='ZulDrak mineral, node 39' WHERE pool_id=5273; UPDATE pool_template SET entry=10428, description='ZulDrak mineral, node 39' WHERE entry=5273; UPDATE gameobject SET guid=199011 WHERE guid=66939; UPDATE pool_gameobject SET guid=199011, pool_entry=10428, description='ZulDrak 189979, node 39' WHERE guid=66939; UPDATE gameobject SET guid=199010 WHERE guid=66961; UPDATE pool_gameobject SET guid=199010, pool_entry=10428, description='ZulDrak 189980, node 39' WHERE guid=66961; UPDATE gameobject SET guid=199009 WHERE guid=66889; UPDATE pool_gameobject SET guid=199009, pool_entry=10429, description='ZulDrak 189978, node 40' WHERE guid=66889; UPDATE pool_pool SET pool_id=10429, description='ZulDrak mineral, node 40' WHERE pool_id=5274; UPDATE pool_template SET entry=10429, description='ZulDrak mineral, node 40' WHERE entry=5274; UPDATE gameobject SET guid=199008 WHERE guid=66942; UPDATE pool_gameobject SET guid=199008, pool_entry=10429, description='ZulDrak 189979, node 40' WHERE guid=66942; UPDATE gameobject SET guid=199007 WHERE guid=66962; UPDATE pool_gameobject SET guid=199007, pool_entry=10429, description='ZulDrak 189980, node 40' WHERE guid=66962; UPDATE gameobject SET guid=199006 WHERE guid=66890; UPDATE pool_gameobject SET guid=199006, pool_entry=10430, description='ZulDrak 189978, node 41' WHERE guid=66890; UPDATE pool_pool SET pool_id=10430, description='ZulDrak mineral, node 41' WHERE pool_id=5275; UPDATE pool_template SET entry=10430, description='ZulDrak mineral, node 41' WHERE entry=5275; UPDATE gameobject SET guid=199005 WHERE guid=66943; UPDATE pool_gameobject SET guid=199005, pool_entry=10430, description='ZulDrak 189979, node 41' WHERE guid=66943; UPDATE gameobject SET guid=199004 WHERE guid=66963; UPDATE pool_gameobject SET guid=199004, pool_entry=10430, description='ZulDrak 189980, node 41' WHERE guid=66963; UPDATE gameobject SET guid=199003 WHERE guid=66891; UPDATE pool_gameobject SET guid=199003, pool_entry=10431, description='ZulDrak 189978, node 42' WHERE guid=66891; UPDATE pool_pool SET pool_id=10431, description='ZulDrak mineral, node 42' WHERE pool_id=5276; UPDATE pool_template SET entry=10431, description='ZulDrak mineral, node 42' WHERE entry=5276; UPDATE gameobject SET guid=199002 WHERE guid=66933; UPDATE pool_gameobject SET guid=199002, pool_entry=10431, description='ZulDrak 189979, node 42' WHERE guid=66933; UPDATE gameobject SET guid=199001 WHERE guid=66964; UPDATE pool_gameobject SET guid=199001, pool_entry=10431, description='ZulDrak 189980, node 42' WHERE guid=66964; -- wintergrasp UPDATE gameobject SET guid=199000 WHERE guid=56248; UPDATE pool_gameobject SET guid=199000, pool_entry=10432, description='Wintergrasp 189980, node 1' WHERE guid=56248; UPDATE pool_pool SET pool_id=10432, description='Wintergrasp mineral, node 1' WHERE pool_id=5617; UPDATE pool_template SET entry=10432, description='Wintergrasp mineral, node 1' WHERE entry=5617; UPDATE gameobject SET guid=198999 WHERE guid=121482; UPDATE pool_gameobject SET guid=198999, pool_entry=10432, description='Wintergrasp 189981, node 1' WHERE guid=121482; UPDATE gameobject SET guid=198998 WHERE guid=121483; UPDATE pool_gameobject SET guid=198998, pool_entry=10432, description='Wintergrasp 191133, node 1' WHERE guid=121483; UPDATE gameobject SET guid=198997 WHERE guid=56335; UPDATE pool_gameobject SET guid=198997, pool_entry=10433, description='Wintergrasp 189980, node 2' WHERE guid=56335; UPDATE pool_pool SET pool_id=10433, description='Wintergrasp mineral, node 2' WHERE pool_id=5618; UPDATE pool_template SET entry=10433, description='Wintergrasp mineral, node 2' WHERE entry=5618; UPDATE gameobject SET guid=198996 WHERE guid=121484; UPDATE pool_gameobject SET guid=198996, pool_entry=10433, description='Wintergrasp 189981, node 2' WHERE guid=121484; UPDATE gameobject SET guid=198995 WHERE guid=121485; UPDATE pool_gameobject SET guid=198995, pool_entry=10433, description='Wintergrasp 191133, node 2' WHERE guid=121485; UPDATE gameobject SET guid=198994 WHERE guid=56337; UPDATE pool_gameobject SET guid=198994, pool_entry=10434, description='Wintergrasp 189980, node 3' WHERE guid=56337; UPDATE pool_pool SET pool_id=10434, description='Wintergrasp mineral, node 3' WHERE pool_id=5619; UPDATE pool_template SET entry=10434, description='Wintergrasp mineral, node 3' WHERE entry=5619; UPDATE gameobject SET guid=198993 WHERE guid=121486; UPDATE pool_gameobject SET guid=198993, pool_entry=10434, description='Wintergrasp 189981, node 3' WHERE guid=121486; UPDATE gameobject SET guid=198992 WHERE guid=121487; UPDATE pool_gameobject SET guid=198992, pool_entry=10434, description='Wintergrasp 191133, node 3' WHERE guid=121487; UPDATE gameobject SET guid=198991 WHERE guid=63437; UPDATE pool_gameobject SET guid=198991, pool_entry=10435, description='Wintergrasp 189980, node 4' WHERE guid=63437; UPDATE pool_pool SET pool_id=10435, description='Wintergrasp mineral, node 4' WHERE pool_id=5620; UPDATE pool_template SET entry=10435, description='Wintergrasp mineral, node 4' WHERE entry=5620; UPDATE gameobject SET guid=198990 WHERE guid=121488; UPDATE pool_gameobject SET guid=198990, pool_entry=10435, description='Wintergrasp 189981, node 4' WHERE guid=121488; UPDATE gameobject SET guid=198989 WHERE guid=121489; UPDATE pool_gameobject SET guid=198989, pool_entry=10435, description='Wintergrasp 191133, node 4' WHERE guid=121489; UPDATE gameobject SET guid=198988 WHERE guid=121491; UPDATE pool_gameobject SET guid=198988, pool_entry=10436, description='Wintergrasp 191133, node 5' WHERE guid=121491; UPDATE pool_pool SET pool_id=10436, description='Wintergrasp mineral, node 5' WHERE pool_id=5621; UPDATE pool_template SET entry=10436, description='Wintergrasp mineral, node 5' WHERE entry=5621; UPDATE gameobject SET guid=198987 WHERE guid=66696; UPDATE pool_gameobject SET guid=198987, pool_entry=10436, description='Wintergrasp 189980, node 5' WHERE guid=66696; UPDATE gameobject SET guid=198986 WHERE guid=121490; UPDATE pool_gameobject SET guid=198986, pool_entry=10436, description='Wintergrasp 189981, node 5' WHERE guid=121490; UPDATE gameobject SET guid=198985 WHERE guid=66697; UPDATE pool_gameobject SET guid=198985, pool_entry=10437, description='Wintergrasp 189980, node 6' WHERE guid=66697; UPDATE pool_pool SET pool_id=10437, description='Wintergrasp mineral, node 6' WHERE pool_id=5622; UPDATE pool_template SET entry=10437, description='Wintergrasp mineral, node 6' WHERE entry=5622; UPDATE gameobject SET guid=198984 WHERE guid=121492; UPDATE pool_gameobject SET guid=198984, pool_entry=10437, description='Wintergrasp 189981, node 6' WHERE guid=121492; UPDATE gameobject SET guid=198983 WHERE guid=121493; UPDATE pool_gameobject SET guid=198983, pool_entry=10437, description='Wintergrasp 191133, node 6' WHERE guid=121493; UPDATE gameobject SET guid=198982 WHERE guid=66698; UPDATE pool_gameobject SET guid=198982, pool_entry=10438, description='Wintergrasp 189980, node 7' WHERE guid=66698; UPDATE pool_pool SET pool_id=10438, description='Wintergrasp mineral, node 7' WHERE pool_id=5623; UPDATE pool_template SET entry=10438, description='Wintergrasp mineral, node 7' WHERE entry=5623; UPDATE gameobject SET guid=198981 WHERE guid=121494; UPDATE pool_gameobject SET guid=198981, pool_entry=10438, description='Wintergrasp 189981, node 7' WHERE guid=121494; UPDATE gameobject SET guid=198980 WHERE guid=121495; UPDATE pool_gameobject SET guid=198980, pool_entry=10438, description='Wintergrasp 191133, node 7' WHERE guid=121495; UPDATE gameobject SET guid=198979 WHERE guid=66699; UPDATE pool_gameobject SET guid=198979, pool_entry=10439, description='Wintergrasp 189980, node 8' WHERE guid=66699; UPDATE pool_pool SET pool_id=10439, description='Wintergrasp mineral, node 8' WHERE pool_id=5624; UPDATE pool_template SET entry=10439, description='Wintergrasp mineral, node 8' WHERE entry=5624; UPDATE gameobject SET guid=198978 WHERE guid=121496; UPDATE pool_gameobject SET guid=198978, pool_entry=10439, description='Wintergrasp 189981, node 8' WHERE guid=121496; UPDATE gameobject SET guid=198977 WHERE guid=121497; UPDATE pool_gameobject SET guid=198977, pool_entry=10439, description='Wintergrasp 191133, node 8' WHERE guid=121497; UPDATE gameobject SET guid=198976 WHERE guid=66701; UPDATE pool_gameobject SET guid=198976, pool_entry=10440, description='Wintergrasp 189980, node 9' WHERE guid=66701; UPDATE pool_pool SET pool_id=10440, description='Wintergrasp mineral, node 9' WHERE pool_id=5625; UPDATE pool_template SET entry=10440, description='Wintergrasp mineral, node 9' WHERE entry=5625; UPDATE gameobject SET guid=198975 WHERE guid=121498; UPDATE pool_gameobject SET guid=198975, pool_entry=10440, description='Wintergrasp 189981, node 9' WHERE guid=121498; UPDATE gameobject SET guid=198974 WHERE guid=121499; UPDATE pool_gameobject SET guid=198974, pool_entry=10440, description='Wintergrasp 191133, node 9' WHERE guid=121499; UPDATE gameobject SET guid=198973 WHERE guid=66702; UPDATE pool_gameobject SET guid=198973, pool_entry=10441, description='Wintergrasp 189980, node 10' WHERE guid=66702; UPDATE pool_pool SET pool_id=10441, description='Wintergrasp mineral, node 10' WHERE pool_id=5626; UPDATE pool_template SET entry=10441, description='Wintergrasp mineral, node 10' WHERE entry=5626; UPDATE gameobject SET guid=198972 WHERE guid=121500; UPDATE pool_gameobject SET guid=198972, pool_entry=10441, description='Wintergrasp 189981, node 10' WHERE guid=121500; UPDATE gameobject SET guid=198971 WHERE guid=121501; UPDATE pool_gameobject SET guid=198971, pool_entry=10441, description='Wintergrasp 191133, node 10' WHERE guid=121501; UPDATE gameobject SET guid=198970 WHERE guid=66703; UPDATE pool_gameobject SET guid=198970, pool_entry=10442, description='Wintergrasp 189980, node 11' WHERE guid=66703; UPDATE pool_pool SET pool_id=10442, description='Wintergrasp mineral, node 11' WHERE pool_id=5627; UPDATE pool_template SET entry=10442, description='Wintergrasp mineral, node 11' WHERE entry=5627; UPDATE gameobject SET guid=198969 WHERE guid=121502; UPDATE pool_gameobject SET guid=198969, pool_entry=10442, description='Wintergrasp 189981, node 11' WHERE guid=121502; UPDATE gameobject SET guid=198968 WHERE guid=121503; UPDATE pool_gameobject SET guid=198968, pool_entry=10442, description='Wintergrasp 191133, node 11' WHERE guid=121503; UPDATE gameobject SET guid=198967 WHERE guid=66704; UPDATE pool_gameobject SET guid=198967, pool_entry=10443, description='Wintergrasp 189980, node 12' WHERE guid=66704; UPDATE pool_pool SET pool_id=10443, description='Wintergrasp mineral, node 12' WHERE pool_id=5628; UPDATE pool_template SET entry=10443, description='Wintergrasp mineral, node 12' WHERE entry=5628; UPDATE gameobject SET guid=198966 WHERE guid=121504; UPDATE pool_gameobject SET guid=198966, pool_entry=10443, description='Wintergrasp 189981, node 12' WHERE guid=121504; UPDATE gameobject SET guid=198965 WHERE guid=121505; UPDATE pool_gameobject SET guid=198965, pool_entry=10443, description='Wintergrasp 191133, node 12' WHERE guid=121505; UPDATE gameobject SET guid=198964 WHERE guid=66705; UPDATE pool_gameobject SET guid=198964, pool_entry=10444, description='Wintergrasp 189980, node 13' WHERE guid=66705; UPDATE pool_pool SET pool_id=10444, description='Wintergrasp mineral, node 13' WHERE pool_id=5629; UPDATE pool_template SET entry=10444, description='Wintergrasp mineral, node 13' WHERE entry=5629; UPDATE gameobject SET guid=198963 WHERE guid=121506; UPDATE pool_gameobject SET guid=198963, pool_entry=10444, description='Wintergrasp 189981, node 13' WHERE guid=121506; UPDATE gameobject SET guid=198962 WHERE guid=121507; UPDATE pool_gameobject SET guid=198962, pool_entry=10444, description='Wintergrasp 191133, node 13' WHERE guid=121507; UPDATE gameobject SET guid=198961 WHERE guid=66708; UPDATE pool_gameobject SET guid=198961, pool_entry=10445, description='Wintergrasp 189980, node 14' WHERE guid=66708; UPDATE pool_pool SET pool_id=10445, description='Wintergrasp mineral, node 14' WHERE pool_id=5630; UPDATE pool_template SET entry=10445, description='Wintergrasp mineral, node 14' WHERE entry=5630; UPDATE gameobject SET guid=198960 WHERE guid=121508; UPDATE pool_gameobject SET guid=198960, pool_entry=10445, description='Wintergrasp 189981, node 14' WHERE guid=121508; UPDATE gameobject SET guid=198959 WHERE guid=121509; UPDATE pool_gameobject SET guid=198959, pool_entry=10445, description='Wintergrasp 191133, node 14' WHERE guid=121509; UPDATE gameobject SET guid=198958 WHERE guid=66709; UPDATE pool_gameobject SET guid=198958, pool_entry=10446, description='Wintergrasp 189980, node 15' WHERE guid=66709; UPDATE pool_pool SET pool_id=10446, description='Wintergrasp mineral, node 15' WHERE pool_id=5631; UPDATE pool_template SET entry=10446, description='Wintergrasp mineral, node 15' WHERE entry=5631; UPDATE gameobject SET guid=198957 WHERE guid=121510; UPDATE pool_gameobject SET guid=198957, pool_entry=10446, description='Wintergrasp 189981, node 15' WHERE guid=121510; UPDATE gameobject SET guid=198956 WHERE guid=121511; UPDATE pool_gameobject SET guid=198956, pool_entry=10446, description='Wintergrasp 191133, node 15' WHERE guid=121511; UPDATE gameobject SET guid=198955 WHERE guid=121512; UPDATE pool_gameobject SET guid=198955, pool_entry=10447, description='Wintergrasp 189981, node 16' WHERE guid=121512; UPDATE pool_pool SET pool_id=10447, description='Wintergrasp mineral, node 16' WHERE pool_id=5632; UPDATE pool_template SET entry=10447, description='Wintergrasp mineral, node 16' WHERE entry=5632; UPDATE gameobject SET guid=198954 WHERE guid=121513; UPDATE pool_gameobject SET guid=198954, pool_entry=10447, description='Wintergrasp 191133, node 16' WHERE guid=121513; UPDATE gameobject SET guid=198953 WHERE guid=66710; UPDATE pool_gameobject SET guid=198953, pool_entry=10447, description='Wintergrasp 189980, node 16' WHERE guid=66710; UPDATE gameobject SET guid=198952 WHERE guid=67245; UPDATE pool_gameobject SET guid=198952, pool_entry=10448, description='Wintergrasp 189980, node 17' WHERE guid=67245; UPDATE pool_pool SET pool_id=10448, description='Wintergrasp mineral, node 17' WHERE pool_id=5633; UPDATE pool_template SET entry=10448, description='Wintergrasp mineral, node 17' WHERE entry=5633; UPDATE gameobject SET guid=198951 WHERE guid=121514; UPDATE pool_gameobject SET guid=198951, pool_entry=10448, description='Wintergrasp 189981, node 17' WHERE guid=121514; UPDATE gameobject SET guid=198950 WHERE guid=121515; UPDATE pool_gameobject SET guid=198950, pool_entry=10448, description='Wintergrasp 191133, node 17' WHERE guid=121515; UPDATE gameobject SET guid=198949 WHERE guid=67246; UPDATE pool_gameobject SET guid=198949, pool_entry=10449, description='Wintergrasp 189980, node 18' WHERE guid=67246; UPDATE pool_pool SET pool_id=10449, description='Wintergrasp mineral, node 18' WHERE pool_id=5634; UPDATE pool_template SET entry=10449, description='Wintergrasp mineral, node 18' WHERE entry=5634; UPDATE gameobject SET guid=198948 WHERE guid=121516; UPDATE pool_gameobject SET guid=198948, pool_entry=10449, description='Wintergrasp 189981, node 18' WHERE guid=121516; UPDATE gameobject SET guid=198947 WHERE guid=121517; UPDATE pool_gameobject SET guid=198947, pool_entry=10449, description='Wintergrasp 191133, node 18' WHERE guid=121517; UPDATE gameobject SET guid=198946 WHERE guid=67247; UPDATE pool_gameobject SET guid=198946, pool_entry=10450, description='Wintergrasp 189980, node 19' WHERE guid=67247; UPDATE pool_pool SET pool_id=10450, description='Wintergrasp mineral, node 19' WHERE pool_id=5635; UPDATE pool_template SET entry=10450, description='Wintergrasp mineral, node 19' WHERE entry=5635; UPDATE gameobject SET guid=198945 WHERE guid=121518; UPDATE pool_gameobject SET guid=198945, pool_entry=10450, description='Wintergrasp 189981, node 19' WHERE guid=121518; UPDATE gameobject SET guid=198944 WHERE guid=121519; UPDATE pool_gameobject SET guid=198944, pool_entry=10450, description='Wintergrasp 191133, node 19' WHERE guid=121519; UPDATE gameobject SET guid=198943 WHERE guid=67248; UPDATE pool_gameobject SET guid=198943, pool_entry=10451, description='Wintergrasp 189980, node 20' WHERE guid=67248; UPDATE pool_pool SET pool_id=10451, description='Wintergrasp mineral, node 20' WHERE pool_id=5636; UPDATE pool_template SET entry=10451, description='Wintergrasp mineral, node 20' WHERE entry=5636; UPDATE gameobject SET guid=198942 WHERE guid=121520; UPDATE pool_gameobject SET guid=198942, pool_entry=10451, description='Wintergrasp 189981, node 20' WHERE guid=121520; UPDATE gameobject SET guid=198941 WHERE guid=121521; UPDATE pool_gameobject SET guid=198941, pool_entry=10451, description='Wintergrasp 191133, node 20' WHERE guid=121521; UPDATE gameobject SET guid=198940 WHERE guid=121523; UPDATE pool_gameobject SET guid=198940, pool_entry=10452, description='Wintergrasp 191133, node 21' WHERE guid=121523; UPDATE pool_pool SET pool_id=10452, description='Wintergrasp mineral, node 21' WHERE pool_id=5637; UPDATE pool_template SET entry=10452, description='Wintergrasp mineral, node 21' WHERE entry=5637; UPDATE gameobject SET guid=198939 WHERE guid=120013; UPDATE pool_gameobject SET guid=198939, pool_entry=10452, description='Wintergrasp 189980, node 21' WHERE guid=120013; UPDATE gameobject SET guid=198938 WHERE guid=121522; UPDATE pool_gameobject SET guid=198938, pool_entry=10452, description='Wintergrasp 189981, node 21' WHERE guid=121522; UPDATE gameobject SET guid=198937 WHERE guid=120020; UPDATE pool_gameobject SET guid=198937, pool_entry=10453, description='Wintergrasp 189980, node 22' WHERE guid=120020; UPDATE pool_pool SET pool_id=10453, description='Wintergrasp mineral, node 22' WHERE pool_id=5638; UPDATE pool_template SET entry=10453, description='Wintergrasp mineral, node 22' WHERE entry=5638; UPDATE gameobject SET guid=198936 WHERE guid=121524; UPDATE pool_gameobject SET guid=198936, pool_entry=10453, description='Wintergrasp 189981, node 22' WHERE guid=121524; UPDATE gameobject SET guid=198935 WHERE guid=121525; UPDATE pool_gameobject SET guid=198935, pool_entry=10453, description='Wintergrasp 191133, node 22' WHERE guid=121525; UPDATE gameobject SET guid=198934 WHERE guid=120025; UPDATE pool_gameobject SET guid=198934, pool_entry=10454, description='Wintergrasp 189980, node 23' WHERE guid=120025; UPDATE pool_pool SET pool_id=10454, description='Wintergrasp mineral, node 23' WHERE pool_id=5639; UPDATE pool_template SET entry=10454, description='Wintergrasp mineral, node 23' WHERE entry=5639; UPDATE gameobject SET guid=198933 WHERE guid=121526; UPDATE pool_gameobject SET guid=198933, pool_entry=10454, description='Wintergrasp 189981, node 23' WHERE guid=121526; UPDATE gameobject SET guid=198932 WHERE guid=121527; UPDATE pool_gameobject SET guid=198932, pool_entry=10454, description='Wintergrasp 191133, node 23' WHERE guid=121527; UPDATE gameobject SET guid=198931 WHERE guid=120035; UPDATE pool_gameobject SET guid=198931, pool_entry=10455, description='Wintergrasp 189980, node 24' WHERE guid=120035; UPDATE pool_pool SET pool_id=10455, description='Wintergrasp mineral, node 24' WHERE pool_id=5640; UPDATE pool_template SET entry=10455, description='Wintergrasp mineral, node 24' WHERE entry=5640; UPDATE gameobject SET guid=198930 WHERE guid=121528; UPDATE pool_gameobject SET guid=198930, pool_entry=10455, description='Wintergrasp 189981, node 24' WHERE guid=121528; UPDATE gameobject SET guid=198929 WHERE guid=121529; UPDATE pool_gameobject SET guid=198929, pool_entry=10455, description='Wintergrasp 191133, node 24' WHERE guid=121529; UPDATE gameobject SET guid=198928 WHERE guid=120038; UPDATE pool_gameobject SET guid=198928, pool_entry=10456, description='Wintergrasp 189980, node 25' WHERE guid=120038; UPDATE pool_pool SET pool_id=10456, description='Wintergrasp mineral, node 25' WHERE pool_id=5641; UPDATE pool_template SET entry=10456, description='Wintergrasp mineral, node 25' WHERE entry=5641; UPDATE gameobject SET guid=198927 WHERE guid=121530; UPDATE pool_gameobject SET guid=198927, pool_entry=10456, description='Wintergrasp 189981, node 25' WHERE guid=121530; UPDATE gameobject SET guid=198926 WHERE guid=121531; UPDATE pool_gameobject SET guid=198926, pool_entry=10456, description='Wintergrasp 191133, node 25' WHERE guid=121531; UPDATE gameobject SET guid=198925 WHERE guid=120058; UPDATE pool_gameobject SET guid=198925, pool_entry=10457, description='Wintergrasp 189980, node 26' WHERE guid=120058; UPDATE pool_pool SET pool_id=10457, description='Wintergrasp mineral, node 26' WHERE pool_id=5642; UPDATE pool_template SET entry=10457, description='Wintergrasp mineral, node 26' WHERE entry=5642; UPDATE gameobject SET guid=198924 WHERE guid=121532; UPDATE pool_gameobject SET guid=198924, pool_entry=10457, description='Wintergrasp 189981, node 26' WHERE guid=121532; UPDATE gameobject SET guid=198923 WHERE guid=121533; UPDATE pool_gameobject SET guid=198923, pool_entry=10457, description='Wintergrasp 191133, node 26' WHERE guid=121533; UPDATE gameobject SET guid=198922 WHERE guid=120088; UPDATE pool_gameobject SET guid=198922, pool_entry=10458, description='Wintergrasp 189980, node 27' WHERE guid=120088; UPDATE pool_pool SET pool_id=10458, description='Wintergrasp mineral, node 27' WHERE pool_id=5643; UPDATE pool_template SET entry=10458, description='Wintergrasp mineral, node 27' WHERE entry=5643; UPDATE gameobject SET guid=198921 WHERE guid=121534; UPDATE pool_gameobject SET guid=198921, pool_entry=10458, description='Wintergrasp 189981, node 27' WHERE guid=121534; UPDATE gameobject SET guid=198920 WHERE guid=121535; UPDATE pool_gameobject SET guid=198920, pool_entry=10458, description='Wintergrasp 191133, node 27' WHERE guid=121535; UPDATE gameobject SET guid=198919 WHERE guid=120103; UPDATE pool_gameobject SET guid=198919, pool_entry=10459, description='Wintergrasp 189980, node 28' WHERE guid=120103; UPDATE pool_pool SET pool_id=10459, description='Wintergrasp mineral, node 28' WHERE pool_id=5644; UPDATE pool_template SET entry=10459, description='Wintergrasp mineral, node 28' WHERE entry=5644; UPDATE gameobject SET guid=198918 WHERE guid=121536; UPDATE pool_gameobject SET guid=198918, pool_entry=10459, description='Wintergrasp 189981, node 28' WHERE guid=121536; UPDATE gameobject SET guid=198917 WHERE guid=121537; UPDATE pool_gameobject SET guid=198917, pool_entry=10459, description='Wintergrasp 191133, node 28' WHERE guid=121537; UPDATE gameobject SET guid=198916 WHERE guid=120146; UPDATE pool_gameobject SET guid=198916, pool_entry=10460, description='Wintergrasp 189980, node 29' WHERE guid=120146; UPDATE pool_pool SET pool_id=10460, description='Wintergrasp mineral, node 29' WHERE pool_id=5645; UPDATE pool_template SET entry=10460, description='Wintergrasp mineral, node 29' WHERE entry=5645; UPDATE gameobject SET guid=198915 WHERE guid=121538; UPDATE pool_gameobject SET guid=198915, pool_entry=10460, description='Wintergrasp 189981, node 29' WHERE guid=121538; UPDATE gameobject SET guid=198914 WHERE guid=121539; UPDATE pool_gameobject SET guid=198914, pool_entry=10460, description='Wintergrasp 191133, node 29' WHERE guid=121539; UPDATE gameobject SET guid=198913 WHERE guid=120160; UPDATE pool_gameobject SET guid=198913, pool_entry=10461, description='Wintergrasp 189980, node 30' WHERE guid=120160; UPDATE pool_pool SET pool_id=10461, description='Wintergrasp mineral, node 30' WHERE pool_id=5646; UPDATE pool_template SET entry=10461, description='Wintergrasp mineral, node 30' WHERE entry=5646; UPDATE gameobject SET guid=198912 WHERE guid=121540; UPDATE pool_gameobject SET guid=198912, pool_entry=10461, description='Wintergrasp 189981, node 30' WHERE guid=121540; UPDATE gameobject SET guid=198911 WHERE guid=121541; UPDATE pool_gameobject SET guid=198911, pool_entry=10461, description='Wintergrasp 191133, node 30' WHERE guid=121541; UPDATE gameobject SET guid=198910 WHERE guid=120161; UPDATE pool_gameobject SET guid=198910, pool_entry=10462, description='Wintergrasp 189980, node 31' WHERE guid=120161; UPDATE pool_pool SET pool_id=10462, description='Wintergrasp mineral, node 31' WHERE pool_id=5647; UPDATE pool_template SET entry=10462, description='Wintergrasp mineral, node 31' WHERE entry=5647; UPDATE gameobject SET guid=198909 WHERE guid=121542; UPDATE pool_gameobject SET guid=198909, pool_entry=10462, description='Wintergrasp 189981, node 31' WHERE guid=121542; UPDATE gameobject SET guid=198908 WHERE guid=121543; UPDATE pool_gameobject SET guid=198908, pool_entry=10462, description='Wintergrasp 191133, node 31' WHERE guid=121543; UPDATE gameobject SET guid=198907 WHERE guid=121544; UPDATE pool_gameobject SET guid=198907, pool_entry=10463, description='Wintergrasp 189981, node 32' WHERE guid=121544; UPDATE pool_pool SET pool_id=10463, description='Wintergrasp mineral, node 32' WHERE pool_id=5648; UPDATE pool_template SET entry=10463, description='Wintergrasp mineral, node 32' WHERE entry=5648; UPDATE gameobject SET guid=198906 WHERE guid=121545; UPDATE pool_gameobject SET guid=198906, pool_entry=10463, description='Wintergrasp 191133, node 32' WHERE guid=121545; UPDATE gameobject SET guid=198905 WHERE guid=120166; UPDATE pool_gameobject SET guid=198905, pool_entry=10463, description='Wintergrasp 189980, node 32' WHERE guid=120166; UPDATE gameobject SET guid=198904 WHERE guid=120167; UPDATE pool_gameobject SET guid=198904, pool_entry=10464, description='Wintergrasp 189980, node 33' WHERE guid=120167; UPDATE pool_pool SET pool_id=10464, description='Wintergrasp mineral, node 33' WHERE pool_id=5649; UPDATE pool_template SET entry=10464, description='Wintergrasp mineral, node 33' WHERE entry=5649; UPDATE gameobject SET guid=198903 WHERE guid=121546; UPDATE pool_gameobject SET guid=198903, pool_entry=10464, description='Wintergrasp 189981, node 33' WHERE guid=121546; UPDATE gameobject SET guid=198902 WHERE guid=121547; UPDATE pool_gameobject SET guid=198902, pool_entry=10464, description='Wintergrasp 191133, node 33' WHERE guid=121547; UPDATE gameobject SET guid=198901 WHERE guid=120173; UPDATE pool_gameobject SET guid=198901, pool_entry=10465, description='Wintergrasp 189980, node 34' WHERE guid=120173; UPDATE pool_pool SET pool_id=10465, description='Wintergrasp mineral, node 34' WHERE pool_id=5650; UPDATE pool_template SET entry=10465, description='Wintergrasp mineral, node 34' WHERE entry=5650; UPDATE gameobject SET guid=198900 WHERE guid=121548; UPDATE pool_gameobject SET guid=198900, pool_entry=10465, description='Wintergrasp 189981, node 34' WHERE guid=121548; UPDATE gameobject SET guid=198899 WHERE guid=121549; UPDATE pool_gameobject SET guid=198899, pool_entry=10465, description='Wintergrasp 191133, node 34' WHERE guid=121549; UPDATE gameobject SET guid=198898 WHERE guid=120272; UPDATE pool_gameobject SET guid=198898, pool_entry=10466, description='Wintergrasp 189980, node 35' WHERE guid=120272; UPDATE pool_pool SET pool_id=10466, description='Wintergrasp mineral, node 35' WHERE pool_id=5651; UPDATE pool_template SET entry=10466, description='Wintergrasp mineral, node 35' WHERE entry=5651; UPDATE gameobject SET guid=198897 WHERE guid=121550; UPDATE pool_gameobject SET guid=198897, pool_entry=10466, description='Wintergrasp 189981, node 35' WHERE guid=121550; UPDATE gameobject SET guid=198896 WHERE guid=121551; UPDATE pool_gameobject SET guid=198896, pool_entry=10466, description='Wintergrasp 191133, node 35' WHERE guid=121551; UPDATE gameobject SET guid=198895 WHERE guid=120273; UPDATE pool_gameobject SET guid=198895, pool_entry=10467, description='Wintergrasp 189980, node 36' WHERE guid=120273; UPDATE pool_pool SET pool_id=10467, description='Wintergrasp mineral, node 36' WHERE pool_id=5652; UPDATE pool_template SET entry=10467, description='Wintergrasp mineral, node 36' WHERE entry=5652; UPDATE gameobject SET guid=198894 WHERE guid=121552; UPDATE pool_gameobject SET guid=198894, pool_entry=10467, description='Wintergrasp 189981, node 36' WHERE guid=121552; UPDATE gameobject SET guid=198893 WHERE guid=121553; UPDATE pool_gameobject SET guid=198893, pool_entry=10467, description='Wintergrasp 191133, node 36' WHERE guid=121553; UPDATE gameobject SET guid=198892 WHERE guid=121555; UPDATE pool_gameobject SET guid=198892, pool_entry=10468, description='Wintergrasp 191133, node 37' WHERE guid=121555; UPDATE pool_pool SET pool_id=10468, description='Wintergrasp mineral, node 37' WHERE pool_id=5653; UPDATE pool_template SET entry=10468, description='Wintergrasp mineral, node 37' WHERE entry=5653; UPDATE gameobject SET guid=198891 WHERE guid=120277; UPDATE pool_gameobject SET guid=198891, pool_entry=10468, description='Wintergrasp 189980, node 37' WHERE guid=120277; UPDATE gameobject SET guid=198890 WHERE guid=121554; UPDATE pool_gameobject SET guid=198890, pool_entry=10468, description='Wintergrasp 189981, node 37' WHERE guid=121554; UPDATE gameobject SET guid=198889 WHERE guid=120284; UPDATE pool_gameobject SET guid=198889, pool_entry=10469, description='Wintergrasp 189980, node 38' WHERE guid=120284; UPDATE pool_pool SET pool_id=10469, description='Wintergrasp mineral, node 38' WHERE pool_id=5654; UPDATE pool_template SET entry=10469, description='Wintergrasp mineral, node 38' WHERE entry=5654; UPDATE gameobject SET guid=198888 WHERE guid=121556; UPDATE pool_gameobject SET guid=198888, pool_entry=10469, description='Wintergrasp 189981, node 38' WHERE guid=121556; UPDATE gameobject SET guid=198887 WHERE guid=121557; UPDATE pool_gameobject SET guid=198887, pool_entry=10469, description='Wintergrasp 191133, node 38' WHERE guid=121557; UPDATE gameobject SET guid=198886 WHERE guid=120684; UPDATE pool_gameobject SET guid=198886, pool_entry=10470, description='Wintergrasp 189980, node 39' WHERE guid=120684; UPDATE pool_pool SET pool_id=10470, description='Wintergrasp mineral, node 39' WHERE pool_id=5655; UPDATE pool_template SET entry=10470, description='Wintergrasp mineral, node 39' WHERE entry=5655; UPDATE gameobject SET guid=198885 WHERE guid=121558; UPDATE pool_gameobject SET guid=198885, pool_entry=10470, description='Wintergrasp 189981, node 39' WHERE guid=121558; UPDATE gameobject SET guid=198884 WHERE guid=121559; UPDATE pool_gameobject SET guid=198884, pool_entry=10470, description='Wintergrasp 191133, node 39' WHERE guid=121559; UPDATE gameobject SET guid=198883 WHERE guid=120694; UPDATE pool_gameobject SET guid=198883, pool_entry=10471, description='Wintergrasp 189980, node 40' WHERE guid=120694; UPDATE pool_pool SET pool_id=10471, description='Wintergrasp mineral, node 40' WHERE pool_id=5656; UPDATE pool_template SET entry=10471, description='Wintergrasp mineral, node 40' WHERE entry=5656; UPDATE gameobject SET guid=198882 WHERE guid=121560; UPDATE pool_gameobject SET guid=198882, pool_entry=10471, description='Wintergrasp 189981, node 40' WHERE guid=121560; UPDATE gameobject SET guid=198881 WHERE guid=121561; UPDATE pool_gameobject SET guid=198881, pool_entry=10471, description='Wintergrasp 191133, node 40' WHERE guid=121561; UPDATE gameobject SET guid=198880 WHERE guid=120722; UPDATE pool_gameobject SET guid=198880, pool_entry=10472, description='Wintergrasp 189980, node 41' WHERE guid=120722; UPDATE pool_pool SET pool_id=10472, description='Wintergrasp mineral, node 41' WHERE pool_id=5657; UPDATE pool_template SET entry=10472, description='Wintergrasp mineral, node 41' WHERE entry=5657; UPDATE gameobject SET guid=198879 WHERE guid=121562; UPDATE pool_gameobject SET guid=198879, pool_entry=10472, description='Wintergrasp 189981, node 41' WHERE guid=121562; UPDATE gameobject SET guid=198878 WHERE guid=121563; UPDATE pool_gameobject SET guid=198878, pool_entry=10472, description='Wintergrasp 191133, node 41' WHERE guid=121563; UPDATE gameobject SET guid=198877 WHERE guid=120728; UPDATE pool_gameobject SET guid=198877, pool_entry=10473, description='Wintergrasp 189980, node 42' WHERE guid=120728; UPDATE pool_pool SET pool_id=10473, description='Wintergrasp mineral, node 42' WHERE pool_id=5658; UPDATE pool_template SET entry=10473, description='Wintergrasp mineral, node 42' WHERE entry=5658; UPDATE gameobject SET guid=198876 WHERE guid=121564; UPDATE pool_gameobject SET guid=198876, pool_entry=10473, description='Wintergrasp 189981, node 42' WHERE guid=121564; UPDATE gameobject SET guid=198875 WHERE guid=121565; UPDATE pool_gameobject SET guid=198875, pool_entry=10473, description='Wintergrasp 191133, node 42' WHERE guid=121565; UPDATE gameobject SET guid=198874 WHERE guid=120736; UPDATE pool_gameobject SET guid=198874, pool_entry=10474, description='Wintergrasp 189980, node 43' WHERE guid=120736; UPDATE pool_pool SET pool_id=10474, description='Wintergrasp mineral, node 43' WHERE pool_id=5659; UPDATE pool_template SET entry=10474, description='Wintergrasp mineral, node 43' WHERE entry=5659; UPDATE gameobject SET guid=198873 WHERE guid=121566; UPDATE pool_gameobject SET guid=198873, pool_entry=10474, description='Wintergrasp 189981, node 43' WHERE guid=121566; UPDATE gameobject SET guid=198872 WHERE guid=121567; UPDATE pool_gameobject SET guid=198872, pool_entry=10474, description='Wintergrasp 191133, node 43' WHERE guid=121567; UPDATE gameobject SET guid=198871 WHERE guid=120737; UPDATE pool_gameobject SET guid=198871, pool_entry=10475, description='Wintergrasp 189980, node 44' WHERE guid=120737; UPDATE pool_pool SET pool_id=10475, description='Wintergrasp mineral, node 44' WHERE pool_id=5660; UPDATE pool_template SET entry=10475, description='Wintergrasp mineral, node 44' WHERE entry=5660; UPDATE gameobject SET guid=198870 WHERE guid=121568; UPDATE pool_gameobject SET guid=198870, pool_entry=10475, description='Wintergrasp 189981, node 44' WHERE guid=121568; UPDATE gameobject SET guid=198869 WHERE guid=121569; UPDATE pool_gameobject SET guid=198869, pool_entry=10475, description='Wintergrasp 191133, node 44' WHERE guid=121569; UPDATE gameobject SET guid=198868 WHERE guid=120738; UPDATE pool_gameobject SET guid=198868, pool_entry=10476, description='Wintergrasp 189980, node 45' WHERE guid=120738; UPDATE pool_pool SET pool_id=10476, description='Wintergrasp mineral, node 45' WHERE pool_id=5661; UPDATE pool_template SET entry=10476, description='Wintergrasp mineral, node 45' WHERE entry=5661; UPDATE gameobject SET guid=198867 WHERE guid=121570; UPDATE pool_gameobject SET guid=198867, pool_entry=10476, description='Wintergrasp 189981, node 45' WHERE guid=121570; UPDATE gameobject SET guid=198866 WHERE guid=121571; UPDATE pool_gameobject SET guid=198866, pool_entry=10476, description='Wintergrasp 191133, node 45' WHERE guid=121571; -- icecrown UPDATE gameobject SET guid=198865 WHERE guid=61289; UPDATE pool_gameobject SET guid=198865, pool_entry=10477, description='Icecrown 189980, node 1' WHERE guid=61289; UPDATE pool_pool SET pool_id=10477, description='Icecrown mineral, node 1' WHERE pool_id=5448; UPDATE pool_template SET entry=10477, description='Icecrown mineral, node 1' WHERE entry=5448; UPDATE gameobject SET guid=198864 WHERE guid=121144; UPDATE pool_gameobject SET guid=198864, pool_entry=10477, description='Icecrown 189981, node 1' WHERE guid=121144; UPDATE gameobject SET guid=198863 WHERE guid=121145; UPDATE pool_gameobject SET guid=198863, pool_entry=10477, description='Icecrown 191133, node 1' WHERE guid=121145; UPDATE gameobject SET guid=198862 WHERE guid=61297; UPDATE pool_gameobject SET guid=198862, pool_entry=10478, description='Icecrown 189980, node 2' WHERE guid=61297; UPDATE pool_pool SET pool_id=10478, description='Icecrown mineral, node 2' WHERE pool_id=5449; UPDATE pool_template SET entry=10478, description='Icecrown mineral, node 2' WHERE entry=5449; UPDATE gameobject SET guid=198861 WHERE guid=121146; UPDATE pool_gameobject SET guid=198861, pool_entry=10478, description='Icecrown 189981, node 2' WHERE guid=121146; UPDATE gameobject SET guid=198860 WHERE guid=121147; UPDATE pool_gameobject SET guid=198860, pool_entry=10478, description='Icecrown 191133, node 2' WHERE guid=121147; UPDATE gameobject SET guid=198859 WHERE guid=61302; UPDATE pool_gameobject SET guid=198859, pool_entry=10479, description='Icecrown 189980, node 3' WHERE guid=61302; UPDATE pool_pool SET pool_id=10479, description='Icecrown mineral, node 3' WHERE pool_id=5450; UPDATE pool_template SET entry=10479, description='Icecrown mineral, node 3' WHERE entry=5450; UPDATE gameobject SET guid=198858 WHERE guid=121148; UPDATE pool_gameobject SET guid=198858, pool_entry=10479, description='Icecrown 189981, node 3' WHERE guid=121148; UPDATE gameobject SET guid=198857 WHERE guid=121149; UPDATE pool_gameobject SET guid=198857, pool_entry=10479, description='Icecrown 191133, node 3' WHERE guid=121149; UPDATE gameobject SET guid=198856 WHERE guid=61306; UPDATE pool_gameobject SET guid=198856, pool_entry=10480, description='Icecrown 189980, node 4' WHERE guid=61306; UPDATE pool_pool SET pool_id=10480, description='Icecrown mineral, node 4' WHERE pool_id=5451; UPDATE pool_template SET entry=10480, description='Icecrown mineral, node 4' WHERE entry=5451; UPDATE gameobject SET guid=198855 WHERE guid=121150; UPDATE pool_gameobject SET guid=198855, pool_entry=10480, description='Icecrown 189981, node 4' WHERE guid=121150; UPDATE gameobject SET guid=198854 WHERE guid=121151; UPDATE pool_gameobject SET guid=198854, pool_entry=10480, description='Icecrown 191133, node 4' WHERE guid=121151; UPDATE gameobject SET guid=198853 WHERE guid=121153; UPDATE pool_gameobject SET guid=198853, pool_entry=10481, description='Icecrown 191133, node 5' WHERE guid=121153; UPDATE pool_pool SET pool_id=10481, description='Icecrown mineral, node 5' WHERE pool_id=5452; UPDATE pool_template SET entry=10481, description='Icecrown mineral, node 5' WHERE entry=5452; UPDATE gameobject SET guid=198852 WHERE guid=61307; UPDATE pool_gameobject SET guid=198852, pool_entry=10481, description='Icecrown 189980, node 5' WHERE guid=61307; UPDATE gameobject SET guid=198851 WHERE guid=121152; UPDATE pool_gameobject SET guid=198851, pool_entry=10481, description='Icecrown 189981, node 5' WHERE guid=121152; UPDATE gameobject SET guid=198850 WHERE guid=61308; UPDATE pool_gameobject SET guid=198850, pool_entry=10482, description='Icecrown 189980, node 6' WHERE guid=61308; UPDATE pool_pool SET pool_id=10482, description='Icecrown mineral, node 6' WHERE pool_id=5453; UPDATE pool_template SET entry=10482, description='Icecrown mineral, node 6' WHERE entry=5453; UPDATE gameobject SET guid=198849 WHERE guid=121154; UPDATE pool_gameobject SET guid=198849, pool_entry=10482, description='Icecrown 189981, node 6' WHERE guid=121154; UPDATE gameobject SET guid=198848 WHERE guid=121155; UPDATE pool_gameobject SET guid=198848, pool_entry=10482, description='Icecrown 191133, node 6' WHERE guid=121155; UPDATE gameobject SET guid=198847 WHERE guid=61309; UPDATE pool_gameobject SET guid=198847, pool_entry=10483, description='Icecrown 189980, node 7' WHERE guid=61309; UPDATE pool_pool SET pool_id=10483, description='Icecrown mineral, node 7' WHERE pool_id=5454; UPDATE pool_template SET entry=10483, description='Icecrown mineral, node 7' WHERE entry=5454; UPDATE gameobject SET guid=198846 WHERE guid=121156; UPDATE pool_gameobject SET guid=198846, pool_entry=10483, description='Icecrown 189981, node 7' WHERE guid=121156; UPDATE gameobject SET guid=198845 WHERE guid=121157; UPDATE pool_gameobject SET guid=198845, pool_entry=10483, description='Icecrown 191133, node 7' WHERE guid=121157; UPDATE gameobject SET guid=198844 WHERE guid=61310; UPDATE pool_gameobject SET guid=198844, pool_entry=10484, description='Icecrown 189980, node 8' WHERE guid=61310; UPDATE pool_pool SET pool_id=10484, description='Icecrown mineral, node 8' WHERE pool_id=5455; UPDATE pool_template SET entry=10484, description='Icecrown mineral, node 8' WHERE entry=5455; UPDATE gameobject SET guid=198843 WHERE guid=121158; UPDATE pool_gameobject SET guid=198843, pool_entry=10484, description='Icecrown 189981, node 8' WHERE guid=121158; UPDATE gameobject SET guid=198842 WHERE guid=121159; UPDATE pool_gameobject SET guid=198842, pool_entry=10484, description='Icecrown 191133, node 8' WHERE guid=121159; UPDATE gameobject SET guid=198841 WHERE guid=61311; UPDATE pool_gameobject SET guid=198841, pool_entry=10485, description='Icecrown 189980, node 9' WHERE guid=61311; UPDATE pool_pool SET pool_id=10485, description='Icecrown mineral, node 9' WHERE pool_id=5456; UPDATE pool_template SET entry=10485, description='Icecrown mineral, node 9' WHERE entry=5456; UPDATE gameobject SET guid=198840 WHERE guid=121160; UPDATE pool_gameobject SET guid=198840, pool_entry=10485, description='Icecrown 189981, node 9' WHERE guid=121160; UPDATE gameobject SET guid=198839 WHERE guid=121161; UPDATE pool_gameobject SET guid=198839, pool_entry=10485, description='Icecrown 191133, node 9' WHERE guid=121161; UPDATE gameobject SET guid=198838 WHERE guid=61331; UPDATE pool_gameobject SET guid=198838, pool_entry=10486, description='Icecrown 189980, node 10' WHERE guid=61331; UPDATE pool_pool SET pool_id=10486, description='Icecrown mineral, node 10' WHERE pool_id=5457; UPDATE pool_template SET entry=10486, description='Icecrown mineral, node 10' WHERE entry=5457; UPDATE gameobject SET guid=198837 WHERE guid=121162; UPDATE pool_gameobject SET guid=198837, pool_entry=10486, description='Icecrown 189981, node 10' WHERE guid=121162; UPDATE gameobject SET guid=198836 WHERE guid=121163; UPDATE pool_gameobject SET guid=198836, pool_entry=10486, description='Icecrown 191133, node 10' WHERE guid=121163; UPDATE gameobject SET guid=198835 WHERE guid=61335; UPDATE pool_gameobject SET guid=198835, pool_entry=10487, description='Icecrown 189980, node 11' WHERE guid=61335; UPDATE pool_pool SET pool_id=10487, description='Icecrown mineral, node 11' WHERE pool_id=5458; UPDATE pool_template SET entry=10487, description='Icecrown mineral, node 11' WHERE entry=5458; UPDATE gameobject SET guid=198834 WHERE guid=121164; UPDATE pool_gameobject SET guid=198834, pool_entry=10487, description='Icecrown 189981, node 11' WHERE guid=121164; UPDATE gameobject SET guid=198833 WHERE guid=121165; UPDATE pool_gameobject SET guid=198833, pool_entry=10487, description='Icecrown 191133, node 11' WHERE guid=121165; UPDATE gameobject SET guid=198832 WHERE guid=61977; UPDATE pool_gameobject SET guid=198832, pool_entry=10488, description='Icecrown 189980, node 12' WHERE guid=61977; UPDATE pool_pool SET pool_id=10488, description='Icecrown mineral, node 12' WHERE pool_id=5459; UPDATE pool_template SET entry=10488, description='Icecrown mineral, node 12' WHERE entry=5459; UPDATE gameobject SET guid=198831 WHERE guid=121166; UPDATE pool_gameobject SET guid=198831, pool_entry=10488, description='Icecrown 189981, node 12' WHERE guid=121166; UPDATE gameobject SET guid=198830 WHERE guid=121167; UPDATE pool_gameobject SET guid=198830, pool_entry=10488, description='Icecrown 191133, node 12' WHERE guid=121167; UPDATE gameobject SET guid=198829 WHERE guid=61978; UPDATE pool_gameobject SET guid=198829, pool_entry=10489, description='Icecrown 189980, node 13' WHERE guid=61978; UPDATE pool_pool SET pool_id=10489, description='Icecrown mineral, node 13' WHERE pool_id=5460; UPDATE pool_template SET entry=10489, description='Icecrown mineral, node 13' WHERE entry=5460; UPDATE gameobject SET guid=198828 WHERE guid=121168; UPDATE pool_gameobject SET guid=198828, pool_entry=10489, description='Icecrown 189981, node 13' WHERE guid=121168; UPDATE gameobject SET guid=198827 WHERE guid=121169; UPDATE pool_gameobject SET guid=198827, pool_entry=10489, description='Icecrown 191133, node 13' WHERE guid=121169; UPDATE gameobject SET guid=198826 WHERE guid=61981; UPDATE pool_gameobject SET guid=198826, pool_entry=10490, description='Icecrown 189980, node 14' WHERE guid=61981; UPDATE pool_pool SET pool_id=10490, description='Icecrown mineral, node 14' WHERE pool_id=5461; UPDATE pool_template SET entry=10490, description='Icecrown mineral, node 14' WHERE entry=5461; UPDATE gameobject SET guid=198825 WHERE guid=121170; UPDATE pool_gameobject SET guid=198825, pool_entry=10490, description='Icecrown 189981, node 14' WHERE guid=121170; UPDATE gameobject SET guid=198824 WHERE guid=121171; UPDATE pool_gameobject SET guid=198824, pool_entry=10490, description='Icecrown 191133, node 14' WHERE guid=121171; UPDATE gameobject SET guid=198823 WHERE guid=61983; UPDATE pool_gameobject SET guid=198823, pool_entry=10491, description='Icecrown 189980, node 15' WHERE guid=61983; UPDATE pool_pool SET pool_id=10491, description='Icecrown mineral, node 15' WHERE pool_id=5462; UPDATE pool_template SET entry=10491, description='Icecrown mineral, node 15' WHERE entry=5462; UPDATE gameobject SET guid=198822 WHERE guid=121172; UPDATE pool_gameobject SET guid=198822, pool_entry=10491, description='Icecrown 189981, node 15' WHERE guid=121172; UPDATE gameobject SET guid=198821 WHERE guid=121173; UPDATE pool_gameobject SET guid=198821, pool_entry=10491, description='Icecrown 191133, node 15' WHERE guid=121173; UPDATE gameobject SET guid=198820 WHERE guid=121174; UPDATE pool_gameobject SET guid=198820, pool_entry=10492, description='Icecrown 189981, node 16' WHERE guid=121174; UPDATE pool_pool SET pool_id=10492, description='Icecrown mineral, node 16' WHERE pool_id=5463; UPDATE pool_template SET entry=10492, description='Icecrown mineral, node 16' WHERE entry=5463; UPDATE gameobject SET guid=198819 WHERE guid=121175; UPDATE pool_gameobject SET guid=198819, pool_entry=10492, description='Icecrown 191133, node 16' WHERE guid=121175; UPDATE gameobject SET guid=198818 WHERE guid=61992; UPDATE pool_gameobject SET guid=198818, pool_entry=10492, description='Icecrown 189980, node 16' WHERE guid=61992; UPDATE gameobject SET guid=198817 WHERE guid=62179; UPDATE pool_gameobject SET guid=198817, pool_entry=10493, description='Icecrown 189980, node 17' WHERE guid=62179; UPDATE pool_pool SET pool_id=10493, description='Icecrown mineral, node 17' WHERE pool_id=5464; UPDATE pool_template SET entry=10493, description='Icecrown mineral, node 17' WHERE entry=5464; UPDATE gameobject SET guid=198816 WHERE guid=121176; UPDATE pool_gameobject SET guid=198816, pool_entry=10493, description='Icecrown 189981, node 17' WHERE guid=121176; UPDATE gameobject SET guid=198815 WHERE guid=121177; UPDATE pool_gameobject SET guid=198815, pool_entry=10493, description='Icecrown 191133, node 17' WHERE guid=121177; UPDATE gameobject SET guid=198814 WHERE guid=62180; UPDATE pool_gameobject SET guid=198814, pool_entry=10494, description='Icecrown 189980, node 18' WHERE guid=62180; UPDATE pool_pool SET pool_id=10494, description='Icecrown mineral, node 18' WHERE pool_id=5465; UPDATE pool_template SET entry=10494, description='Icecrown mineral, node 18' WHERE entry=5465; UPDATE gameobject SET guid=198813 WHERE guid=121178; UPDATE pool_gameobject SET guid=198813, pool_entry=10494, description='Icecrown 189981, node 18' WHERE guid=121178; UPDATE gameobject SET guid=198812 WHERE guid=121179; UPDATE pool_gameobject SET guid=198812, pool_entry=10494, description='Icecrown 191133, node 18' WHERE guid=121179; UPDATE gameobject SET guid=198811 WHERE guid=62181; UPDATE pool_gameobject SET guid=198811, pool_entry=10495, description='Icecrown 189980, node 19' WHERE guid=62181; UPDATE pool_pool SET pool_id=10495, description='Icecrown mineral, node 19' WHERE pool_id=5466; UPDATE pool_template SET entry=10495, description='Icecrown mineral, node 19' WHERE entry=5466; UPDATE gameobject SET guid=198810 WHERE guid=121180; UPDATE pool_gameobject SET guid=198810, pool_entry=10495, description='Icecrown 189981, node 19' WHERE guid=121180; UPDATE gameobject SET guid=198809 WHERE guid=121181; UPDATE pool_gameobject SET guid=198809, pool_entry=10495, description='Icecrown 191133, node 19' WHERE guid=121181; UPDATE gameobject SET guid=198808 WHERE guid=62182; UPDATE pool_gameobject SET guid=198808, pool_entry=10496, description='Icecrown 189980, node 20' WHERE guid=62182; UPDATE pool_pool SET pool_id=10496, description='Icecrown mineral, node 20' WHERE pool_id=5467; UPDATE pool_template SET entry=10496, description='Icecrown mineral, node 20' WHERE entry=5467; UPDATE gameobject SET guid=198807 WHERE guid=121182; UPDATE pool_gameobject SET guid=198807, pool_entry=10496, description='Icecrown 189981, node 20' WHERE guid=121182; UPDATE gameobject SET guid=198806 WHERE guid=121183; UPDATE pool_gameobject SET guid=198806, pool_entry=10496, description='Icecrown 191133, node 20' WHERE guid=121183; UPDATE gameobject SET guid=198805 WHERE guid=121185; UPDATE pool_gameobject SET guid=198805, pool_entry=10497, description='Icecrown 191133, node 21' WHERE guid=121185; UPDATE pool_pool SET pool_id=10497, description='Icecrown mineral, node 21' WHERE pool_id=5468; UPDATE pool_template SET entry=10497, description='Icecrown mineral, node 21' WHERE entry=5468; UPDATE gameobject SET guid=198804 WHERE guid=62183; UPDATE pool_gameobject SET guid=198804, pool_entry=10497, description='Icecrown 189980, node 21' WHERE guid=62183; UPDATE gameobject SET guid=198803 WHERE guid=121184; UPDATE pool_gameobject SET guid=198803, pool_entry=10497, description='Icecrown 189981, node 21' WHERE guid=121184; UPDATE gameobject SET guid=198802 WHERE guid=62184; UPDATE pool_gameobject SET guid=198802, pool_entry=10498, description='Icecrown 189980, node 22' WHERE guid=62184; UPDATE pool_pool SET pool_id=10498, description='Icecrown mineral, node 22' WHERE pool_id=5469; UPDATE pool_template SET entry=10498, description='Icecrown mineral, node 22' WHERE entry=5469; UPDATE gameobject SET guid=198801 WHERE guid=121186; UPDATE pool_gameobject SET guid=198801, pool_entry=10498, description='Icecrown 189981, node 22' WHERE guid=121186; UPDATE gameobject SET guid=198800 WHERE guid=121187; UPDATE pool_gameobject SET guid=198800, pool_entry=10498, description='Icecrown 191133, node 22' WHERE guid=121187; UPDATE gameobject SET guid=198799 WHERE guid=62185; UPDATE pool_gameobject SET guid=198799, pool_entry=10499, description='Icecrown 189980, node 23' WHERE guid=62185; UPDATE pool_pool SET pool_id=10499, description='Icecrown mineral, node 23' WHERE pool_id=5470; UPDATE pool_template SET entry=10499, description='Icecrown mineral, node 23' WHERE entry=5470; UPDATE gameobject SET guid=198798 WHERE guid=121188; UPDATE pool_gameobject SET guid=198798, pool_entry=10499, description='Icecrown 189981, node 23' WHERE guid=121188; UPDATE gameobject SET guid=198797 WHERE guid=121189; UPDATE pool_gameobject SET guid=198797, pool_entry=10499, description='Icecrown 191133, node 23' WHERE guid=121189; UPDATE gameobject SET guid=198796 WHERE guid=62186; UPDATE pool_gameobject SET guid=198796, pool_entry=10500, description='Icecrown 189980, node 24' WHERE guid=62186; UPDATE pool_pool SET pool_id=10500, description='Icecrown mineral, node 24' WHERE pool_id=5471; UPDATE pool_template SET entry=10500, description='Icecrown mineral, node 24' WHERE entry=5471; UPDATE gameobject SET guid=198795 WHERE guid=121190; UPDATE pool_gameobject SET guid=198795, pool_entry=10500, description='Icecrown 189981, node 24' WHERE guid=121190; UPDATE gameobject SET guid=198794 WHERE guid=121191; UPDATE pool_gameobject SET guid=198794, pool_entry=10500, description='Icecrown 191133, node 24' WHERE guid=121191; UPDATE gameobject SET guid=198793 WHERE guid=62187; UPDATE pool_gameobject SET guid=198793, pool_entry=10501, description='Icecrown 189980, node 25' WHERE guid=62187; UPDATE pool_pool SET pool_id=10501, description='Icecrown mineral, node 25' WHERE pool_id=5472; UPDATE pool_template SET entry=10501, description='Icecrown mineral, node 25' WHERE entry=5472; UPDATE gameobject SET guid=198792 WHERE guid=121192; UPDATE pool_gameobject SET guid=198792, pool_entry=10501, description='Icecrown 189981, node 25' WHERE guid=121192; UPDATE gameobject SET guid=198791 WHERE guid=121193; UPDATE pool_gameobject SET guid=198791, pool_entry=10501, description='Icecrown 191133, node 25' WHERE guid=121193; UPDATE gameobject SET guid=198790 WHERE guid=62188; UPDATE pool_gameobject SET guid=198790, pool_entry=10502, description='Icecrown 189980, node 26' WHERE guid=62188; UPDATE pool_pool SET pool_id=10502, description='Icecrown mineral, node 26' WHERE pool_id=5473; UPDATE pool_template SET entry=10502, description='Icecrown mineral, node 26' WHERE entry=5473; UPDATE gameobject SET guid=198789 WHERE guid=121194; UPDATE pool_gameobject SET guid=198789, pool_entry=10502, description='Icecrown 189981, node 26' WHERE guid=121194; UPDATE gameobject SET guid=198788 WHERE guid=121195; UPDATE pool_gameobject SET guid=198788, pool_entry=10502, description='Icecrown 191133, node 26' WHERE guid=121195; UPDATE gameobject SET guid=198787 WHERE guid=62189; UPDATE pool_gameobject SET guid=198787, pool_entry=10503, description='Icecrown 189980, node 27' WHERE guid=62189; UPDATE pool_pool SET pool_id=10503, description='Icecrown mineral, node 27' WHERE pool_id=5474; UPDATE pool_template SET entry=10503, description='Icecrown mineral, node 27' WHERE entry=5474; UPDATE gameobject SET guid=198786 WHERE guid=121196; UPDATE pool_gameobject SET guid=198786, pool_entry=10503, description='Icecrown 189981, node 27' WHERE guid=121196; UPDATE gameobject SET guid=198785 WHERE guid=121197; UPDATE pool_gameobject SET guid=198785, pool_entry=10503, description='Icecrown 191133, node 27' WHERE guid=121197; UPDATE gameobject SET guid=198784 WHERE guid=62190; UPDATE pool_gameobject SET guid=198784, pool_entry=10504, description='Icecrown 189980, node 28' WHERE guid=62190; UPDATE pool_pool SET pool_id=10504, description='Icecrown mineral, node 28' WHERE pool_id=5475; UPDATE pool_template SET entry=10504, description='Icecrown mineral, node 28' WHERE entry=5475; UPDATE gameobject SET guid=198783 WHERE guid=121198; UPDATE pool_gameobject SET guid=198783, pool_entry=10504, description='Icecrown 189981, node 28' WHERE guid=121198; UPDATE gameobject SET guid=198782 WHERE guid=121199; UPDATE pool_gameobject SET guid=198782, pool_entry=10504, description='Icecrown 191133, node 28' WHERE guid=121199; UPDATE gameobject SET guid=198781 WHERE guid=62191; UPDATE pool_gameobject SET guid=198781, pool_entry=10505, description='Icecrown 189980, node 29' WHERE guid=62191; UPDATE pool_pool SET pool_id=10505, description='Icecrown mineral, node 29' WHERE pool_id=5476; UPDATE pool_template SET entry=10505, description='Icecrown mineral, node 29' WHERE entry=5476; UPDATE gameobject SET guid=198780 WHERE guid=121200; UPDATE pool_gameobject SET guid=198780, pool_entry=10505, description='Icecrown 189981, node 29' WHERE guid=121200; UPDATE gameobject SET guid=198779 WHERE guid=121201; UPDATE pool_gameobject SET guid=198779, pool_entry=10505, description='Icecrown 191133, node 29' WHERE guid=121201; UPDATE gameobject SET guid=198778 WHERE guid=62192; UPDATE pool_gameobject SET guid=198778, pool_entry=10506, description='Icecrown 189980, node 30' WHERE guid=62192; UPDATE pool_pool SET pool_id=10506, description='Icecrown mineral, node 30' WHERE pool_id=5477; UPDATE pool_template SET entry=10506, description='Icecrown mineral, node 30' WHERE entry=5477; UPDATE gameobject SET guid=198777 WHERE guid=121202; UPDATE pool_gameobject SET guid=198777, pool_entry=10506, description='Icecrown 189981, node 30' WHERE guid=121202; UPDATE gameobject SET guid=198776 WHERE guid=121203; UPDATE pool_gameobject SET guid=198776, pool_entry=10506, description='Icecrown 191133, node 30' WHERE guid=121203; UPDATE gameobject SET guid=198775 WHERE guid=62193; UPDATE pool_gameobject SET guid=198775, pool_entry=10507, description='Icecrown 189980, node 31' WHERE guid=62193; UPDATE pool_pool SET pool_id=10507, description='Icecrown mineral, node 31' WHERE pool_id=5478; UPDATE pool_template SET entry=10507, description='Icecrown mineral, node 31' WHERE entry=5478; UPDATE gameobject SET guid=198774 WHERE guid=121204; UPDATE pool_gameobject SET guid=198774, pool_entry=10507, description='Icecrown 189981, node 31' WHERE guid=121204; UPDATE gameobject SET guid=198773 WHERE guid=121205; UPDATE pool_gameobject SET guid=198773, pool_entry=10507, description='Icecrown 191133, node 31' WHERE guid=121205; UPDATE gameobject SET guid=198772 WHERE guid=121206; UPDATE pool_gameobject SET guid=198772, pool_entry=10508, description='Icecrown 189981, node 32' WHERE guid=121206; UPDATE pool_pool SET pool_id=10508, description='Icecrown mineral, node 32' WHERE pool_id=5479; UPDATE pool_template SET entry=10508, description='Icecrown mineral, node 32' WHERE entry=5479; UPDATE gameobject SET guid=198771 WHERE guid=121207; UPDATE pool_gameobject SET guid=198771, pool_entry=10508, description='Icecrown 191133, node 32' WHERE guid=121207; UPDATE gameobject SET guid=198770 WHERE guid=62194; UPDATE pool_gameobject SET guid=198770, pool_entry=10508, description='Icecrown 189980, node 32' WHERE guid=62194; UPDATE gameobject SET guid=198769 WHERE guid=62195; UPDATE pool_gameobject SET guid=198769, pool_entry=10509, description='Icecrown 189980, node 33' WHERE guid=62195; UPDATE pool_pool SET pool_id=10509, description='Icecrown mineral, node 33' WHERE pool_id=5480; UPDATE pool_template SET entry=10509, description='Icecrown mineral, node 33' WHERE entry=5480; UPDATE gameobject SET guid=198768 WHERE guid=121208; UPDATE pool_gameobject SET guid=198768, pool_entry=10509, description='Icecrown 189981, node 33' WHERE guid=121208; UPDATE gameobject SET guid=198767 WHERE guid=121209; UPDATE pool_gameobject SET guid=198767, pool_entry=10509, description='Icecrown 191133, node 33' WHERE guid=121209; UPDATE gameobject SET guid=198766 WHERE guid=62196; UPDATE pool_gameobject SET guid=198766, pool_entry=10510, description='Icecrown 189980, node 34' WHERE guid=62196; UPDATE pool_pool SET pool_id=10510, description='Icecrown mineral, node 34' WHERE pool_id=5481; UPDATE pool_template SET entry=10510, description='Icecrown mineral, node 34' WHERE entry=5481; UPDATE gameobject SET guid=198765 WHERE guid=121210; UPDATE pool_gameobject SET guid=198765, pool_entry=10510, description='Icecrown 189981, node 34' WHERE guid=121210; UPDATE gameobject SET guid=198764 WHERE guid=121211; UPDATE pool_gameobject SET guid=198764, pool_entry=10510, description='Icecrown 191133, node 34' WHERE guid=121211; UPDATE gameobject SET guid=198763 WHERE guid=62197; UPDATE pool_gameobject SET guid=198763, pool_entry=10511, description='Icecrown 189980, node 35' WHERE guid=62197; UPDATE pool_pool SET pool_id=10511, description='Icecrown mineral, node 35' WHERE pool_id=5482; UPDATE pool_template SET entry=10511, description='Icecrown mineral, node 35' WHERE entry=5482; UPDATE gameobject SET guid=198762 WHERE guid=121212; UPDATE pool_gameobject SET guid=198762, pool_entry=10511, description='Icecrown 189981, node 35' WHERE guid=121212; UPDATE gameobject SET guid=198761 WHERE guid=121213; UPDATE pool_gameobject SET guid=198761, pool_entry=10511, description='Icecrown 191133, node 35' WHERE guid=121213; UPDATE gameobject SET guid=198760 WHERE guid=62198; UPDATE pool_gameobject SET guid=198760, pool_entry=10512, description='Icecrown 189980, node 36' WHERE guid=62198; UPDATE pool_pool SET pool_id=10512, description='Icecrown mineral, node 36' WHERE pool_id=5483; UPDATE pool_template SET entry=10512, description='Icecrown mineral, node 36' WHERE entry=5483; UPDATE gameobject SET guid=198759 WHERE guid=121214; UPDATE pool_gameobject SET guid=198759, pool_entry=10512, description='Icecrown 189981, node 36' WHERE guid=121214; UPDATE gameobject SET guid=198758 WHERE guid=121215; UPDATE pool_gameobject SET guid=198758, pool_entry=10512, description='Icecrown 191133, node 36' WHERE guid=121215; UPDATE gameobject SET guid=198757 WHERE guid=121217; UPDATE pool_gameobject SET guid=198757, pool_entry=10513, description='Icecrown 191133, node 37' WHERE guid=121217; UPDATE pool_pool SET pool_id=10513, description='Icecrown mineral, node 37' WHERE pool_id=5484; UPDATE pool_template SET entry=10513, description='Icecrown mineral, node 37' WHERE entry=5484; UPDATE gameobject SET guid=198756 WHERE guid=62199; UPDATE pool_gameobject SET guid=198756, pool_entry=10513, description='Icecrown 189980, node 37' WHERE guid=62199; UPDATE gameobject SET guid=198755 WHERE guid=121216; UPDATE pool_gameobject SET guid=198755, pool_entry=10513, description='Icecrown 189981, node 37' WHERE guid=121216; UPDATE gameobject SET guid=198754 WHERE guid=62200; UPDATE pool_gameobject SET guid=198754, pool_entry=10514, description='Icecrown 189980, node 38' WHERE guid=62200; UPDATE pool_pool SET pool_id=10514, description='Icecrown mineral, node 38' WHERE pool_id=5485; UPDATE pool_template SET entry=10514, description='Icecrown mineral, node 38' WHERE entry=5485; UPDATE gameobject SET guid=198753 WHERE guid=121218; UPDATE pool_gameobject SET guid=198753, pool_entry=10514, description='Icecrown 189981, node 38' WHERE guid=121218; UPDATE gameobject SET guid=198752 WHERE guid=121219; UPDATE pool_gameobject SET guid=198752, pool_entry=10514, description='Icecrown 191133, node 38' WHERE guid=121219; UPDATE gameobject SET guid=198751 WHERE guid=62201; UPDATE pool_gameobject SET guid=198751, pool_entry=10515, description='Icecrown 189980, node 39' WHERE guid=62201; UPDATE pool_pool SET pool_id=10515, description='Icecrown mineral, node 39' WHERE pool_id=5486; UPDATE pool_template SET entry=10515, description='Icecrown mineral, node 39' WHERE entry=5486; UPDATE gameobject SET guid=198750 WHERE guid=121220; UPDATE pool_gameobject SET guid=198750, pool_entry=10515, description='Icecrown 189981, node 39' WHERE guid=121220; UPDATE gameobject SET guid=198749 WHERE guid=121221; UPDATE pool_gameobject SET guid=198749, pool_entry=10515, description='Icecrown 191133, node 39' WHERE guid=121221; UPDATE gameobject SET guid=198748 WHERE guid=62205; UPDATE pool_gameobject SET guid=198748, pool_entry=10516, description='Icecrown 189980, node 40' WHERE guid=62205; UPDATE pool_pool SET pool_id=10516, description='Icecrown mineral, node 40' WHERE pool_id=5487; UPDATE pool_template SET entry=10516, description='Icecrown mineral, node 40' WHERE entry=5487; UPDATE gameobject SET guid=198747 WHERE guid=121222; UPDATE pool_gameobject SET guid=198747, pool_entry=10516, description='Icecrown 189981, node 40' WHERE guid=121222; UPDATE gameobject SET guid=198746 WHERE guid=121223; UPDATE pool_gameobject SET guid=198746, pool_entry=10516, description='Icecrown 191133, node 40' WHERE guid=121223; UPDATE gameobject SET guid=198745 WHERE guid=62206; UPDATE pool_gameobject SET guid=198745, pool_entry=10517, description='Icecrown 189980, node 41' WHERE guid=62206; UPDATE pool_pool SET pool_id=10517, description='Icecrown mineral, node 41' WHERE pool_id=5488; UPDATE pool_template SET entry=10517, description='Icecrown mineral, node 41' WHERE entry=5488; UPDATE gameobject SET guid=198744 WHERE guid=121224; UPDATE pool_gameobject SET guid=198744, pool_entry=10517, description='Icecrown 189981, node 41' WHERE guid=121224; UPDATE gameobject SET guid=198743 WHERE guid=121225; UPDATE pool_gameobject SET guid=198743, pool_entry=10517, description='Icecrown 191133, node 41' WHERE guid=121225; UPDATE gameobject SET guid=198742 WHERE guid=62586; UPDATE pool_gameobject SET guid=198742, pool_entry=10518, description='Icecrown 189980, node 42' WHERE guid=62586; UPDATE pool_pool SET pool_id=10518, description='Icecrown mineral, node 42' WHERE pool_id=5489; UPDATE pool_template SET entry=10518, description='Icecrown mineral, node 42' WHERE entry=5489; UPDATE gameobject SET guid=198741 WHERE guid=121226; UPDATE pool_gameobject SET guid=198741, pool_entry=10518, description='Icecrown 189981, node 42' WHERE guid=121226; UPDATE gameobject SET guid=198740 WHERE guid=121227; UPDATE pool_gameobject SET guid=198740, pool_entry=10518, description='Icecrown 191133, node 42' WHERE guid=121227; UPDATE gameobject SET guid=198739 WHERE guid=62587; UPDATE pool_gameobject SET guid=198739, pool_entry=10519, description='Icecrown 189980, node 43' WHERE guid=62587; UPDATE pool_pool SET pool_id=10519, description='Icecrown mineral, node 43' WHERE pool_id=5490; UPDATE pool_template SET entry=10519, description='Icecrown mineral, node 43' WHERE entry=5490; UPDATE gameobject SET guid=198738 WHERE guid=121228; UPDATE pool_gameobject SET guid=198738, pool_entry=10519, description='Icecrown 189981, node 43' WHERE guid=121228; UPDATE gameobject SET guid=198737 WHERE guid=121229; UPDATE pool_gameobject SET guid=198737, pool_entry=10519, description='Icecrown 191133, node 43' WHERE guid=121229; UPDATE gameobject SET guid=198736 WHERE guid=62588; UPDATE pool_gameobject SET guid=198736, pool_entry=10520, description='Icecrown 189980, node 44' WHERE guid=62588; UPDATE pool_pool SET pool_id=10520, description='Icecrown mineral, node 44' WHERE pool_id=5491; UPDATE pool_template SET entry=10520, description='Icecrown mineral, node 44' WHERE entry=5491; UPDATE gameobject SET guid=198735 WHERE guid=121230; UPDATE pool_gameobject SET guid=198735, pool_entry=10520, description='Icecrown 189981, node 44' WHERE guid=121230; UPDATE gameobject SET guid=198734 WHERE guid=121231; UPDATE pool_gameobject SET guid=198734, pool_entry=10520, description='Icecrown 191133, node 44' WHERE guid=121231; UPDATE gameobject SET guid=198733 WHERE guid=63432; UPDATE pool_gameobject SET guid=198733, pool_entry=10521, description='Icecrown 189980, node 45' WHERE guid=63432; UPDATE pool_pool SET pool_id=10521, description='Icecrown mineral, node 45' WHERE pool_id=5492; UPDATE pool_template SET entry=10521, description='Icecrown mineral, node 45' WHERE entry=5492; UPDATE gameobject SET guid=198732 WHERE guid=121232; UPDATE pool_gameobject SET guid=198732, pool_entry=10521, description='Icecrown 189981, node 45' WHERE guid=121232; UPDATE gameobject SET guid=198731 WHERE guid=121233; UPDATE pool_gameobject SET guid=198731, pool_entry=10521, description='Icecrown 191133, node 45' WHERE guid=121233; UPDATE gameobject SET guid=198730 WHERE guid=63433; UPDATE pool_gameobject SET guid=198730, pool_entry=10522, description='Icecrown 189980, node 46' WHERE guid=63433; UPDATE pool_pool SET pool_id=10522, description='Icecrown mineral, node 46' WHERE pool_id=5493; UPDATE pool_template SET entry=10522, description='Icecrown mineral, node 46' WHERE entry=5493; UPDATE gameobject SET guid=198729 WHERE guid=121234; UPDATE pool_gameobject SET guid=198729, pool_entry=10522, description='Icecrown 189981, node 46' WHERE guid=121234; UPDATE gameobject SET guid=198728 WHERE guid=121235; UPDATE pool_gameobject SET guid=198728, pool_entry=10522, description='Icecrown 191133, node 46' WHERE guid=121235; UPDATE gameobject SET guid=198727 WHERE guid=63434; UPDATE pool_gameobject SET guid=198727, pool_entry=10523, description='Icecrown 189980, node 47' WHERE guid=63434; UPDATE pool_pool SET pool_id=10523, description='Icecrown mineral, node 47' WHERE pool_id=5494; UPDATE pool_template SET entry=10523, description='Icecrown mineral, node 47' WHERE entry=5494; UPDATE gameobject SET guid=198726 WHERE guid=121236; UPDATE pool_gameobject SET guid=198726, pool_entry=10523, description='Icecrown 189981, node 47' WHERE guid=121236; UPDATE gameobject SET guid=198725 WHERE guid=121237; UPDATE pool_gameobject SET guid=198725, pool_entry=10523, description='Icecrown 191133, node 47' WHERE guid=121237; UPDATE gameobject SET guid=198724 WHERE guid=121238; UPDATE pool_gameobject SET guid=198724, pool_entry=10524, description='Icecrown 189981, node 48' WHERE guid=121238; UPDATE pool_pool SET pool_id=10524, description='Icecrown mineral, node 48' WHERE pool_id=5495; UPDATE pool_template SET entry=10524, description='Icecrown mineral, node 48' WHERE entry=5495; UPDATE gameobject SET guid=198723 WHERE guid=121239; UPDATE pool_gameobject SET guid=198723, pool_entry=10524, description='Icecrown 191133, node 48' WHERE guid=121239; UPDATE gameobject SET guid=198722 WHERE guid=63435; UPDATE pool_gameobject SET guid=198722, pool_entry=10524, description='Icecrown 189980, node 48' WHERE guid=63435; UPDATE gameobject SET guid=198721 WHERE guid=63436; UPDATE pool_gameobject SET guid=198721, pool_entry=10525, description='Icecrown 189980, node 49' WHERE guid=63436; UPDATE pool_pool SET pool_id=10525, description='Icecrown mineral, node 49' WHERE pool_id=5496; UPDATE pool_template SET entry=10525, description='Icecrown mineral, node 49' WHERE entry=5496; UPDATE gameobject SET guid=198720 WHERE guid=121240; UPDATE pool_gameobject SET guid=198720, pool_entry=10525, description='Icecrown 189981, node 49' WHERE guid=121240; UPDATE gameobject SET guid=198719 WHERE guid=121241; UPDATE pool_gameobject SET guid=198719, pool_entry=10525, description='Icecrown 191133, node 49' WHERE guid=121241; UPDATE gameobject SET guid=198718 WHERE guid=67902; UPDATE pool_gameobject SET guid=198718, pool_entry=10526, description='Icecrown 189980, node 50' WHERE guid=67902; UPDATE pool_pool SET pool_id=10526, description='Icecrown mineral, node 50' WHERE pool_id=5497; UPDATE pool_template SET entry=10526, description='Icecrown mineral, node 50' WHERE entry=5497; UPDATE gameobject SET guid=198717 WHERE guid=121242; UPDATE pool_gameobject SET guid=198717, pool_entry=10526, description='Icecrown 189981, node 50' WHERE guid=121242; UPDATE gameobject SET guid=198716 WHERE guid=121243; UPDATE pool_gameobject SET guid=198716, pool_entry=10526, description='Icecrown 191133, node 50' WHERE guid=121243; UPDATE gameobject SET guid=198715 WHERE guid=120019; UPDATE pool_gameobject SET guid=198715, pool_entry=10527, description='Icecrown 189980, node 51' WHERE guid=120019; UPDATE pool_pool SET pool_id=10527, description='Icecrown mineral, node 51' WHERE pool_id=5498; UPDATE pool_template SET entry=10527, description='Icecrown mineral, node 51' WHERE entry=5498; UPDATE gameobject SET guid=198714 WHERE guid=121244; UPDATE pool_gameobject SET guid=198714, pool_entry=10527, description='Icecrown 189981, node 51' WHERE guid=121244; UPDATE gameobject SET guid=198713 WHERE guid=121245; UPDATE pool_gameobject SET guid=198713, pool_entry=10527, description='Icecrown 191133, node 51' WHERE guid=121245; UPDATE gameobject SET guid=198712 WHERE guid=120021; UPDATE pool_gameobject SET guid=198712, pool_entry=10528, description='Icecrown 189980, node 52' WHERE guid=120021; UPDATE pool_pool SET pool_id=10528, description='Icecrown mineral, node 52' WHERE pool_id=5499; UPDATE pool_template SET entry=10528, description='Icecrown mineral, node 52' WHERE entry=5499; UPDATE gameobject SET guid=198711 WHERE guid=121246; UPDATE pool_gameobject SET guid=198711, pool_entry=10528, description='Icecrown 189981, node 52' WHERE guid=121246; UPDATE gameobject SET guid=198710 WHERE guid=121247; UPDATE pool_gameobject SET guid=198710, pool_entry=10528, description='Icecrown 191133, node 52' WHERE guid=121247; UPDATE gameobject SET guid=198709 WHERE guid=121249; UPDATE pool_gameobject SET guid=198709, pool_entry=10529, description='Icecrown 191133, node 53' WHERE guid=121249; UPDATE pool_pool SET pool_id=10529, description='Icecrown mineral, node 53' WHERE pool_id=5500; UPDATE pool_template SET entry=10529, description='Icecrown mineral, node 53' WHERE entry=5500; UPDATE gameobject SET guid=198708 WHERE guid=120022; UPDATE pool_gameobject SET guid=198708, pool_entry=10529, description='Icecrown 189980, node 53' WHERE guid=120022; UPDATE gameobject SET guid=198707 WHERE guid=121248; UPDATE pool_gameobject SET guid=198707, pool_entry=10529, description='Icecrown 189981, node 53' WHERE guid=121248; UPDATE gameobject SET guid=198706 WHERE guid=120023; UPDATE pool_gameobject SET guid=198706, pool_entry=10530, description='Icecrown 189980, node 54' WHERE guid=120023; UPDATE pool_pool SET pool_id=10530, description='Icecrown mineral, node 54' WHERE pool_id=5501; UPDATE pool_template SET entry=10530, description='Icecrown mineral, node 54' WHERE entry=5501; UPDATE gameobject SET guid=198705 WHERE guid=121250; UPDATE pool_gameobject SET guid=198705, pool_entry=10530, description='Icecrown 189981, node 54' WHERE guid=121250; UPDATE gameobject SET guid=198704 WHERE guid=121251; UPDATE pool_gameobject SET guid=198704, pool_entry=10530, description='Icecrown 191133, node 54' WHERE guid=121251; UPDATE gameobject SET guid=198703 WHERE guid=120024; UPDATE pool_gameobject SET guid=198703, pool_entry=10531, description='Icecrown 189980, node 55' WHERE guid=120024; UPDATE pool_pool SET pool_id=10531, description='Icecrown mineral, node 55' WHERE pool_id=5502; UPDATE pool_template SET entry=10531, description='Icecrown mineral, node 55' WHERE entry=5502; UPDATE gameobject SET guid=198702 WHERE guid=121252; UPDATE pool_gameobject SET guid=198702, pool_entry=10531, description='Icecrown 189981, node 55' WHERE guid=121252; UPDATE gameobject SET guid=198701 WHERE guid=121253; UPDATE pool_gameobject SET guid=198701, pool_entry=10531, description='Icecrown 191133, node 55' WHERE guid=121253; UPDATE gameobject SET guid=198700 WHERE guid=120031; UPDATE pool_gameobject SET guid=198700, pool_entry=10532, description='Icecrown 189980, node 56' WHERE guid=120031; UPDATE pool_pool SET pool_id=10532, description='Icecrown mineral, node 56' WHERE pool_id=5503; UPDATE pool_template SET entry=10532, description='Icecrown mineral, node 56' WHERE entry=5503; UPDATE gameobject SET guid=198699 WHERE guid=121254; UPDATE pool_gameobject SET guid=198699, pool_entry=10532, description='Icecrown 189981, node 56' WHERE guid=121254; UPDATE gameobject SET guid=198698 WHERE guid=121255; UPDATE pool_gameobject SET guid=198698, pool_entry=10532, description='Icecrown 191133, node 56' WHERE guid=121255; UPDATE gameobject SET guid=198697 WHERE guid=120032; UPDATE pool_gameobject SET guid=198697, pool_entry=10533, description='Icecrown 189980, node 57' WHERE guid=120032; UPDATE pool_pool SET pool_id=10533, description='Icecrown mineral, node 57' WHERE pool_id=5504; UPDATE pool_template SET entry=10533, description='Icecrown mineral, node 57' WHERE entry=5504; UPDATE gameobject SET guid=198696 WHERE guid=121256; UPDATE pool_gameobject SET guid=198696, pool_entry=10533, description='Icecrown 189981, node 57' WHERE guid=121256; UPDATE gameobject SET guid=198695 WHERE guid=121257; UPDATE pool_gameobject SET guid=198695, pool_entry=10533, description='Icecrown 191133, node 57' WHERE guid=121257; UPDATE gameobject SET guid=198694 WHERE guid=120033; UPDATE pool_gameobject SET guid=198694, pool_entry=10534, description='Icecrown 189980, node 58' WHERE guid=120033; UPDATE pool_pool SET pool_id=10534, description='Icecrown mineral, node 58' WHERE pool_id=5505; UPDATE pool_template SET entry=10534, description='Icecrown mineral, node 58' WHERE entry=5505; UPDATE gameobject SET guid=198693 WHERE guid=121258; UPDATE pool_gameobject SET guid=198693, pool_entry=10534, description='Icecrown 189981, node 58' WHERE guid=121258; UPDATE gameobject SET guid=198692 WHERE guid=121259; UPDATE pool_gameobject SET guid=198692, pool_entry=10534, description='Icecrown 191133, node 58' WHERE guid=121259; UPDATE gameobject SET guid=198691 WHERE guid=120034; UPDATE pool_gameobject SET guid=198691, pool_entry=10535, description='Icecrown 189980, node 59' WHERE guid=120034; UPDATE pool_pool SET pool_id=10535, description='Icecrown mineral, node 59' WHERE pool_id=5506; UPDATE pool_template SET entry=10535, description='Icecrown mineral, node 59' WHERE entry=5506; UPDATE gameobject SET guid=198690 WHERE guid=121260; UPDATE pool_gameobject SET guid=198690, pool_entry=10535, description='Icecrown 189981, node 59' WHERE guid=121260; UPDATE gameobject SET guid=198689 WHERE guid=121261; UPDATE pool_gameobject SET guid=198689, pool_entry=10535, description='Icecrown 191133, node 59' WHERE guid=121261; UPDATE gameobject SET guid=198688 WHERE guid=120040; UPDATE pool_gameobject SET guid=198688, pool_entry=10536, description='Icecrown 189980, node 60' WHERE guid=120040; UPDATE pool_pool SET pool_id=10536, description='Icecrown mineral, node 60' WHERE pool_id=5507; UPDATE pool_template SET entry=10536, description='Icecrown mineral, node 60' WHERE entry=5507; UPDATE gameobject SET guid=198687 WHERE guid=121262; UPDATE pool_gameobject SET guid=198687, pool_entry=10536, description='Icecrown 189981, node 60' WHERE guid=121262; UPDATE gameobject SET guid=198686 WHERE guid=121263; UPDATE pool_gameobject SET guid=198686, pool_entry=10536, description='Icecrown 191133, node 60' WHERE guid=121263; UPDATE gameobject SET guid=198685 WHERE guid=120041; UPDATE pool_gameobject SET guid=198685, pool_entry=10537, description='Icecrown 189980, node 61' WHERE guid=120041; UPDATE pool_pool SET pool_id=10537, description='Icecrown mineral, node 61' WHERE pool_id=5508; UPDATE pool_template SET entry=10537, description='Icecrown mineral, node 61' WHERE entry=5508; UPDATE gameobject SET guid=198684 WHERE guid=121264; UPDATE pool_gameobject SET guid=198684, pool_entry=10537, description='Icecrown 189981, node 61' WHERE guid=121264; UPDATE gameobject SET guid=198683 WHERE guid=121265; UPDATE pool_gameobject SET guid=198683, pool_entry=10537, description='Icecrown 191133, node 61' WHERE guid=121265; UPDATE gameobject SET guid=198682 WHERE guid=120042; UPDATE pool_gameobject SET guid=198682, pool_entry=10538, description='Icecrown 189980, node 62' WHERE guid=120042; UPDATE pool_pool SET pool_id=10538, description='Icecrown mineral, node 62' WHERE pool_id=5509; UPDATE pool_template SET entry=10538, description='Icecrown mineral, node 62' WHERE entry=5509; UPDATE gameobject SET guid=198681 WHERE guid=121266; UPDATE pool_gameobject SET guid=198681, pool_entry=10538, description='Icecrown 189981, node 62' WHERE guid=121266; UPDATE gameobject SET guid=198680 WHERE guid=121267; UPDATE pool_gameobject SET guid=198680, pool_entry=10538, description='Icecrown 191133, node 62' WHERE guid=121267; UPDATE gameobject SET guid=198679 WHERE guid=120043; UPDATE pool_gameobject SET guid=198679, pool_entry=10539, description='Icecrown 189980, node 63' WHERE guid=120043; UPDATE pool_pool SET pool_id=10539, description='Icecrown mineral, node 63' WHERE pool_id=5510; UPDATE pool_template SET entry=10539, description='Icecrown mineral, node 63' WHERE entry=5510; UPDATE gameobject SET guid=198678 WHERE guid=121268; UPDATE pool_gameobject SET guid=198678, pool_entry=10539, description='Icecrown 189981, node 63' WHERE guid=121268; UPDATE gameobject SET guid=198677 WHERE guid=121269; UPDATE pool_gameobject SET guid=198677, pool_entry=10539, description='Icecrown 191133, node 63' WHERE guid=121269; UPDATE gameobject SET guid=198676 WHERE guid=121270; UPDATE pool_gameobject SET guid=198676, pool_entry=10540, description='Icecrown 189981, node 64' WHERE guid=121270; UPDATE pool_pool SET pool_id=10540, description='Icecrown mineral, node 64' WHERE pool_id=5511; UPDATE pool_template SET entry=10540, description='Icecrown mineral, node 64' WHERE entry=5511; UPDATE gameobject SET guid=198675 WHERE guid=121271; UPDATE pool_gameobject SET guid=198675, pool_entry=10540, description='Icecrown 191133, node 64' WHERE guid=121271; UPDATE gameobject SET guid=198674 WHERE guid=120044; UPDATE pool_gameobject SET guid=198674, pool_entry=10540, description='Icecrown 189980, node 64' WHERE guid=120044; UPDATE gameobject SET guid=198673 WHERE guid=120045; UPDATE pool_gameobject SET guid=198673, pool_entry=10541, description='Icecrown 189980, node 65' WHERE guid=120045; UPDATE pool_pool SET pool_id=10541, description='Icecrown mineral, node 65' WHERE pool_id=5512; UPDATE pool_template SET entry=10541, description='Icecrown mineral, node 65' WHERE entry=5512; UPDATE gameobject SET guid=198672 WHERE guid=121272; UPDATE pool_gameobject SET guid=198672, pool_entry=10541, description='Icecrown 189981, node 65' WHERE guid=121272; UPDATE gameobject SET guid=198671 WHERE guid=121273; UPDATE pool_gameobject SET guid=198671, pool_entry=10541, description='Icecrown 191133, node 65' WHERE guid=121273; UPDATE gameobject SET guid=198670 WHERE guid=120046; UPDATE pool_gameobject SET guid=198670, pool_entry=10542, description='Icecrown 189980, node 66' WHERE guid=120046; UPDATE pool_pool SET pool_id=10542, description='Icecrown mineral, node 66' WHERE pool_id=5513; UPDATE pool_template SET entry=10542, description='Icecrown mineral, node 66' WHERE entry=5513; UPDATE gameobject SET guid=198669 WHERE guid=121274; UPDATE pool_gameobject SET guid=198669, pool_entry=10542, description='Icecrown 189981, node 66' WHERE guid=121274; UPDATE gameobject SET guid=198668 WHERE guid=121275; UPDATE pool_gameobject SET guid=198668, pool_entry=10542, description='Icecrown 191133, node 66' WHERE guid=121275; UPDATE gameobject SET guid=198667 WHERE guid=120047; UPDATE pool_gameobject SET guid=198667, pool_entry=10543, description='Icecrown 189980, node 67' WHERE guid=120047; UPDATE pool_pool SET pool_id=10543, description='Icecrown mineral, node 67' WHERE pool_id=5514; UPDATE pool_template SET entry=10543, description='Icecrown mineral, node 67' WHERE entry=5514; UPDATE gameobject SET guid=198666 WHERE guid=121276; UPDATE pool_gameobject SET guid=198666, pool_entry=10543, description='Icecrown 189981, node 67' WHERE guid=121276; UPDATE gameobject SET guid=198665 WHERE guid=121277; UPDATE pool_gameobject SET guid=198665, pool_entry=10543, description='Icecrown 191133, node 67' WHERE guid=121277; UPDATE gameobject SET guid=198664 WHERE guid=120048; UPDATE pool_gameobject SET guid=198664, pool_entry=10544, description='Icecrown 189980, node 68' WHERE guid=120048; UPDATE pool_pool SET pool_id=10544, description='Icecrown mineral, node 68' WHERE pool_id=5515; UPDATE pool_template SET entry=10544, description='Icecrown mineral, node 68' WHERE entry=5515; UPDATE gameobject SET guid=198663 WHERE guid=121278; UPDATE pool_gameobject SET guid=198663, pool_entry=10544, description='Icecrown 189981, node 68' WHERE guid=121278; UPDATE gameobject SET guid=198662 WHERE guid=121279; UPDATE pool_gameobject SET guid=198662, pool_entry=10544, description='Icecrown 191133, node 68' WHERE guid=121279; UPDATE gameobject SET guid=198661 WHERE guid=121281; UPDATE pool_gameobject SET guid=198661, pool_entry=10545, description='Icecrown 191133, node 69' WHERE guid=121281; UPDATE pool_pool SET pool_id=10545, description='Icecrown mineral, node 69' WHERE pool_id=5516; UPDATE pool_template SET entry=10545, description='Icecrown mineral, node 69' WHERE entry=5516; UPDATE gameobject SET guid=198660 WHERE guid=120053; UPDATE pool_gameobject SET guid=198660, pool_entry=10545, description='Icecrown 189980, node 69' WHERE guid=120053; UPDATE gameobject SET guid=198659 WHERE guid=121280; UPDATE pool_gameobject SET guid=198659, pool_entry=10545, description='Icecrown 189981, node 69' WHERE guid=121280; UPDATE gameobject SET guid=198658 WHERE guid=120054; UPDATE pool_gameobject SET guid=198658, pool_entry=10546, description='Icecrown 189980, node 70' WHERE guid=120054; UPDATE pool_pool SET pool_id=10546, description='Icecrown mineral, node 70' WHERE pool_id=5517; UPDATE pool_template SET entry=10546, description='Icecrown mineral, node 70' WHERE entry=5517; UPDATE gameobject SET guid=198657 WHERE guid=121282; UPDATE pool_gameobject SET guid=198657, pool_entry=10546, description='Icecrown 189981, node 70' WHERE guid=121282; UPDATE gameobject SET guid=198656 WHERE guid=121283; UPDATE pool_gameobject SET guid=198656, pool_entry=10546, description='Icecrown 191133, node 70' WHERE guid=121283; UPDATE gameobject SET guid=198655 WHERE guid=120060; UPDATE pool_gameobject SET guid=198655, pool_entry=10547, description='Icecrown 189980, node 71' WHERE guid=120060; UPDATE pool_pool SET pool_id=10547, description='Icecrown mineral, node 71' WHERE pool_id=5518; UPDATE pool_template SET entry=10547, description='Icecrown mineral, node 71' WHERE entry=5518; UPDATE gameobject SET guid=198654 WHERE guid=121284; UPDATE pool_gameobject SET guid=198654, pool_entry=10547, description='Icecrown 189981, node 71' WHERE guid=121284; UPDATE gameobject SET guid=198653 WHERE guid=121285; UPDATE pool_gameobject SET guid=198653, pool_entry=10547, description='Icecrown 191133, node 71' WHERE guid=121285; UPDATE gameobject SET guid=198652 WHERE guid=120066; UPDATE pool_gameobject SET guid=198652, pool_entry=10548, description='Icecrown 189980, node 72' WHERE guid=120066; UPDATE pool_pool SET pool_id=10548, description='Icecrown mineral, node 72' WHERE pool_id=5519; UPDATE pool_template SET entry=10548, description='Icecrown mineral, node 72' WHERE entry=5519; UPDATE gameobject SET guid=198651 WHERE guid=121286; UPDATE pool_gameobject SET guid=198651, pool_entry=10548, description='Icecrown 189981, node 72' WHERE guid=121286; UPDATE gameobject SET guid=198650 WHERE guid=121287; UPDATE pool_gameobject SET guid=198650, pool_entry=10548, description='Icecrown 191133, node 72' WHERE guid=121287; UPDATE gameobject SET guid=198649 WHERE guid=120069; UPDATE pool_gameobject SET guid=198649, pool_entry=10549, description='Icecrown 189980, node 73' WHERE guid=120069; UPDATE pool_pool SET pool_id=10549, description='Icecrown mineral, node 73' WHERE pool_id=5520; UPDATE pool_template SET entry=10549, description='Icecrown mineral, node 73' WHERE entry=5520; UPDATE gameobject SET guid=198648 WHERE guid=121288; UPDATE pool_gameobject SET guid=198648, pool_entry=10549, description='Icecrown 189981, node 73' WHERE guid=121288; UPDATE gameobject SET guid=198647 WHERE guid=121289; UPDATE pool_gameobject SET guid=198647, pool_entry=10549, description='Icecrown 191133, node 73' WHERE guid=121289; UPDATE gameobject SET guid=198646 WHERE guid=120070; UPDATE pool_gameobject SET guid=198646, pool_entry=10550, description='Icecrown 189980, node 74' WHERE guid=120070; UPDATE pool_pool SET pool_id=10550, description='Icecrown mineral, node 74' WHERE pool_id=5521; UPDATE pool_template SET entry=10550, description='Icecrown mineral, node 74' WHERE entry=5521; UPDATE gameobject SET guid=198645 WHERE guid=121290; UPDATE pool_gameobject SET guid=198645, pool_entry=10550, description='Icecrown 189981, node 74' WHERE guid=121290; UPDATE gameobject SET guid=198644 WHERE guid=121291; UPDATE pool_gameobject SET guid=198644, pool_entry=10550, description='Icecrown 191133, node 74' WHERE guid=121291; UPDATE gameobject SET guid=198643 WHERE guid=120074; UPDATE pool_gameobject SET guid=198643, pool_entry=10551, description='Icecrown 189980, node 75' WHERE guid=120074; UPDATE pool_pool SET pool_id=10551, description='Icecrown mineral, node 75' WHERE pool_id=5522; UPDATE pool_template SET entry=10551, description='Icecrown mineral, node 75' WHERE entry=5522; UPDATE gameobject SET guid=198642 WHERE guid=121292; UPDATE pool_gameobject SET guid=198642, pool_entry=10551, description='Icecrown 189981, node 75' WHERE guid=121292; UPDATE gameobject SET guid=198641 WHERE guid=121293; UPDATE pool_gameobject SET guid=198641, pool_entry=10551, description='Icecrown 191133, node 75' WHERE guid=121293; UPDATE gameobject SET guid=198640 WHERE guid=120075; UPDATE pool_gameobject SET guid=198640, pool_entry=10552, description='Icecrown 189980, node 76' WHERE guid=120075; UPDATE pool_pool SET pool_id=10552, description='Icecrown mineral, node 76' WHERE pool_id=5523; UPDATE pool_template SET entry=10552, description='Icecrown mineral, node 76' WHERE entry=5523; UPDATE gameobject SET guid=198639 WHERE guid=121294; UPDATE pool_gameobject SET guid=198639, pool_entry=10552, description='Icecrown 189981, node 76' WHERE guid=121294; UPDATE gameobject SET guid=198638 WHERE guid=121295; UPDATE pool_gameobject SET guid=198638, pool_entry=10552, description='Icecrown 191133, node 76' WHERE guid=121295; UPDATE gameobject SET guid=198637 WHERE guid=120076; UPDATE pool_gameobject SET guid=198637, pool_entry=10553, description='Icecrown 189980, node 77' WHERE guid=120076; UPDATE pool_pool SET pool_id=10553, description='Icecrown mineral, node 77' WHERE pool_id=5524; UPDATE pool_template SET entry=10553, description='Icecrown mineral, node 77' WHERE entry=5524; UPDATE gameobject SET guid=198636 WHERE guid=121296; UPDATE pool_gameobject SET guid=198636, pool_entry=10553, description='Icecrown 189981, node 77' WHERE guid=121296; UPDATE gameobject SET guid=198635 WHERE guid=121297; UPDATE pool_gameobject SET guid=198635, pool_entry=10553, description='Icecrown 191133, node 77' WHERE guid=121297; UPDATE gameobject SET guid=198634 WHERE guid=120077; UPDATE pool_gameobject SET guid=198634, pool_entry=10554, description='Icecrown 189980, node 78' WHERE guid=120077; UPDATE pool_pool SET pool_id=10554, description='Icecrown mineral, node 78' WHERE pool_id=5525; UPDATE pool_template SET entry=10554, description='Icecrown mineral, node 78' WHERE entry=5525; UPDATE gameobject SET guid=198633 WHERE guid=121298; UPDATE pool_gameobject SET guid=198633, pool_entry=10554, description='Icecrown 189981, node 78' WHERE guid=121298; UPDATE gameobject SET guid=198632 WHERE guid=121299; UPDATE pool_gameobject SET guid=198632, pool_entry=10554, description='Icecrown 191133, node 78' WHERE guid=121299; UPDATE gameobject SET guid=198631 WHERE guid=120078; UPDATE pool_gameobject SET guid=198631, pool_entry=10555, description='Icecrown 189980, node 79' WHERE guid=120078; UPDATE pool_pool SET pool_id=10555, description='Icecrown mineral, node 79' WHERE pool_id=5526; UPDATE pool_template SET entry=10555, description='Icecrown mineral, node 79' WHERE entry=5526; UPDATE gameobject SET guid=198630 WHERE guid=121300; UPDATE pool_gameobject SET guid=198630, pool_entry=10555, description='Icecrown 189981, node 79' WHERE guid=121300; UPDATE gameobject SET guid=198629 WHERE guid=121301; UPDATE pool_gameobject SET guid=198629, pool_entry=10555, description='Icecrown 191133, node 79' WHERE guid=121301; UPDATE gameobject SET guid=198628 WHERE guid=121302; UPDATE pool_gameobject SET guid=198628, pool_entry=10556, description='Icecrown 189981, node 80' WHERE guid=121302; UPDATE pool_pool SET pool_id=10556, description='Icecrown mineral, node 80' WHERE pool_id=5527; UPDATE pool_template SET entry=10556, description='Icecrown mineral, node 80' WHERE entry=5527; UPDATE gameobject SET guid=198627 WHERE guid=121303; UPDATE pool_gameobject SET guid=198627, pool_entry=10556, description='Icecrown 191133, node 80' WHERE guid=121303; UPDATE gameobject SET guid=198626 WHERE guid=120079; UPDATE pool_gameobject SET guid=198626, pool_entry=10556, description='Icecrown 189980, node 80' WHERE guid=120079; UPDATE gameobject SET guid=198625 WHERE guid=120080; UPDATE pool_gameobject SET guid=198625, pool_entry=10557, description='Icecrown 189980, node 81' WHERE guid=120080; UPDATE pool_pool SET pool_id=10557, description='Icecrown mineral, node 81' WHERE pool_id=5528; UPDATE pool_template SET entry=10557, description='Icecrown mineral, node 81' WHERE entry=5528; UPDATE gameobject SET guid=198624 WHERE guid=121304; UPDATE pool_gameobject SET guid=198624, pool_entry=10557, description='Icecrown 189981, node 81' WHERE guid=121304; UPDATE gameobject SET guid=198623 WHERE guid=121305; UPDATE pool_gameobject SET guid=198623, pool_entry=10557, description='Icecrown 191133, node 81' WHERE guid=121305; UPDATE gameobject SET guid=198622 WHERE guid=120081; UPDATE pool_gameobject SET guid=198622, pool_entry=10558, description='Icecrown 189980, node 82' WHERE guid=120081; UPDATE pool_pool SET pool_id=10558, description='Icecrown mineral, node 82' WHERE pool_id=5529; UPDATE pool_template SET entry=10558, description='Icecrown mineral, node 82' WHERE entry=5529; UPDATE gameobject SET guid=198621 WHERE guid=121306; UPDATE pool_gameobject SET guid=198621, pool_entry=10558, description='Icecrown 189981, node 82' WHERE guid=121306; UPDATE gameobject SET guid=198620 WHERE guid=121307; UPDATE pool_gameobject SET guid=198620, pool_entry=10558, description='Icecrown 191133, node 82' WHERE guid=121307; UPDATE gameobject SET guid=198619 WHERE guid=120082; UPDATE pool_gameobject SET guid=198619, pool_entry=10559, description='Icecrown 189980, node 83' WHERE guid=120082; UPDATE pool_pool SET pool_id=10559, description='Icecrown mineral, node 83' WHERE pool_id=5530; UPDATE pool_template SET entry=10559, description='Icecrown mineral, node 83' WHERE entry=5530; UPDATE gameobject SET guid=198618 WHERE guid=121308; UPDATE pool_gameobject SET guid=198618, pool_entry=10559, description='Icecrown 189981, node 83' WHERE guid=121308; UPDATE gameobject SET guid=198617 WHERE guid=121309; UPDATE pool_gameobject SET guid=198617, pool_entry=10559, description='Icecrown 191133, node 83' WHERE guid=121309; UPDATE gameobject SET guid=198616 WHERE guid=120083; UPDATE pool_gameobject SET guid=198616, pool_entry=10560, description='Icecrown 189980, node 84' WHERE guid=120083; UPDATE pool_pool SET pool_id=10560, description='Icecrown mineral, node 84' WHERE pool_id=5531; UPDATE pool_template SET entry=10560, description='Icecrown mineral, node 84' WHERE entry=5531; UPDATE gameobject SET guid=198615 WHERE guid=121310; UPDATE pool_gameobject SET guid=198615, pool_entry=10560, description='Icecrown 189981, node 84' WHERE guid=121310; UPDATE gameobject SET guid=198614 WHERE guid=121311; UPDATE pool_gameobject SET guid=198614, pool_entry=10560, description='Icecrown 191133, node 84' WHERE guid=121311; UPDATE gameobject SET guid=198613 WHERE guid=121313; UPDATE pool_gameobject SET guid=198613, pool_entry=10561, description='Icecrown 191133, node 85' WHERE guid=121313; UPDATE pool_pool SET pool_id=10561, description='Icecrown mineral, node 85' WHERE pool_id=5532; UPDATE pool_template SET entry=10561, description='Icecrown mineral, node 85' WHERE entry=5532; UPDATE gameobject SET guid=198612 WHERE guid=120084; UPDATE pool_gameobject SET guid=198612, pool_entry=10561, description='Icecrown 189980, node 85' WHERE guid=120084; UPDATE gameobject SET guid=198611 WHERE guid=121312; UPDATE pool_gameobject SET guid=198611, pool_entry=10561, description='Icecrown 189981, node 85' WHERE guid=121312; UPDATE gameobject SET guid=198610 WHERE guid=120085; UPDATE pool_gameobject SET guid=198610, pool_entry=10562, description='Icecrown 189980, node 86' WHERE guid=120085; UPDATE pool_pool SET pool_id=10562, description='Icecrown mineral, node 86' WHERE pool_id=5533; UPDATE pool_template SET entry=10562, description='Icecrown mineral, node 86' WHERE entry=5533; UPDATE gameobject SET guid=198609 WHERE guid=121314; UPDATE pool_gameobject SET guid=198609, pool_entry=10562, description='Icecrown 189981, node 86' WHERE guid=121314; UPDATE gameobject SET guid=198608 WHERE guid=121315; UPDATE pool_gameobject SET guid=198608, pool_entry=10562, description='Icecrown 191133, node 86' WHERE guid=121315; UPDATE gameobject SET guid=198607 WHERE guid=120086; UPDATE pool_gameobject SET guid=198607, pool_entry=10563, description='Icecrown 189980, node 87' WHERE guid=120086; UPDATE pool_pool SET pool_id=10563, description='Icecrown mineral, node 87' WHERE pool_id=5534; UPDATE pool_template SET entry=10563, description='Icecrown mineral, node 87' WHERE entry=5534; UPDATE gameobject SET guid=198606 WHERE guid=121316; UPDATE pool_gameobject SET guid=198606, pool_entry=10563, description='Icecrown 189981, node 87' WHERE guid=121316; UPDATE gameobject SET guid=198605 WHERE guid=121317; UPDATE pool_gameobject SET guid=198605, pool_entry=10563, description='Icecrown 191133, node 87' WHERE guid=121317; UPDATE gameobject SET guid=198604 WHERE guid=120087; UPDATE pool_gameobject SET guid=198604, pool_entry=10564, description='Icecrown 189980, node 88' WHERE guid=120087; UPDATE pool_pool SET pool_id=10564, description='Icecrown mineral, node 88' WHERE pool_id=5535; UPDATE pool_template SET entry=10564, description='Icecrown mineral, node 88' WHERE entry=5535; UPDATE gameobject SET guid=198603 WHERE guid=121318; UPDATE pool_gameobject SET guid=198603, pool_entry=10564, description='Icecrown 189981, node 88' WHERE guid=121318; UPDATE gameobject SET guid=198602 WHERE guid=121319; UPDATE pool_gameobject SET guid=198602, pool_entry=10564, description='Icecrown 191133, node 88' WHERE guid=121319; UPDATE gameobject SET guid=198601 WHERE guid=120089; UPDATE pool_gameobject SET guid=198601, pool_entry=10565, description='Icecrown 189980, node 89' WHERE guid=120089; UPDATE pool_pool SET pool_id=10565, description='Icecrown mineral, node 89' WHERE pool_id=5536; UPDATE pool_template SET entry=10565, description='Icecrown mineral, node 89' WHERE entry=5536; UPDATE gameobject SET guid=198600 WHERE guid=121320; UPDATE pool_gameobject SET guid=198600, pool_entry=10565, description='Icecrown 189981, node 89' WHERE guid=121320; UPDATE gameobject SET guid=198599 WHERE guid=121321; UPDATE pool_gameobject SET guid=198599, pool_entry=10565, description='Icecrown 191133, node 89' WHERE guid=121321; UPDATE gameobject SET guid=198598 WHERE guid=120091; UPDATE pool_gameobject SET guid=198598, pool_entry=10566, description='Icecrown 189980, node 90' WHERE guid=120091; UPDATE pool_pool SET pool_id=10566, description='Icecrown mineral, node 90' WHERE pool_id=5537; UPDATE pool_template SET entry=10566, description='Icecrown mineral, node 90' WHERE entry=5537; UPDATE gameobject SET guid=198597 WHERE guid=121322; UPDATE pool_gameobject SET guid=198597, pool_entry=10566, description='Icecrown 189981, node 90' WHERE guid=121322; UPDATE gameobject SET guid=198596 WHERE guid=121323; UPDATE pool_gameobject SET guid=198596, pool_entry=10566, description='Icecrown 191133, node 90' WHERE guid=121323; UPDATE gameobject SET guid=198595 WHERE guid=120092; UPDATE pool_gameobject SET guid=198595, pool_entry=10567, description='Icecrown 189980, node 91' WHERE guid=120092; UPDATE pool_pool SET pool_id=10567, description='Icecrown mineral, node 91' WHERE pool_id=5538; UPDATE pool_template SET entry=10567, description='Icecrown mineral, node 91' WHERE entry=5538; UPDATE gameobject SET guid=198594 WHERE guid=121324; UPDATE pool_gameobject SET guid=198594, pool_entry=10567, description='Icecrown 189981, node 91' WHERE guid=121324; UPDATE gameobject SET guid=198593 WHERE guid=121325; UPDATE pool_gameobject SET guid=198593, pool_entry=10567, description='Icecrown 191133, node 91' WHERE guid=121325; UPDATE gameobject SET guid=198592 WHERE guid=120097; UPDATE pool_gameobject SET guid=198592, pool_entry=10568, description='Icecrown 189980, node 92' WHERE guid=120097; UPDATE pool_pool SET pool_id=10568, description='Icecrown mineral, node 92' WHERE pool_id=5539; UPDATE pool_template SET entry=10568, description='Icecrown mineral, node 92' WHERE entry=5539; UPDATE gameobject SET guid=198591 WHERE guid=121326; UPDATE pool_gameobject SET guid=198591, pool_entry=10568, description='Icecrown 189981, node 92' WHERE guid=121326; UPDATE gameobject SET guid=198590 WHERE guid=121327; UPDATE pool_gameobject SET guid=198590, pool_entry=10568, description='Icecrown 191133, node 92' WHERE guid=121327; UPDATE gameobject SET guid=198589 WHERE guid=120099; UPDATE pool_gameobject SET guid=198589, pool_entry=10569, description='Icecrown 189980, node 93' WHERE guid=120099; UPDATE pool_pool SET pool_id=10569, description='Icecrown mineral, node 93' WHERE pool_id=5540; UPDATE pool_template SET entry=10569, description='Icecrown mineral, node 93' WHERE entry=5540; UPDATE gameobject SET guid=198588 WHERE guid=121328; UPDATE pool_gameobject SET guid=198588, pool_entry=10569, description='Icecrown 189981, node 93' WHERE guid=121328; UPDATE gameobject SET guid=198587 WHERE guid=121329; UPDATE pool_gameobject SET guid=198587, pool_entry=10569, description='Icecrown 191133, node 93' WHERE guid=121329; UPDATE gameobject SET guid=198586 WHERE guid=120100; UPDATE pool_gameobject SET guid=198586, pool_entry=10570, description='Icecrown 189980, node 94' WHERE guid=120100; UPDATE pool_pool SET pool_id=10570, description='Icecrown mineral, node 94' WHERE pool_id=5541; UPDATE pool_template SET entry=10570, description='Icecrown mineral, node 94' WHERE entry=5541; UPDATE gameobject SET guid=198585 WHERE guid=121330; UPDATE pool_gameobject SET guid=198585, pool_entry=10570, description='Icecrown 189981, node 94' WHERE guid=121330; UPDATE gameobject SET guid=198584 WHERE guid=121331; UPDATE pool_gameobject SET guid=198584, pool_entry=10570, description='Icecrown 191133, node 94' WHERE guid=121331; UPDATE gameobject SET guid=198583 WHERE guid=120101; UPDATE pool_gameobject SET guid=198583, pool_entry=10571, description='Icecrown 189980, node 95' WHERE guid=120101; UPDATE pool_pool SET pool_id=10571, description='Icecrown mineral, node 95' WHERE pool_id=5542; UPDATE pool_template SET entry=10571, description='Icecrown mineral, node 95' WHERE entry=5542; UPDATE gameobject SET guid=198582 WHERE guid=121332; UPDATE pool_gameobject SET guid=198582, pool_entry=10571, description='Icecrown 189981, node 95' WHERE guid=121332; UPDATE gameobject SET guid=198581 WHERE guid=121333; UPDATE pool_gameobject SET guid=198581, pool_entry=10571, description='Icecrown 191133, node 95' WHERE guid=121333; UPDATE gameobject SET guid=198580 WHERE guid=121334; UPDATE pool_gameobject SET guid=198580, pool_entry=10572, description='Icecrown 189981, node 96' WHERE guid=121334; UPDATE pool_pool SET pool_id=10572, description='Icecrown mineral, node 96' WHERE pool_id=5543; UPDATE pool_template SET entry=10572, description='Icecrown mineral, node 96' WHERE entry=5543; UPDATE gameobject SET guid=198579 WHERE guid=121335; UPDATE pool_gameobject SET guid=198579, pool_entry=10572, description='Icecrown 191133, node 96' WHERE guid=121335; UPDATE gameobject SET guid=198578 WHERE guid=120104; UPDATE pool_gameobject SET guid=198578, pool_entry=10572, description='Icecrown 189980, node 96' WHERE guid=120104; UPDATE gameobject SET guid=198577 WHERE guid=120108; UPDATE pool_gameobject SET guid=198577, pool_entry=10573, description='Icecrown 189980, node 97' WHERE guid=120108; UPDATE pool_pool SET pool_id=10573, description='Icecrown mineral, node 97' WHERE pool_id=5544; UPDATE pool_template SET entry=10573, description='Icecrown mineral, node 97' WHERE entry=5544; UPDATE gameobject SET guid=198576 WHERE guid=121336; UPDATE pool_gameobject SET guid=198576, pool_entry=10573, description='Icecrown 189981, node 97' WHERE guid=121336; UPDATE gameobject SET guid=198575 WHERE guid=121337; UPDATE pool_gameobject SET guid=198575, pool_entry=10573, description='Icecrown 191133, node 97' WHERE guid=121337; UPDATE gameobject SET guid=198574 WHERE guid=120109; UPDATE pool_gameobject SET guid=198574, pool_entry=10574, description='Icecrown 189980, node 98' WHERE guid=120109; UPDATE pool_pool SET pool_id=10574, description='Icecrown mineral, node 98' WHERE pool_id=5545; UPDATE pool_template SET entry=10574, description='Icecrown mineral, node 98' WHERE entry=5545; UPDATE gameobject SET guid=198573 WHERE guid=121338; UPDATE pool_gameobject SET guid=198573, pool_entry=10574, description='Icecrown 189981, node 98' WHERE guid=121338; UPDATE gameobject SET guid=198572 WHERE guid=121339; UPDATE pool_gameobject SET guid=198572, pool_entry=10574, description='Icecrown 191133, node 98' WHERE guid=121339; UPDATE gameobject SET guid=198571 WHERE guid=120115; UPDATE pool_gameobject SET guid=198571, pool_entry=10575, description='Icecrown 189980, node 99' WHERE guid=120115; UPDATE pool_pool SET pool_id=10575, description='Icecrown mineral, node 99' WHERE pool_id=5546; UPDATE pool_template SET entry=10575, description='Icecrown mineral, node 99' WHERE entry=5546; UPDATE gameobject SET guid=198570 WHERE guid=121340; UPDATE pool_gameobject SET guid=198570, pool_entry=10575, description='Icecrown 189981, node 99' WHERE guid=121340; UPDATE gameobject SET guid=198569 WHERE guid=121341; UPDATE pool_gameobject SET guid=198569, pool_entry=10575, description='Icecrown 191133, node 99' WHERE guid=121341; UPDATE gameobject SET guid=198568 WHERE guid=120116; UPDATE pool_gameobject SET guid=198568, pool_entry=10576, description='Icecrown 189980, node 100' WHERE guid=120116; UPDATE pool_pool SET pool_id=10576, description='Icecrown mineral, node 100' WHERE pool_id=5547; UPDATE pool_template SET entry=10576, description='Icecrown mineral, node 100' WHERE entry=5547; UPDATE gameobject SET guid=198567 WHERE guid=121342; UPDATE pool_gameobject SET guid=198567, pool_entry=10576, description='Icecrown 189981, node 100' WHERE guid=121342; UPDATE gameobject SET guid=198566 WHERE guid=121343; UPDATE pool_gameobject SET guid=198566, pool_entry=10576, description='Icecrown 191133, node 100' WHERE guid=121343; UPDATE gameobject SET guid=198565 WHERE guid=121345; UPDATE pool_gameobject SET guid=198565, pool_entry=10577, description='Icecrown 191133, node 101' WHERE guid=121345; UPDATE pool_pool SET pool_id=10577, description='Icecrown mineral, node 101' WHERE pool_id=5548; UPDATE pool_template SET entry=10577, description='Icecrown mineral, node 101' WHERE entry=5548; UPDATE gameobject SET guid=198564 WHERE guid=120117; UPDATE pool_gameobject SET guid=198564, pool_entry=10577, description='Icecrown 189980, node 101' WHERE guid=120117; UPDATE gameobject SET guid=198563 WHERE guid=121344; UPDATE pool_gameobject SET guid=198563, pool_entry=10577, description='Icecrown 189981, node 101' WHERE guid=121344; UPDATE gameobject SET guid=198562 WHERE guid=120118; UPDATE pool_gameobject SET guid=198562, pool_entry=10578, description='Icecrown 189980, node 102' WHERE guid=120118; UPDATE pool_pool SET pool_id=10578, description='Icecrown mineral, node 102' WHERE pool_id=5549; UPDATE pool_template SET entry=10578, description='Icecrown mineral, node 102' WHERE entry=5549; UPDATE gameobject SET guid=198561 WHERE guid=121346; UPDATE pool_gameobject SET guid=198561, pool_entry=10578, description='Icecrown 189981, node 102' WHERE guid=121346; UPDATE gameobject SET guid=198560 WHERE guid=121347; UPDATE pool_gameobject SET guid=198560, pool_entry=10578, description='Icecrown 191133, node 102' WHERE guid=121347; UPDATE gameobject SET guid=198559 WHERE guid=120119; UPDATE pool_gameobject SET guid=198559, pool_entry=10579, description='Icecrown 189980, node 103' WHERE guid=120119; UPDATE pool_pool SET pool_id=10579, description='Icecrown mineral, node 103' WHERE pool_id=5550; UPDATE pool_template SET entry=10579, description='Icecrown mineral, node 103' WHERE entry=5550; UPDATE gameobject SET guid=198558 WHERE guid=121348; UPDATE pool_gameobject SET guid=198558, pool_entry=10579, description='Icecrown 189981, node 103' WHERE guid=121348; UPDATE gameobject SET guid=198557 WHERE guid=121349; UPDATE pool_gameobject SET guid=198557, pool_entry=10579, description='Icecrown 191133, node 103' WHERE guid=121349; UPDATE gameobject SET guid=198556 WHERE guid=120120; UPDATE pool_gameobject SET guid=198556, pool_entry=10580, description='Icecrown 189980, node 104' WHERE guid=120120; UPDATE pool_pool SET pool_id=10580, description='Icecrown mineral, node 104' WHERE pool_id=5551; UPDATE pool_template SET entry=10580, description='Icecrown mineral, node 104' WHERE entry=5551; UPDATE gameobject SET guid=198555 WHERE guid=121350; UPDATE pool_gameobject SET guid=198555, pool_entry=10580, description='Icecrown 189981, node 104' WHERE guid=121350; UPDATE gameobject SET guid=198554 WHERE guid=121351; UPDATE pool_gameobject SET guid=198554, pool_entry=10580, description='Icecrown 191133, node 104' WHERE guid=121351; UPDATE gameobject SET guid=198553 WHERE guid=120121; UPDATE pool_gameobject SET guid=198553, pool_entry=10581, description='Icecrown 189980, node 105' WHERE guid=120121; UPDATE pool_pool SET pool_id=10581, description='Icecrown mineral, node 105' WHERE pool_id=5552; UPDATE pool_template SET entry=10581, description='Icecrown mineral, node 105' WHERE entry=5552; UPDATE gameobject SET guid=198552 WHERE guid=121352; UPDATE pool_gameobject SET guid=198552, pool_entry=10581, description='Icecrown 189981, node 105' WHERE guid=121352; UPDATE gameobject SET guid=198551 WHERE guid=121353; UPDATE pool_gameobject SET guid=198551, pool_entry=10581, description='Icecrown 191133, node 105' WHERE guid=121353; UPDATE gameobject SET guid=198550 WHERE guid=120122; UPDATE pool_gameobject SET guid=198550, pool_entry=10582, description='Icecrown 189980, node 106' WHERE guid=120122; UPDATE pool_pool SET pool_id=10582, description='Icecrown mineral, node 106' WHERE pool_id=5553; UPDATE pool_template SET entry=10582, description='Icecrown mineral, node 106' WHERE entry=5553; UPDATE gameobject SET guid=198549 WHERE guid=121354; UPDATE pool_gameobject SET guid=198549, pool_entry=10582, description='Icecrown 189981, node 106' WHERE guid=121354; UPDATE gameobject SET guid=198548 WHERE guid=121355; UPDATE pool_gameobject SET guid=198548, pool_entry=10582, description='Icecrown 191133, node 106' WHERE guid=121355; UPDATE gameobject SET guid=198547 WHERE guid=120123; UPDATE pool_gameobject SET guid=198547, pool_entry=10583, description='Icecrown 189980, node 107' WHERE guid=120123; UPDATE pool_pool SET pool_id=10583, description='Icecrown mineral, node 107' WHERE pool_id=5554; UPDATE pool_template SET entry=10583, description='Icecrown mineral, node 107' WHERE entry=5554; UPDATE gameobject SET guid=198546 WHERE guid=121356; UPDATE pool_gameobject SET guid=198546, pool_entry=10583, description='Icecrown 189981, node 107' WHERE guid=121356; UPDATE gameobject SET guid=198545 WHERE guid=121357; UPDATE pool_gameobject SET guid=198545, pool_entry=10583, description='Icecrown 191133, node 107' WHERE guid=121357; UPDATE gameobject SET guid=198544 WHERE guid=120124; UPDATE pool_gameobject SET guid=198544, pool_entry=10584, description='Icecrown 189980, node 108' WHERE guid=120124; UPDATE pool_pool SET pool_id=10584, description='Icecrown mineral, node 108' WHERE pool_id=5555; UPDATE pool_template SET entry=10584, description='Icecrown mineral, node 108' WHERE entry=5555; UPDATE gameobject SET guid=198543 WHERE guid=121358; UPDATE pool_gameobject SET guid=198543, pool_entry=10584, description='Icecrown 189981, node 108' WHERE guid=121358; UPDATE gameobject SET guid=198542 WHERE guid=121359; UPDATE pool_gameobject SET guid=198542, pool_entry=10584, description='Icecrown 191133, node 108' WHERE guid=121359; UPDATE gameobject SET guid=198541 WHERE guid=120125; UPDATE pool_gameobject SET guid=198541, pool_entry=10585, description='Icecrown 189980, node 109' WHERE guid=120125; UPDATE pool_pool SET pool_id=10585, description='Icecrown mineral, node 109' WHERE pool_id=5556; UPDATE pool_template SET entry=10585, description='Icecrown mineral, node 109' WHERE entry=5556; UPDATE gameobject SET guid=198540 WHERE guid=121360; UPDATE pool_gameobject SET guid=198540, pool_entry=10585, description='Icecrown 189981, node 109' WHERE guid=121360; UPDATE gameobject SET guid=198539 WHERE guid=121361; UPDATE pool_gameobject SET guid=198539, pool_entry=10585, description='Icecrown 191133, node 109' WHERE guid=121361; UPDATE gameobject SET guid=198538 WHERE guid=120126; UPDATE pool_gameobject SET guid=198538, pool_entry=10586, description='Icecrown 189980, node 110' WHERE guid=120126; UPDATE pool_pool SET pool_id=10586, description='Icecrown mineral, node 110' WHERE pool_id=5557; UPDATE pool_template SET entry=10586, description='Icecrown mineral, node 110' WHERE entry=5557; UPDATE gameobject SET guid=198537 WHERE guid=121362; UPDATE pool_gameobject SET guid=198537, pool_entry=10586, description='Icecrown 189981, node 110' WHERE guid=121362; UPDATE gameobject SET guid=198536 WHERE guid=121363; UPDATE pool_gameobject SET guid=198536, pool_entry=10586, description='Icecrown 191133, node 110' WHERE guid=121363; UPDATE gameobject SET guid=198535 WHERE guid=120127; UPDATE pool_gameobject SET guid=198535, pool_entry=10587, description='Icecrown 189980, node 111' WHERE guid=120127; UPDATE pool_pool SET pool_id=10587, description='Icecrown mineral, node 111' WHERE pool_id=5558; UPDATE pool_template SET entry=10587, description='Icecrown mineral, node 111' WHERE entry=5558; UPDATE gameobject SET guid=198534 WHERE guid=121364; UPDATE pool_gameobject SET guid=198534, pool_entry=10587, description='Icecrown 189981, node 111' WHERE guid=121364; UPDATE gameobject SET guid=198533 WHERE guid=121365; UPDATE pool_gameobject SET guid=198533, pool_entry=10587, description='Icecrown 191133, node 111' WHERE guid=121365; UPDATE gameobject SET guid=198532 WHERE guid=121366; UPDATE pool_gameobject SET guid=198532, pool_entry=10588, description='Icecrown 189981, node 112' WHERE guid=121366; UPDATE pool_pool SET pool_id=10588, description='Icecrown mineral, node 112' WHERE pool_id=5559; UPDATE pool_template SET entry=10588, description='Icecrown mineral, node 112' WHERE entry=5559; UPDATE gameobject SET guid=198531 WHERE guid=121367; UPDATE pool_gameobject SET guid=198531, pool_entry=10588, description='Icecrown 191133, node 112' WHERE guid=121367; UPDATE gameobject SET guid=198530 WHERE guid=120128; UPDATE pool_gameobject SET guid=198530, pool_entry=10588, description='Icecrown 189980, node 112' WHERE guid=120128; UPDATE gameobject SET guid=198529 WHERE guid=120129; UPDATE pool_gameobject SET guid=198529, pool_entry=10589, description='Icecrown 189980, node 113' WHERE guid=120129; UPDATE pool_pool SET pool_id=10589, description='Icecrown mineral, node 113' WHERE pool_id=5560; UPDATE pool_template SET entry=10589, description='Icecrown mineral, node 113' WHERE entry=5560; UPDATE gameobject SET guid=198528 WHERE guid=121368; UPDATE pool_gameobject SET guid=198528, pool_entry=10589, description='Icecrown 189981, node 113' WHERE guid=121368; UPDATE gameobject SET guid=198527 WHERE guid=121369; UPDATE pool_gameobject SET guid=198527, pool_entry=10589, description='Icecrown 191133, node 113' WHERE guid=121369; UPDATE gameobject SET guid=198526 WHERE guid=120130; UPDATE pool_gameobject SET guid=198526, pool_entry=10590, description='Icecrown 189980, node 114' WHERE guid=120130; UPDATE pool_pool SET pool_id=10590, description='Icecrown mineral, node 114' WHERE pool_id=5561; UPDATE pool_template SET entry=10590, description='Icecrown mineral, node 114' WHERE entry=5561; UPDATE gameobject SET guid=198525 WHERE guid=121370; UPDATE pool_gameobject SET guid=198525, pool_entry=10590, description='Icecrown 189981, node 114' WHERE guid=121370; UPDATE gameobject SET guid=198524 WHERE guid=121371; UPDATE pool_gameobject SET guid=198524, pool_entry=10590, description='Icecrown 191133, node 114' WHERE guid=121371; UPDATE gameobject SET guid=198523 WHERE guid=120131; UPDATE pool_gameobject SET guid=198523, pool_entry=10591, description='Icecrown 189980, node 115' WHERE guid=120131; UPDATE pool_pool SET pool_id=10591, description='Icecrown mineral, node 115' WHERE pool_id=5562; UPDATE pool_template SET entry=10591, description='Icecrown mineral, node 115' WHERE entry=5562; UPDATE gameobject SET guid=198522 WHERE guid=121372; UPDATE pool_gameobject SET guid=198522, pool_entry=10591, description='Icecrown 189981, node 115' WHERE guid=121372; UPDATE gameobject SET guid=198521 WHERE guid=121373; UPDATE pool_gameobject SET guid=198521, pool_entry=10591, description='Icecrown 191133, node 115' WHERE guid=121373; UPDATE gameobject SET guid=198520 WHERE guid=120132; UPDATE pool_gameobject SET guid=198520, pool_entry=10592, description='Icecrown 189980, node 116' WHERE guid=120132; UPDATE pool_pool SET pool_id=10592, description='Icecrown mineral, node 116' WHERE pool_id=5563; UPDATE pool_template SET entry=10592, description='Icecrown mineral, node 116' WHERE entry=5563; UPDATE gameobject SET guid=198519 WHERE guid=121374; UPDATE pool_gameobject SET guid=198519, pool_entry=10592, description='Icecrown 189981, node 116' WHERE guid=121374; UPDATE gameobject SET guid=198518 WHERE guid=121375; UPDATE pool_gameobject SET guid=198518, pool_entry=10592, description='Icecrown 191133, node 116' WHERE guid=121375; UPDATE gameobject SET guid=198517 WHERE guid=121377; UPDATE pool_gameobject SET guid=198517, pool_entry=10593, description='Icecrown 191133, node 117' WHERE guid=121377; UPDATE pool_pool SET pool_id=10593, description='Icecrown mineral, node 117' WHERE pool_id=5564; UPDATE pool_template SET entry=10593, description='Icecrown mineral, node 117' WHERE entry=5564; UPDATE gameobject SET guid=198516 WHERE guid=120133; UPDATE pool_gameobject SET guid=198516, pool_entry=10593, description='Icecrown 189980, node 117' WHERE guid=120133; UPDATE gameobject SET guid=198515 WHERE guid=121376; UPDATE pool_gameobject SET guid=198515, pool_entry=10593, description='Icecrown 189981, node 117' WHERE guid=121376; UPDATE gameobject SET guid=198514 WHERE guid=120134; UPDATE pool_gameobject SET guid=198514, pool_entry=10594, description='Icecrown 189980, node 118' WHERE guid=120134; UPDATE pool_pool SET pool_id=10594, description='Icecrown mineral, node 118' WHERE pool_id=5565; UPDATE pool_template SET entry=10594, description='Icecrown mineral, node 118' WHERE entry=5565; UPDATE gameobject SET guid=198513 WHERE guid=121378; UPDATE pool_gameobject SET guid=198513, pool_entry=10594, description='Icecrown 189981, node 118' WHERE guid=121378; UPDATE gameobject SET guid=198512 WHERE guid=121379; UPDATE pool_gameobject SET guid=198512, pool_entry=10594, description='Icecrown 191133, node 118' WHERE guid=121379; UPDATE gameobject SET guid=198511 WHERE guid=120135; UPDATE pool_gameobject SET guid=198511, pool_entry=10595, description='Icecrown 189980, node 119' WHERE guid=120135; UPDATE pool_pool SET pool_id=10595, description='Icecrown mineral, node 119' WHERE pool_id=5566; UPDATE pool_template SET entry=10595, description='Icecrown mineral, node 119' WHERE entry=5566; UPDATE gameobject SET guid=198510 WHERE guid=121380; UPDATE pool_gameobject SET guid=198510, pool_entry=10595, description='Icecrown 189981, node 119' WHERE guid=121380; UPDATE gameobject SET guid=198509 WHERE guid=121381; UPDATE pool_gameobject SET guid=198509, pool_entry=10595, description='Icecrown 191133, node 119' WHERE guid=121381; UPDATE gameobject SET guid=198508 WHERE guid=120136; UPDATE pool_gameobject SET guid=198508, pool_entry=10596, description='Icecrown 189980, node 120' WHERE guid=120136; UPDATE pool_pool SET pool_id=10596, description='Icecrown mineral, node 120' WHERE pool_id=5567; UPDATE pool_template SET entry=10596, description='Icecrown mineral, node 120' WHERE entry=5567; UPDATE gameobject SET guid=198507 WHERE guid=121382; UPDATE pool_gameobject SET guid=198507, pool_entry=10596, description='Icecrown 189981, node 120' WHERE guid=121382; UPDATE gameobject SET guid=198506 WHERE guid=121383; UPDATE pool_gameobject SET guid=198506, pool_entry=10596, description='Icecrown 191133, node 120' WHERE guid=121383; UPDATE gameobject SET guid=198505 WHERE guid=120137; UPDATE pool_gameobject SET guid=198505, pool_entry=10597, description='Icecrown 189980, node 121' WHERE guid=120137; UPDATE pool_pool SET pool_id=10597, description='Icecrown mineral, node 121' WHERE pool_id=5568; UPDATE pool_template SET entry=10597, description='Icecrown mineral, node 121' WHERE entry=5568; UPDATE gameobject SET guid=198504 WHERE guid=121384; UPDATE pool_gameobject SET guid=198504, pool_entry=10597, description='Icecrown 189981, node 121' WHERE guid=121384; UPDATE gameobject SET guid=198503 WHERE guid=121385; UPDATE pool_gameobject SET guid=198503, pool_entry=10597, description='Icecrown 191133, node 121' WHERE guid=121385; UPDATE gameobject SET guid=198502 WHERE guid=120138; UPDATE pool_gameobject SET guid=198502, pool_entry=10598, description='Icecrown 189980, node 122' WHERE guid=120138; UPDATE pool_pool SET pool_id=10598, description='Icecrown mineral, node 122' WHERE pool_id=5569; UPDATE pool_template SET entry=10598, description='Icecrown mineral, node 122' WHERE entry=5569; UPDATE gameobject SET guid=198501 WHERE guid=121386; UPDATE pool_gameobject SET guid=198501, pool_entry=10598, description='Icecrown 189981, node 122' WHERE guid=121386; UPDATE gameobject SET guid=198500 WHERE guid=121387; UPDATE pool_gameobject SET guid=198500, pool_entry=10598, description='Icecrown 191133, node 122' WHERE guid=121387; UPDATE gameobject SET guid=198499 WHERE guid=120139; UPDATE pool_gameobject SET guid=198499, pool_entry=10599, description='Icecrown 189980, node 123' WHERE guid=120139; UPDATE pool_pool SET pool_id=10599, description='Icecrown mineral, node 123' WHERE pool_id=5570; UPDATE pool_template SET entry=10599, description='Icecrown mineral, node 123' WHERE entry=5570; UPDATE gameobject SET guid=198498 WHERE guid=121388; UPDATE pool_gameobject SET guid=198498, pool_entry=10599, description='Icecrown 189981, node 123' WHERE guid=121388; UPDATE gameobject SET guid=198497 WHERE guid=121389; UPDATE pool_gameobject SET guid=198497, pool_entry=10599, description='Icecrown 191133, node 123' WHERE guid=121389; UPDATE gameobject SET guid=198496 WHERE guid=120140; UPDATE pool_gameobject SET guid=198496, pool_entry=10600, description='Icecrown 189980, node 124' WHERE guid=120140; UPDATE pool_pool SET pool_id=10600, description='Icecrown mineral, node 124' WHERE pool_id=5571; UPDATE pool_template SET entry=10600, description='Icecrown mineral, node 124' WHERE entry=5571; UPDATE gameobject SET guid=198495 WHERE guid=121390; UPDATE pool_gameobject SET guid=198495, pool_entry=10600, description='Icecrown 189981, node 124' WHERE guid=121390; UPDATE gameobject SET guid=198494 WHERE guid=121391; UPDATE pool_gameobject SET guid=198494, pool_entry=10600, description='Icecrown 191133, node 124' WHERE guid=121391; UPDATE gameobject SET guid=198493 WHERE guid=120141; UPDATE pool_gameobject SET guid=198493, pool_entry=10601, description='Icecrown 189980, node 125' WHERE guid=120141; UPDATE pool_pool SET pool_id=10601, description='Icecrown mineral, node 125' WHERE pool_id=5572; UPDATE pool_template SET entry=10601, description='Icecrown mineral, node 125' WHERE entry=5572; UPDATE gameobject SET guid=198492 WHERE guid=121392; UPDATE pool_gameobject SET guid=198492, pool_entry=10601, description='Icecrown 189981, node 125' WHERE guid=121392; UPDATE gameobject SET guid=198491 WHERE guid=121393; UPDATE pool_gameobject SET guid=198491, pool_entry=10601, description='Icecrown 191133, node 125' WHERE guid=121393; UPDATE gameobject SET guid=198490 WHERE guid=120142; UPDATE pool_gameobject SET guid=198490, pool_entry=10602, description='Icecrown 189980, node 126' WHERE guid=120142; UPDATE pool_pool SET pool_id=10602, description='Icecrown mineral, node 126' WHERE pool_id=5573; UPDATE pool_template SET entry=10602, description='Icecrown mineral, node 126' WHERE entry=5573; UPDATE gameobject SET guid=198489 WHERE guid=121394; UPDATE pool_gameobject SET guid=198489, pool_entry=10602, description='Icecrown 189981, node 126' WHERE guid=121394; UPDATE gameobject SET guid=198488 WHERE guid=121395; UPDATE pool_gameobject SET guid=198488, pool_entry=10602, description='Icecrown 191133, node 126' WHERE guid=121395; UPDATE gameobject SET guid=198487 WHERE guid=120143; UPDATE pool_gameobject SET guid=198487, pool_entry=10603, description='Icecrown 189980, node 127' WHERE guid=120143; UPDATE pool_pool SET pool_id=10603, description='Icecrown mineral, node 127' WHERE pool_id=5574; UPDATE pool_template SET entry=10603, description='Icecrown mineral, node 127' WHERE entry=5574; UPDATE gameobject SET guid=198486 WHERE guid=121396; UPDATE pool_gameobject SET guid=198486, pool_entry=10603, description='Icecrown 189981, node 127' WHERE guid=121396; UPDATE gameobject SET guid=198485 WHERE guid=121397; UPDATE pool_gameobject SET guid=198485, pool_entry=10603, description='Icecrown 191133, node 127' WHERE guid=121397; UPDATE gameobject SET guid=198484 WHERE guid=121398; UPDATE pool_gameobject SET guid=198484, pool_entry=10604, description='Icecrown 189981, node 128' WHERE guid=121398; UPDATE pool_pool SET pool_id=10604, description='Icecrown mineral, node 128' WHERE pool_id=5575; UPDATE pool_template SET entry=10604, description='Icecrown mineral, node 128' WHERE entry=5575; UPDATE gameobject SET guid=198483 WHERE guid=121399; UPDATE pool_gameobject SET guid=198483, pool_entry=10604, description='Icecrown 191133, node 128' WHERE guid=121399; UPDATE gameobject SET guid=198482 WHERE guid=120144; UPDATE pool_gameobject SET guid=198482, pool_entry=10604, description='Icecrown 189980, node 128' WHERE guid=120144; UPDATE gameobject SET guid=198481 WHERE guid=120145; UPDATE pool_gameobject SET guid=198481, pool_entry=10605, description='Icecrown 189980, node 129' WHERE guid=120145; UPDATE pool_pool SET pool_id=10605, description='Icecrown mineral, node 129' WHERE pool_id=5576; UPDATE pool_template SET entry=10605, description='Icecrown mineral, node 129' WHERE entry=5576; UPDATE gameobject SET guid=198480 WHERE guid=121400; UPDATE pool_gameobject SET guid=198480, pool_entry=10605, description='Icecrown 189981, node 129' WHERE guid=121400; UPDATE gameobject SET guid=198479 WHERE guid=121401; UPDATE pool_gameobject SET guid=198479, pool_entry=10605, description='Icecrown 191133, node 129' WHERE guid=121401; UPDATE gameobject SET guid=198478 WHERE guid=120150; UPDATE pool_gameobject SET guid=198478, pool_entry=10606, description='Icecrown 189980, node 130' WHERE guid=120150; UPDATE pool_pool SET pool_id=10606, description='Icecrown mineral, node 130' WHERE pool_id=5577; UPDATE pool_template SET entry=10606, description='Icecrown mineral, node 130' WHERE entry=5577; UPDATE gameobject SET guid=198477 WHERE guid=121402; UPDATE pool_gameobject SET guid=198477, pool_entry=10606, description='Icecrown 189981, node 130' WHERE guid=121402; UPDATE gameobject SET guid=198476 WHERE guid=121403; UPDATE pool_gameobject SET guid=198476, pool_entry=10606, description='Icecrown 191133, node 130' WHERE guid=121403; UPDATE gameobject SET guid=198475 WHERE guid=120151; UPDATE pool_gameobject SET guid=198475, pool_entry=10607, description='Icecrown 189980, node 131' WHERE guid=120151; UPDATE pool_pool SET pool_id=10607, description='Icecrown mineral, node 131' WHERE pool_id=5578; UPDATE pool_template SET entry=10607, description='Icecrown mineral, node 131' WHERE entry=5578; UPDATE gameobject SET guid=198474 WHERE guid=121404; UPDATE pool_gameobject SET guid=198474, pool_entry=10607, description='Icecrown 189981, node 131' WHERE guid=121404; UPDATE gameobject SET guid=198473 WHERE guid=121405; UPDATE pool_gameobject SET guid=198473, pool_entry=10607, description='Icecrown 191133, node 131' WHERE guid=121405; UPDATE gameobject SET guid=198472 WHERE guid=120159; UPDATE pool_gameobject SET guid=198472, pool_entry=10608, description='Icecrown 189980, node 132' WHERE guid=120159; UPDATE pool_pool SET pool_id=10608, description='Icecrown mineral, node 132' WHERE pool_id=5579; UPDATE pool_template SET entry=10608, description='Icecrown mineral, node 132' WHERE entry=5579; UPDATE gameobject SET guid=198471 WHERE guid=121406; UPDATE pool_gameobject SET guid=198471, pool_entry=10608, description='Icecrown 189981, node 132' WHERE guid=121406; UPDATE gameobject SET guid=198470 WHERE guid=121407; UPDATE pool_gameobject SET guid=198470, pool_entry=10608, description='Icecrown 191133, node 132' WHERE guid=121407; UPDATE gameobject SET guid=198469 WHERE guid=121409; UPDATE pool_gameobject SET guid=198469, pool_entry=10609, description='Icecrown 191133, node 133' WHERE guid=121409; UPDATE pool_pool SET pool_id=10609, description='Icecrown mineral, node 133' WHERE pool_id=5580; UPDATE pool_template SET entry=10609, description='Icecrown mineral, node 133' WHERE entry=5580; UPDATE gameobject SET guid=198468 WHERE guid=120163; UPDATE pool_gameobject SET guid=198468, pool_entry=10609, description='Icecrown 189980, node 133' WHERE guid=120163; UPDATE gameobject SET guid=198467 WHERE guid=121408; UPDATE pool_gameobject SET guid=198467, pool_entry=10609, description='Icecrown 189981, node 133' WHERE guid=121408; UPDATE gameobject SET guid=198466 WHERE guid=120165; UPDATE pool_gameobject SET guid=198466, pool_entry=10610, description='Icecrown 189980, node 134' WHERE guid=120165; UPDATE pool_pool SET pool_id=10610, description='Icecrown mineral, node 134' WHERE pool_id=5581; UPDATE pool_template SET entry=10610, description='Icecrown mineral, node 134' WHERE entry=5581; UPDATE gameobject SET guid=198465 WHERE guid=121410; UPDATE pool_gameobject SET guid=198465, pool_entry=10610, description='Icecrown 189981, node 134' WHERE guid=121410; UPDATE gameobject SET guid=198464 WHERE guid=121411; UPDATE pool_gameobject SET guid=198464, pool_entry=10610, description='Icecrown 191133, node 134' WHERE guid=121411; UPDATE gameobject SET guid=198463 WHERE guid=120169; UPDATE pool_gameobject SET guid=198463, pool_entry=10611, description='Icecrown 189980, node 135' WHERE guid=120169; UPDATE pool_pool SET pool_id=10611, description='Icecrown mineral, node 135' WHERE pool_id=5582; UPDATE pool_template SET entry=10611, description='Icecrown mineral, node 135' WHERE entry=5582; UPDATE gameobject SET guid=198462 WHERE guid=121412; UPDATE pool_gameobject SET guid=198462, pool_entry=10611, description='Icecrown 189981, node 135' WHERE guid=121412; UPDATE gameobject SET guid=198461 WHERE guid=121413; UPDATE pool_gameobject SET guid=198461, pool_entry=10611, description='Icecrown 191133, node 135' WHERE guid=121413; UPDATE gameobject SET guid=198460 WHERE guid=120170; UPDATE pool_gameobject SET guid=198460, pool_entry=10612, description='Icecrown 189980, node 136' WHERE guid=120170; UPDATE pool_pool SET pool_id=10612, description='Icecrown mineral, node 136' WHERE pool_id=5583; UPDATE pool_template SET entry=10612, description='Icecrown mineral, node 136' WHERE entry=5583; UPDATE gameobject SET guid=198459 WHERE guid=121414; UPDATE pool_gameobject SET guid=198459, pool_entry=10612, description='Icecrown 189981, node 136' WHERE guid=121414; UPDATE gameobject SET guid=198458 WHERE guid=121415; UPDATE pool_gameobject SET guid=198458, pool_entry=10612, description='Icecrown 191133, node 136' WHERE guid=121415; UPDATE gameobject SET guid=198457 WHERE guid=120171; UPDATE pool_gameobject SET guid=198457, pool_entry=10613, description='Icecrown 189980, node 137' WHERE guid=120171; UPDATE pool_pool SET pool_id=10613, description='Icecrown mineral, node 137' WHERE pool_id=5584; UPDATE pool_template SET entry=10613, description='Icecrown mineral, node 137' WHERE entry=5584; UPDATE gameobject SET guid=198456 WHERE guid=121416; UPDATE pool_gameobject SET guid=198456, pool_entry=10613, description='Icecrown 189981, node 137' WHERE guid=121416; UPDATE gameobject SET guid=198455 WHERE guid=121417; UPDATE pool_gameobject SET guid=198455, pool_entry=10613, description='Icecrown 191133, node 137' WHERE guid=121417; UPDATE gameobject SET guid=198454 WHERE guid=120172; UPDATE pool_gameobject SET guid=198454, pool_entry=10614, description='Icecrown 189980, node 138' WHERE guid=120172; UPDATE pool_pool SET pool_id=10614, description='Icecrown mineral, node 138' WHERE pool_id=5585; UPDATE pool_template SET entry=10614, description='Icecrown mineral, node 138' WHERE entry=5585; UPDATE gameobject SET guid=198453 WHERE guid=121418; UPDATE pool_gameobject SET guid=198453, pool_entry=10614, description='Icecrown 189981, node 138' WHERE guid=121418; UPDATE gameobject SET guid=198452 WHERE guid=121419; UPDATE pool_gameobject SET guid=198452, pool_entry=10614, description='Icecrown 191133, node 138' WHERE guid=121419; UPDATE gameobject SET guid=198451 WHERE guid=120175; UPDATE pool_gameobject SET guid=198451, pool_entry=10615, description='Icecrown 189980, node 139' WHERE guid=120175; UPDATE pool_pool SET pool_id=10615, description='Icecrown mineral, node 139' WHERE pool_id=5586; UPDATE pool_template SET entry=10615, description='Icecrown mineral, node 139' WHERE entry=5586; UPDATE gameobject SET guid=198450 WHERE guid=121420; UPDATE pool_gameobject SET guid=198450, pool_entry=10615, description='Icecrown 189981, node 139' WHERE guid=121420; UPDATE gameobject SET guid=198449 WHERE guid=121421; UPDATE pool_gameobject SET guid=198449, pool_entry=10615, description='Icecrown 191133, node 139' WHERE guid=121421; UPDATE gameobject SET guid=198448 WHERE guid=120176; UPDATE pool_gameobject SET guid=198448, pool_entry=10616, description='Icecrown 189980, node 140' WHERE guid=120176; UPDATE pool_pool SET pool_id=10616, description='Icecrown mineral, node 140' WHERE pool_id=5587; UPDATE pool_template SET entry=10616, description='Icecrown mineral, node 140' WHERE entry=5587; UPDATE gameobject SET guid=198447 WHERE guid=121422; UPDATE pool_gameobject SET guid=198447, pool_entry=10616, description='Icecrown 189981, node 140' WHERE guid=121422; UPDATE gameobject SET guid=198446 WHERE guid=121423; UPDATE pool_gameobject SET guid=198446, pool_entry=10616, description='Icecrown 191133, node 140' WHERE guid=121423; UPDATE gameobject SET guid=198445 WHERE guid=120178; UPDATE pool_gameobject SET guid=198445, pool_entry=10617, description='Icecrown 189980, node 141' WHERE guid=120178; UPDATE pool_pool SET pool_id=10617, description='Icecrown mineral, node 141' WHERE pool_id=5588; UPDATE pool_template SET entry=10617, description='Icecrown mineral, node 141' WHERE entry=5588; UPDATE gameobject SET guid=198444 WHERE guid=121424; UPDATE pool_gameobject SET guid=198444, pool_entry=10617, description='Icecrown 189981, node 141' WHERE guid=121424; UPDATE gameobject SET guid=198443 WHERE guid=121425; UPDATE pool_gameobject SET guid=198443, pool_entry=10617, description='Icecrown 191133, node 141' WHERE guid=121425; UPDATE gameobject SET guid=198442 WHERE guid=120179; UPDATE pool_gameobject SET guid=198442, pool_entry=10618, description='Icecrown 189980, node 142' WHERE guid=120179; UPDATE pool_pool SET pool_id=10618, description='Icecrown mineral, node 142' WHERE pool_id=5589; UPDATE pool_template SET entry=10618, description='Icecrown mineral, node 142' WHERE entry=5589; UPDATE gameobject SET guid=198441 WHERE guid=121426; UPDATE pool_gameobject SET guid=198441, pool_entry=10618, description='Icecrown 189981, node 142' WHERE guid=121426; UPDATE gameobject SET guid=198440 WHERE guid=121427; UPDATE pool_gameobject SET guid=198440, pool_entry=10618, description='Icecrown 191133, node 142' WHERE guid=121427; UPDATE gameobject SET guid=198439 WHERE guid=120276; UPDATE pool_gameobject SET guid=198439, pool_entry=10619, description='Icecrown 189980, node 143' WHERE guid=120276; UPDATE pool_pool SET pool_id=10619, description='Icecrown mineral, node 143' WHERE pool_id=5590; UPDATE pool_template SET entry=10619, description='Icecrown mineral, node 143' WHERE entry=5590; UPDATE gameobject SET guid=198438 WHERE guid=121428; UPDATE pool_gameobject SET guid=198438, pool_entry=10619, description='Icecrown 189981, node 143' WHERE guid=121428; UPDATE gameobject SET guid=198437 WHERE guid=121429; UPDATE pool_gameobject SET guid=198437, pool_entry=10619, description='Icecrown 191133, node 143' WHERE guid=121429; UPDATE gameobject SET guid=198436 WHERE guid=121430; UPDATE pool_gameobject SET guid=198436, pool_entry=10620, description='Icecrown 189981, node 144' WHERE guid=121430; UPDATE pool_pool SET pool_id=10620, description='Icecrown mineral, node 144' WHERE pool_id=5591; UPDATE pool_template SET entry=10620, description='Icecrown mineral, node 144' WHERE entry=5591; UPDATE gameobject SET guid=198435 WHERE guid=121431; UPDATE pool_gameobject SET guid=198435, pool_entry=10620, description='Icecrown 191133, node 144' WHERE guid=121431; UPDATE gameobject SET guid=198434 WHERE guid=120278; UPDATE pool_gameobject SET guid=198434, pool_entry=10620, description='Icecrown 189980, node 144' WHERE guid=120278; UPDATE gameobject SET guid=198433 WHERE guid=120282; UPDATE pool_gameobject SET guid=198433, pool_entry=10621, description='Icecrown 189980, node 145' WHERE guid=120282; UPDATE pool_pool SET pool_id=10621, description='Icecrown mineral, node 145' WHERE pool_id=5592; UPDATE pool_template SET entry=10621, description='Icecrown mineral, node 145' WHERE entry=5592; UPDATE gameobject SET guid=198432 WHERE guid=121432; UPDATE pool_gameobject SET guid=198432, pool_entry=10621, description='Icecrown 189981, node 145' WHERE guid=121432; UPDATE gameobject SET guid=198431 WHERE guid=121433; UPDATE pool_gameobject SET guid=198431, pool_entry=10621, description='Icecrown 191133, node 145' WHERE guid=121433; UPDATE gameobject SET guid=198430 WHERE guid=120526; UPDATE pool_gameobject SET guid=198430, pool_entry=10622, description='Icecrown 189980, node 146' WHERE guid=120526; UPDATE pool_pool SET pool_id=10622, description='Icecrown mineral, node 146' WHERE pool_id=5593; UPDATE pool_template SET entry=10622, description='Icecrown mineral, node 146' WHERE entry=5593; UPDATE gameobject SET guid=198429 WHERE guid=121434; UPDATE pool_gameobject SET guid=198429, pool_entry=10622, description='Icecrown 189981, node 146' WHERE guid=121434; UPDATE gameobject SET guid=198428 WHERE guid=121435; UPDATE pool_gameobject SET guid=198428, pool_entry=10622, description='Icecrown 191133, node 146' WHERE guid=121435; UPDATE gameobject SET guid=198427 WHERE guid=120527; UPDATE pool_gameobject SET guid=198427, pool_entry=10623, description='Icecrown 189980, node 147' WHERE guid=120527; UPDATE pool_pool SET pool_id=10623, description='Icecrown mineral, node 147' WHERE pool_id=5594; UPDATE pool_template SET entry=10623, description='Icecrown mineral, node 147' WHERE entry=5594; UPDATE gameobject SET guid=198426 WHERE guid=121436; UPDATE pool_gameobject SET guid=198426, pool_entry=10623, description='Icecrown 189981, node 147' WHERE guid=121436; UPDATE gameobject SET guid=198425 WHERE guid=121437; UPDATE pool_gameobject SET guid=198425, pool_entry=10623, description='Icecrown 191133, node 147' WHERE guid=121437; UPDATE gameobject SET guid=198424 WHERE guid=120528; UPDATE pool_gameobject SET guid=198424, pool_entry=10624, description='Icecrown 189980, node 148' WHERE guid=120528; UPDATE pool_pool SET pool_id=10624, description='Icecrown mineral, node 148' WHERE pool_id=5595; UPDATE pool_template SET entry=10624, description='Icecrown mineral, node 148' WHERE entry=5595; UPDATE gameobject SET guid=198423 WHERE guid=121438; UPDATE pool_gameobject SET guid=198423, pool_entry=10624, description='Icecrown 189981, node 148' WHERE guid=121438; UPDATE gameobject SET guid=198422 WHERE guid=121439; UPDATE pool_gameobject SET guid=198422, pool_entry=10624, description='Icecrown 191133, node 148' WHERE guid=121439; UPDATE gameobject SET guid=198421 WHERE guid=121441; UPDATE pool_gameobject SET guid=198421, pool_entry=10625, description='Icecrown 191133, node 149' WHERE guid=121441; UPDATE pool_pool SET pool_id=10625, description='Icecrown mineral, node 149' WHERE pool_id=5596; UPDATE pool_template SET entry=10625, description='Icecrown mineral, node 149' WHERE entry=5596; UPDATE gameobject SET guid=198420 WHERE guid=120547; UPDATE pool_gameobject SET guid=198420, pool_entry=10625, description='Icecrown 189980, node 149' WHERE guid=120547; UPDATE gameobject SET guid=198419 WHERE guid=121440; UPDATE pool_gameobject SET guid=198419, pool_entry=10625, description='Icecrown 189981, node 149' WHERE guid=121440; UPDATE gameobject SET guid=198418 WHERE guid=120550; UPDATE pool_gameobject SET guid=198418, pool_entry=10626, description='Icecrown 189980, node 150' WHERE guid=120550; UPDATE pool_pool SET pool_id=10626, description='Icecrown mineral, node 150' WHERE pool_id=5597; UPDATE pool_template SET entry=10626, description='Icecrown mineral, node 150' WHERE entry=5597; UPDATE gameobject SET guid=198417 WHERE guid=121442; UPDATE pool_gameobject SET guid=198417, pool_entry=10626, description='Icecrown 189981, node 150' WHERE guid=121442; UPDATE gameobject SET guid=198416 WHERE guid=121443; UPDATE pool_gameobject SET guid=198416, pool_entry=10626, description='Icecrown 191133, node 150' WHERE guid=121443; UPDATE gameobject SET guid=198415 WHERE guid=120667; UPDATE pool_gameobject SET guid=198415, pool_entry=10627, description='Icecrown 189980, node 151' WHERE guid=120667; UPDATE pool_pool SET pool_id=10627, description='Icecrown mineral, node 151' WHERE pool_id=5598; UPDATE pool_template SET entry=10627, description='Icecrown mineral, node 151' WHERE entry=5598; UPDATE gameobject SET guid=198414 WHERE guid=121444; UPDATE pool_gameobject SET guid=198414, pool_entry=10627, description='Icecrown 189981, node 151' WHERE guid=121444; UPDATE gameobject SET guid=198413 WHERE guid=121445; UPDATE pool_gameobject SET guid=198413, pool_entry=10627, description='Icecrown 191133, node 151' WHERE guid=121445; UPDATE gameobject SET guid=198412 WHERE guid=120668; UPDATE pool_gameobject SET guid=198412, pool_entry=10628, description='Icecrown 189980, node 152' WHERE guid=120668; UPDATE pool_pool SET pool_id=10628, description='Icecrown mineral, node 152' WHERE pool_id=5599; UPDATE pool_template SET entry=10628, description='Icecrown mineral, node 152' WHERE entry=5599; UPDATE gameobject SET guid=198411 WHERE guid=121446; UPDATE pool_gameobject SET guid=198411, pool_entry=10628, description='Icecrown 189981, node 152' WHERE guid=121446; UPDATE gameobject SET guid=198410 WHERE guid=121447; UPDATE pool_gameobject SET guid=198410, pool_entry=10628, description='Icecrown 191133, node 152' WHERE guid=121447; UPDATE gameobject SET guid=198409 WHERE guid=120669; UPDATE pool_gameobject SET guid=198409, pool_entry=10629, description='Icecrown 189980, node 153' WHERE guid=120669; UPDATE pool_pool SET pool_id=10629, description='Icecrown mineral, node 153' WHERE pool_id=5600; UPDATE pool_template SET entry=10629, description='Icecrown mineral, node 153' WHERE entry=5600; UPDATE gameobject SET guid=198408 WHERE guid=121448; UPDATE pool_gameobject SET guid=198408, pool_entry=10629, description='Icecrown 189981, node 153' WHERE guid=121448; UPDATE gameobject SET guid=198407 WHERE guid=121449; UPDATE pool_gameobject SET guid=198407, pool_entry=10629, description='Icecrown 191133, node 153' WHERE guid=121449; UPDATE gameobject SET guid=198406 WHERE guid=120683; UPDATE pool_gameobject SET guid=198406, pool_entry=10630, description='Icecrown 189980, node 154' WHERE guid=120683; UPDATE pool_pool SET pool_id=10630, description='Icecrown mineral, node 154' WHERE pool_id=5601; UPDATE pool_template SET entry=10630, description='Icecrown mineral, node 154' WHERE entry=5601; UPDATE gameobject SET guid=198405 WHERE guid=121450; UPDATE pool_gameobject SET guid=198405, pool_entry=10630, description='Icecrown 189981, node 154' WHERE guid=121450; UPDATE gameobject SET guid=198404 WHERE guid=121451; UPDATE pool_gameobject SET guid=198404, pool_entry=10630, description='Icecrown 191133, node 154' WHERE guid=121451; UPDATE gameobject SET guid=198403 WHERE guid=120692; UPDATE pool_gameobject SET guid=198403, pool_entry=10631, description='Icecrown 189980, node 155' WHERE guid=120692; UPDATE pool_pool SET pool_id=10631, description='Icecrown mineral, node 155' WHERE pool_id=5602; UPDATE pool_template SET entry=10631, description='Icecrown mineral, node 155' WHERE entry=5602; UPDATE gameobject SET guid=198402 WHERE guid=121452; UPDATE pool_gameobject SET guid=198402, pool_entry=10631, description='Icecrown 189981, node 155' WHERE guid=121452; UPDATE gameobject SET guid=198401 WHERE guid=121453; UPDATE pool_gameobject SET guid=198401, pool_entry=10631, description='Icecrown 191133, node 155' WHERE guid=121453; UPDATE gameobject SET guid=198400 WHERE guid=120693; UPDATE pool_gameobject SET guid=198400, pool_entry=10632, description='Icecrown 189980, node 156' WHERE guid=120693; UPDATE pool_pool SET pool_id=10632, description='Icecrown mineral, node 156' WHERE pool_id=5603; UPDATE pool_template SET entry=10632, description='Icecrown mineral, node 156' WHERE entry=5603; UPDATE gameobject SET guid=198399 WHERE guid=121454; UPDATE pool_gameobject SET guid=198399, pool_entry=10632, description='Icecrown 189981, node 156' WHERE guid=121454; UPDATE gameobject SET guid=198398 WHERE guid=121455; UPDATE pool_gameobject SET guid=198398, pool_entry=10632, description='Icecrown 191133, node 156' WHERE guid=121455; UPDATE gameobject SET guid=198397 WHERE guid=120717; UPDATE pool_gameobject SET guid=198397, pool_entry=10633, description='Icecrown 189980, node 157' WHERE guid=120717; UPDATE pool_pool SET pool_id=10633, description='Icecrown mineral, node 157' WHERE pool_id=5604; UPDATE pool_template SET entry=10633, description='Icecrown mineral, node 157' WHERE entry=5604; UPDATE gameobject SET guid=198396 WHERE guid=121456; UPDATE pool_gameobject SET guid=198396, pool_entry=10633, description='Icecrown 189981, node 157' WHERE guid=121456; UPDATE gameobject SET guid=198395 WHERE guid=121457; UPDATE pool_gameobject SET guid=198395, pool_entry=10633, description='Icecrown 191133, node 157' WHERE guid=121457; UPDATE gameobject SET guid=198394 WHERE guid=120718; UPDATE pool_gameobject SET guid=198394, pool_entry=10634, description='Icecrown 189980, node 158' WHERE guid=120718; UPDATE pool_pool SET pool_id=10634, description='Icecrown mineral, node 158' WHERE pool_id=5605; UPDATE pool_template SET entry=10634, description='Icecrown mineral, node 158' WHERE entry=5605; UPDATE gameobject SET guid=198393 WHERE guid=121458; UPDATE pool_gameobject SET guid=198393, pool_entry=10634, description='Icecrown 189981, node 158' WHERE guid=121458; UPDATE gameobject SET guid=198392 WHERE guid=121459; UPDATE pool_gameobject SET guid=198392, pool_entry=10634, description='Icecrown 191133, node 158' WHERE guid=121459; UPDATE gameobject SET guid=198391 WHERE guid=120719; UPDATE pool_gameobject SET guid=198391, pool_entry=10635, description='Icecrown 189980, node 159' WHERE guid=120719; UPDATE pool_pool SET pool_id=10635, description='Icecrown mineral, node 159' WHERE pool_id=5606; UPDATE pool_template SET entry=10635, description='Icecrown mineral, node 159' WHERE entry=5606; UPDATE gameobject SET guid=198390 WHERE guid=121460; UPDATE pool_gameobject SET guid=198390, pool_entry=10635, description='Icecrown 189981, node 159' WHERE guid=121460; UPDATE gameobject SET guid=198389 WHERE guid=121461; UPDATE pool_gameobject SET guid=198389, pool_entry=10635, description='Icecrown 191133, node 159' WHERE guid=121461; UPDATE gameobject SET guid=198388 WHERE guid=121462; UPDATE pool_gameobject SET guid=198388, pool_entry=10636, description='Icecrown 189981, node 160' WHERE guid=121462; UPDATE pool_pool SET pool_id=10636, description='Icecrown mineral, node 160' WHERE pool_id=5607; UPDATE pool_template SET entry=10636, description='Icecrown mineral, node 160' WHERE entry=5607; UPDATE gameobject SET guid=198387 WHERE guid=121463; UPDATE pool_gameobject SET guid=198387, pool_entry=10636, description='Icecrown 191133, node 160' WHERE guid=121463; UPDATE gameobject SET guid=198386 WHERE guid=120720; UPDATE pool_gameobject SET guid=198386, pool_entry=10636, description='Icecrown 189980, node 160' WHERE guid=120720; UPDATE gameobject SET guid=198385 WHERE guid=120721; UPDATE pool_gameobject SET guid=198385, pool_entry=10637, description='Icecrown 189980, node 161' WHERE guid=120721; UPDATE pool_pool SET pool_id=10637, description='Icecrown mineral, node 161' WHERE pool_id=5608; UPDATE pool_template SET entry=10637, description='Icecrown mineral, node 161' WHERE entry=5608; UPDATE gameobject SET guid=198384 WHERE guid=121464; UPDATE pool_gameobject SET guid=198384, pool_entry=10637, description='Icecrown 189981, node 161' WHERE guid=121464; UPDATE gameobject SET guid=198383 WHERE guid=121465; UPDATE pool_gameobject SET guid=198383, pool_entry=10637, description='Icecrown 191133, node 161' WHERE guid=121465; UPDATE gameobject SET guid=198382 WHERE guid=120723; UPDATE pool_gameobject SET guid=198382, pool_entry=10638, description='Icecrown 189980, node 162' WHERE guid=120723; UPDATE pool_pool SET pool_id=10638, description='Icecrown mineral, node 162' WHERE pool_id=5609; UPDATE pool_template SET entry=10638, description='Icecrown mineral, node 162' WHERE entry=5609; UPDATE gameobject SET guid=198381 WHERE guid=121466; UPDATE pool_gameobject SET guid=198381, pool_entry=10638, description='Icecrown 189981, node 162' WHERE guid=121466; UPDATE gameobject SET guid=198380 WHERE guid=121467; UPDATE pool_gameobject SET guid=198380, pool_entry=10638, description='Icecrown 191133, node 162' WHERE guid=121467; UPDATE gameobject SET guid=198379 WHERE guid=120725; UPDATE pool_gameobject SET guid=198379, pool_entry=10639, description='Icecrown 189980, node 163' WHERE guid=120725; UPDATE pool_pool SET pool_id=10639, description='Icecrown mineral, node 163' WHERE pool_id=5610; UPDATE pool_template SET entry=10639, description='Icecrown mineral, node 163' WHERE entry=5610; UPDATE gameobject SET guid=198378 WHERE guid=121468; UPDATE pool_gameobject SET guid=198378, pool_entry=10639, description='Icecrown 189981, node 163' WHERE guid=121468; UPDATE gameobject SET guid=198377 WHERE guid=121469; UPDATE pool_gameobject SET guid=198377, pool_entry=10639, description='Icecrown 191133, node 163' WHERE guid=121469; UPDATE gameobject SET guid=198376 WHERE guid=120726; UPDATE pool_gameobject SET guid=198376, pool_entry=10640, description='Icecrown 189980, node 164' WHERE guid=120726; UPDATE pool_pool SET pool_id=10640, description='Icecrown mineral, node 164' WHERE pool_id=5611; UPDATE pool_template SET entry=10640, description='Icecrown mineral, node 164' WHERE entry=5611; UPDATE gameobject SET guid=198375 WHERE guid=121470; UPDATE pool_gameobject SET guid=198375, pool_entry=10640, description='Icecrown 189981, node 164' WHERE guid=121470; UPDATE gameobject SET guid=198374 WHERE guid=121471; UPDATE pool_gameobject SET guid=198374, pool_entry=10640, description='Icecrown 191133, node 164' WHERE guid=121471; UPDATE gameobject SET guid=198373 WHERE guid=121473; UPDATE pool_gameobject SET guid=198373, pool_entry=10641, description='Icecrown 191133, node 165' WHERE guid=121473; UPDATE pool_pool SET pool_id=10641, description='Icecrown mineral, node 165' WHERE pool_id=5612; UPDATE pool_template SET entry=10641, description='Icecrown mineral, node 165' WHERE entry=5612; UPDATE gameobject SET guid=198372 WHERE guid=120730; UPDATE pool_gameobject SET guid=198372, pool_entry=10641, description='Icecrown 189980, node 165' WHERE guid=120730; UPDATE gameobject SET guid=198371 WHERE guid=121472; UPDATE pool_gameobject SET guid=198371, pool_entry=10641, description='Icecrown 189981, node 165' WHERE guid=121472; UPDATE gameobject SET guid=198370 WHERE guid=120731; UPDATE pool_gameobject SET guid=198370, pool_entry=10642, description='Icecrown 189980, node 166' WHERE guid=120731; UPDATE pool_pool SET pool_id=10642, description='Icecrown mineral, node 166' WHERE pool_id=5613; UPDATE pool_template SET entry=10642, description='Icecrown mineral, node 166' WHERE entry=5613; UPDATE gameobject SET guid=198369 WHERE guid=121474; UPDATE pool_gameobject SET guid=198369, pool_entry=10642, description='Icecrown 189981, node 166' WHERE guid=121474; UPDATE gameobject SET guid=198368 WHERE guid=121475; UPDATE pool_gameobject SET guid=198368, pool_entry=10642, description='Icecrown 191133, node 166' WHERE guid=121475; UPDATE gameobject SET guid=198367 WHERE guid=120732; UPDATE pool_gameobject SET guid=198367, pool_entry=10643, description='Icecrown 189980, node 167' WHERE guid=120732; UPDATE pool_pool SET pool_id=10643, description='Icecrown mineral, node 167' WHERE pool_id=5614; UPDATE pool_template SET entry=10643, description='Icecrown mineral, node 167' WHERE entry=5614; UPDATE gameobject SET guid=198366 WHERE guid=121476; UPDATE pool_gameobject SET guid=198366, pool_entry=10643, description='Icecrown 189981, node 167' WHERE guid=121476; UPDATE gameobject SET guid=198365 WHERE guid=121477; UPDATE pool_gameobject SET guid=198365, pool_entry=10643, description='Icecrown 191133, node 167' WHERE guid=121477; UPDATE gameobject SET guid=198364 WHERE guid=120735; UPDATE pool_gameobject SET guid=198364, pool_entry=10644, description='Icecrown 189980, node 168' WHERE guid=120735; UPDATE pool_pool SET pool_id=10644, description='Icecrown mineral, node 168' WHERE pool_id=5615; UPDATE pool_template SET entry=10644, description='Icecrown mineral, node 168' WHERE entry=5615; UPDATE gameobject SET guid=198363 WHERE guid=121478; UPDATE pool_gameobject SET guid=198363, pool_entry=10644, description='Icecrown 189981, node 168' WHERE guid=121478; UPDATE gameobject SET guid=198362 WHERE guid=121479; UPDATE pool_gameobject SET guid=198362, pool_entry=10644, description='Icecrown 191133, node 168' WHERE guid=121479; UPDATE gameobject SET guid=198361 WHERE guid=120740; UPDATE pool_gameobject SET guid=198361, pool_entry=10645, description='Icecrown 189980, node 169' WHERE guid=120740; UPDATE pool_pool SET pool_id=10645, description='Icecrown mineral, node 169' WHERE pool_id=5616; UPDATE pool_template SET entry=10645, description='Icecrown mineral, node 169' WHERE entry=5616; UPDATE gameobject SET guid=198360 WHERE guid=121480; UPDATE pool_gameobject SET guid=198360, pool_entry=10645, description='Icecrown 189981, node 169' WHERE guid=121480; UPDATE gameobject SET guid=198359 WHERE guid=121481; UPDATE pool_gameobject SET guid=198359, pool_entry=10645, description='Icecrown 191133, node 169' WHERE guid=121481; -- storm peaks UPDATE gameobject SET guid=198358 WHERE guid=56280; UPDATE pool_gameobject SET guid=198358, pool_entry=10646, description='Storm Peaks 189980, node 1' WHERE guid=56280; UPDATE pool_pool SET pool_id=10646, description='Storm Peaks mineral, node 1' WHERE pool_id=5376; UPDATE pool_template SET entry=10646, description='Storm Peaks mineral, node 1' WHERE entry=5376; UPDATE gameobject SET guid=198357 WHERE guid=121000; UPDATE pool_gameobject SET guid=198357, pool_entry=10646, description='Storm Peaks 189981, node 1' WHERE guid=121000; UPDATE gameobject SET guid=198356 WHERE guid=121001; UPDATE pool_gameobject SET guid=198356, pool_entry=10646, description='Storm Peaks 191133, node 1' WHERE guid=121001; UPDATE gameobject SET guid=198355 WHERE guid=56281; UPDATE pool_gameobject SET guid=198355, pool_entry=10647, description='Storm Peaks 189980, node 2' WHERE guid=56281; UPDATE pool_pool SET pool_id=10647, description='Storm Peaks mineral, node 2' WHERE pool_id=5377; UPDATE pool_template SET entry=10647, description='Storm Peaks mineral, node 2' WHERE entry=5377; UPDATE gameobject SET guid=198354 WHERE guid=121002; UPDATE pool_gameobject SET guid=198354, pool_entry=10647, description='Storm Peaks 189981, node 2' WHERE guid=121002; UPDATE gameobject SET guid=198353 WHERE guid=121003; UPDATE pool_gameobject SET guid=198353, pool_entry=10647, description='Storm Peaks 191133, node 2' WHERE guid=121003; UPDATE gameobject SET guid=198352 WHERE guid=56282; UPDATE pool_gameobject SET guid=198352, pool_entry=10648, description='Storm Peaks 189980, node 3' WHERE guid=56282; UPDATE pool_pool SET pool_id=10648, description='Storm Peaks mineral, node 3' WHERE pool_id=5378; UPDATE pool_template SET entry=10648, description='Storm Peaks mineral, node 3' WHERE entry=5378; UPDATE gameobject SET guid=198351 WHERE guid=121004; UPDATE pool_gameobject SET guid=198351, pool_entry=10648, description='Storm Peaks 189981, node 3' WHERE guid=121004; UPDATE gameobject SET guid=198350 WHERE guid=121005; UPDATE pool_gameobject SET guid=198350, pool_entry=10648, description='Storm Peaks 191133, node 3' WHERE guid=121005; UPDATE gameobject SET guid=198349 WHERE guid=56283; UPDATE pool_gameobject SET guid=198349, pool_entry=10649, description='Storm Peaks 189980, node 4' WHERE guid=56283; UPDATE pool_pool SET pool_id=10649, description='Storm Peaks mineral, node 4' WHERE pool_id=5379; UPDATE pool_template SET entry=10649, description='Storm Peaks mineral, node 4' WHERE entry=5379; UPDATE gameobject SET guid=198348 WHERE guid=121006; UPDATE pool_gameobject SET guid=198348, pool_entry=10649, description='Storm Peaks 189981, node 4' WHERE guid=121006; UPDATE gameobject SET guid=198347 WHERE guid=121007; UPDATE pool_gameobject SET guid=198347, pool_entry=10649, description='Storm Peaks 191133, node 4' WHERE guid=121007; UPDATE gameobject SET guid=198346 WHERE guid=121009; UPDATE pool_gameobject SET guid=198346, pool_entry=10650, description='Storm Peaks 191133, node 5' WHERE guid=121009; UPDATE pool_pool SET pool_id=10650, description='Storm Peaks mineral, node 5' WHERE pool_id=5380; UPDATE pool_template SET entry=10650, description='Storm Peaks mineral, node 5' WHERE entry=5380; UPDATE gameobject SET guid=198345 WHERE guid=56284; UPDATE pool_gameobject SET guid=198345, pool_entry=10650, description='Storm Peaks 189980, node 5' WHERE guid=56284; UPDATE gameobject SET guid=198344 WHERE guid=121008; UPDATE pool_gameobject SET guid=198344, pool_entry=10650, description='Storm Peaks 189981, node 5' WHERE guid=121008; UPDATE gameobject SET guid=198343 WHERE guid=56285; UPDATE pool_gameobject SET guid=198343, pool_entry=10651, description='Storm Peaks 189980, node 6' WHERE guid=56285; UPDATE pool_pool SET pool_id=10651, description='Storm Peaks mineral, node 6' WHERE pool_id=5381; UPDATE pool_template SET entry=10651, description='Storm Peaks mineral, node 6' WHERE entry=5381; UPDATE gameobject SET guid=198342 WHERE guid=121010; UPDATE pool_gameobject SET guid=198342, pool_entry=10651, description='Storm Peaks 189981, node 6' WHERE guid=121010; UPDATE gameobject SET guid=198341 WHERE guid=121011; UPDATE pool_gameobject SET guid=198341, pool_entry=10651, description='Storm Peaks 191133, node 6' WHERE guid=121011; UPDATE gameobject SET guid=198340 WHERE guid=56286; UPDATE pool_gameobject SET guid=198340, pool_entry=10652, description='Storm Peaks 189980, node 7' WHERE guid=56286; UPDATE pool_pool SET pool_id=10652, description='Storm Peaks mineral, node 7' WHERE pool_id=5382; UPDATE pool_template SET entry=10652, description='Storm Peaks mineral, node 7' WHERE entry=5382; UPDATE gameobject SET guid=198339 WHERE guid=121012; UPDATE pool_gameobject SET guid=198339, pool_entry=10652, description='Storm Peaks 189981, node 7' WHERE guid=121012; UPDATE gameobject SET guid=198338 WHERE guid=121013; UPDATE pool_gameobject SET guid=198338, pool_entry=10652, description='Storm Peaks 191133, node 7' WHERE guid=121013; UPDATE gameobject SET guid=198337 WHERE guid=56287; UPDATE pool_gameobject SET guid=198337, pool_entry=10653, description='Storm Peaks 189980, node 8' WHERE guid=56287; UPDATE pool_pool SET pool_id=10653, description='Storm Peaks mineral, node 8' WHERE pool_id=5383; UPDATE pool_template SET entry=10653, description='Storm Peaks mineral, node 8' WHERE entry=5383; UPDATE gameobject SET guid=198336 WHERE guid=121014; UPDATE pool_gameobject SET guid=198336, pool_entry=10653, description='Storm Peaks 189981, node 8' WHERE guid=121014; UPDATE gameobject SET guid=198335 WHERE guid=121015; UPDATE pool_gameobject SET guid=198335, pool_entry=10653, description='Storm Peaks 191133, node 8' WHERE guid=121015; UPDATE gameobject SET guid=198334 WHERE guid=56288; UPDATE pool_gameobject SET guid=198334, pool_entry=10654, description='Storm Peaks 189980, node 9' WHERE guid=56288; UPDATE pool_pool SET pool_id=10654, description='Storm Peaks mineral, node 9' WHERE pool_id=5384; UPDATE pool_template SET entry=10654, description='Storm Peaks mineral, node 9' WHERE entry=5384; UPDATE gameobject SET guid=198333 WHERE guid=121016; UPDATE pool_gameobject SET guid=198333, pool_entry=10654, description='Storm Peaks 189981, node 9' WHERE guid=121016; UPDATE gameobject SET guid=198332 WHERE guid=121017; UPDATE pool_gameobject SET guid=198332, pool_entry=10654, description='Storm Peaks 191133, node 9' WHERE guid=121017; UPDATE gameobject SET guid=198331 WHERE guid=56289; UPDATE pool_gameobject SET guid=198331, pool_entry=10655, description='Storm Peaks 189980, node 10' WHERE guid=56289; UPDATE pool_pool SET pool_id=10655, description='Storm Peaks mineral, node 10' WHERE pool_id=5385; UPDATE pool_template SET entry=10655, description='Storm Peaks mineral, node 10' WHERE entry=5385; UPDATE gameobject SET guid=198330 WHERE guid=121018; UPDATE pool_gameobject SET guid=198330, pool_entry=10655, description='Storm Peaks 189981, node 10' WHERE guid=121018; UPDATE gameobject SET guid=198329 WHERE guid=121019; UPDATE pool_gameobject SET guid=198329, pool_entry=10655, description='Storm Peaks 191133, node 10' WHERE guid=121019; UPDATE gameobject SET guid=198328 WHERE guid=56290; UPDATE pool_gameobject SET guid=198328, pool_entry=10656, description='Storm Peaks 189980, node 11' WHERE guid=56290; UPDATE pool_pool SET pool_id=10656, description='Storm Peaks mineral, node 11' WHERE pool_id=5386; UPDATE pool_template SET entry=10656, description='Storm Peaks mineral, node 11' WHERE entry=5386; UPDATE gameobject SET guid=198327 WHERE guid=121020; UPDATE pool_gameobject SET guid=198327, pool_entry=10656, description='Storm Peaks 189981, node 11' WHERE guid=121020; UPDATE gameobject SET guid=198326 WHERE guid=121021; UPDATE pool_gameobject SET guid=198326, pool_entry=10656, description='Storm Peaks 191133, node 11' WHERE guid=121021; UPDATE gameobject SET guid=198325 WHERE guid=56291; UPDATE pool_gameobject SET guid=198325, pool_entry=10657, description='Storm Peaks 189980, node 12' WHERE guid=56291; UPDATE pool_pool SET pool_id=10657, description='Storm Peaks mineral, node 12' WHERE pool_id=5387; UPDATE pool_template SET entry=10657, description='Storm Peaks mineral, node 12' WHERE entry=5387; UPDATE gameobject SET guid=198324 WHERE guid=121022; UPDATE pool_gameobject SET guid=198324, pool_entry=10657, description='Storm Peaks 189981, node 12' WHERE guid=121022; UPDATE gameobject SET guid=198323 WHERE guid=121023; UPDATE pool_gameobject SET guid=198323, pool_entry=10657, description='Storm Peaks 191133, node 12' WHERE guid=121023; UPDATE gameobject SET guid=198322 WHERE guid=56292; UPDATE pool_gameobject SET guid=198322, pool_entry=10658, description='Storm Peaks 189980, node 13' WHERE guid=56292; UPDATE pool_pool SET pool_id=10658, description='Storm Peaks mineral, node 13' WHERE pool_id=5388; UPDATE pool_template SET entry=10658, description='Storm Peaks mineral, node 13' WHERE entry=5388; UPDATE gameobject SET guid=198321 WHERE guid=121024; UPDATE pool_gameobject SET guid=198321, pool_entry=10658, description='Storm Peaks 189981, node 13' WHERE guid=121024; UPDATE gameobject SET guid=198320 WHERE guid=121025; UPDATE pool_gameobject SET guid=198320, pool_entry=10658, description='Storm Peaks 191133, node 13' WHERE guid=121025; UPDATE gameobject SET guid=198319 WHERE guid=56293; UPDATE pool_gameobject SET guid=198319, pool_entry=10659, description='Storm Peaks 189980, node 14' WHERE guid=56293; UPDATE pool_pool SET pool_id=10659, description='Storm Peaks mineral, node 14' WHERE pool_id=5389; UPDATE pool_template SET entry=10659, description='Storm Peaks mineral, node 14' WHERE entry=5389; UPDATE gameobject SET guid=198318 WHERE guid=121026; UPDATE pool_gameobject SET guid=198318, pool_entry=10659, description='Storm Peaks 189981, node 14' WHERE guid=121026; UPDATE gameobject SET guid=198317 WHERE guid=121027; UPDATE pool_gameobject SET guid=198317, pool_entry=10659, description='Storm Peaks 191133, node 14' WHERE guid=121027; UPDATE gameobject SET guid=198316 WHERE guid=56446; UPDATE pool_gameobject SET guid=198316, pool_entry=10660, description='Storm Peaks 189980, node 15' WHERE guid=56446; UPDATE pool_pool SET pool_id=10660, description='Storm Peaks mineral, node 15' WHERE pool_id=5390; UPDATE pool_template SET entry=10660, description='Storm Peaks mineral, node 15' WHERE entry=5390; UPDATE gameobject SET guid=198315 WHERE guid=121028; UPDATE pool_gameobject SET guid=198315, pool_entry=10660, description='Storm Peaks 189981, node 15' WHERE guid=121028; UPDATE gameobject SET guid=198314 WHERE guid=121029; UPDATE pool_gameobject SET guid=198314, pool_entry=10660, description='Storm Peaks 191133, node 15' WHERE guid=121029; UPDATE gameobject SET guid=198313 WHERE guid=121030; UPDATE pool_gameobject SET guid=198313, pool_entry=10661, description='Storm Peaks 189981, node 16' WHERE guid=121030; UPDATE pool_pool SET pool_id=10661, description='Storm Peaks mineral, node 16' WHERE pool_id=5391; UPDATE pool_template SET entry=10661, description='Storm Peaks mineral, node 16' WHERE entry=5391; UPDATE gameobject SET guid=198312 WHERE guid=121031; UPDATE pool_gameobject SET guid=198312, pool_entry=10661, description='Storm Peaks 191133, node 16' WHERE guid=121031; UPDATE gameobject SET guid=198311 WHERE guid=56452; UPDATE pool_gameobject SET guid=198311, pool_entry=10661, description='Storm Peaks 189980, node 16' WHERE guid=56452; UPDATE gameobject SET guid=198310 WHERE guid=120014; UPDATE pool_gameobject SET guid=198310, pool_entry=10662, description='Storm Peaks 189980, node 17' WHERE guid=120014; UPDATE pool_pool SET pool_id=10662, description='Storm Peaks mineral, node 17' WHERE pool_id=5392; UPDATE pool_template SET entry=10662, description='Storm Peaks mineral, node 17' WHERE entry=5392; UPDATE gameobject SET guid=198309 WHERE guid=121032; UPDATE pool_gameobject SET guid=198309, pool_entry=10662, description='Storm Peaks 189981, node 17' WHERE guid=121032; UPDATE gameobject SET guid=198308 WHERE guid=121033; UPDATE pool_gameobject SET guid=198308, pool_entry=10662, description='Storm Peaks 191133, node 17' WHERE guid=121033; UPDATE gameobject SET guid=198307 WHERE guid=120015; UPDATE pool_gameobject SET guid=198307, pool_entry=10663, description='Storm Peaks 189980, node 18' WHERE guid=120015; UPDATE pool_pool SET pool_id=10663, description='Storm Peaks mineral, node 18' WHERE pool_id=5393; UPDATE pool_template SET entry=10663, description='Storm Peaks mineral, node 18' WHERE entry=5393; UPDATE gameobject SET guid=198306 WHERE guid=121034; UPDATE pool_gameobject SET guid=198306, pool_entry=10663, description='Storm Peaks 189981, node 18' WHERE guid=121034; UPDATE gameobject SET guid=198305 WHERE guid=121035; UPDATE pool_gameobject SET guid=198305, pool_entry=10663, description='Storm Peaks 191133, node 18' WHERE guid=121035; UPDATE gameobject SET guid=198304 WHERE guid=120016; UPDATE pool_gameobject SET guid=198304, pool_entry=10664, description='Storm Peaks 189980, node 19' WHERE guid=120016; UPDATE pool_pool SET pool_id=10664, description='Storm Peaks mineral, node 19' WHERE pool_id=5394; UPDATE pool_template SET entry=10664, description='Storm Peaks mineral, node 19' WHERE entry=5394; UPDATE gameobject SET guid=198303 WHERE guid=121036; UPDATE pool_gameobject SET guid=198303, pool_entry=10664, description='Storm Peaks 189981, node 19' WHERE guid=121036; UPDATE gameobject SET guid=198302 WHERE guid=121037; UPDATE pool_gameobject SET guid=198302, pool_entry=10664, description='Storm Peaks 191133, node 19' WHERE guid=121037; UPDATE gameobject SET guid=198301 WHERE guid=120017; UPDATE pool_gameobject SET guid=198301, pool_entry=10665, description='Storm Peaks 189980, node 20' WHERE guid=120017; UPDATE pool_pool SET pool_id=10665, description='Storm Peaks mineral, node 20' WHERE pool_id=5395; UPDATE pool_template SET entry=10665, description='Storm Peaks mineral, node 20' WHERE entry=5395; UPDATE gameobject SET guid=198300 WHERE guid=121038; UPDATE pool_gameobject SET guid=198300, pool_entry=10665, description='Storm Peaks 189981, node 20' WHERE guid=121038; UPDATE gameobject SET guid=198299 WHERE guid=121039; UPDATE pool_gameobject SET guid=198299, pool_entry=10665, description='Storm Peaks 191133, node 20' WHERE guid=121039; UPDATE gameobject SET guid=198298 WHERE guid=121041; UPDATE pool_gameobject SET guid=198298, pool_entry=10666, description='Storm Peaks 191133, node 21' WHERE guid=121041; UPDATE pool_pool SET pool_id=10666, description='Storm Peaks mineral, node 21' WHERE pool_id=5396; UPDATE pool_template SET entry=10666, description='Storm Peaks mineral, node 21' WHERE entry=5396; UPDATE gameobject SET guid=198297 WHERE guid=120018; UPDATE pool_gameobject SET guid=198297, pool_entry=10666, description='Storm Peaks 189980, node 21' WHERE guid=120018; UPDATE gameobject SET guid=198296 WHERE guid=121040; UPDATE pool_gameobject SET guid=198296, pool_entry=10666, description='Storm Peaks 189981, node 21' WHERE guid=121040; UPDATE gameobject SET guid=198295 WHERE guid=120049; UPDATE pool_gameobject SET guid=198295, pool_entry=10667, description='Storm Peaks 189980, node 22' WHERE guid=120049; UPDATE pool_pool SET pool_id=10667, description='Storm Peaks mineral, node 22' WHERE pool_id=5397; UPDATE pool_template SET entry=10667, description='Storm Peaks mineral, node 22' WHERE entry=5397; UPDATE gameobject SET guid=198294 WHERE guid=121042; UPDATE pool_gameobject SET guid=198294, pool_entry=10667, description='Storm Peaks 189981, node 22' WHERE guid=121042; UPDATE gameobject SET guid=198293 WHERE guid=121043; UPDATE pool_gameobject SET guid=198293, pool_entry=10667, description='Storm Peaks 191133, node 22' WHERE guid=121043; UPDATE gameobject SET guid=198292 WHERE guid=120050; UPDATE pool_gameobject SET guid=198292, pool_entry=10668, description='Storm Peaks 189980, node 23' WHERE guid=120050; UPDATE pool_pool SET pool_id=10668, description='Storm Peaks mineral, node 23' WHERE pool_id=5398; UPDATE pool_template SET entry=10668, description='Storm Peaks mineral, node 23' WHERE entry=5398; UPDATE gameobject SET guid=198291 WHERE guid=121044; UPDATE pool_gameobject SET guid=198291, pool_entry=10668, description='Storm Peaks 189981, node 23' WHERE guid=121044; UPDATE gameobject SET guid=198290 WHERE guid=121045; UPDATE pool_gameobject SET guid=198290, pool_entry=10668, description='Storm Peaks 191133, node 23' WHERE guid=121045; UPDATE gameobject SET guid=198289 WHERE guid=120051; UPDATE pool_gameobject SET guid=198289, pool_entry=10669, description='Storm Peaks 189980, node 24' WHERE guid=120051; UPDATE pool_pool SET pool_id=10669, description='Storm Peaks mineral, node 24' WHERE pool_id=5399; UPDATE pool_template SET entry=10669, description='Storm Peaks mineral, node 24' WHERE entry=5399; UPDATE gameobject SET guid=198288 WHERE guid=121046; UPDATE pool_gameobject SET guid=198288, pool_entry=10669, description='Storm Peaks 189981, node 24' WHERE guid=121046; UPDATE gameobject SET guid=198287 WHERE guid=121047; UPDATE pool_gameobject SET guid=198287, pool_entry=10669, description='Storm Peaks 191133, node 24' WHERE guid=121047; UPDATE gameobject SET guid=198286 WHERE guid=120052; UPDATE pool_gameobject SET guid=198286, pool_entry=10670, description='Storm Peaks 189980, node 25' WHERE guid=120052; UPDATE pool_pool SET pool_id=10670, description='Storm Peaks mineral, node 25' WHERE pool_id=5400; UPDATE pool_template SET entry=10670, description='Storm Peaks mineral, node 25' WHERE entry=5400; UPDATE gameobject SET guid=198285 WHERE guid=121048; UPDATE pool_gameobject SET guid=198285, pool_entry=10670, description='Storm Peaks 189981, node 25' WHERE guid=121048; UPDATE gameobject SET guid=198284 WHERE guid=121049; UPDATE pool_gameobject SET guid=198284, pool_entry=10670, description='Storm Peaks 191133, node 25' WHERE guid=121049; UPDATE gameobject SET guid=198283 WHERE guid=120055; UPDATE pool_gameobject SET guid=198283, pool_entry=10671, description='Storm Peaks 189980, node 26' WHERE guid=120055; UPDATE pool_pool SET pool_id=10671, description='Storm Peaks mineral, node 26' WHERE pool_id=5401; UPDATE pool_template SET entry=10671, description='Storm Peaks mineral, node 26' WHERE entry=5401; UPDATE gameobject SET guid=198282 WHERE guid=121050; UPDATE pool_gameobject SET guid=198282, pool_entry=10671, description='Storm Peaks 189981, node 26' WHERE guid=121050; UPDATE gameobject SET guid=198281 WHERE guid=121051; UPDATE pool_gameobject SET guid=198281, pool_entry=10671, description='Storm Peaks 191133, node 26' WHERE guid=121051; UPDATE gameobject SET guid=198280 WHERE guid=120059; UPDATE pool_gameobject SET guid=198280, pool_entry=10672, description='Storm Peaks 189980, node 27' WHERE guid=120059; UPDATE pool_pool SET pool_id=10672, description='Storm Peaks mineral, node 27' WHERE pool_id=5402; UPDATE pool_template SET entry=10672, description='Storm Peaks mineral, node 27' WHERE entry=5402; UPDATE gameobject SET guid=198279 WHERE guid=121052; UPDATE pool_gameobject SET guid=198279, pool_entry=10672, description='Storm Peaks 189981, node 27' WHERE guid=121052; UPDATE gameobject SET guid=198278 WHERE guid=121053; UPDATE pool_gameobject SET guid=198278, pool_entry=10672, description='Storm Peaks 191133, node 27' WHERE guid=121053; UPDATE gameobject SET guid=198277 WHERE guid=120061; UPDATE pool_gameobject SET guid=198277, pool_entry=10673, description='Storm Peaks 189980, node 28' WHERE guid=120061; UPDATE pool_pool SET pool_id=10673, description='Storm Peaks mineral, node 28' WHERE pool_id=5403; UPDATE pool_template SET entry=10673, description='Storm Peaks mineral, node 28' WHERE entry=5403; UPDATE gameobject SET guid=198276 WHERE guid=121054; UPDATE pool_gameobject SET guid=198276, pool_entry=10673, description='Storm Peaks 189981, node 28' WHERE guid=121054; UPDATE gameobject SET guid=198275 WHERE guid=121055; UPDATE pool_gameobject SET guid=198275, pool_entry=10673, description='Storm Peaks 191133, node 28' WHERE guid=121055; UPDATE gameobject SET guid=198274 WHERE guid=120063; UPDATE pool_gameobject SET guid=198274, pool_entry=10674, description='Storm Peaks 189980, node 29' WHERE guid=120063; UPDATE pool_pool SET pool_id=10674, description='Storm Peaks mineral, node 29' WHERE pool_id=5404; UPDATE pool_template SET entry=10674, description='Storm Peaks mineral, node 29' WHERE entry=5404; UPDATE gameobject SET guid=198273 WHERE guid=121056; UPDATE pool_gameobject SET guid=198273, pool_entry=10674, description='Storm Peaks 189981, node 29' WHERE guid=121056; UPDATE gameobject SET guid=198272 WHERE guid=121057; UPDATE pool_gameobject SET guid=198272, pool_entry=10674, description='Storm Peaks 191133, node 29' WHERE guid=121057; UPDATE gameobject SET guid=198271 WHERE guid=120064; UPDATE pool_gameobject SET guid=198271, pool_entry=10675, description='Storm Peaks 189980, node 30' WHERE guid=120064; UPDATE pool_pool SET pool_id=10675, description='Storm Peaks mineral, node 30' WHERE pool_id=5405; UPDATE pool_template SET entry=10675, description='Storm Peaks mineral, node 30' WHERE entry=5405; UPDATE gameobject SET guid=198270 WHERE guid=121058; UPDATE pool_gameobject SET guid=198270, pool_entry=10675, description='Storm Peaks 189981, node 30' WHERE guid=121058; UPDATE gameobject SET guid=198269 WHERE guid=121059; UPDATE pool_gameobject SET guid=198269, pool_entry=10675, description='Storm Peaks 191133, node 30' WHERE guid=121059; UPDATE gameobject SET guid=198268 WHERE guid=120068; UPDATE pool_gameobject SET guid=198268, pool_entry=10676, description='Storm Peaks 189980, node 31' WHERE guid=120068; UPDATE pool_pool SET pool_id=10676, description='Storm Peaks mineral, node 31' WHERE pool_id=5406; UPDATE pool_template SET entry=10676, description='Storm Peaks mineral, node 31' WHERE entry=5406; UPDATE gameobject SET guid=198267 WHERE guid=121060; UPDATE pool_gameobject SET guid=198267, pool_entry=10676, description='Storm Peaks 189981, node 31' WHERE guid=121060; UPDATE gameobject SET guid=198266 WHERE guid=121061; UPDATE pool_gameobject SET guid=198266, pool_entry=10676, description='Storm Peaks 191133, node 31' WHERE guid=121061; UPDATE gameobject SET guid=198265 WHERE guid=121062; UPDATE pool_gameobject SET guid=198265, pool_entry=10677, description='Storm Peaks 189981, node 32' WHERE guid=121062; UPDATE pool_pool SET pool_id=10677, description='Storm Peaks mineral, node 32' WHERE pool_id=5407; UPDATE pool_template SET entry=10677, description='Storm Peaks mineral, node 32' WHERE entry=5407; UPDATE gameobject SET guid=198264 WHERE guid=121063; UPDATE pool_gameobject SET guid=198264, pool_entry=10677, description='Storm Peaks 191133, node 32' WHERE guid=121063; UPDATE gameobject SET guid=198263 WHERE guid=120073; UPDATE pool_gameobject SET guid=198263, pool_entry=10677, description='Storm Peaks 189980, node 32' WHERE guid=120073; UPDATE gameobject SET guid=198262 WHERE guid=120093; UPDATE pool_gameobject SET guid=198262, pool_entry=10678, description='Storm Peaks 189980, node 33' WHERE guid=120093; UPDATE pool_pool SET pool_id=10678, description='Storm Peaks mineral, node 33' WHERE pool_id=5408; UPDATE pool_template SET entry=10678, description='Storm Peaks mineral, node 33' WHERE entry=5408; UPDATE gameobject SET guid=198261 WHERE guid=121064; UPDATE pool_gameobject SET guid=198261, pool_entry=10678, description='Storm Peaks 189981, node 33' WHERE guid=121064; UPDATE gameobject SET guid=198260 WHERE guid=121065; UPDATE pool_gameobject SET guid=198260, pool_entry=10678, description='Storm Peaks 191133, node 33' WHERE guid=121065; UPDATE gameobject SET guid=198259 WHERE guid=120094; UPDATE pool_gameobject SET guid=198259, pool_entry=10679, description='Storm Peaks 189980, node 34' WHERE guid=120094; UPDATE pool_pool SET pool_id=10679, description='Storm Peaks mineral, node 34' WHERE pool_id=5409; UPDATE pool_template SET entry=10679, description='Storm Peaks mineral, node 34' WHERE entry=5409; UPDATE gameobject SET guid=198258 WHERE guid=121066; UPDATE pool_gameobject SET guid=198258, pool_entry=10679, description='Storm Peaks 189981, node 34' WHERE guid=121066; UPDATE gameobject SET guid=198257 WHERE guid=121067; UPDATE pool_gameobject SET guid=198257, pool_entry=10679, description='Storm Peaks 191133, node 34' WHERE guid=121067; UPDATE gameobject SET guid=198256 WHERE guid=120095; UPDATE pool_gameobject SET guid=198256, pool_entry=10680, description='Storm Peaks 189980, node 35' WHERE guid=120095; UPDATE pool_pool SET pool_id=10680, description='Storm Peaks mineral, node 35' WHERE pool_id=5410; UPDATE pool_template SET entry=10680, description='Storm Peaks mineral, node 35' WHERE entry=5410; UPDATE gameobject SET guid=198255 WHERE guid=121068; UPDATE pool_gameobject SET guid=198255, pool_entry=10680, description='Storm Peaks 189981, node 35' WHERE guid=121068; UPDATE gameobject SET guid=198254 WHERE guid=121069; UPDATE pool_gameobject SET guid=198254, pool_entry=10680, description='Storm Peaks 191133, node 35' WHERE guid=121069; UPDATE gameobject SET guid=198253 WHERE guid=120096; UPDATE pool_gameobject SET guid=198253, pool_entry=10681, description='Storm Peaks 189980, node 36' WHERE guid=120096; UPDATE pool_pool SET pool_id=10681, description='Storm Peaks mineral, node 36' WHERE pool_id=5411; UPDATE pool_template SET entry=10681, description='Storm Peaks mineral, node 36' WHERE entry=5411; UPDATE gameobject SET guid=198252 WHERE guid=121070; UPDATE pool_gameobject SET guid=198252, pool_entry=10681, description='Storm Peaks 189981, node 36' WHERE guid=121070; UPDATE gameobject SET guid=198251 WHERE guid=121071; UPDATE pool_gameobject SET guid=198251, pool_entry=10681, description='Storm Peaks 191133, node 36' WHERE guid=121071; UPDATE gameobject SET guid=198250 WHERE guid=121073; UPDATE pool_gameobject SET guid=198250, pool_entry=10682, description='Storm Peaks 191133, node 37' WHERE guid=121073; UPDATE pool_pool SET pool_id=10682, description='Storm Peaks mineral, node 37' WHERE pool_id=5412; UPDATE pool_template SET entry=10682, description='Storm Peaks mineral, node 37' WHERE entry=5412; UPDATE gameobject SET guid=198249 WHERE guid=120105; UPDATE pool_gameobject SET guid=198249, pool_entry=10682, description='Storm Peaks 189980, node 37' WHERE guid=120105; UPDATE gameobject SET guid=198248 WHERE guid=121072; UPDATE pool_gameobject SET guid=198248, pool_entry=10682, description='Storm Peaks 189981, node 37' WHERE guid=121072; UPDATE gameobject SET guid=198247 WHERE guid=120106; UPDATE pool_gameobject SET guid=198247, pool_entry=10683, description='Storm Peaks 189980, node 38' WHERE guid=120106; UPDATE pool_pool SET pool_id=10683, description='Storm Peaks mineral, node 38' WHERE pool_id=5413; UPDATE pool_template SET entry=10683, description='Storm Peaks mineral, node 38' WHERE entry=5413; UPDATE gameobject SET guid=198246 WHERE guid=121074; UPDATE pool_gameobject SET guid=198246, pool_entry=10683, description='Storm Peaks 189981, node 38' WHERE guid=121074; UPDATE gameobject SET guid=198245 WHERE guid=121075; UPDATE pool_gameobject SET guid=198245, pool_entry=10683, description='Storm Peaks 191133, node 38' WHERE guid=121075; UPDATE gameobject SET guid=198244 WHERE guid=120107; UPDATE pool_gameobject SET guid=198244, pool_entry=10684, description='Storm Peaks 189980, node 39' WHERE guid=120107; UPDATE pool_pool SET pool_id=10684, description='Storm Peaks mineral, node 39' WHERE pool_id=5414; UPDATE pool_template SET entry=10684, description='Storm Peaks mineral, node 39' WHERE entry=5414; UPDATE gameobject SET guid=198243 WHERE guid=121076; UPDATE pool_gameobject SET guid=198243, pool_entry=10684, description='Storm Peaks 189981, node 39' WHERE guid=121076; UPDATE gameobject SET guid=198242 WHERE guid=121077; UPDATE pool_gameobject SET guid=198242, pool_entry=10684, description='Storm Peaks 191133, node 39' WHERE guid=121077; UPDATE gameobject SET guid=198241 WHERE guid=120110; UPDATE pool_gameobject SET guid=198241, pool_entry=10685, description='Storm Peaks 189980, node 40' WHERE guid=120110; UPDATE pool_pool SET pool_id=10685, description='Storm Peaks mineral, node 40' WHERE pool_id=5415; UPDATE pool_template SET entry=10685, description='Storm Peaks mineral, node 40' WHERE entry=5415; UPDATE gameobject SET guid=198240 WHERE guid=121078; UPDATE pool_gameobject SET guid=198240, pool_entry=10685, description='Storm Peaks 189981, node 40' WHERE guid=121078; UPDATE gameobject SET guid=198239 WHERE guid=121079; UPDATE pool_gameobject SET guid=198239, pool_entry=10685, description='Storm Peaks 191133, node 40' WHERE guid=121079; UPDATE gameobject SET guid=198238 WHERE guid=120113; UPDATE pool_gameobject SET guid=198238, pool_entry=10686, description='Storm Peaks 189980, node 41' WHERE guid=120113; UPDATE pool_pool SET pool_id=10686, description='Storm Peaks mineral, node 41' WHERE pool_id=5416; UPDATE pool_template SET entry=10686, description='Storm Peaks mineral, node 41' WHERE entry=5416; UPDATE gameobject SET guid=198237 WHERE guid=121080; UPDATE pool_gameobject SET guid=198237, pool_entry=10686, description='Storm Peaks 189981, node 41' WHERE guid=121080; UPDATE gameobject SET guid=198236 WHERE guid=121081; UPDATE pool_gameobject SET guid=198236, pool_entry=10686, description='Storm Peaks 191133, node 41' WHERE guid=121081; UPDATE gameobject SET guid=198235 WHERE guid=120114; UPDATE pool_gameobject SET guid=198235, pool_entry=10687, description='Storm Peaks 189980, node 42' WHERE guid=120114; UPDATE pool_pool SET pool_id=10687, description='Storm Peaks mineral, node 42' WHERE pool_id=5417; UPDATE pool_template SET entry=10687, description='Storm Peaks mineral, node 42' WHERE entry=5417; UPDATE gameobject SET guid=198234 WHERE guid=121082; UPDATE pool_gameobject SET guid=198234, pool_entry=10687, description='Storm Peaks 189981, node 42' WHERE guid=121082; UPDATE gameobject SET guid=198233 WHERE guid=121083; UPDATE pool_gameobject SET guid=198233, pool_entry=10687, description='Storm Peaks 191133, node 42' WHERE guid=121083; UPDATE gameobject SET guid=198232 WHERE guid=120147; UPDATE pool_gameobject SET guid=198232, pool_entry=10688, description='Storm Peaks 189980, node 43' WHERE guid=120147; UPDATE pool_pool SET pool_id=10688, description='Storm Peaks mineral, node 43' WHERE pool_id=5418; UPDATE pool_template SET entry=10688, description='Storm Peaks mineral, node 43' WHERE entry=5418; UPDATE gameobject SET guid=198231 WHERE guid=121084; UPDATE pool_gameobject SET guid=198231, pool_entry=10688, description='Storm Peaks 189981, node 43' WHERE guid=121084; UPDATE gameobject SET guid=198230 WHERE guid=121085; UPDATE pool_gameobject SET guid=198230, pool_entry=10688, description='Storm Peaks 191133, node 43' WHERE guid=121085; UPDATE gameobject SET guid=198229 WHERE guid=120148; UPDATE pool_gameobject SET guid=198229, pool_entry=10689, description='Storm Peaks 189980, node 44' WHERE guid=120148; UPDATE pool_pool SET pool_id=10689, description='Storm Peaks mineral, node 44' WHERE pool_id=5419; UPDATE pool_template SET entry=10689, description='Storm Peaks mineral, node 44' WHERE entry=5419; UPDATE gameobject SET guid=198228 WHERE guid=121086; UPDATE pool_gameobject SET guid=198228, pool_entry=10689, description='Storm Peaks 189981, node 44' WHERE guid=121086; UPDATE gameobject SET guid=198227 WHERE guid=121087; UPDATE pool_gameobject SET guid=198227, pool_entry=10689, description='Storm Peaks 191133, node 44' WHERE guid=121087; UPDATE gameobject SET guid=198226 WHERE guid=120149; UPDATE pool_gameobject SET guid=198226, pool_entry=10690, description='Storm Peaks 189980, node 45' WHERE guid=120149; UPDATE pool_pool SET pool_id=10690, description='Storm Peaks mineral, node 45' WHERE pool_id=5420; UPDATE pool_template SET entry=10690, description='Storm Peaks mineral, node 45' WHERE entry=5420; UPDATE gameobject SET guid=198225 WHERE guid=121088; UPDATE pool_gameobject SET guid=198225, pool_entry=10690, description='Storm Peaks 189981, node 45' WHERE guid=121088; UPDATE gameobject SET guid=198224 WHERE guid=121089; UPDATE pool_gameobject SET guid=198224, pool_entry=10690, description='Storm Peaks 191133, node 45' WHERE guid=121089; UPDATE gameobject SET guid=198223 WHERE guid=120168; UPDATE pool_gameobject SET guid=198223, pool_entry=10691, description='Storm Peaks 189980, node 46' WHERE guid=120168; UPDATE pool_pool SET pool_id=10691, description='Storm Peaks mineral, node 46' WHERE pool_id=5421; UPDATE pool_template SET entry=10691, description='Storm Peaks mineral, node 46' WHERE entry=5421; UPDATE gameobject SET guid=198222 WHERE guid=121090; UPDATE pool_gameobject SET guid=198222, pool_entry=10691, description='Storm Peaks 189981, node 46' WHERE guid=121090; UPDATE gameobject SET guid=198221 WHERE guid=121091; UPDATE pool_gameobject SET guid=198221, pool_entry=10691, description='Storm Peaks 191133, node 46' WHERE guid=121091; UPDATE gameobject SET guid=198220 WHERE guid=120174; UPDATE pool_gameobject SET guid=198220, pool_entry=10692, description='Storm Peaks 189980, node 47' WHERE guid=120174; UPDATE pool_pool SET pool_id=10692, description='Storm Peaks mineral, node 47' WHERE pool_id=5422; UPDATE pool_template SET entry=10692, description='Storm Peaks mineral, node 47' WHERE entry=5422; UPDATE gameobject SET guid=198219 WHERE guid=121092; UPDATE pool_gameobject SET guid=198219, pool_entry=10692, description='Storm Peaks 189981, node 47' WHERE guid=121092; UPDATE gameobject SET guid=198218 WHERE guid=121093; UPDATE pool_gameobject SET guid=198218, pool_entry=10692, description='Storm Peaks 191133, node 47' WHERE guid=121093; UPDATE gameobject SET guid=198217 WHERE guid=121094; UPDATE pool_gameobject SET guid=198217, pool_entry=10693, description='Storm Peaks 189981, node 48' WHERE guid=121094; UPDATE pool_pool SET pool_id=10693, description='Storm Peaks mineral, node 48' WHERE pool_id=5423; UPDATE pool_template SET entry=10693, description='Storm Peaks mineral, node 48' WHERE entry=5423; UPDATE gameobject SET guid=198216 WHERE guid=121095; UPDATE pool_gameobject SET guid=198216, pool_entry=10693, description='Storm Peaks 191133, node 48' WHERE guid=121095; UPDATE gameobject SET guid=198215 WHERE guid=120270; UPDATE pool_gameobject SET guid=198215, pool_entry=10693, description='Storm Peaks 189980, node 48' WHERE guid=120270; UPDATE gameobject SET guid=198214 WHERE guid=120271; UPDATE pool_gameobject SET guid=198214, pool_entry=10694, description='Storm Peaks 189980, node 49' WHERE guid=120271; UPDATE pool_pool SET pool_id=10694, description='Storm Peaks mineral, node 49' WHERE pool_id=5424; UPDATE pool_template SET entry=10694, description='Storm Peaks mineral, node 49' WHERE entry=5424; UPDATE gameobject SET guid=198213 WHERE guid=121096; UPDATE pool_gameobject SET guid=198213, pool_entry=10694, description='Storm Peaks 189981, node 49' WHERE guid=121096; UPDATE gameobject SET guid=198212 WHERE guid=121097; UPDATE pool_gameobject SET guid=198212, pool_entry=10694, description='Storm Peaks 191133, node 49' WHERE guid=121097; UPDATE gameobject SET guid=198211 WHERE guid=120275; UPDATE pool_gameobject SET guid=198211, pool_entry=10695, description='Storm Peaks 189980, node 50' WHERE guid=120275; UPDATE pool_pool SET pool_id=10695, description='Storm Peaks mineral, node 50' WHERE pool_id=5425; UPDATE pool_template SET entry=10695, description='Storm Peaks mineral, node 50' WHERE entry=5425; UPDATE gameobject SET guid=198210 WHERE guid=121098; UPDATE pool_gameobject SET guid=198210, pool_entry=10695, description='Storm Peaks 189981, node 50' WHERE guid=121098; UPDATE gameobject SET guid=198209 WHERE guid=121099; UPDATE pool_gameobject SET guid=198209, pool_entry=10695, description='Storm Peaks 191133, node 50' WHERE guid=121099; UPDATE gameobject SET guid=198208 WHERE guid=120279; UPDATE pool_gameobject SET guid=198208, pool_entry=10696, description='Storm Peaks 189980, node 51' WHERE guid=120279; UPDATE pool_pool SET pool_id=10696, description='Storm Peaks mineral, node 51' WHERE pool_id=5426; UPDATE pool_template SET entry=10696, description='Storm Peaks mineral, node 51' WHERE entry=5426; UPDATE gameobject SET guid=198207 WHERE guid=121100; UPDATE pool_gameobject SET guid=198207, pool_entry=10696, description='Storm Peaks 189981, node 51' WHERE guid=121100; UPDATE gameobject SET guid=198206 WHERE guid=121101; UPDATE pool_gameobject SET guid=198206, pool_entry=10696, description='Storm Peaks 191133, node 51' WHERE guid=121101; UPDATE gameobject SET guid=198205 WHERE guid=120280; UPDATE pool_gameobject SET guid=198205, pool_entry=10697, description='Storm Peaks 189980, node 52' WHERE guid=120280; UPDATE pool_pool SET pool_id=10697, description='Storm Peaks mineral, node 52' WHERE pool_id=5427; UPDATE pool_template SET entry=10697, description='Storm Peaks mineral, node 52' WHERE entry=5427; UPDATE gameobject SET guid=198204 WHERE guid=121102; UPDATE pool_gameobject SET guid=198204, pool_entry=10697, description='Storm Peaks 189981, node 52' WHERE guid=121102; UPDATE gameobject SET guid=198203 WHERE guid=121103; UPDATE pool_gameobject SET guid=198203, pool_entry=10697, description='Storm Peaks 191133, node 52' WHERE guid=121103; UPDATE gameobject SET guid=198202 WHERE guid=121105; UPDATE pool_gameobject SET guid=198202, pool_entry=10698, description='Storm Peaks 191133, node 53' WHERE guid=121105; UPDATE pool_pool SET pool_id=10698, description='Storm Peaks mineral, node 53' WHERE pool_id=5428; UPDATE pool_template SET entry=10698, description='Storm Peaks mineral, node 53' WHERE entry=5428; UPDATE gameobject SET guid=198201 WHERE guid=120281; UPDATE pool_gameobject SET guid=198201, pool_entry=10698, description='Storm Peaks 189980, node 53' WHERE guid=120281; UPDATE gameobject SET guid=198200 WHERE guid=121104; UPDATE pool_gameobject SET guid=198200, pool_entry=10698, description='Storm Peaks 189981, node 53' WHERE guid=121104; UPDATE gameobject SET guid=198199 WHERE guid=120283; UPDATE pool_gameobject SET guid=198199, pool_entry=10699, description='Storm Peaks 189980, node 54' WHERE guid=120283; UPDATE pool_pool SET pool_id=10699, description='Storm Peaks mineral, node 54' WHERE pool_id=5429; UPDATE pool_template SET entry=10699, description='Storm Peaks mineral, node 54' WHERE entry=5429; UPDATE gameobject SET guid=198198 WHERE guid=121106; UPDATE pool_gameobject SET guid=198198, pool_entry=10699, description='Storm Peaks 189981, node 54' WHERE guid=121106; UPDATE gameobject SET guid=198197 WHERE guid=121107; UPDATE pool_gameobject SET guid=198197, pool_entry=10699, description='Storm Peaks 191133, node 54' WHERE guid=121107; UPDATE gameobject SET guid=198196 WHERE guid=120518; UPDATE pool_gameobject SET guid=198196, pool_entry=10700, description='Storm Peaks 189980, node 55' WHERE guid=120518; UPDATE pool_pool SET pool_id=10700, description='Storm Peaks mineral, node 55' WHERE pool_id=5430; UPDATE pool_template SET entry=10700, description='Storm Peaks mineral, node 55' WHERE entry=5430; UPDATE gameobject SET guid=198195 WHERE guid=121108; UPDATE pool_gameobject SET guid=198195, pool_entry=10700, description='Storm Peaks 189981, node 55' WHERE guid=121108; UPDATE gameobject SET guid=198194 WHERE guid=121109; UPDATE pool_gameobject SET guid=198194, pool_entry=10700, description='Storm Peaks 191133, node 55' WHERE guid=121109; UPDATE gameobject SET guid=198193 WHERE guid=120519; UPDATE pool_gameobject SET guid=198193, pool_entry=10701, description='Storm Peaks 189980, node 56' WHERE guid=120519; UPDATE pool_pool SET pool_id=10701, description='Storm Peaks mineral, node 56' WHERE pool_id=5431; UPDATE pool_template SET entry=10701, description='Storm Peaks mineral, node 56' WHERE entry=5431; UPDATE gameobject SET guid=198192 WHERE guid=121110; UPDATE pool_gameobject SET guid=198192, pool_entry=10701, description='Storm Peaks 189981, node 56' WHERE guid=121110; UPDATE gameobject SET guid=198191 WHERE guid=121111; UPDATE pool_gameobject SET guid=198191, pool_entry=10701, description='Storm Peaks 191133, node 56' WHERE guid=121111; UPDATE gameobject SET guid=198190 WHERE guid=120520; UPDATE pool_gameobject SET guid=198190, pool_entry=10702, description='Storm Peaks 189980, node 57' WHERE guid=120520; UPDATE pool_pool SET pool_id=10702, description='Storm Peaks mineral, node 57' WHERE pool_id=5432; UPDATE pool_template SET entry=10702, description='Storm Peaks mineral, node 57' WHERE entry=5432; UPDATE gameobject SET guid=198189 WHERE guid=121112; UPDATE pool_gameobject SET guid=198189, pool_entry=10702, description='Storm Peaks 189981, node 57' WHERE guid=121112; UPDATE gameobject SET guid=198188 WHERE guid=121113; UPDATE pool_gameobject SET guid=198188, pool_entry=10702, description='Storm Peaks 191133, node 57' WHERE guid=121113; UPDATE gameobject SET guid=198187 WHERE guid=120521; UPDATE pool_gameobject SET guid=198187, pool_entry=10703, description='Storm Peaks 189980, node 58' WHERE guid=120521; UPDATE pool_pool SET pool_id=10703, description='Storm Peaks mineral, node 58' WHERE pool_id=5433; UPDATE pool_template SET entry=10703, description='Storm Peaks mineral, node 58' WHERE entry=5433; UPDATE gameobject SET guid=198186 WHERE guid=121114; UPDATE pool_gameobject SET guid=198186, pool_entry=10703, description='Storm Peaks 189981, node 58' WHERE guid=121114; UPDATE gameobject SET guid=198185 WHERE guid=121115; UPDATE pool_gameobject SET guid=198185, pool_entry=10703, description='Storm Peaks 191133, node 58' WHERE guid=121115; UPDATE gameobject SET guid=198184 WHERE guid=120522; UPDATE pool_gameobject SET guid=198184, pool_entry=10704, description='Storm Peaks 189980, node 59' WHERE guid=120522; UPDATE pool_pool SET pool_id=10704, description='Storm Peaks mineral, node 59' WHERE pool_id=5434; UPDATE pool_template SET entry=10704, description='Storm Peaks mineral, node 59' WHERE entry=5434; UPDATE gameobject SET guid=198183 WHERE guid=121116; UPDATE pool_gameobject SET guid=198183, pool_entry=10704, description='Storm Peaks 189981, node 59' WHERE guid=121116; UPDATE gameobject SET guid=198182 WHERE guid=121117; UPDATE pool_gameobject SET guid=198182, pool_entry=10704, description='Storm Peaks 191133, node 59' WHERE guid=121117; UPDATE gameobject SET guid=198181 WHERE guid=120523; UPDATE pool_gameobject SET guid=198181, pool_entry=10705, description='Storm Peaks 189980, node 60' WHERE guid=120523; UPDATE pool_pool SET pool_id=10705, description='Storm Peaks mineral, node 60' WHERE pool_id=5435; UPDATE pool_template SET entry=10705, description='Storm Peaks mineral, node 60' WHERE entry=5435; UPDATE gameobject SET guid=198180 WHERE guid=121118; UPDATE pool_gameobject SET guid=198180, pool_entry=10705, description='Storm Peaks 189981, node 60' WHERE guid=121118; UPDATE gameobject SET guid=198179 WHERE guid=121119; UPDATE pool_gameobject SET guid=198179, pool_entry=10705, description='Storm Peaks 191133, node 60' WHERE guid=121119; UPDATE gameobject SET guid=198178 WHERE guid=120524; UPDATE pool_gameobject SET guid=198178, pool_entry=10706, description='Storm Peaks 189980, node 61' WHERE guid=120524; UPDATE pool_pool SET pool_id=10706, description='Storm Peaks mineral, node 61' WHERE pool_id=5436; UPDATE pool_template SET entry=10706, description='Storm Peaks mineral, node 61' WHERE entry=5436; UPDATE gameobject SET guid=198177 WHERE guid=121120; UPDATE pool_gameobject SET guid=198177, pool_entry=10706, description='Storm Peaks 189981, node 61' WHERE guid=121120; UPDATE gameobject SET guid=198176 WHERE guid=121121; UPDATE pool_gameobject SET guid=198176, pool_entry=10706, description='Storm Peaks 191133, node 61' WHERE guid=121121; UPDATE gameobject SET guid=198175 WHERE guid=120525; UPDATE pool_gameobject SET guid=198175, pool_entry=10707, description='Storm Peaks 189980, node 62' WHERE guid=120525; UPDATE pool_pool SET pool_id=10707, description='Storm Peaks mineral, node 62' WHERE pool_id=5437; UPDATE pool_template SET entry=10707, description='Storm Peaks mineral, node 62' WHERE entry=5437; UPDATE gameobject SET guid=198174 WHERE guid=121122; UPDATE pool_gameobject SET guid=198174, pool_entry=10707, description='Storm Peaks 189981, node 62' WHERE guid=121122; UPDATE gameobject SET guid=198173 WHERE guid=121123; UPDATE pool_gameobject SET guid=198173, pool_entry=10707, description='Storm Peaks 191133, node 62' WHERE guid=121123; UPDATE gameobject SET guid=198172 WHERE guid=120529; UPDATE pool_gameobject SET guid=198172, pool_entry=10708, description='Storm Peaks 189980, node 63' WHERE guid=120529; UPDATE pool_pool SET pool_id=10708, description='Storm Peaks mineral, node 63' WHERE pool_id=5438; UPDATE pool_template SET entry=10708, description='Storm Peaks mineral, node 63' WHERE entry=5438; UPDATE gameobject SET guid=198171 WHERE guid=121124; UPDATE pool_gameobject SET guid=198171, pool_entry=10708, description='Storm Peaks 189981, node 63' WHERE guid=121124; UPDATE gameobject SET guid=198170 WHERE guid=121125; UPDATE pool_gameobject SET guid=198170, pool_entry=10708, description='Storm Peaks 191133, node 63' WHERE guid=121125; UPDATE gameobject SET guid=198169 WHERE guid=121126; UPDATE pool_gameobject SET guid=198169, pool_entry=10709, description='Storm Peaks 189981, node 64' WHERE guid=121126; UPDATE pool_pool SET pool_id=10709, description='Storm Peaks mineral, node 64' WHERE pool_id=5439; UPDATE pool_template SET entry=10709, description='Storm Peaks mineral, node 64' WHERE entry=5439; UPDATE gameobject SET guid=198168 WHERE guid=121127; UPDATE pool_gameobject SET guid=198168, pool_entry=10709, description='Storm Peaks 191133, node 64' WHERE guid=121127; UPDATE gameobject SET guid=198167 WHERE guid=120546; UPDATE pool_gameobject SET guid=198167, pool_entry=10709, description='Storm Peaks 189980, node 64' WHERE guid=120546; UPDATE gameobject SET guid=198166 WHERE guid=120548; UPDATE pool_gameobject SET guid=198166, pool_entry=10710, description='Storm Peaks 189980, node 65' WHERE guid=120548; UPDATE pool_pool SET pool_id=10710, description='Storm Peaks mineral, node 65' WHERE pool_id=5440; UPDATE pool_template SET entry=10710, description='Storm Peaks mineral, node 65' WHERE entry=5440; UPDATE gameobject SET guid=198165 WHERE guid=121128; UPDATE pool_gameobject SET guid=198165, pool_entry=10710, description='Storm Peaks 189981, node 65' WHERE guid=121128; UPDATE gameobject SET guid=198164 WHERE guid=121129; UPDATE pool_gameobject SET guid=198164, pool_entry=10710, description='Storm Peaks 191133, node 65' WHERE guid=121129; UPDATE gameobject SET guid=198163 WHERE guid=120549; UPDATE pool_gameobject SET guid=198163, pool_entry=10711, description='Storm Peaks 189980, node 66' WHERE guid=120549; UPDATE pool_pool SET pool_id=10711, description='Storm Peaks mineral, node 66' WHERE pool_id=5441; UPDATE pool_template SET entry=10711, description='Storm Peaks mineral, node 66' WHERE entry=5441; UPDATE gameobject SET guid=198162 WHERE guid=121130; UPDATE pool_gameobject SET guid=198162, pool_entry=10711, description='Storm Peaks 189981, node 66' WHERE guid=121130; UPDATE gameobject SET guid=198161 WHERE guid=121131; UPDATE pool_gameobject SET guid=198161, pool_entry=10711, description='Storm Peaks 191133, node 66' WHERE guid=121131; UPDATE gameobject SET guid=198160 WHERE guid=120682; UPDATE pool_gameobject SET guid=198160, pool_entry=10712, description='Storm Peaks 189980, node 67' WHERE guid=120682; UPDATE pool_pool SET pool_id=10712, description='Storm Peaks mineral, node 67' WHERE pool_id=5442; UPDATE pool_template SET entry=10712, description='Storm Peaks mineral, node 67' WHERE entry=5442; UPDATE gameobject SET guid=198159 WHERE guid=121132; UPDATE pool_gameobject SET guid=198159, pool_entry=10712, description='Storm Peaks 189981, node 67' WHERE guid=121132; UPDATE gameobject SET guid=198158 WHERE guid=121133; UPDATE pool_gameobject SET guid=198158, pool_entry=10712, description='Storm Peaks 191133, node 67' WHERE guid=121133; UPDATE gameobject SET guid=198157 WHERE guid=120691; UPDATE pool_gameobject SET guid=198157, pool_entry=10713, description='Storm Peaks 189980, node 68' WHERE guid=120691; UPDATE pool_pool SET pool_id=10713, description='Storm Peaks mineral, node 68' WHERE pool_id=5443; UPDATE pool_template SET entry=10713, description='Storm Peaks mineral, node 68' WHERE entry=5443; UPDATE gameobject SET guid=198156 WHERE guid=121134; UPDATE pool_gameobject SET guid=198156, pool_entry=10713, description='Storm Peaks 189981, node 68' WHERE guid=121134; UPDATE gameobject SET guid=198155 WHERE guid=121135; UPDATE pool_gameobject SET guid=198155, pool_entry=10713, description='Storm Peaks 191133, node 68' WHERE guid=121135; UPDATE gameobject SET guid=198154 WHERE guid=121137; UPDATE pool_gameobject SET guid=198154, pool_entry=10714, description='Storm Peaks 191133, node 69' WHERE guid=121137; UPDATE pool_pool SET pool_id=10714, description='Storm Peaks mineral, node 69' WHERE pool_id=5444; UPDATE pool_template SET entry=10714, description='Storm Peaks mineral, node 69' WHERE entry=5444; UPDATE gameobject SET guid=198153 WHERE guid=120695; UPDATE pool_gameobject SET guid=198153, pool_entry=10714, description='Storm Peaks 189980, node 69' WHERE guid=120695; UPDATE gameobject SET guid=198152 WHERE guid=121136; UPDATE pool_gameobject SET guid=198152, pool_entry=10714, description='Storm Peaks 189981, node 69' WHERE guid=121136; UPDATE gameobject SET guid=198151 WHERE guid=120727; UPDATE pool_gameobject SET guid=198151, pool_entry=10715, description='Storm Peaks 189980, node 70' WHERE guid=120727; UPDATE pool_pool SET pool_id=10715, description='Storm Peaks mineral, node 70' WHERE pool_id=5445; UPDATE pool_template SET entry=10715, description='Storm Peaks mineral, node 70' WHERE entry=5445; UPDATE gameobject SET guid=198150 WHERE guid=121138; UPDATE pool_gameobject SET guid=198150, pool_entry=10715, description='Storm Peaks 189981, node 70' WHERE guid=121138; UPDATE gameobject SET guid=198149 WHERE guid=121139; UPDATE pool_gameobject SET guid=198149, pool_entry=10715, description='Storm Peaks 191133, node 70' WHERE guid=121139; UPDATE gameobject SET guid=198148 WHERE guid=120734; UPDATE pool_gameobject SET guid=198148, pool_entry=10716, description='Storm Peaks 189980, node 71' WHERE guid=120734; UPDATE pool_pool SET pool_id=10716, description='Storm Peaks mineral, node 71' WHERE pool_id=5446; UPDATE pool_template SET entry=10716, description='Storm Peaks mineral, node 71' WHERE entry=5446; UPDATE gameobject SET guid=198147 WHERE guid=121140; UPDATE pool_gameobject SET guid=198147, pool_entry=10716, description='Storm Peaks 189981, node 71' WHERE guid=121140; UPDATE gameobject SET guid=198146 WHERE guid=121141; UPDATE pool_gameobject SET guid=198146, pool_entry=10716, description='Storm Peaks 191133, node 71' WHERE guid=121141; UPDATE gameobject SET guid=198145 WHERE guid=120739; UPDATE pool_gameobject SET guid=198145, pool_entry=10717, description='Storm Peaks 189980, node 72' WHERE guid=120739; UPDATE pool_pool SET pool_id=10717, description='Storm Peaks mineral, node 72' WHERE pool_id=5447; UPDATE pool_template SET entry=10717, description='Storm Peaks mineral, node 72' WHERE entry=5447; UPDATE gameobject SET guid=198144 WHERE guid=121142; UPDATE pool_gameobject SET guid=198144, pool_entry=10717, description='Storm Peaks 189981, node 72' WHERE guid=121142; UPDATE gameobject SET guid=198143 WHERE guid=121143; UPDATE pool_gameobject SET guid=198143, pool_entry=10717, description='Storm Peaks 191133, node 72' WHERE guid=121143; -- sholazar basin UPDATE gameobject SET guid=198142 WHERE guid=56249; UPDATE pool_gameobject SET guid=198142, pool_entry=10718, description='Sholazar Basin 189980, node 1' WHERE guid=56249; UPDATE pool_pool SET pool_id=10718, description='Sholazar Basin mineral, node 1' WHERE pool_id=5292; UPDATE pool_template SET entry=10718, description='Sholazar Basin mineral, node 1' WHERE entry=5292; UPDATE gameobject SET guid=198141 WHERE guid=120832; UPDATE pool_gameobject SET guid=198141, pool_entry=10718, description='Sholazar Basin 189981, node 1' WHERE guid=120832; UPDATE gameobject SET guid=198140 WHERE guid=120833; UPDATE pool_gameobject SET guid=198140, pool_entry=10718, description='Sholazar Basin 191133, node 1' WHERE guid=120833; UPDATE gameobject SET guid=198139 WHERE guid=56250; UPDATE pool_gameobject SET guid=198139, pool_entry=10719, description='Sholazar Basin 189980, node 2' WHERE guid=56250; UPDATE pool_pool SET pool_id=10719, description='Sholazar Basin mineral, node 2' WHERE pool_id=5293; UPDATE pool_template SET entry=10719, description='Sholazar Basin mineral, node 2' WHERE entry=5293; UPDATE gameobject SET guid=198138 WHERE guid=120834; UPDATE pool_gameobject SET guid=198138, pool_entry=10719, description='Sholazar Basin 189981, node 2' WHERE guid=120834; UPDATE gameobject SET guid=198137 WHERE guid=120835; UPDATE pool_gameobject SET guid=198137, pool_entry=10719, description='Sholazar Basin 191133, node 2' WHERE guid=120835; UPDATE gameobject SET guid=198136 WHERE guid=56251; UPDATE pool_gameobject SET guid=198136, pool_entry=10720, description='Sholazar Basin 189980, node 3' WHERE guid=56251; UPDATE pool_pool SET pool_id=10720, description='Sholazar Basin mineral, node 3' WHERE pool_id=5294; UPDATE pool_template SET entry=10720, description='Sholazar Basin mineral, node 3' WHERE entry=5294; UPDATE gameobject SET guid=198135 WHERE guid=120836; UPDATE pool_gameobject SET guid=198135, pool_entry=10720, description='Sholazar Basin 189981, node 3' WHERE guid=120836; UPDATE gameobject SET guid=198134 WHERE guid=120837; UPDATE pool_gameobject SET guid=198134, pool_entry=10720, description='Sholazar Basin 191133, node 3' WHERE guid=120837; UPDATE gameobject SET guid=198133 WHERE guid=56252; UPDATE pool_gameobject SET guid=198133, pool_entry=10721, description='Sholazar Basin 189980, node 4' WHERE guid=56252; UPDATE pool_pool SET pool_id=10721, description='Sholazar Basin mineral, node 4' WHERE pool_id=5295; UPDATE pool_template SET entry=10721, description='Sholazar Basin mineral, node 4' WHERE entry=5295; UPDATE gameobject SET guid=198132 WHERE guid=120838; UPDATE pool_gameobject SET guid=198132, pool_entry=10721, description='Sholazar Basin 189981, node 4' WHERE guid=120838; UPDATE gameobject SET guid=198131 WHERE guid=120839; UPDATE pool_gameobject SET guid=198131, pool_entry=10721, description='Sholazar Basin 191133, node 4' WHERE guid=120839; UPDATE gameobject SET guid=198130 WHERE guid=120841; UPDATE pool_gameobject SET guid=198130, pool_entry=10722, description='Sholazar Basin 191133, node 5' WHERE guid=120841; UPDATE pool_pool SET pool_id=10722, description='Sholazar Basin mineral, node 5' WHERE pool_id=5296; UPDATE pool_template SET entry=10722, description='Sholazar Basin mineral, node 5' WHERE entry=5296; UPDATE gameobject SET guid=198129 WHERE guid=56253; UPDATE pool_gameobject SET guid=198129, pool_entry=10722, description='Sholazar Basin 189980, node 5' WHERE guid=56253; UPDATE gameobject SET guid=198128 WHERE guid=120840; UPDATE pool_gameobject SET guid=198128, pool_entry=10722, description='Sholazar Basin 189981, node 5' WHERE guid=120840; UPDATE gameobject SET guid=198127 WHERE guid=56254; UPDATE pool_gameobject SET guid=198127, pool_entry=10723, description='Sholazar Basin 189980, node 6' WHERE guid=56254; UPDATE pool_pool SET pool_id=10723, description='Sholazar Basin mineral, node 6' WHERE pool_id=5297; UPDATE pool_template SET entry=10723, description='Sholazar Basin mineral, node 6' WHERE entry=5297; UPDATE gameobject SET guid=198126 WHERE guid=120842; UPDATE pool_gameobject SET guid=198126, pool_entry=10723, description='Sholazar Basin 189981, node 6' WHERE guid=120842; UPDATE gameobject SET guid=198125 WHERE guid=120843; UPDATE pool_gameobject SET guid=198125, pool_entry=10723, description='Sholazar Basin 191133, node 6' WHERE guid=120843; UPDATE gameobject SET guid=198124 WHERE guid=56255; UPDATE pool_gameobject SET guid=198124, pool_entry=10724, description='Sholazar Basin 189980, node 7' WHERE guid=56255; UPDATE pool_pool SET pool_id=10724, description='Sholazar Basin mineral, node 7' WHERE pool_id=5298; UPDATE pool_template SET entry=10724, description='Sholazar Basin mineral, node 7' WHERE entry=5298; UPDATE gameobject SET guid=198123 WHERE guid=120844; UPDATE pool_gameobject SET guid=198123, pool_entry=10724, description='Sholazar Basin 189981, node 7' WHERE guid=120844; UPDATE gameobject SET guid=198122 WHERE guid=120845; UPDATE pool_gameobject SET guid=198122, pool_entry=10724, description='Sholazar Basin 191133, node 7' WHERE guid=120845; UPDATE gameobject SET guid=198121 WHERE guid=56256; UPDATE pool_gameobject SET guid=198121, pool_entry=10725, description='Sholazar Basin 189980, node 8' WHERE guid=56256; UPDATE pool_pool SET pool_id=10725, description='Sholazar Basin mineral, node 8' WHERE pool_id=5299; UPDATE pool_template SET entry=10725, description='Sholazar Basin mineral, node 8' WHERE entry=5299; UPDATE gameobject SET guid=198120 WHERE guid=120846; UPDATE pool_gameobject SET guid=198120, pool_entry=10725, description='Sholazar Basin 189981, node 8' WHERE guid=120846; UPDATE gameobject SET guid=198119 WHERE guid=120847; UPDATE pool_gameobject SET guid=198119, pool_entry=10725, description='Sholazar Basin 191133, node 8' WHERE guid=120847; UPDATE gameobject SET guid=198118 WHERE guid=56257; UPDATE pool_gameobject SET guid=198118, pool_entry=10726, description='Sholazar Basin 189980, node 9' WHERE guid=56257; UPDATE pool_pool SET pool_id=10726, description='Sholazar Basin mineral, node 9' WHERE pool_id=5300; UPDATE pool_template SET entry=10726, description='Sholazar Basin mineral, node 9' WHERE entry=5300; UPDATE gameobject SET guid=198117 WHERE guid=120848; UPDATE pool_gameobject SET guid=198117, pool_entry=10726, description='Sholazar Basin 189981, node 9' WHERE guid=120848; UPDATE gameobject SET guid=198116 WHERE guid=120849; UPDATE pool_gameobject SET guid=198116, pool_entry=10726, description='Sholazar Basin 191133, node 9' WHERE guid=120849; UPDATE gameobject SET guid=198115 WHERE guid=56258; UPDATE pool_gameobject SET guid=198115, pool_entry=10727, description='Sholazar Basin 189980, node 10' WHERE guid=56258; UPDATE pool_pool SET pool_id=10727, description='Sholazar Basin mineral, node 10' WHERE pool_id=5301; UPDATE pool_template SET entry=10727, description='Sholazar Basin mineral, node 10' WHERE entry=5301; UPDATE gameobject SET guid=198114 WHERE guid=120850; UPDATE pool_gameobject SET guid=198114, pool_entry=10727, description='Sholazar Basin 189981, node 10' WHERE guid=120850; UPDATE gameobject SET guid=198113 WHERE guid=120851; UPDATE pool_gameobject SET guid=198113, pool_entry=10727, description='Sholazar Basin 191133, node 10' WHERE guid=120851; UPDATE gameobject SET guid=198112 WHERE guid=56259; UPDATE pool_gameobject SET guid=198112, pool_entry=10728, description='Sholazar Basin 189980, node 11' WHERE guid=56259; UPDATE pool_pool SET pool_id=10728, description='Sholazar Basin mineral, node 11' WHERE pool_id=5302; UPDATE pool_template SET entry=10728, description='Sholazar Basin mineral, node 11' WHERE entry=5302; UPDATE gameobject SET guid=198111 WHERE guid=120852; UPDATE pool_gameobject SET guid=198111, pool_entry=10728, description='Sholazar Basin 189981, node 11' WHERE guid=120852; UPDATE gameobject SET guid=198110 WHERE guid=120853; UPDATE pool_gameobject SET guid=198110, pool_entry=10728, description='Sholazar Basin 191133, node 11' WHERE guid=120853; UPDATE gameobject SET guid=198109 WHERE guid=56260; UPDATE pool_gameobject SET guid=198109, pool_entry=10729, description='Sholazar Basin 189980, node 12' WHERE guid=56260; UPDATE pool_pool SET pool_id=10729, description='Sholazar Basin mineral, node 12' WHERE pool_id=5303; UPDATE pool_template SET entry=10729, description='Sholazar Basin mineral, node 12' WHERE entry=5303; UPDATE gameobject SET guid=198108 WHERE guid=120854; UPDATE pool_gameobject SET guid=198108, pool_entry=10729, description='Sholazar Basin 189981, node 12' WHERE guid=120854; UPDATE gameobject SET guid=198107 WHERE guid=120855; UPDATE pool_gameobject SET guid=198107, pool_entry=10729, description='Sholazar Basin 191133, node 12' WHERE guid=120855; UPDATE gameobject SET guid=198106 WHERE guid=56261; UPDATE pool_gameobject SET guid=198106, pool_entry=10730, description='Sholazar Basin 189980, node 13' WHERE guid=56261; UPDATE pool_pool SET pool_id=10730, description='Sholazar Basin mineral, node 13' WHERE pool_id=5304; UPDATE pool_template SET entry=10730, description='Sholazar Basin mineral, node 13' WHERE entry=5304; UPDATE gameobject SET guid=198105 WHERE guid=120856; UPDATE pool_gameobject SET guid=198105, pool_entry=10730, description='Sholazar Basin 189981, node 13' WHERE guid=120856; UPDATE gameobject SET guid=198104 WHERE guid=120857; UPDATE pool_gameobject SET guid=198104, pool_entry=10730, description='Sholazar Basin 191133, node 13' WHERE guid=120857; UPDATE gameobject SET guid=198103 WHERE guid=56262; UPDATE pool_gameobject SET guid=198103, pool_entry=10731, description='Sholazar Basin 189980, node 14' WHERE guid=56262; UPDATE pool_pool SET pool_id=10731, description='Sholazar Basin mineral, node 14' WHERE pool_id=5305; UPDATE pool_template SET entry=10731, description='Sholazar Basin mineral, node 14' WHERE entry=5305; UPDATE gameobject SET guid=198102 WHERE guid=120858; UPDATE pool_gameobject SET guid=198102, pool_entry=10731, description='Sholazar Basin 189981, node 14' WHERE guid=120858; UPDATE gameobject SET guid=198101 WHERE guid=120859; UPDATE pool_gameobject SET guid=198101, pool_entry=10731, description='Sholazar Basin 191133, node 14' WHERE guid=120859; UPDATE gameobject SET guid=198100 WHERE guid=56263; UPDATE pool_gameobject SET guid=198100, pool_entry=10732, description='Sholazar Basin 189980, node 15' WHERE guid=56263; UPDATE pool_pool SET pool_id=10732, description='Sholazar Basin mineral, node 15' WHERE pool_id=5306; UPDATE pool_template SET entry=10732, description='Sholazar Basin mineral, node 15' WHERE entry=5306; UPDATE gameobject SET guid=198099 WHERE guid=120860; UPDATE pool_gameobject SET guid=198099, pool_entry=10732, description='Sholazar Basin 189981, node 15' WHERE guid=120860; UPDATE gameobject SET guid=198098 WHERE guid=120861; UPDATE pool_gameobject SET guid=198098, pool_entry=10732, description='Sholazar Basin 191133, node 15' WHERE guid=120861; UPDATE gameobject SET guid=198097 WHERE guid=120862; UPDATE pool_gameobject SET guid=198097, pool_entry=10733, description='Sholazar Basin 189981, node 16' WHERE guid=120862; UPDATE pool_pool SET pool_id=10733, description='Sholazar Basin mineral, node 16' WHERE pool_id=5307; UPDATE pool_template SET entry=10733, description='Sholazar Basin mineral, node 16' WHERE entry=5307; UPDATE gameobject SET guid=198096 WHERE guid=120863; UPDATE pool_gameobject SET guid=198096, pool_entry=10733, description='Sholazar Basin 191133, node 16' WHERE guid=120863; UPDATE gameobject SET guid=198095 WHERE guid=56264; UPDATE pool_gameobject SET guid=198095, pool_entry=10733, description='Sholazar Basin 189980, node 16' WHERE guid=56264; UPDATE gameobject SET guid=198094 WHERE guid=56265; UPDATE pool_gameobject SET guid=198094, pool_entry=10734, description='Sholazar Basin 189980, node 17' WHERE guid=56265; UPDATE pool_pool SET pool_id=10734, description='Sholazar Basin mineral, node 17' WHERE pool_id=5308; UPDATE pool_template SET entry=10734, description='Sholazar Basin mineral, node 17' WHERE entry=5308; UPDATE gameobject SET guid=198093 WHERE guid=120864; UPDATE pool_gameobject SET guid=198093, pool_entry=10734, description='Sholazar Basin 189981, node 17' WHERE guid=120864; UPDATE gameobject SET guid=198092 WHERE guid=120865; UPDATE pool_gameobject SET guid=198092, pool_entry=10734, description='Sholazar Basin 191133, node 17' WHERE guid=120865; UPDATE gameobject SET guid=198091 WHERE guid=56266; UPDATE pool_gameobject SET guid=198091, pool_entry=10735, description='Sholazar Basin 189980, node 18' WHERE guid=56266; UPDATE pool_pool SET pool_id=10735, description='Sholazar Basin mineral, node 18' WHERE pool_id=5309; UPDATE pool_template SET entry=10735, description='Sholazar Basin mineral, node 18' WHERE entry=5309; UPDATE gameobject SET guid=198090 WHERE guid=120866; UPDATE pool_gameobject SET guid=198090, pool_entry=10735, description='Sholazar Basin 189981, node 18' WHERE guid=120866; UPDATE gameobject SET guid=198089 WHERE guid=120867; UPDATE pool_gameobject SET guid=198089, pool_entry=10735, description='Sholazar Basin 191133, node 18' WHERE guid=120867; UPDATE gameobject SET guid=198088 WHERE guid=56267; UPDATE pool_gameobject SET guid=198088, pool_entry=10736, description='Sholazar Basin 189980, node 19' WHERE guid=56267; UPDATE pool_pool SET pool_id=10736, description='Sholazar Basin mineral, node 19' WHERE pool_id=5310; UPDATE pool_template SET entry=10736, description='Sholazar Basin mineral, node 19' WHERE entry=5310; UPDATE gameobject SET guid=198087 WHERE guid=120868; UPDATE pool_gameobject SET guid=198087, pool_entry=10736, description='Sholazar Basin 189981, node 19' WHERE guid=120868; UPDATE gameobject SET guid=198086 WHERE guid=120869; UPDATE pool_gameobject SET guid=198086, pool_entry=10736, description='Sholazar Basin 191133, node 19' WHERE guid=120869; UPDATE gameobject SET guid=198085 WHERE guid=56326; UPDATE pool_gameobject SET guid=198085, pool_entry=10737, description='Sholazar Basin 189980, node 20' WHERE guid=56326; UPDATE pool_pool SET pool_id=10737, description='Sholazar Basin mineral, node 20' WHERE pool_id=5311; UPDATE pool_template SET entry=10737, description='Sholazar Basin mineral, node 20' WHERE entry=5311; UPDATE gameobject SET guid=198084 WHERE guid=120870; UPDATE pool_gameobject SET guid=198084, pool_entry=10737, description='Sholazar Basin 189981, node 20' WHERE guid=120870; UPDATE gameobject SET guid=198083 WHERE guid=120871; UPDATE pool_gameobject SET guid=198083, pool_entry=10737, description='Sholazar Basin 191133, node 20' WHERE guid=120871; UPDATE gameobject SET guid=198082 WHERE guid=120873; UPDATE pool_gameobject SET guid=198082, pool_entry=10738, description='Sholazar Basin 191133, node 21' WHERE guid=120873; UPDATE pool_pool SET pool_id=10738, description='Sholazar Basin mineral, node 21' WHERE pool_id=5312; UPDATE pool_template SET entry=10738, description='Sholazar Basin mineral, node 21' WHERE entry=5312; UPDATE gameobject SET guid=198081 WHERE guid=56346; UPDATE pool_gameobject SET guid=198081, pool_entry=10738, description='Sholazar Basin 189980, node 21' WHERE guid=56346; UPDATE gameobject SET guid=198080 WHERE guid=120872; UPDATE pool_gameobject SET guid=198080, pool_entry=10738, description='Sholazar Basin 189981, node 21' WHERE guid=120872; UPDATE gameobject SET guid=198079 WHERE guid=59673; UPDATE pool_gameobject SET guid=198079, pool_entry=10739, description='Sholazar Basin 189980, node 22' WHERE guid=59673; UPDATE pool_pool SET pool_id=10739, description='Sholazar Basin mineral, node 22' WHERE pool_id=5313; UPDATE pool_template SET entry=10739, description='Sholazar Basin mineral, node 22' WHERE entry=5313; UPDATE gameobject SET guid=198078 WHERE guid=120874; UPDATE pool_gameobject SET guid=198078, pool_entry=10739, description='Sholazar Basin 189981, node 22' WHERE guid=120874; UPDATE gameobject SET guid=198077 WHERE guid=120875; UPDATE pool_gameobject SET guid=198077, pool_entry=10739, description='Sholazar Basin 191133, node 22' WHERE guid=120875; UPDATE gameobject SET guid=198076 WHERE guid=61270; UPDATE pool_gameobject SET guid=198076, pool_entry=10740, description='Sholazar Basin 189980, node 23' WHERE guid=61270; UPDATE pool_pool SET pool_id=10740, description='Sholazar Basin mineral, node 23' WHERE pool_id=5314; UPDATE pool_template SET entry=10740, description='Sholazar Basin mineral, node 23' WHERE entry=5314; UPDATE gameobject SET guid=198075 WHERE guid=120876; UPDATE pool_gameobject SET guid=198075, pool_entry=10740, description='Sholazar Basin 189981, node 23' WHERE guid=120876; UPDATE gameobject SET guid=198074 WHERE guid=120877; UPDATE pool_gameobject SET guid=198074, pool_entry=10740, description='Sholazar Basin 191133, node 23' WHERE guid=120877; UPDATE gameobject SET guid=198073 WHERE guid=61272; UPDATE pool_gameobject SET guid=198073, pool_entry=10741, description='Sholazar Basin 189980, node 24' WHERE guid=61272; UPDATE pool_pool SET pool_id=10741, description='Sholazar Basin mineral, node 24' WHERE pool_id=5315; UPDATE pool_template SET entry=10741, description='Sholazar Basin mineral, node 24' WHERE entry=5315; UPDATE gameobject SET guid=198072 WHERE guid=120878; UPDATE pool_gameobject SET guid=198072, pool_entry=10741, description='Sholazar Basin 189981, node 24' WHERE guid=120878; UPDATE gameobject SET guid=198071 WHERE guid=120879; UPDATE pool_gameobject SET guid=198071, pool_entry=10741, description='Sholazar Basin 191133, node 24' WHERE guid=120879; UPDATE gameobject SET guid=198070 WHERE guid=61274; UPDATE pool_gameobject SET guid=198070, pool_entry=10742, description='Sholazar Basin 189980, node 25' WHERE guid=61274; UPDATE pool_pool SET pool_id=10742, description='Sholazar Basin mineral, node 25' WHERE pool_id=5316; UPDATE pool_template SET entry=10742, description='Sholazar Basin mineral, node 25' WHERE entry=5316; UPDATE gameobject SET guid=198069 WHERE guid=120880; UPDATE pool_gameobject SET guid=198069, pool_entry=10742, description='Sholazar Basin 189981, node 25' WHERE guid=120880; UPDATE gameobject SET guid=198068 WHERE guid=120881; UPDATE pool_gameobject SET guid=198068, pool_entry=10742, description='Sholazar Basin 191133, node 25' WHERE guid=120881; UPDATE gameobject SET guid=198067 WHERE guid=61276; UPDATE pool_gameobject SET guid=198067, pool_entry=10743, description='Sholazar Basin 189980, node 26' WHERE guid=61276; UPDATE pool_pool SET pool_id=10743, description='Sholazar Basin mineral, node 26' WHERE pool_id=5317; UPDATE pool_template SET entry=10743, description='Sholazar Basin mineral, node 26' WHERE entry=5317; UPDATE gameobject SET guid=198066 WHERE guid=120882; UPDATE pool_gameobject SET guid=198066, pool_entry=10743, description='Sholazar Basin 189981, node 26' WHERE guid=120882; UPDATE gameobject SET guid=198065 WHERE guid=120883; UPDATE pool_gameobject SET guid=198065, pool_entry=10743, description='Sholazar Basin 191133, node 26' WHERE guid=120883; UPDATE gameobject SET guid=198064 WHERE guid=61282; UPDATE pool_gameobject SET guid=198064, pool_entry=10744, description='Sholazar Basin 189980, node 27' WHERE guid=61282; UPDATE pool_pool SET pool_id=10744, description='Sholazar Basin mineral, node 27' WHERE pool_id=5318; UPDATE pool_template SET entry=10744, description='Sholazar Basin mineral, node 27' WHERE entry=5318; UPDATE gameobject SET guid=198063 WHERE guid=120884; UPDATE pool_gameobject SET guid=198063, pool_entry=10744, description='Sholazar Basin 189981, node 27' WHERE guid=120884; UPDATE gameobject SET guid=198062 WHERE guid=120885; UPDATE pool_gameobject SET guid=198062, pool_entry=10744, description='Sholazar Basin 191133, node 27' WHERE guid=120885; UPDATE gameobject SET guid=198061 WHERE guid=61283; UPDATE pool_gameobject SET guid=198061, pool_entry=10745, description='Sholazar Basin 189980, node 28' WHERE guid=61283; UPDATE pool_pool SET pool_id=10745, description='Sholazar Basin mineral, node 28' WHERE pool_id=5319; UPDATE pool_template SET entry=10745, description='Sholazar Basin mineral, node 28' WHERE entry=5319; UPDATE gameobject SET guid=198060 WHERE guid=120886; UPDATE pool_gameobject SET guid=198060, pool_entry=10745, description='Sholazar Basin 189981, node 28' WHERE guid=120886; UPDATE gameobject SET guid=198059 WHERE guid=120887; UPDATE pool_gameobject SET guid=198059, pool_entry=10745, description='Sholazar Basin 191133, node 28' WHERE guid=120887; UPDATE gameobject SET guid=198058 WHERE guid=61285; UPDATE pool_gameobject SET guid=198058, pool_entry=10746, description='Sholazar Basin 189980, node 29' WHERE guid=61285; UPDATE pool_pool SET pool_id=10746, description='Sholazar Basin mineral, node 29' WHERE pool_id=5320; UPDATE pool_template SET entry=10746, description='Sholazar Basin mineral, node 29' WHERE entry=5320; UPDATE gameobject SET guid=198057 WHERE guid=120888; UPDATE pool_gameobject SET guid=198057, pool_entry=10746, description='Sholazar Basin 189981, node 29' WHERE guid=120888; UPDATE gameobject SET guid=198056 WHERE guid=120889; UPDATE pool_gameobject SET guid=198056, pool_entry=10746, description='Sholazar Basin 191133, node 29' WHERE guid=120889; UPDATE gameobject SET guid=198055 WHERE guid=61286; UPDATE pool_gameobject SET guid=198055, pool_entry=10747, description='Sholazar Basin 189980, node 30' WHERE guid=61286; UPDATE pool_pool SET pool_id=10747, description='Sholazar Basin mineral, node 30' WHERE pool_id=5321; UPDATE pool_template SET entry=10747, description='Sholazar Basin mineral, node 30' WHERE entry=5321; UPDATE gameobject SET guid=198054 WHERE guid=120890; UPDATE pool_gameobject SET guid=198054, pool_entry=10747, description='Sholazar Basin 189981, node 30' WHERE guid=120890; UPDATE gameobject SET guid=198053 WHERE guid=120891; UPDATE pool_gameobject SET guid=198053, pool_entry=10747, description='Sholazar Basin 191133, node 30' WHERE guid=120891; UPDATE gameobject SET guid=198052 WHERE guid=61287; UPDATE pool_gameobject SET guid=198052, pool_entry=10748, description='Sholazar Basin 189980, node 31' WHERE guid=61287; UPDATE pool_pool SET pool_id=10748, description='Sholazar Basin mineral, node 31' WHERE pool_id=5322; UPDATE pool_template SET entry=10748, description='Sholazar Basin mineral, node 31' WHERE entry=5322; UPDATE gameobject SET guid=198051 WHERE guid=120892; UPDATE pool_gameobject SET guid=198051, pool_entry=10748, description='Sholazar Basin 189981, node 31' WHERE guid=120892; UPDATE gameobject SET guid=198050 WHERE guid=120893; UPDATE pool_gameobject SET guid=198050, pool_entry=10748, description='Sholazar Basin 191133, node 31' WHERE guid=120893; UPDATE gameobject SET guid=198049 WHERE guid=120894; UPDATE pool_gameobject SET guid=198049, pool_entry=10749, description='Sholazar Basin 189981, node 32' WHERE guid=120894; UPDATE pool_pool SET pool_id=10749, description='Sholazar Basin mineral, node 32' WHERE pool_id=5323; UPDATE pool_template SET entry=10749, description='Sholazar Basin mineral, node 32' WHERE entry=5323; UPDATE gameobject SET guid=198048 WHERE guid=120895; UPDATE pool_gameobject SET guid=198048, pool_entry=10749, description='Sholazar Basin 191133, node 32' WHERE guid=120895; UPDATE gameobject SET guid=198047 WHERE guid=61288; UPDATE pool_gameobject SET guid=198047, pool_entry=10749, description='Sholazar Basin 189980, node 32' WHERE guid=61288; UPDATE gameobject SET guid=198046 WHERE guid=61293; UPDATE pool_gameobject SET guid=198046, pool_entry=10750, description='Sholazar Basin 189980, node 33' WHERE guid=61293; UPDATE pool_pool SET pool_id=10750, description='Sholazar Basin mineral, node 33' WHERE pool_id=5324; UPDATE pool_template SET entry=10750, description='Sholazar Basin mineral, node 33' WHERE entry=5324; UPDATE gameobject SET guid=198045 WHERE guid=120896; UPDATE pool_gameobject SET guid=198045, pool_entry=10750, description='Sholazar Basin 189981, node 33' WHERE guid=120896; UPDATE gameobject SET guid=198044 WHERE guid=120897; UPDATE pool_gameobject SET guid=198044, pool_entry=10750, description='Sholazar Basin 191133, node 33' WHERE guid=120897; UPDATE gameobject SET guid=198043 WHERE guid=61294; UPDATE pool_gameobject SET guid=198043, pool_entry=10751, description='Sholazar Basin 189980, node 34' WHERE guid=61294; UPDATE pool_pool SET pool_id=10751, description='Sholazar Basin mineral, node 34' WHERE pool_id=5325; UPDATE pool_template SET entry=10751, description='Sholazar Basin mineral, node 34' WHERE entry=5325; UPDATE gameobject SET guid=198042 WHERE guid=120898; UPDATE pool_gameobject SET guid=198042, pool_entry=10751, description='Sholazar Basin 189981, node 34' WHERE guid=120898; UPDATE gameobject SET guid=198041 WHERE guid=120899; UPDATE pool_gameobject SET guid=198041, pool_entry=10751, description='Sholazar Basin 191133, node 34' WHERE guid=120899; UPDATE gameobject SET guid=198040 WHERE guid=61295; UPDATE pool_gameobject SET guid=198040, pool_entry=10752, description='Sholazar Basin 189980, node 35' WHERE guid=61295; UPDATE pool_pool SET pool_id=10752, description='Sholazar Basin mineral, node 35' WHERE pool_id=5326; UPDATE pool_template SET entry=10752, description='Sholazar Basin mineral, node 35' WHERE entry=5326; UPDATE gameobject SET guid=198039 WHERE guid=120900; UPDATE pool_gameobject SET guid=198039, pool_entry=10752, description='Sholazar Basin 189981, node 35' WHERE guid=120900; UPDATE gameobject SET guid=198038 WHERE guid=120901; UPDATE pool_gameobject SET guid=198038, pool_entry=10752, description='Sholazar Basin 191133, node 35' WHERE guid=120901; UPDATE gameobject SET guid=198037 WHERE guid=61298; UPDATE pool_gameobject SET guid=198037, pool_entry=10753, description='Sholazar Basin 189980, node 36' WHERE guid=61298; UPDATE pool_pool SET pool_id=10753, description='Sholazar Basin mineral, node 36' WHERE pool_id=5327; UPDATE pool_template SET entry=10753, description='Sholazar Basin mineral, node 36' WHERE entry=5327; UPDATE gameobject SET guid=198036 WHERE guid=120902; UPDATE pool_gameobject SET guid=198036, pool_entry=10753, description='Sholazar Basin 189981, node 36' WHERE guid=120902; UPDATE gameobject SET guid=198035 WHERE guid=120903; UPDATE pool_gameobject SET guid=198035, pool_entry=10753, description='Sholazar Basin 191133, node 36' WHERE guid=120903; UPDATE gameobject SET guid=198034 WHERE guid=120905; UPDATE pool_gameobject SET guid=198034, pool_entry=10754, description='Sholazar Basin 191133, node 37' WHERE guid=120905; UPDATE pool_pool SET pool_id=10754, description='Sholazar Basin mineral, node 37' WHERE pool_id=5328; UPDATE pool_template SET entry=10754, description='Sholazar Basin mineral, node 37' WHERE entry=5328; UPDATE gameobject SET guid=198033 WHERE guid=61299; UPDATE pool_gameobject SET guid=198033, pool_entry=10754, description='Sholazar Basin 189980, node 37' WHERE guid=61299; UPDATE gameobject SET guid=198032 WHERE guid=120904; UPDATE pool_gameobject SET guid=198032, pool_entry=10754, description='Sholazar Basin 189981, node 37' WHERE guid=120904; UPDATE gameobject SET guid=198031 WHERE guid=61300; UPDATE pool_gameobject SET guid=198031, pool_entry=10755, description='Sholazar Basin 189980, node 38' WHERE guid=61300; UPDATE pool_pool SET pool_id=10755, description='Sholazar Basin mineral, node 38' WHERE pool_id=5329; UPDATE pool_template SET entry=10755, description='Sholazar Basin mineral, node 38' WHERE entry=5329; UPDATE gameobject SET guid=198030 WHERE guid=120906; UPDATE pool_gameobject SET guid=198030, pool_entry=10755, description='Sholazar Basin 189981, node 38' WHERE guid=120906; UPDATE gameobject SET guid=198029 WHERE guid=120907; UPDATE pool_gameobject SET guid=198029, pool_entry=10755, description='Sholazar Basin 191133, node 38' WHERE guid=120907; UPDATE gameobject SET guid=198028 WHERE guid=61301; UPDATE pool_gameobject SET guid=198028, pool_entry=10756, description='Sholazar Basin 189980, node 39' WHERE guid=61301; UPDATE pool_pool SET pool_id=10756, description='Sholazar Basin mineral, node 39' WHERE pool_id=5330; UPDATE pool_template SET entry=10756, description='Sholazar Basin mineral, node 39' WHERE entry=5330; UPDATE gameobject SET guid=198027 WHERE guid=120908; UPDATE pool_gameobject SET guid=198027, pool_entry=10756, description='Sholazar Basin 189981, node 39' WHERE guid=120908; UPDATE gameobject SET guid=198026 WHERE guid=120909; UPDATE pool_gameobject SET guid=198026, pool_entry=10756, description='Sholazar Basin 191133, node 39' WHERE guid=120909; UPDATE gameobject SET guid=198025 WHERE guid=61303; UPDATE pool_gameobject SET guid=198025, pool_entry=10757, description='Sholazar Basin 189980, node 40' WHERE guid=61303; UPDATE pool_pool SET pool_id=10757, description='Sholazar Basin mineral, node 40' WHERE pool_id=5331; UPDATE pool_template SET entry=10757, description='Sholazar Basin mineral, node 40' WHERE entry=5331; UPDATE gameobject SET guid=198024 WHERE guid=120910; UPDATE pool_gameobject SET guid=198024, pool_entry=10757, description='Sholazar Basin 189981, node 40' WHERE guid=120910; UPDATE gameobject SET guid=198023 WHERE guid=120911; UPDATE pool_gameobject SET guid=198023, pool_entry=10757, description='Sholazar Basin 191133, node 40' WHERE guid=120911; UPDATE gameobject SET guid=198022 WHERE guid=61314; UPDATE pool_gameobject SET guid=198022, pool_entry=10758, description='Sholazar Basin 189980, node 41' WHERE guid=61314; UPDATE pool_pool SET pool_id=10758, description='Sholazar Basin mineral, node 41' WHERE pool_id=5332; UPDATE pool_template SET entry=10758, description='Sholazar Basin mineral, node 41' WHERE entry=5332; UPDATE gameobject SET guid=198021 WHERE guid=120912; UPDATE pool_gameobject SET guid=198021, pool_entry=10758, description='Sholazar Basin 189981, node 41' WHERE guid=120912; UPDATE gameobject SET guid=198020 WHERE guid=120913; UPDATE pool_gameobject SET guid=198020, pool_entry=10758, description='Sholazar Basin 191133, node 41' WHERE guid=120913; UPDATE gameobject SET guid=198019 WHERE guid=61333; UPDATE pool_gameobject SET guid=198019, pool_entry=10759, description='Sholazar Basin 189980, node 42' WHERE guid=61333; UPDATE pool_pool SET pool_id=10759, description='Sholazar Basin mineral, node 42' WHERE pool_id=5333; UPDATE pool_template SET entry=10759, description='Sholazar Basin mineral, node 42' WHERE entry=5333; UPDATE gameobject SET guid=198018 WHERE guid=120914; UPDATE pool_gameobject SET guid=198018, pool_entry=10759, description='Sholazar Basin 189981, node 42' WHERE guid=120914; UPDATE gameobject SET guid=198017 WHERE guid=120915; UPDATE pool_gameobject SET guid=198017, pool_entry=10759, description='Sholazar Basin 191133, node 42' WHERE guid=120915; UPDATE gameobject SET guid=198016 WHERE guid=61334; UPDATE pool_gameobject SET guid=198016, pool_entry=10760, description='Sholazar Basin 189980, node 43' WHERE guid=61334; UPDATE pool_pool SET pool_id=10760, description='Sholazar Basin mineral, node 43' WHERE pool_id=5334; UPDATE pool_template SET entry=10760, description='Sholazar Basin mineral, node 43' WHERE entry=5334; UPDATE gameobject SET guid=198015 WHERE guid=120916; UPDATE pool_gameobject SET guid=198015, pool_entry=10760, description='Sholazar Basin 189981, node 43' WHERE guid=120916; UPDATE gameobject SET guid=198014 WHERE guid=120917; UPDATE pool_gameobject SET guid=198014, pool_entry=10760, description='Sholazar Basin 191133, node 43' WHERE guid=120917; UPDATE gameobject SET guid=198013 WHERE guid=61336; UPDATE pool_gameobject SET guid=198013, pool_entry=10761, description='Sholazar Basin 189980, node 44' WHERE guid=61336; UPDATE pool_pool SET pool_id=10761, description='Sholazar Basin mineral, node 44' WHERE pool_id=5335; UPDATE pool_template SET entry=10761, description='Sholazar Basin mineral, node 44' WHERE entry=5335; UPDATE gameobject SET guid=198012 WHERE guid=120918; UPDATE pool_gameobject SET guid=198012, pool_entry=10761, description='Sholazar Basin 189981, node 44' WHERE guid=120918; UPDATE gameobject SET guid=198011 WHERE guid=120919; UPDATE pool_gameobject SET guid=198011, pool_entry=10761, description='Sholazar Basin 191133, node 44' WHERE guid=120919; UPDATE gameobject SET guid=198010 WHERE guid=61980; UPDATE pool_gameobject SET guid=198010, pool_entry=10762, description='Sholazar Basin 189980, node 45' WHERE guid=61980; UPDATE pool_pool SET pool_id=10762, description='Sholazar Basin mineral, node 45' WHERE pool_id=5336; UPDATE pool_template SET entry=10762, description='Sholazar Basin mineral, node 45' WHERE entry=5336; UPDATE gameobject SET guid=198009 WHERE guid=120920; UPDATE pool_gameobject SET guid=198009, pool_entry=10762, description='Sholazar Basin 189981, node 45' WHERE guid=120920; UPDATE gameobject SET guid=198008 WHERE guid=120921; UPDATE pool_gameobject SET guid=198008, pool_entry=10762, description='Sholazar Basin 191133, node 45' WHERE guid=120921; UPDATE gameobject SET guid=198007 WHERE guid=67640; UPDATE pool_gameobject SET guid=198007, pool_entry=10763, description='Sholazar Basin 189980, node 46' WHERE guid=67640; UPDATE pool_pool SET pool_id=10763, description='Sholazar Basin mineral, node 46' WHERE pool_id=5337; UPDATE pool_template SET entry=10763, description='Sholazar Basin mineral, node 46' WHERE entry=5337; UPDATE gameobject SET guid=198006 WHERE guid=120922; UPDATE pool_gameobject SET guid=198006, pool_entry=10763, description='Sholazar Basin 189981, node 46' WHERE guid=120922; UPDATE gameobject SET guid=198005 WHERE guid=120923; UPDATE pool_gameobject SET guid=198005, pool_entry=10763, description='Sholazar Basin 191133, node 46' WHERE guid=120923; UPDATE gameobject SET guid=198004 WHERE guid=120012; UPDATE pool_gameobject SET guid=198004, pool_entry=10764, description='Sholazar Basin 189980, node 47' WHERE guid=120012; UPDATE pool_pool SET pool_id=10764, description='Sholazar Basin mineral, node 47' WHERE pool_id=5338; UPDATE pool_template SET entry=10764, description='Sholazar Basin mineral, node 47' WHERE entry=5338; UPDATE gameobject SET guid=198003 WHERE guid=120924; UPDATE pool_gameobject SET guid=198003, pool_entry=10764, description='Sholazar Basin 189981, node 47' WHERE guid=120924; UPDATE gameobject SET guid=198002 WHERE guid=120925; UPDATE pool_gameobject SET guid=198002, pool_entry=10764, description='Sholazar Basin 191133, node 47' WHERE guid=120925; UPDATE gameobject SET guid=198001 WHERE guid=120926; UPDATE pool_gameobject SET guid=198001, pool_entry=10765, description='Sholazar Basin 189981, node 48' WHERE guid=120926; UPDATE pool_pool SET pool_id=10765, description='Sholazar Basin mineral, node 48' WHERE pool_id=5339; UPDATE pool_template SET entry=10765, description='Sholazar Basin mineral, node 48' WHERE entry=5339; UPDATE gameobject SET guid=198000 WHERE guid=120927; UPDATE pool_gameobject SET guid=198000, pool_entry=10765, description='Sholazar Basin 191133, node 48' WHERE guid=120927; UPDATE gameobject SET guid=197999 WHERE guid=120026; UPDATE pool_gameobject SET guid=197999, pool_entry=10765, description='Sholazar Basin 189980, node 48' WHERE guid=120026; UPDATE gameobject SET guid=197998 WHERE guid=120028; UPDATE pool_gameobject SET guid=197998, pool_entry=10766, description='Sholazar Basin 189980, node 49' WHERE guid=120028; UPDATE pool_pool SET pool_id=10766, description='Sholazar Basin mineral, node 49' WHERE pool_id=5340; UPDATE pool_template SET entry=10766, description='Sholazar Basin mineral, node 49' WHERE entry=5340; UPDATE gameobject SET guid=197997 WHERE guid=120928; UPDATE pool_gameobject SET guid=197997, pool_entry=10766, description='Sholazar Basin 189981, node 49' WHERE guid=120928; UPDATE gameobject SET guid=197996 WHERE guid=120929; UPDATE pool_gameobject SET guid=197996, pool_entry=10766, description='Sholazar Basin 191133, node 49' WHERE guid=120929; UPDATE gameobject SET guid=197995 WHERE guid=120029; UPDATE pool_gameobject SET guid=197995, pool_entry=10767, description='Sholazar Basin 189980, node 50' WHERE guid=120029; UPDATE pool_pool SET pool_id=10767, description='Sholazar Basin mineral, node 50' WHERE pool_id=5341; UPDATE pool_template SET entry=10767, description='Sholazar Basin mineral, node 50' WHERE entry=5341; UPDATE gameobject SET guid=197994 WHERE guid=120930; UPDATE pool_gameobject SET guid=197994, pool_entry=10767, description='Sholazar Basin 189981, node 50' WHERE guid=120930; UPDATE gameobject SET guid=197993 WHERE guid=120931; UPDATE pool_gameobject SET guid=197993, pool_entry=10767, description='Sholazar Basin 191133, node 50' WHERE guid=120931; UPDATE gameobject SET guid=197992 WHERE guid=120030; UPDATE pool_gameobject SET guid=197992, pool_entry=10768, description='Sholazar Basin 189980, node 51' WHERE guid=120030; UPDATE pool_pool SET pool_id=10768, description='Sholazar Basin mineral, node 51' WHERE pool_id=5342; UPDATE pool_template SET entry=10768, description='Sholazar Basin mineral, node 51' WHERE entry=5342; UPDATE gameobject SET guid=197991 WHERE guid=120932; UPDATE pool_gameobject SET guid=197991, pool_entry=10768, description='Sholazar Basin 189981, node 51' WHERE guid=120932; UPDATE gameobject SET guid=197990 WHERE guid=120933; UPDATE pool_gameobject SET guid=197990, pool_entry=10768, description='Sholazar Basin 191133, node 51' WHERE guid=120933; UPDATE gameobject SET guid=197989 WHERE guid=120036; UPDATE pool_gameobject SET guid=197989, pool_entry=10769, description='Sholazar Basin 189980, node 52' WHERE guid=120036; UPDATE pool_pool SET pool_id=10769, description='Sholazar Basin mineral, node 52' WHERE pool_id=5343; UPDATE pool_template SET entry=10769, description='Sholazar Basin mineral, node 52' WHERE entry=5343; UPDATE gameobject SET guid=197988 WHERE guid=120934; UPDATE pool_gameobject SET guid=197988, pool_entry=10769, description='Sholazar Basin 189981, node 52' WHERE guid=120934; UPDATE gameobject SET guid=197987 WHERE guid=120935; UPDATE pool_gameobject SET guid=197987, pool_entry=10769, description='Sholazar Basin 191133, node 52' WHERE guid=120935; UPDATE gameobject SET guid=197986 WHERE guid=120937; UPDATE pool_gameobject SET guid=197986, pool_entry=10770, description='Sholazar Basin 191133, node 53' WHERE guid=120937; UPDATE pool_pool SET pool_id=10770, description='Sholazar Basin mineral, node 53' WHERE pool_id=5344; UPDATE pool_template SET entry=10770, description='Sholazar Basin mineral, node 53' WHERE entry=5344; UPDATE gameobject SET guid=197985 WHERE guid=120037; UPDATE pool_gameobject SET guid=197985, pool_entry=10770, description='Sholazar Basin 189980, node 53' WHERE guid=120037; UPDATE gameobject SET guid=197984 WHERE guid=120936; UPDATE pool_gameobject SET guid=197984, pool_entry=10770, description='Sholazar Basin 189981, node 53' WHERE guid=120936; UPDATE gameobject SET guid=197983 WHERE guid=120039; UPDATE pool_gameobject SET guid=197983, pool_entry=10771, description='Sholazar Basin 189980, node 54' WHERE guid=120039; UPDATE pool_pool SET pool_id=10771, description='Sholazar Basin mineral, node 54' WHERE pool_id=5345; UPDATE pool_template SET entry=10771, description='Sholazar Basin mineral, node 54' WHERE entry=5345; UPDATE gameobject SET guid=197982 WHERE guid=120938; UPDATE pool_gameobject SET guid=197982, pool_entry=10771, description='Sholazar Basin 189981, node 54' WHERE guid=120938; UPDATE gameobject SET guid=197981 WHERE guid=120939; UPDATE pool_gameobject SET guid=197981, pool_entry=10771, description='Sholazar Basin 191133, node 54' WHERE guid=120939; UPDATE gameobject SET guid=197980 WHERE guid=120056; UPDATE pool_gameobject SET guid=197980, pool_entry=10772, description='Sholazar Basin 189980, node 55' WHERE guid=120056; UPDATE pool_pool SET pool_id=10772, description='Sholazar Basin mineral, node 55' WHERE pool_id=5346; UPDATE pool_template SET entry=10772, description='Sholazar Basin mineral, node 55' WHERE entry=5346; UPDATE gameobject SET guid=197979 WHERE guid=120940; UPDATE pool_gameobject SET guid=197979, pool_entry=10772, description='Sholazar Basin 189981, node 55' WHERE guid=120940; UPDATE gameobject SET guid=197978 WHERE guid=120941; UPDATE pool_gameobject SET guid=197978, pool_entry=10772, description='Sholazar Basin 191133, node 55' WHERE guid=120941; UPDATE gameobject SET guid=197977 WHERE guid=120057; UPDATE pool_gameobject SET guid=197977, pool_entry=10773, description='Sholazar Basin 189980, node 56' WHERE guid=120057; UPDATE pool_pool SET pool_id=10773, description='Sholazar Basin mineral, node 56' WHERE pool_id=5347; UPDATE pool_template SET entry=10773, description='Sholazar Basin mineral, node 56' WHERE entry=5347; UPDATE gameobject SET guid=197976 WHERE guid=120942; UPDATE pool_gameobject SET guid=197976, pool_entry=10773, description='Sholazar Basin 189981, node 56' WHERE guid=120942; UPDATE gameobject SET guid=197975 WHERE guid=120943; UPDATE pool_gameobject SET guid=197975, pool_entry=10773, description='Sholazar Basin 191133, node 56' WHERE guid=120943; UPDATE gameobject SET guid=197974 WHERE guid=120062; UPDATE pool_gameobject SET guid=197974, pool_entry=10774, description='Sholazar Basin 189980, node 57' WHERE guid=120062; UPDATE pool_pool SET pool_id=10774, description='Sholazar Basin mineral, node 57' WHERE pool_id=5348; UPDATE pool_template SET entry=10774, description='Sholazar Basin mineral, node 57' WHERE entry=5348; UPDATE gameobject SET guid=197973 WHERE guid=120944; UPDATE pool_gameobject SET guid=197973, pool_entry=10774, description='Sholazar Basin 189981, node 57' WHERE guid=120944; UPDATE gameobject SET guid=197972 WHERE guid=120945; UPDATE pool_gameobject SET guid=197972, pool_entry=10774, description='Sholazar Basin 191133, node 57' WHERE guid=120945; UPDATE gameobject SET guid=197971 WHERE guid=120065; UPDATE pool_gameobject SET guid=197971, pool_entry=10775, description='Sholazar Basin 189980, node 58' WHERE guid=120065; UPDATE pool_pool SET pool_id=10775, description='Sholazar Basin mineral, node 58' WHERE pool_id=5349; UPDATE pool_template SET entry=10775, description='Sholazar Basin mineral, node 58' WHERE entry=5349; UPDATE gameobject SET guid=197970 WHERE guid=120946; UPDATE pool_gameobject SET guid=197970, pool_entry=10775, description='Sholazar Basin 189981, node 58' WHERE guid=120946; UPDATE gameobject SET guid=197969 WHERE guid=120947; UPDATE pool_gameobject SET guid=197969, pool_entry=10775, description='Sholazar Basin 191133, node 58' WHERE guid=120947; UPDATE gameobject SET guid=197968 WHERE guid=120067; UPDATE pool_gameobject SET guid=197968, pool_entry=10776, description='Sholazar Basin 189980, node 59' WHERE guid=120067; UPDATE pool_pool SET pool_id=10776, description='Sholazar Basin mineral, node 59' WHERE pool_id=5350; UPDATE pool_template SET entry=10776, description='Sholazar Basin mineral, node 59' WHERE entry=5350; UPDATE gameobject SET guid=197967 WHERE guid=120948; UPDATE pool_gameobject SET guid=197967, pool_entry=10776, description='Sholazar Basin 189981, node 59' WHERE guid=120948; UPDATE gameobject SET guid=197966 WHERE guid=120949; UPDATE pool_gameobject SET guid=197966, pool_entry=10776, description='Sholazar Basin 191133, node 59' WHERE guid=120949; UPDATE gameobject SET guid=197965 WHERE guid=120071; UPDATE pool_gameobject SET guid=197965, pool_entry=10777, description='Sholazar Basin 189980, node 60' WHERE guid=120071; UPDATE pool_pool SET pool_id=10777, description='Sholazar Basin mineral, node 60' WHERE pool_id=5351; UPDATE pool_template SET entry=10777, description='Sholazar Basin mineral, node 60' WHERE entry=5351; UPDATE gameobject SET guid=197964 WHERE guid=120950; UPDATE pool_gameobject SET guid=197964, pool_entry=10777, description='Sholazar Basin 189981, node 60' WHERE guid=120950; UPDATE gameobject SET guid=197963 WHERE guid=120951; UPDATE pool_gameobject SET guid=197963, pool_entry=10777, description='Sholazar Basin 191133, node 60' WHERE guid=120951; UPDATE gameobject SET guid=197962 WHERE guid=120072; UPDATE pool_gameobject SET guid=197962, pool_entry=10778, description='Sholazar Basin 189980, node 61' WHERE guid=120072; UPDATE pool_pool SET pool_id=10778, description='Sholazar Basin mineral, node 61' WHERE pool_id=5352; UPDATE pool_template SET entry=10778, description='Sholazar Basin mineral, node 61' WHERE entry=5352; UPDATE gameobject SET guid=197961 WHERE guid=120952; UPDATE pool_gameobject SET guid=197961, pool_entry=10778, description='Sholazar Basin 189981, node 61' WHERE guid=120952; UPDATE gameobject SET guid=197960 WHERE guid=120953; UPDATE pool_gameobject SET guid=197960, pool_entry=10778, description='Sholazar Basin 191133, node 61' WHERE guid=120953; UPDATE gameobject SET guid=197959 WHERE guid=120102; UPDATE pool_gameobject SET guid=197959, pool_entry=10779, description='Sholazar Basin 189980, node 62' WHERE guid=120102; UPDATE pool_pool SET pool_id=10779, description='Sholazar Basin mineral, node 62' WHERE pool_id=5353; UPDATE pool_template SET entry=10779, description='Sholazar Basin mineral, node 62' WHERE entry=5353; UPDATE gameobject SET guid=197958 WHERE guid=120954; UPDATE pool_gameobject SET guid=197958, pool_entry=10779, description='Sholazar Basin 189981, node 62' WHERE guid=120954; UPDATE gameobject SET guid=197957 WHERE guid=120955; UPDATE pool_gameobject SET guid=197957, pool_entry=10779, description='Sholazar Basin 191133, node 62' WHERE guid=120955; UPDATE gameobject SET guid=197956 WHERE guid=120111; UPDATE pool_gameobject SET guid=197956, pool_entry=10780, description='Sholazar Basin 189980, node 63' WHERE guid=120111; UPDATE pool_pool SET pool_id=10780, description='Sholazar Basin mineral, node 63' WHERE pool_id=5354; UPDATE pool_template SET entry=10780, description='Sholazar Basin mineral, node 63' WHERE entry=5354; UPDATE gameobject SET guid=197955 WHERE guid=120956; UPDATE pool_gameobject SET guid=197955, pool_entry=10780, description='Sholazar Basin 189981, node 63' WHERE guid=120956; UPDATE gameobject SET guid=197954 WHERE guid=120957; UPDATE pool_gameobject SET guid=197954, pool_entry=10780, description='Sholazar Basin 191133, node 63' WHERE guid=120957; UPDATE gameobject SET guid=197953 WHERE guid=120958; UPDATE pool_gameobject SET guid=197953, pool_entry=10781, description='Sholazar Basin 189981, node 64' WHERE guid=120958; UPDATE pool_pool SET pool_id=10781, description='Sholazar Basin mineral, node 64' WHERE pool_id=5355; UPDATE pool_template SET entry=10781, description='Sholazar Basin mineral, node 64' WHERE entry=5355; UPDATE gameobject SET guid=197952 WHERE guid=120959; UPDATE pool_gameobject SET guid=197952, pool_entry=10781, description='Sholazar Basin 191133, node 64' WHERE guid=120959; UPDATE gameobject SET guid=197951 WHERE guid=120112; UPDATE pool_gameobject SET guid=197951, pool_entry=10781, description='Sholazar Basin 189980, node 64' WHERE guid=120112; UPDATE gameobject SET guid=197950 WHERE guid=120152; UPDATE pool_gameobject SET guid=197950, pool_entry=10782, description='Sholazar Basin 189980, node 65' WHERE guid=120152; UPDATE pool_pool SET pool_id=10782, description='Sholazar Basin mineral, node 65' WHERE pool_id=5356; UPDATE pool_template SET entry=10782, description='Sholazar Basin mineral, node 65' WHERE entry=5356; UPDATE gameobject SET guid=197949 WHERE guid=120960; UPDATE pool_gameobject SET guid=197949, pool_entry=10782, description='Sholazar Basin 189981, node 65' WHERE guid=120960; UPDATE gameobject SET guid=197948 WHERE guid=120961; UPDATE pool_gameobject SET guid=197948, pool_entry=10782, description='Sholazar Basin 191133, node 65' WHERE guid=120961; UPDATE gameobject SET guid=197947 WHERE guid=120153; UPDATE pool_gameobject SET guid=197947, pool_entry=10783, description='Sholazar Basin 189980, node 66' WHERE guid=120153; UPDATE pool_pool SET pool_id=10783, description='Sholazar Basin mineral, node 66' WHERE pool_id=5357; UPDATE pool_template SET entry=10783, description='Sholazar Basin mineral, node 66' WHERE entry=5357; UPDATE gameobject SET guid=197946 WHERE guid=120962; UPDATE pool_gameobject SET guid=197946, pool_entry=10783, description='Sholazar Basin 189981, node 66' WHERE guid=120962; UPDATE gameobject SET guid=197945 WHERE guid=120963; UPDATE pool_gameobject SET guid=197945, pool_entry=10783, description='Sholazar Basin 191133, node 66' WHERE guid=120963; UPDATE gameobject SET guid=197944 WHERE guid=120154; UPDATE pool_gameobject SET guid=197944, pool_entry=10784, description='Sholazar Basin 189980, node 67' WHERE guid=120154; UPDATE pool_pool SET pool_id=10784, description='Sholazar Basin mineral, node 67' WHERE pool_id=5358; UPDATE pool_template SET entry=10784, description='Sholazar Basin mineral, node 67' WHERE entry=5358; UPDATE gameobject SET guid=197943 WHERE guid=120964; UPDATE pool_gameobject SET guid=197943, pool_entry=10784, description='Sholazar Basin 189981, node 67' WHERE guid=120964; UPDATE gameobject SET guid=197942 WHERE guid=120965; UPDATE pool_gameobject SET guid=197942, pool_entry=10784, description='Sholazar Basin 191133, node 67' WHERE guid=120965; UPDATE gameobject SET guid=197941 WHERE guid=120155; UPDATE pool_gameobject SET guid=197941, pool_entry=10785, description='Sholazar Basin 189980, node 68' WHERE guid=120155; UPDATE pool_pool SET pool_id=10785, description='Sholazar Basin mineral, node 68' WHERE pool_id=5359; UPDATE pool_template SET entry=10785, description='Sholazar Basin mineral, node 68' WHERE entry=5359; UPDATE gameobject SET guid=197940 WHERE guid=120966; UPDATE pool_gameobject SET guid=197940, pool_entry=10785, description='Sholazar Basin 189981, node 68' WHERE guid=120966; UPDATE gameobject SET guid=197939 WHERE guid=120967; UPDATE pool_gameobject SET guid=197939, pool_entry=10785, description='Sholazar Basin 191133, node 68' WHERE guid=120967; UPDATE gameobject SET guid=197938 WHERE guid=120969; UPDATE pool_gameobject SET guid=197938, pool_entry=10786, description='Sholazar Basin 191133, node 69' WHERE guid=120969; UPDATE pool_pool SET pool_id=10786, description='Sholazar Basin mineral, node 69' WHERE pool_id=5360; UPDATE pool_template SET entry=10786, description='Sholazar Basin mineral, node 69' WHERE entry=5360; UPDATE gameobject SET guid=197937 WHERE guid=120156; UPDATE pool_gameobject SET guid=197937, pool_entry=10786, description='Sholazar Basin 189980, node 69' WHERE guid=120156; UPDATE gameobject SET guid=197936 WHERE guid=120968; UPDATE pool_gameobject SET guid=197936, pool_entry=10786, description='Sholazar Basin 189981, node 69' WHERE guid=120968; UPDATE gameobject SET guid=197935 WHERE guid=120157; UPDATE pool_gameobject SET guid=197935, pool_entry=10787, description='Sholazar Basin 189980, node 70' WHERE guid=120157; UPDATE pool_pool SET pool_id=10787, description='Sholazar Basin mineral, node 70' WHERE pool_id=5361; UPDATE pool_template SET entry=10787, description='Sholazar Basin mineral, node 70' WHERE entry=5361; UPDATE gameobject SET guid=197934 WHERE guid=120970; UPDATE pool_gameobject SET guid=197934, pool_entry=10787, description='Sholazar Basin 189981, node 70' WHERE guid=120970; UPDATE gameobject SET guid=197933 WHERE guid=120971; UPDATE pool_gameobject SET guid=197933, pool_entry=10787, description='Sholazar Basin 191133, node 70' WHERE guid=120971; UPDATE gameobject SET guid=197932 WHERE guid=120158; UPDATE pool_gameobject SET guid=197932, pool_entry=10788, description='Sholazar Basin 189980, node 71' WHERE guid=120158; UPDATE pool_pool SET pool_id=10788, description='Sholazar Basin mineral, node 71' WHERE pool_id=5362; UPDATE pool_template SET entry=10788, description='Sholazar Basin mineral, node 71' WHERE entry=5362; UPDATE gameobject SET guid=197931 WHERE guid=120972; UPDATE pool_gameobject SET guid=197931, pool_entry=10788, description='Sholazar Basin 189981, node 71' WHERE guid=120972; UPDATE gameobject SET guid=197930 WHERE guid=120973; UPDATE pool_gameobject SET guid=197930, pool_entry=10788, description='Sholazar Basin 191133, node 71' WHERE guid=120973; UPDATE gameobject SET guid=197929 WHERE guid=120162; UPDATE pool_gameobject SET guid=197929, pool_entry=10789, description='Sholazar Basin 189980, node 72' WHERE guid=120162; UPDATE pool_pool SET pool_id=10789, description='Sholazar Basin mineral, node 72' WHERE pool_id=5363; UPDATE pool_template SET entry=10789, description='Sholazar Basin mineral, node 72' WHERE entry=5363; UPDATE gameobject SET guid=197928 WHERE guid=120974; UPDATE pool_gameobject SET guid=197928, pool_entry=10789, description='Sholazar Basin 189981, node 72' WHERE guid=120974; UPDATE gameobject SET guid=197927 WHERE guid=120975; UPDATE pool_gameobject SET guid=197927, pool_entry=10789, description='Sholazar Basin 191133, node 72' WHERE guid=120975; UPDATE gameobject SET guid=197926 WHERE guid=120164; UPDATE pool_gameobject SET guid=197926, pool_entry=10790, description='Sholazar Basin 189980, node 73' WHERE guid=120164; UPDATE pool_pool SET pool_id=10790, description='Sholazar Basin mineral, node 73' WHERE pool_id=5364; UPDATE pool_template SET entry=10790, description='Sholazar Basin mineral, node 73' WHERE entry=5364; UPDATE gameobject SET guid=197925 WHERE guid=120976; UPDATE pool_gameobject SET guid=197925, pool_entry=10790, description='Sholazar Basin 189981, node 73' WHERE guid=120976; UPDATE gameobject SET guid=197924 WHERE guid=120977; UPDATE pool_gameobject SET guid=197924, pool_entry=10790, description='Sholazar Basin 191133, node 73' WHERE guid=120977; UPDATE gameobject SET guid=197923 WHERE guid=120177; UPDATE pool_gameobject SET guid=197923, pool_entry=10791, description='Sholazar Basin 189980, node 74' WHERE guid=120177; UPDATE pool_pool SET pool_id=10791, description='Sholazar Basin mineral, node 74' WHERE pool_id=5365; UPDATE pool_template SET entry=10791, description='Sholazar Basin mineral, node 74' WHERE entry=5365; UPDATE gameobject SET guid=197922 WHERE guid=120978; UPDATE pool_gameobject SET guid=197922, pool_entry=10791, description='Sholazar Basin 189981, node 74' WHERE guid=120978; UPDATE gameobject SET guid=197921 WHERE guid=120979; UPDATE pool_gameobject SET guid=197921, pool_entry=10791, description='Sholazar Basin 191133, node 74' WHERE guid=120979; UPDATE gameobject SET guid=197920 WHERE guid=120274; UPDATE pool_gameobject SET guid=197920, pool_entry=10792, description='Sholazar Basin 189980, node 75' WHERE guid=120274; UPDATE pool_pool SET pool_id=10792, description='Sholazar Basin mineral, node 75' WHERE pool_id=5366; UPDATE pool_template SET entry=10792, description='Sholazar Basin mineral, node 75' WHERE entry=5366; UPDATE gameobject SET guid=197919 WHERE guid=120980; UPDATE pool_gameobject SET guid=197919, pool_entry=10792, description='Sholazar Basin 189981, node 75' WHERE guid=120980; UPDATE gameobject SET guid=197918 WHERE guid=120981; UPDATE pool_gameobject SET guid=197918, pool_entry=10792, description='Sholazar Basin 191133, node 75' WHERE guid=120981; UPDATE gameobject SET guid=197917 WHERE guid=120685; UPDATE pool_gameobject SET guid=197917, pool_entry=10793, description='Sholazar Basin 189980, node 76' WHERE guid=120685; UPDATE pool_pool SET pool_id=10793, description='Sholazar Basin mineral, node 76' WHERE pool_id=5367; UPDATE pool_template SET entry=10793, description='Sholazar Basin mineral, node 76' WHERE entry=5367; UPDATE gameobject SET guid=197916 WHERE guid=120982; UPDATE pool_gameobject SET guid=197916, pool_entry=10793, description='Sholazar Basin 189981, node 76' WHERE guid=120982; UPDATE gameobject SET guid=197915 WHERE guid=120983; UPDATE pool_gameobject SET guid=197915, pool_entry=10793, description='Sholazar Basin 191133, node 76' WHERE guid=120983; UPDATE gameobject SET guid=197914 WHERE guid=120686; UPDATE pool_gameobject SET guid=197914, pool_entry=10794, description='Sholazar Basin 189980, node 77' WHERE guid=120686; UPDATE pool_pool SET pool_id=10794, description='Sholazar Basin mineral, node 77' WHERE pool_id=5368; UPDATE pool_template SET entry=10794, description='Sholazar Basin mineral, node 77' WHERE entry=5368; UPDATE gameobject SET guid=197913 WHERE guid=120984; UPDATE pool_gameobject SET guid=197913, pool_entry=10794, description='Sholazar Basin 189981, node 77' WHERE guid=120984; UPDATE gameobject SET guid=197912 WHERE guid=120985; UPDATE pool_gameobject SET guid=197912, pool_entry=10794, description='Sholazar Basin 191133, node 77' WHERE guid=120985; UPDATE gameobject SET guid=197911 WHERE guid=120687; UPDATE pool_gameobject SET guid=197911, pool_entry=10795, description='Sholazar Basin 189980, node 78' WHERE guid=120687; UPDATE pool_pool SET pool_id=10795, description='Sholazar Basin mineral, node 78' WHERE pool_id=5369; UPDATE pool_template SET entry=10795, description='Sholazar Basin mineral, node 78' WHERE entry=5369; UPDATE gameobject SET guid=197910 WHERE guid=120986; UPDATE pool_gameobject SET guid=197910, pool_entry=10795, description='Sholazar Basin 189981, node 78' WHERE guid=120986; UPDATE gameobject SET guid=197909 WHERE guid=120987; UPDATE pool_gameobject SET guid=197909, pool_entry=10795, description='Sholazar Basin 191133, node 78' WHERE guid=120987; UPDATE gameobject SET guid=197908 WHERE guid=120688; UPDATE pool_gameobject SET guid=197908, pool_entry=10796, description='Sholazar Basin 189980, node 79' WHERE guid=120688; UPDATE pool_pool SET pool_id=10796, description='Sholazar Basin mineral, node 79' WHERE pool_id=5370; UPDATE pool_template SET entry=10796, description='Sholazar Basin mineral, node 79' WHERE entry=5370; UPDATE gameobject SET guid=197907 WHERE guid=120988; UPDATE pool_gameobject SET guid=197907, pool_entry=10796, description='Sholazar Basin 189981, node 79' WHERE guid=120988; UPDATE gameobject SET guid=197906 WHERE guid=120989; UPDATE pool_gameobject SET guid=197906, pool_entry=10796, description='Sholazar Basin 191133, node 79' WHERE guid=120989; UPDATE gameobject SET guid=197905 WHERE guid=120990; UPDATE pool_gameobject SET guid=197905, pool_entry=10797, description='Sholazar Basin 189981, node 80' WHERE guid=120990; UPDATE pool_pool SET pool_id=10797, description='Sholazar Basin mineral, node 80' WHERE pool_id=5371; UPDATE pool_template SET entry=10797, description='Sholazar Basin mineral, node 80' WHERE entry=5371; UPDATE gameobject SET guid=197904 WHERE guid=120991; UPDATE pool_gameobject SET guid=197904, pool_entry=10797, description='Sholazar Basin 191133, node 80' WHERE guid=120991; UPDATE gameobject SET guid=197903 WHERE guid=120689; UPDATE pool_gameobject SET guid=197903, pool_entry=10797, description='Sholazar Basin 189980, node 80' WHERE guid=120689; UPDATE gameobject SET guid=197902 WHERE guid=120690; UPDATE pool_gameobject SET guid=197902, pool_entry=10798, description='Sholazar Basin 189980, node 81' WHERE guid=120690; UPDATE pool_pool SET pool_id=10798, description='Sholazar Basin mineral, node 81' WHERE pool_id=5372; UPDATE pool_template SET entry=10798, description='Sholazar Basin mineral, node 81' WHERE entry=5372; UPDATE gameobject SET guid=197901 WHERE guid=120992; UPDATE pool_gameobject SET guid=197901, pool_entry=10798, description='Sholazar Basin 189981, node 81' WHERE guid=120992; UPDATE gameobject SET guid=197900 WHERE guid=120993; UPDATE pool_gameobject SET guid=197900, pool_entry=10798, description='Sholazar Basin 191133, node 81' WHERE guid=120993; UPDATE gameobject SET guid=197899 WHERE guid=120724; UPDATE pool_gameobject SET guid=197899, pool_entry=10799, description='Sholazar Basin 189980, node 82' WHERE guid=120724; UPDATE pool_pool SET pool_id=10799, description='Sholazar Basin mineral, node 82' WHERE pool_id=5373; UPDATE pool_template SET entry=10799, description='Sholazar Basin mineral, node 82' WHERE entry=5373; UPDATE gameobject SET guid=197898 WHERE guid=120994; UPDATE pool_gameobject SET guid=197898, pool_entry=10799, description='Sholazar Basin 189981, node 82' WHERE guid=120994; UPDATE gameobject SET guid=197897 WHERE guid=120995; UPDATE pool_gameobject SET guid=197897, pool_entry=10799, description='Sholazar Basin 191133, node 82' WHERE guid=120995; UPDATE gameobject SET guid=197896 WHERE guid=120729; UPDATE pool_gameobject SET guid=197896, pool_entry=10800, description='Sholazar Basin 189980, node 83' WHERE guid=120729; UPDATE pool_pool SET pool_id=10800, description='Sholazar Basin mineral, node 83' WHERE pool_id=5374; UPDATE pool_template SET entry=10800, description='Sholazar Basin mineral, node 83' WHERE entry=5374; UPDATE gameobject SET guid=197895 WHERE guid=120996; UPDATE pool_gameobject SET guid=197895, pool_entry=10800, description='Sholazar Basin 189981, node 83' WHERE guid=120996; UPDATE gameobject SET guid=197894 WHERE guid=120997; UPDATE pool_gameobject SET guid=197894, pool_entry=10800, description='Sholazar Basin 191133, node 83' WHERE guid=120997; UPDATE gameobject SET guid=197893 WHERE guid=120733; UPDATE pool_gameobject SET guid=197893, pool_entry=10801, description='Sholazar Basin 189980, node 84' WHERE guid=120733; UPDATE pool_pool SET pool_id=10801, description='Sholazar Basin mineral, node 84' WHERE pool_id=5375; UPDATE pool_template SET entry=10801, description='Sholazar Basin mineral, node 84' WHERE entry=5375; UPDATE gameobject SET guid=197892 WHERE guid=120998; UPDATE pool_gameobject SET guid=197892, pool_entry=10801, description='Sholazar Basin 189981, node 84' WHERE guid=120998; UPDATE gameobject SET guid=197891 WHERE guid=120999; UPDATE pool_gameobject SET guid=197891, pool_entry=10801, description='Sholazar Basin 191133, node 84' WHERE guid=120999; -- hellfire peninsula UPDATE gameobject SET guid=197890 WHERE guid=21808; INSERT IGNORE INTO pool_gameobject VALUES (197890,10802,0,'Hellfire Peninsula 181555, node 1'); INSERT IGNORE INTO gameobject VALUES (197889,181557,530,1,1,35.8114,1510.02,11.9322,-3.05433,0.0,0.0,0.999048,-0.043619,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197889,10802,5,'Hellfire Peninsula 181557, node 1'); INSERT IGNORE INTO pool_template VALUES (10802,1,'Hellfire Peninsula mineral, node 1'); INSERT IGNORE INTO pool_pool VALUES (10802,890,0,'Hellfire Peninsula mineral, node 1'); UPDATE gameobject SET guid=197888 WHERE guid=21809; INSERT IGNORE INTO pool_gameobject VALUES (197888,10803,0,'Hellfire Peninsula 181555, node 2'); INSERT IGNORE INTO gameobject VALUES (197887,181557,530,1,1,71.5069,1875.03,25.7916,0.541052,0.0,0.0,0.267238,0.96363,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197887,10803,5,'Hellfire Peninsula 181557, node 2'); INSERT IGNORE INTO pool_template VALUES (10803,1,'Hellfire Peninsula mineral, node 2'); INSERT IGNORE INTO pool_pool VALUES (10803,890,0,'Hellfire Peninsula mineral, node 2'); UPDATE gameobject SET guid=197886 WHERE guid=21810; INSERT IGNORE INTO pool_gameobject VALUES (197886,10804,0,'Hellfire Peninsula 181555, node 3'); INSERT IGNORE INTO gameobject VALUES (197885,181557,530,1,1,846.817,1697.77,94.5652,-1.11701,0.0,0.0,0.529919,-0.848048,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197885,10804,5,'Hellfire Peninsula 181557, node 3'); INSERT IGNORE INTO pool_template VALUES (10804,1,'Hellfire Peninsula mineral, node 3'); INSERT IGNORE INTO pool_pool VALUES (10804,890,0,'Hellfire Peninsula mineral, node 3'); UPDATE gameobject SET guid=197884 WHERE guid=21811; INSERT IGNORE INTO pool_gameobject VALUES (197884,10805,0,'Hellfire Peninsula 181555, node 4'); INSERT IGNORE INTO gameobject VALUES (197883,181557,530,1,1,684.372,2928.51,-1.69284,-2.00713,0.0,0.0,0.843391,-0.5373,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197883,10805,5,'Hellfire Peninsula 181557, node 4'); INSERT IGNORE INTO pool_template VALUES (10805,1,'Hellfire Peninsula mineral, node 4'); INSERT IGNORE INTO pool_pool VALUES (10805,890,0,'Hellfire Peninsula mineral, node 4'); UPDATE gameobject SET guid=197882 WHERE guid=21812; INSERT IGNORE INTO pool_gameobject VALUES (197882,10806,0,'Hellfire Peninsula 181555, node 5'); INSERT IGNORE INTO gameobject VALUES (197881,181557,530,1,1,486.748,2636.79,199.409,2.21657,0.0,0.0,0.894934,0.446198,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197881,10806,5,'Hellfire Peninsula 181557, node 5'); INSERT IGNORE INTO pool_template VALUES (10806,1,'Hellfire Peninsula mineral, node 5'); INSERT IGNORE INTO pool_pool VALUES (10806,890,0,'Hellfire Peninsula mineral, node 5'); UPDATE gameobject SET guid=197880 WHERE guid=21813; INSERT IGNORE INTO pool_gameobject VALUES (197880,10807,0,'Hellfire Peninsula 181555, node 6'); INSERT IGNORE INTO gameobject VALUES (197879,181557,530,1,1,453.734,3562.09,77.9733,0.663225,0.0,0.0,0.325568,0.945519,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197879,10807,5,'Hellfire Peninsula 181557, node 6'); INSERT IGNORE INTO pool_template VALUES (10807,1,'Hellfire Peninsula mineral, node 6'); INSERT IGNORE INTO pool_pool VALUES (10807,890,0,'Hellfire Peninsula mineral, node 6'); UPDATE gameobject SET guid=197878 WHERE guid=21814; INSERT IGNORE INTO pool_gameobject VALUES (197878,10808,0,'Hellfire Peninsula 181555, node 7'); INSERT IGNORE INTO gameobject VALUES (197877,181557,530,1,1,-170.001,3079.15,-51.6281,0.314159,0.0,0.0,0.156434,0.987688,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197877,10808,5,'Hellfire Peninsula 181557, node 7'); INSERT IGNORE INTO pool_template VALUES (10808,1,'Hellfire Peninsula mineral, node 7'); INSERT IGNORE INTO pool_pool VALUES (10808,890,0,'Hellfire Peninsula mineral, node 7'); UPDATE gameobject SET guid=197876 WHERE guid=21815; INSERT IGNORE INTO pool_gameobject VALUES (197876,10809,0,'Hellfire Peninsula 181555, node 8'); INSERT IGNORE INTO gameobject VALUES (197875,181557,530,1,1,-97.421,2443.52,58.8071,-1.11701,0.0,0.0,0.529919,-0.848048,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197875,10809,5,'Hellfire Peninsula 181557, node 8'); INSERT IGNORE INTO pool_template VALUES (10809,1,'Hellfire Peninsula mineral, node 8'); INSERT IGNORE INTO pool_pool VALUES (10809,890,0,'Hellfire Peninsula mineral, node 8'); UPDATE gameobject SET guid=197874 WHERE guid=21816; INSERT IGNORE INTO pool_gameobject VALUES (197874,10810,0,'Hellfire Peninsula 181555, node 9'); INSERT IGNORE INTO gameobject VALUES (197873,181557,530,1,1,-372.189,2007.9,122.962,-0.191986,0.0,0.0,0.095846,-0.995396,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197873,10810,5,'Hellfire Peninsula 181557, node 9'); INSERT IGNORE INTO pool_template VALUES (10810,1,'Hellfire Peninsula mineral, node 9'); INSERT IGNORE INTO pool_pool VALUES (10810,890,0,'Hellfire Peninsula mineral, node 9'); UPDATE gameobject SET guid=197872 WHERE guid=21817; INSERT IGNORE INTO pool_gameobject VALUES (197872,10811,0,'Hellfire Peninsula 181555, node 10'); INSERT IGNORE INTO gameobject VALUES (197871,181557,530,1,1,-1004.42,1923.72,84.3188,-1.39626,0.0,0.0,0.642788,-0.766044,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197871,10811,5,'Hellfire Peninsula 181557, node 10'); INSERT IGNORE INTO pool_template VALUES (10811,1,'Hellfire Peninsula mineral, node 10'); INSERT IGNORE INTO pool_pool VALUES (10811,890,0,'Hellfire Peninsula mineral, node 10'); UPDATE gameobject SET guid=197870 WHERE guid=21818; INSERT IGNORE INTO pool_gameobject VALUES (197870,10812,0,'Hellfire Peninsula 181555, node 11'); INSERT IGNORE INTO gameobject VALUES (197869,181557,530,1,1,-994.861,2077.79,77.3825,-0.837758,0.0,0.0,0.406737,-0.913545,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197869,10812,5,'Hellfire Peninsula 181557, node 11'); INSERT IGNORE INTO pool_template VALUES (10812,1,'Hellfire Peninsula mineral, node 11'); INSERT IGNORE INTO pool_pool VALUES (10812,890,0,'Hellfire Peninsula mineral, node 11'); UPDATE gameobject SET guid=197868 WHERE guid=21819; INSERT IGNORE INTO pool_gameobject VALUES (197868,10813,0,'Hellfire Peninsula 181555, node 12'); INSERT IGNORE INTO gameobject VALUES (197867,181557,530,1,1,-912.136,2521.64,8.66211,0.034907,0.0,0.0,0.017452,0.999848,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197867,10813,5,'Hellfire Peninsula 181557, node 12'); INSERT IGNORE INTO pool_template VALUES (10813,1,'Hellfire Peninsula mineral, node 12'); INSERT IGNORE INTO pool_pool VALUES (10813,890,0,'Hellfire Peninsula mineral, node 12'); UPDATE gameobject SET guid=197866 WHERE guid=21820; INSERT IGNORE INTO pool_gameobject VALUES (197866,10814,0,'Hellfire Peninsula 181555, node 13'); INSERT IGNORE INTO gameobject VALUES (197865,181557,530,1,1,-1469.24,2658.12,-46.0911,-0.750491,0.0,0.0,0.366501,-0.930418,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197865,10814,5,'Hellfire Peninsula 181557, node 13'); INSERT IGNORE INTO pool_template VALUES (10814,1,'Hellfire Peninsula mineral, node 13'); INSERT IGNORE INTO pool_pool VALUES (10814,890,0,'Hellfire Peninsula mineral, node 13'); UPDATE gameobject SET guid=197864 WHERE guid=21821; INSERT IGNORE INTO pool_gameobject VALUES (197864,10815,0,'Hellfire Peninsula 181555, node 14'); INSERT IGNORE INTO gameobject VALUES (197863,181557,530,1,1,-1056.87,3229.11,75.7389,2.98451,0.0,0.0,0.996917,0.078459,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197863,10815,5,'Hellfire Peninsula 181557, node 14'); INSERT IGNORE INTO pool_template VALUES (10815,1,'Hellfire Peninsula mineral, node 14'); INSERT IGNORE INTO pool_pool VALUES (10815,890,0,'Hellfire Peninsula mineral, node 14'); UPDATE gameobject SET guid=197862 WHERE guid=21822; INSERT IGNORE INTO pool_gameobject VALUES (197862,10816,0,'Hellfire Peninsula 181555, node 15'); INSERT IGNORE INTO gameobject VALUES (197861,181557,530,1,1,-642.903,3184.15,-6.42613,-1.55334,0.0,0.0,0.700909,-0.71325,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197861,10816,5,'Hellfire Peninsula 181557, node 15'); INSERT IGNORE INTO pool_template VALUES (10816,1,'Hellfire Peninsula mineral, node 15'); INSERT IGNORE INTO pool_pool VALUES (10816,890,0,'Hellfire Peninsula mineral, node 15'); UPDATE gameobject SET guid=197860 WHERE guid=21823; INSERT IGNORE INTO pool_gameobject VALUES (197860,10817,0,'Hellfire Peninsula 181555, node 16'); INSERT IGNORE INTO gameobject VALUES (197859,181557,530,1,1,-1489.38,3236.96,-1.36448,-2.35619,0.0,0.0,0.92388,-0.382683,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197859,10817,5,'Hellfire Peninsula 181557, node 16'); INSERT IGNORE INTO pool_template VALUES (10817,1,'Hellfire Peninsula mineral, node 16'); INSERT IGNORE INTO pool_pool VALUES (10817,890,0,'Hellfire Peninsula mineral, node 16'); UPDATE gameobject SET guid=197858 WHERE guid=21824; INSERT IGNORE INTO pool_gameobject VALUES (197858,10818,0,'Hellfire Peninsula 181555, node 17'); INSERT IGNORE INTO gameobject VALUES (197857,181557,530,1,1,-1290.38,3447.43,105.181,0.925024,0.0,0.0,0.446198,0.894934,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197857,10818,5,'Hellfire Peninsula 181557, node 17'); INSERT IGNORE INTO pool_template VALUES (10818,1,'Hellfire Peninsula mineral, node 17'); INSERT IGNORE INTO pool_pool VALUES (10818,890,0,'Hellfire Peninsula mineral, node 17'); UPDATE gameobject SET guid=197856 WHERE guid=21825; INSERT IGNORE INTO pool_gameobject VALUES (197856,10819,0,'Hellfire Peninsula 181555, node 18'); INSERT IGNORE INTO gameobject VALUES (197855,181557,530,1,1,-840.698,3780.89,117.857,2.94961,0.0,0.0,0.995396,0.095846,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197855,10819,5,'Hellfire Peninsula 181557, node 18'); INSERT IGNORE INTO pool_template VALUES (10819,1,'Hellfire Peninsula mineral, node 18'); INSERT IGNORE INTO pool_pool VALUES (10819,890,0,'Hellfire Peninsula mineral, node 18'); UPDATE gameobject SET guid=197854 WHERE guid=21826; INSERT IGNORE INTO pool_gameobject VALUES (197854,10820,0,'Hellfire Peninsula 181555, node 19'); INSERT IGNORE INTO gameobject VALUES (197853,181557,530,1,1,-1088.02,3965.44,116.197,-1.85005,0.0,0.0,0.798635,-0.601815,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197853,10820,5,'Hellfire Peninsula 181557, node 19'); INSERT IGNORE INTO pool_template VALUES (10820,1,'Hellfire Peninsula mineral, node 19'); INSERT IGNORE INTO pool_pool VALUES (10820,890,0,'Hellfire Peninsula mineral, node 19'); UPDATE gameobject SET guid=197852 WHERE guid=21827; INSERT IGNORE INTO pool_gameobject VALUES (197852,10821,0,'Hellfire Peninsula 181555, node 20'); INSERT IGNORE INTO gameobject VALUES (197851,181557,530,1,1,-514.151,4473.57,74.0788,-1.91986,0.0,0.0,0.819152,-0.573576,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197851,10821,5,'Hellfire Peninsula 181557, node 20'); INSERT IGNORE INTO pool_template VALUES (10821,1,'Hellfire Peninsula mineral, node 20'); INSERT IGNORE INTO pool_pool VALUES (10821,890,0,'Hellfire Peninsula mineral, node 20'); UPDATE gameobject SET guid=197850 WHERE guid=21828; INSERT IGNORE INTO pool_gameobject VALUES (197850,10822,0,'Hellfire Peninsula 181555, node 21'); INSERT IGNORE INTO gameobject VALUES (197849,181557,530,1,1,-763.271,4718.29,65.6994,-2.11185,0.0,0.0,0.870356,-0.492423,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197849,10822,5,'Hellfire Peninsula 181557, node 21'); INSERT IGNORE INTO pool_template VALUES (10822,1,'Hellfire Peninsula mineral, node 21'); INSERT IGNORE INTO pool_pool VALUES (10822,890,0,'Hellfire Peninsula mineral, node 21'); UPDATE gameobject SET guid=197848 WHERE guid=21829; INSERT IGNORE INTO pool_gameobject VALUES (197848,10823,0,'Hellfire Peninsula 181555, node 22'); INSERT IGNORE INTO gameobject VALUES (197847,181557,530,1,1,176.224,4608.78,88.3603,-2.28638,0.0,0.0,0.909961,-0.414693,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197847,10823,5,'Hellfire Peninsula 181557, node 22'); INSERT IGNORE INTO pool_template VALUES (10823,1,'Hellfire Peninsula mineral, node 22'); INSERT IGNORE INTO pool_pool VALUES (10823,890,0,'Hellfire Peninsula mineral, node 22'); UPDATE gameobject SET guid=197846 WHERE guid=21830; INSERT IGNORE INTO pool_gameobject VALUES (197846,10824,0,'Hellfire Peninsula 181555, node 23'); INSERT IGNORE INTO gameobject VALUES (197845,181557,530,1,1,-92.7197,4380.6,88.1121,-0.331612,0.0,0.0,0.165048,-0.986286,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197845,10824,5,'Hellfire Peninsula 181557, node 23'); INSERT IGNORE INTO pool_template VALUES (10824,1,'Hellfire Peninsula mineral, node 23'); INSERT IGNORE INTO pool_pool VALUES (10824,890,0,'Hellfire Peninsula mineral, node 23'); UPDATE gameobject SET guid=197844 WHERE guid=21831; INSERT IGNORE INTO pool_gameobject VALUES (197844,10825,0,'Hellfire Peninsula 181555, node 24'); INSERT IGNORE INTO gameobject VALUES (197843,181557,530,1,1,-84.5799,4172.64,84.7877,1.48353,0.0,0.0,0.67559,0.737277,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197843,10825,5,'Hellfire Peninsula 181557, node 24'); INSERT IGNORE INTO pool_template VALUES (10825,1,'Hellfire Peninsula mineral, node 24'); INSERT IGNORE INTO pool_pool VALUES (10825,890,0,'Hellfire Peninsula mineral, node 24'); UPDATE gameobject SET guid=197842 WHERE guid=21832; INSERT IGNORE INTO pool_gameobject VALUES (197842,10826,0,'Hellfire Peninsula 181555, node 25'); INSERT IGNORE INTO gameobject VALUES (197841,181557,530,1,1,195.93,4159.71,78.0884,-2.75762,0.0,0.0,0.981627,-0.190809,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197841,10826,5,'Hellfire Peninsula 181557, node 25'); INSERT IGNORE INTO pool_template VALUES (10826,1,'Hellfire Peninsula mineral, node 25'); INSERT IGNORE INTO pool_pool VALUES (10826,890,0,'Hellfire Peninsula mineral, node 25'); UPDATE gameobject SET guid=197840 WHERE guid=21833; INSERT IGNORE INTO pool_gameobject VALUES (197840,10827,0,'Hellfire Peninsula 181555, node 26'); INSERT IGNORE INTO gameobject VALUES (197839,181557,530,1,1,301.659,3365.49,106.916,2.96706,0.0,0.0,0.996195,0.087156,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197839,10827,5,'Hellfire Peninsula 181557, node 26'); INSERT IGNORE INTO pool_template VALUES (10827,1,'Hellfire Peninsula mineral, node 26'); INSERT IGNORE INTO pool_pool VALUES (10827,890,0,'Hellfire Peninsula mineral, node 26'); UPDATE gameobject SET guid=197838 WHERE guid=28172; INSERT IGNORE INTO pool_gameobject VALUES (197838,10828,0,'Hellfire Peninsula 181555, node 27'); INSERT IGNORE INTO gameobject VALUES (197837,181557,530,1,1,352.205,2258.47,118.163,-0.610864,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197837,10828,5,'Hellfire Peninsula 181557, node 27'); INSERT IGNORE INTO pool_template VALUES (10828,1,'Hellfire Peninsula mineral, node 27'); INSERT IGNORE INTO pool_pool VALUES (10828,890,0,'Hellfire Peninsula mineral, node 27'); UPDATE gameobject SET guid=197836 WHERE guid=28174; INSERT IGNORE INTO pool_gameobject VALUES (197836,10829,0,'Hellfire Peninsula 181555, node 28'); INSERT IGNORE INTO gameobject VALUES (197835,181557,530,1,1,-1105.91,1957.07,75.8204,-2.54818,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197835,10829,5,'Hellfire Peninsula 181557, node 28'); INSERT IGNORE INTO pool_template VALUES (10829,1,'Hellfire Peninsula mineral, node 28'); INSERT IGNORE INTO pool_pool VALUES (10829,890,0,'Hellfire Peninsula mineral, node 28'); UPDATE gameobject SET guid=197834 WHERE guid=28175; INSERT IGNORE INTO pool_gameobject VALUES (197834,10830,0,'Hellfire Peninsula 181555, node 29'); INSERT IGNORE INTO gameobject VALUES (197833,181557,530,1,1,-594.649,1784.18,72.2885,2.80997,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197833,10830,5,'Hellfire Peninsula 181557, node 29'); INSERT IGNORE INTO pool_template VALUES (10830,1,'Hellfire Peninsula mineral, node 29'); INSERT IGNORE INTO pool_pool VALUES (10830,890,0,'Hellfire Peninsula mineral, node 29'); UPDATE gameobject SET guid=197832 WHERE guid=28192; INSERT IGNORE INTO pool_gameobject VALUES (197832,10831,0,'Hellfire Peninsula 181555, node 30'); INSERT IGNORE INTO gameobject VALUES (197831,181557,530,1,1,-468.838,3271.93,4.38121,-1.23918,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197831,10831,5,'Hellfire Peninsula 181557, node 30'); INSERT IGNORE INTO pool_template VALUES (10831,1,'Hellfire Peninsula mineral, node 30'); INSERT IGNORE INTO pool_pool VALUES (10831,890,0,'Hellfire Peninsula mineral, node 30'); UPDATE gameobject SET guid=197830 WHERE guid=28193; INSERT IGNORE INTO pool_gameobject VALUES (197830,10832,0,'Hellfire Peninsula 181555, node 31'); INSERT IGNORE INTO gameobject VALUES (197829,181557,530,1,1,-1066.6,3233.53,70.4624,2.9845,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197829,10832,5,'Hellfire Peninsula 181557, node 31'); INSERT IGNORE INTO pool_template VALUES (10832,1,'Hellfire Peninsula mineral, node 31'); INSERT IGNORE INTO pool_pool VALUES (10832,890,0,'Hellfire Peninsula mineral, node 31'); UPDATE gameobject SET guid=197828 WHERE guid=28200; INSERT IGNORE INTO pool_gameobject VALUES (197828,10833,0,'Hellfire Peninsula 181555, node 32'); INSERT IGNORE INTO gameobject VALUES (197827,181557,530,1,1,236.291,3814.8,178.586,0.994837,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197827,10833,5,'Hellfire Peninsula 181557, node 32'); INSERT IGNORE INTO pool_template VALUES (10833,1,'Hellfire Peninsula mineral, node 32'); INSERT IGNORE INTO pool_pool VALUES (10833,890,0,'Hellfire Peninsula mineral, node 32'); UPDATE gameobject SET guid=197826 WHERE guid=28207; INSERT IGNORE INTO pool_gameobject VALUES (197826,10834,0,'Hellfire Peninsula 181555, node 33'); INSERT IGNORE INTO gameobject VALUES (197825,181557,530,1,1,366.617,3584.06,180.03,-2.75761,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197825,10834,5,'Hellfire Peninsula 181557, node 33'); INSERT IGNORE INTO pool_template VALUES (10834,1,'Hellfire Peninsula mineral, node 33'); INSERT IGNORE INTO pool_pool VALUES (10834,890,0,'Hellfire Peninsula mineral, node 33'); UPDATE gameobject SET guid=197824 WHERE guid=28209; INSERT IGNORE INTO pool_gameobject VALUES (197824,10835,0,'Hellfire Peninsula 181555, node 34'); INSERT IGNORE INTO gameobject VALUES (197823,181557,530,1,1,-1030.89,4182.99,20.1927,1.37881,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197823,10835,5,'Hellfire Peninsula 181557, node 34'); INSERT IGNORE INTO pool_template VALUES (10835,1,'Hellfire Peninsula mineral, node 34'); INSERT IGNORE INTO pool_pool VALUES (10835,890,0,'Hellfire Peninsula mineral, node 34'); UPDATE gameobject SET guid=197822 WHERE guid=28236; INSERT IGNORE INTO pool_gameobject VALUES (197822,10836,0,'Hellfire Peninsula 181555, node 35'); INSERT IGNORE INTO gameobject VALUES (197821,181557,530,1,1,-910.944,4111.33,33.2484,-1.83259,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197821,10836,5,'Hellfire Peninsula 181557, node 35'); INSERT IGNORE INTO pool_template VALUES (10836,1,'Hellfire Peninsula mineral, node 35'); INSERT IGNORE INTO pool_pool VALUES (10836,890,0,'Hellfire Peninsula mineral, node 35'); UPDATE gameobject SET guid=197820 WHERE guid=28239; INSERT IGNORE INTO pool_gameobject VALUES (197820,10837,0,'Hellfire Peninsula 181555, node 36'); INSERT IGNORE INTO gameobject VALUES (197819,181557,530,1,1,-753.61,3665.93,27.7752,-2.53072,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197819,10837,5,'Hellfire Peninsula 181557, node 36'); INSERT IGNORE INTO pool_template VALUES (10837,1,'Hellfire Peninsula mineral, node 36'); INSERT IGNORE INTO pool_pool VALUES (10837,890,0,'Hellfire Peninsula mineral, node 36'); UPDATE gameobject SET guid=197818 WHERE guid=28243; INSERT IGNORE INTO pool_gameobject VALUES (197818,10838,0,'Hellfire Peninsula 181555, node 37'); INSERT IGNORE INTO gameobject VALUES (197817,181557,530,1,1,75.5394,3693.81,191.735,-0.680679,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197817,10838,5,'Hellfire Peninsula 181557, node 37'); INSERT IGNORE INTO pool_template VALUES (10838,1,'Hellfire Peninsula mineral, node 37'); INSERT IGNORE INTO pool_pool VALUES (10838,890,0,'Hellfire Peninsula mineral, node 37'); UPDATE gameobject SET guid=197816 WHERE guid=28246; INSERT IGNORE INTO pool_gameobject VALUES (197816,10839,0,'Hellfire Peninsula 181555, node 38'); INSERT IGNORE INTO gameobject VALUES (197815,181557,530,1,1,322.034,3308.49,74.2656,-1.13446,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197815,10839,5,'Hellfire Peninsula 181557, node 38'); INSERT IGNORE INTO pool_template VALUES (10839,1,'Hellfire Peninsula mineral, node 38'); INSERT IGNORE INTO pool_pool VALUES (10839,890,0,'Hellfire Peninsula mineral, node 38'); UPDATE gameobject SET guid=197814 WHERE guid=28247; INSERT IGNORE INTO pool_gameobject VALUES (197814,10840,0,'Hellfire Peninsula 181555, node 39'); INSERT IGNORE INTO gameobject VALUES (197813,181557,530,1,1,-814.557,3741.09,121.685,2.94959,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197813,10840,5,'Hellfire Peninsula 181557, node 39'); INSERT IGNORE INTO pool_template VALUES (10840,1,'Hellfire Peninsula mineral, node 39'); INSERT IGNORE INTO pool_pool VALUES (10840,890,0,'Hellfire Peninsula mineral, node 39'); UPDATE gameobject SET guid=197812 WHERE guid=28258; INSERT IGNORE INTO pool_gameobject VALUES (197812,10841,0,'Hellfire Peninsula 181555, node 40'); INSERT IGNORE INTO gameobject VALUES (197811,181557,530,1,1,-1376.3,3215.31,28.4537,0.925024,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197811,10841,5,'Hellfire Peninsula 181557, node 40'); INSERT IGNORE INTO pool_template VALUES (10841,1,'Hellfire Peninsula mineral, node 40'); INSERT IGNORE INTO pool_pool VALUES (10841,890,0,'Hellfire Peninsula mineral, node 40'); UPDATE gameobject SET guid=197810 WHERE guid=28260; INSERT IGNORE INTO pool_gameobject VALUES (197810,10842,0,'Hellfire Peninsula 181555, node 41'); INSERT IGNORE INTO gameobject VALUES (197809,181557,530,1,1,-519.61,2812.36,55.9804,-2.94959,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197809,10842,5,'Hellfire Peninsula 181557, node 41'); INSERT IGNORE INTO pool_template VALUES (10842,1,'Hellfire Peninsula mineral, node 41'); INSERT IGNORE INTO pool_pool VALUES (10842,890,0,'Hellfire Peninsula mineral, node 41'); UPDATE gameobject SET guid=197808 WHERE guid=29689; INSERT IGNORE INTO pool_gameobject VALUES (197808,10843,0,'Hellfire Peninsula 181555, node 42'); INSERT IGNORE INTO gameobject VALUES (197807,181557,530,1,1,-148.203,1962.83,91.9927,0.418879,0.0,0.0,0.207912,0.978148,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197807,10843,5,'Hellfire Peninsula 181557, node 42'); INSERT IGNORE INTO pool_template VALUES (10843,1,'Hellfire Peninsula mineral, node 42'); INSERT IGNORE INTO pool_pool VALUES (10843,890,0,'Hellfire Peninsula mineral, node 42'); UPDATE gameobject SET guid=197806 WHERE guid=29694; INSERT IGNORE INTO pool_gameobject VALUES (197806,10844,0,'Hellfire Peninsula 181555, node 43'); INSERT IGNORE INTO gameobject VALUES (197805,181557,530,1,1,-267.064,2371.33,49.6327,0.174533,0.0,0.0,0.087156,0.996195,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197805,10844,5,'Hellfire Peninsula 181557, node 43'); INSERT IGNORE INTO pool_template VALUES (10844,1,'Hellfire Peninsula mineral, node 43'); INSERT IGNORE INTO pool_pool VALUES (10844,890,0,'Hellfire Peninsula mineral, node 43'); UPDATE gameobject SET guid=197804 WHERE guid=29706; INSERT IGNORE INTO pool_gameobject VALUES (197804,10845,0,'Hellfire Peninsula 181555, node 44'); INSERT IGNORE INTO gameobject VALUES (197803,181557,530,1,1,-170.062,2540.67,41.5899,-0.925024,0.0,0.0,0.446198,-0.894934,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197803,10845,5,'Hellfire Peninsula 181557, node 44'); INSERT IGNORE INTO pool_template VALUES (10845,1,'Hellfire Peninsula mineral, node 44'); INSERT IGNORE INTO pool_pool VALUES (10845,890,0,'Hellfire Peninsula mineral, node 44'); UPDATE gameobject SET guid=197802 WHERE guid=29709; INSERT IGNORE INTO pool_gameobject VALUES (197802,10846,0,'Hellfire Peninsula 181555, node 45'); INSERT IGNORE INTO gameobject VALUES (197801,181557,530,1,1,-214.828,2699.99,-10.8825,-0.069813,0.0,0.0,0.034899,-0.999391,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197801,10846,5,'Hellfire Peninsula 181557, node 45'); INSERT IGNORE INTO pool_template VALUES (10846,1,'Hellfire Peninsula mineral, node 45'); INSERT IGNORE INTO pool_pool VALUES (10846,890,0,'Hellfire Peninsula mineral, node 45'); UPDATE gameobject SET guid=197800 WHERE guid=29718; INSERT IGNORE INTO pool_gameobject VALUES (197800,10847,0,'Hellfire Peninsula 181555, node 46'); INSERT IGNORE INTO gameobject VALUES (197799,181557,530,1,1,-675.133,3437.08,67.9027,0.680678,0.0,0.0,0.333807,0.942641,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197799,10847,5,'Hellfire Peninsula 181557, node 46'); INSERT IGNORE INTO pool_template VALUES (10847,1,'Hellfire Peninsula mineral, node 46'); INSERT IGNORE INTO pool_pool VALUES (10847,890,0,'Hellfire Peninsula mineral, node 46'); UPDATE gameobject SET guid=197798 WHERE guid=32145; INSERT IGNORE INTO pool_gameobject VALUES (197798,10848,0,'Hellfire Peninsula 181555, node 47'); INSERT IGNORE INTO gameobject VALUES (197797,181557,530,1,1,-1453.24,2675.74,-40.0814,-0.750491,0.0,0.0,0.366501,-0.930418,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197797,10848,5,'Hellfire Peninsula 181557, node 47'); INSERT IGNORE INTO pool_template VALUES (10848,1,'Hellfire Peninsula mineral, node 47'); INSERT IGNORE INTO pool_pool VALUES (10848,890,0,'Hellfire Peninsula mineral, node 47'); UPDATE gameobject SET guid=197796 WHERE guid=32306; INSERT IGNORE INTO pool_gameobject VALUES (197796,10849,0,'Hellfire Peninsula 181555, node 48'); INSERT IGNORE INTO gameobject VALUES (197795,181557,530,1,1,-1702.56,3742.07,54.5829,0.349066,0.0,0.0,0.173648,0.984808,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197795,10849,5,'Hellfire Peninsula 181557, node 48'); INSERT IGNORE INTO pool_template VALUES (10849,1,'Hellfire Peninsula mineral, node 48'); INSERT IGNORE INTO pool_pool VALUES (10849,890,0,'Hellfire Peninsula mineral, node 48'); UPDATE gameobject SET guid=197794 WHERE guid=40633; INSERT IGNORE INTO pool_gameobject VALUES (197794,10850,0,'Hellfire Peninsula 181555, node 49'); INSERT IGNORE INTO gameobject VALUES (197793,181557,530,1,1,-798.499,2315.52,-11.1225,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197793,10850,5,'Hellfire Peninsula 181557, node 49'); INSERT IGNORE INTO pool_template VALUES (10850,1,'Hellfire Peninsula mineral, node 49'); INSERT IGNORE INTO pool_pool VALUES (10850,890,0,'Hellfire Peninsula mineral, node 49'); UPDATE gameobject SET guid=197792 WHERE guid=40634; INSERT IGNORE INTO pool_gameobject VALUES (197792,10851,0,'Hellfire Peninsula 181555, node 50'); INSERT IGNORE INTO gameobject VALUES (197791,181557,530,1,1,-1170.41,2494.74,37.2116,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197791,10851,5,'Hellfire Peninsula 181557, node 50'); INSERT IGNORE INTO pool_template VALUES (10851,1,'Hellfire Peninsula mineral, node 50'); INSERT IGNORE INTO pool_pool VALUES (10851,890,0,'Hellfire Peninsula mineral, node 50'); UPDATE gameobject SET guid=197790 WHERE guid=40635; INSERT IGNORE INTO pool_gameobject VALUES (197790,10852,0,'Hellfire Peninsula 181555, node 51'); INSERT IGNORE INTO gameobject VALUES (197789,181557,530,1,1,-1410.3,3094.17,8.24394,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197789,10852,5,'Hellfire Peninsula 181557, node 51'); INSERT IGNORE INTO pool_template VALUES (10852,1,'Hellfire Peninsula mineral, node 51'); INSERT IGNORE INTO pool_pool VALUES (10852,890,0,'Hellfire Peninsula mineral, node 51'); UPDATE gameobject SET guid=197788 WHERE guid=40636; INSERT IGNORE INTO pool_gameobject VALUES (197788,10853,0,'Hellfire Peninsula 181555, node 52'); INSERT IGNORE INTO gameobject VALUES (197787,181557,530,1,1,-749.226,4464.4,110.291,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197787,10853,5,'Hellfire Peninsula 181557, node 52'); INSERT IGNORE INTO pool_template VALUES (10853,1,'Hellfire Peninsula mineral, node 52'); INSERT IGNORE INTO pool_pool VALUES (10853,890,0,'Hellfire Peninsula mineral, node 52'); UPDATE gameobject SET guid=197786 WHERE guid=40637; INSERT IGNORE INTO pool_gameobject VALUES (197786,10854,0,'Hellfire Peninsula 181555, node 53'); INSERT IGNORE INTO gameobject VALUES (197785,181557,530,1,1,451.589,2441.34,152.362,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197785,10854,5,'Hellfire Peninsula 181557, node 53'); INSERT IGNORE INTO pool_template VALUES (10854,1,'Hellfire Peninsula mineral, node 53'); INSERT IGNORE INTO pool_pool VALUES (10854,890,0,'Hellfire Peninsula mineral, node 53'); UPDATE gameobject SET guid=197784 WHERE guid=40638; INSERT IGNORE INTO pool_gameobject VALUES (197784,10855,0,'Hellfire Peninsula 181555, node 54'); INSERT IGNORE INTO gameobject VALUES (197783,181557,530,1,1,-1127.64,2156.77,65.0926,3.00195,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197783,10855,5,'Hellfire Peninsula 181557, node 54'); INSERT IGNORE INTO pool_template VALUES (10855,1,'Hellfire Peninsula mineral, node 54'); INSERT IGNORE INTO pool_pool VALUES (10855,890,0,'Hellfire Peninsula mineral, node 54'); UPDATE gameobject SET guid=197782 WHERE guid=40639; INSERT IGNORE INTO pool_gameobject VALUES (197782,10856,0,'Hellfire Peninsula 181555, node 55'); INSERT IGNORE INTO gameobject VALUES (197781,181557,530,1,1,-949.871,3717.0,99.3738,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197781,10856,5,'Hellfire Peninsula 181557, node 55'); INSERT IGNORE INTO pool_template VALUES (10856,1,'Hellfire Peninsula mineral, node 55'); INSERT IGNORE INTO pool_pool VALUES (10856,890,0,'Hellfire Peninsula mineral, node 55'); UPDATE gameobject SET guid=197780 WHERE guid=40640; INSERT IGNORE INTO pool_gameobject VALUES (197780,10857,0,'Hellfire Peninsula 181555, node 56'); INSERT IGNORE INTO gameobject VALUES (197779,181557,530,1,1,-988.333,4091.49,84.6538,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197779,10857,5,'Hellfire Peninsula 181557, node 56'); INSERT IGNORE INTO pool_template VALUES (10857,1,'Hellfire Peninsula mineral, node 56'); INSERT IGNORE INTO pool_pool VALUES (10857,890,0,'Hellfire Peninsula mineral, node 56'); UPDATE gameobject SET guid=197778 WHERE guid=40641; INSERT IGNORE INTO pool_gameobject VALUES (197778,10858,0,'Hellfire Peninsula 181555, node 57'); INSERT IGNORE INTO gameobject VALUES (197777,181557,530,1,1,-926.982,2876.58,3.51087,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197777,10858,5,'Hellfire Peninsula 181557, node 57'); INSERT IGNORE INTO pool_template VALUES (10858,1,'Hellfire Peninsula mineral, node 57'); INSERT IGNORE INTO pool_pool VALUES (10858,890,0,'Hellfire Peninsula mineral, node 57'); UPDATE gameobject SET guid=197776 WHERE guid=40642; INSERT IGNORE INTO pool_gameobject VALUES (197776,10859,0,'Hellfire Peninsula 181555, node 58'); INSERT IGNORE INTO gameobject VALUES (197775,181557,530,1,1,-1471.08,3569.43,58.4823,-0.174532,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197775,10859,5,'Hellfire Peninsula 181557, node 58'); INSERT IGNORE INTO pool_template VALUES (10859,1,'Hellfire Peninsula mineral, node 58'); INSERT IGNORE INTO pool_pool VALUES (10859,890,0,'Hellfire Peninsula mineral, node 58'); UPDATE gameobject SET guid=197774 WHERE guid=40643; INSERT IGNORE INTO pool_gameobject VALUES (197774,10860,0,'Hellfire Peninsula 181555, node 59'); INSERT IGNORE INTO gameobject VALUES (197773,181557,530,1,1,-361.643,1726.9,56.4336,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197773,10860,5,'Hellfire Peninsula 181557, node 59'); INSERT IGNORE INTO pool_template VALUES (10860,1,'Hellfire Peninsula mineral, node 59'); INSERT IGNORE INTO pool_pool VALUES (10860,890,0,'Hellfire Peninsula mineral, node 59'); UPDATE gameobject SET guid=197772 WHERE guid=40644; INSERT IGNORE INTO pool_gameobject VALUES (197772,10861,0,'Hellfire Peninsula 181555, node 60'); INSERT IGNORE INTO gameobject VALUES (197771,181557,530,1,1,-349.353,4210.17,112.101,0.0,0.0,0.0,0.0,0.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197771,10861,5,'Hellfire Peninsula 181557, node 60'); INSERT IGNORE INTO pool_template VALUES (10861,1,'Hellfire Peninsula mineral, node 60'); INSERT IGNORE INTO pool_pool VALUES (10861,890,0,'Hellfire Peninsula mineral, node 60'); UPDATE gameobject SET guid=197770 WHERE guid=42249; INSERT IGNORE INTO pool_gameobject VALUES (197770,10862,0,'Hellfire Peninsula 181555, node 61'); INSERT IGNORE INTO gameobject VALUES (197769,181557,530,1,1,-1135.22,2537.35,49.9528,1.5708,0.0,0.0,0.707107,0.707107,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197769,10862,5,'Hellfire Peninsula 181557, node 61'); INSERT IGNORE INTO pool_template VALUES (10862,1,'Hellfire Peninsula mineral, node 61'); INSERT IGNORE INTO pool_pool VALUES (10862,890,0,'Hellfire Peninsula mineral, node 61'); UPDATE gameobject SET guid=197768 WHERE guid=42250; INSERT IGNORE INTO pool_gameobject VALUES (197768,10863,0,'Hellfire Peninsula 181555, node 62'); INSERT IGNORE INTO gameobject VALUES (197767,181557,530,1,1,505.107,2192.62,138.863,1.51844,0.0,0.0,0.688355,0.725374,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197767,10863,5,'Hellfire Peninsula 181557, node 62'); INSERT IGNORE INTO pool_template VALUES (10863,1,'Hellfire Peninsula mineral, node 62'); INSERT IGNORE INTO pool_pool VALUES (10863,890,0,'Hellfire Peninsula mineral, node 62'); UPDATE gameobject SET guid=197766 WHERE guid=42251; INSERT IGNORE INTO pool_gameobject VALUES (197766,10864,0,'Hellfire Peninsula 181555, node 63'); INSERT IGNORE INTO gameobject VALUES (197765,181557,530,1,1,-1371.16,2673.7,-17.1434,2.40855,0.0,0.0,0.93358,0.358368,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197765,10864,5,'Hellfire Peninsula 181557, node 63'); INSERT IGNORE INTO pool_template VALUES (10864,1,'Hellfire Peninsula mineral, node 63'); INSERT IGNORE INTO pool_pool VALUES (10864,890,0,'Hellfire Peninsula mineral, node 63'); UPDATE gameobject SET guid=197764 WHERE guid=42253; INSERT IGNORE INTO pool_gameobject VALUES (197764,10865,0,'Hellfire Peninsula 181555, node 64'); INSERT IGNORE INTO gameobject VALUES (197763,181557,530,1,1,163.453,4610.03,75.9506,-2.28638,0.0,0.0,0.909961,-0.414693,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197763,10865,5,'Hellfire Peninsula 181557, node 64'); INSERT IGNORE INTO pool_template VALUES (10865,1,'Hellfire Peninsula mineral, node 64'); INSERT IGNORE INTO pool_pool VALUES (10865,890,0,'Hellfire Peninsula mineral, node 64'); UPDATE gameobject SET guid=197762 WHERE guid=42270; INSERT IGNORE INTO pool_gameobject VALUES (197762,10866,0,'Hellfire Peninsula 181555, node 65'); INSERT IGNORE INTO gameobject VALUES (197761,181557,530,1,1,351.625,2546.32,159.208,-1.3439,0.0,0.0,0.622515,-0.782608,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197761,10866,5,'Hellfire Peninsula 181557, node 65'); INSERT IGNORE INTO pool_template VALUES (10866,1,'Hellfire Peninsula mineral, node 65'); INSERT IGNORE INTO pool_pool VALUES (10866,890,0,'Hellfire Peninsula mineral, node 65'); UPDATE gameobject SET guid=197760 WHERE guid=42271; INSERT IGNORE INTO pool_gameobject VALUES (197760,10867,0,'Hellfire Peninsula 181555, node 66'); INSERT IGNORE INTO gameobject VALUES (197759,181557,530,1,1,-1192.43,1989.05,75.0078,-1.79769,0.0,0.0,0.782608,-0.622515,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197759,10867,5,'Hellfire Peninsula 181557, node 66'); INSERT IGNORE INTO pool_template VALUES (10867,1,'Hellfire Peninsula mineral, node 66'); INSERT IGNORE INTO pool_pool VALUES (10867,890,0,'Hellfire Peninsula mineral, node 66'); UPDATE gameobject SET guid=197758 WHERE guid=42272; INSERT IGNORE INTO pool_gameobject VALUES (197758,10868,0,'Hellfire Peninsula 181555, node 67'); INSERT IGNORE INTO gameobject VALUES (197757,181557,530,1,1,491.518,2682.46,202.798,2.21657,0.0,0.0,0.894934,0.446198,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197757,10868,5,'Hellfire Peninsula 181557, node 67'); INSERT IGNORE INTO pool_template VALUES (10868,1,'Hellfire Peninsula mineral, node 67'); INSERT IGNORE INTO pool_pool VALUES (10868,890,0,'Hellfire Peninsula mineral, node 67'); UPDATE gameobject SET guid=197756 WHERE guid=42273; INSERT IGNORE INTO pool_gameobject VALUES (197756,10869,0,'Hellfire Peninsula 181555, node 68'); INSERT IGNORE INTO gameobject VALUES (197755,181557,530,1,1,-1563.11,3718.51,48.5127,0.191986,0.0,0.0,0.095846,0.995396,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197755,10869,5,'Hellfire Peninsula 181557, node 68'); INSERT IGNORE INTO pool_template VALUES (10869,1,'Hellfire Peninsula mineral, node 68'); INSERT IGNORE INTO pool_pool VALUES (10869,890,0,'Hellfire Peninsula mineral, node 68'); UPDATE gameobject SET guid=197754 WHERE guid=42275; INSERT IGNORE INTO pool_gameobject VALUES (197754,10870,0,'Hellfire Peninsula 181555, node 69'); INSERT IGNORE INTO gameobject VALUES (197753,181557,530,1,1,77.0349,4748.08,67.3427,-0.10472,0.0,0.0,0.052336,-0.99863,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197753,10870,5,'Hellfire Peninsula 181557, node 69'); INSERT IGNORE INTO pool_template VALUES (10870,1,'Hellfire Peninsula mineral, node 69'); INSERT IGNORE INTO pool_pool VALUES (10870,890,0,'Hellfire Peninsula mineral, node 69'); UPDATE gameobject SET guid=197752 WHERE guid=42276; INSERT IGNORE INTO pool_gameobject VALUES (197752,10871,0,'Hellfire Peninsula 181555, node 70'); INSERT IGNORE INTO gameobject VALUES (197751,181557,530,1,1,-234.318,3815.57,85.8281,-2.09439,0.0,0.0,0.866025,-0.5,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197751,10871,5,'Hellfire Peninsula 181557, node 70'); INSERT IGNORE INTO pool_template VALUES (10871,1,'Hellfire Peninsula mineral, node 70'); INSERT IGNORE INTO pool_pool VALUES (10871,890,0,'Hellfire Peninsula mineral, node 70'); UPDATE gameobject SET guid=197750 WHERE guid=42277; INSERT IGNORE INTO pool_gameobject VALUES (197750,10872,0,'Hellfire Peninsula 181555, node 71'); INSERT IGNORE INTO gameobject VALUES (197749,181557,530,1,1,-311.072,2011.39,115.527,-0.191986,0.0,0.0,0.095846,-0.995396,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197749,10872,5,'Hellfire Peninsula 181557, node 71'); INSERT IGNORE INTO pool_template VALUES (10872,1,'Hellfire Peninsula mineral, node 71'); INSERT IGNORE INTO pool_pool VALUES (10872,890,0,'Hellfire Peninsula mineral, node 71'); UPDATE gameobject SET guid=197748 WHERE guid=42278; INSERT IGNORE INTO pool_gameobject VALUES (197748,10873,0,'Hellfire Peninsula 181555, node 72'); INSERT IGNORE INTO gameobject VALUES (197747,181557,530,1,1,-355.414,3593.26,16.1905,-2.58309,0.0,0.0,0.961262,-0.275637,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197747,10873,5,'Hellfire Peninsula 181557, node 72'); INSERT IGNORE INTO pool_template VALUES (10873,1,'Hellfire Peninsula mineral, node 72'); INSERT IGNORE INTO pool_pool VALUES (10873,890,0,'Hellfire Peninsula mineral, node 72'); UPDATE gameobject SET guid=197746 WHERE guid=42279; INSERT IGNORE INTO pool_gameobject VALUES (197746,10874,0,'Hellfire Peninsula 181555, node 73'); INSERT IGNORE INTO gameobject VALUES (197745,181557,530,1,1,-83.9682,2036.0,97.9171,-2.46091,0.0,0.0,0.942641,-0.333807,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197745,10874,5,'Hellfire Peninsula 181557, node 73'); INSERT IGNORE INTO pool_template VALUES (10874,1,'Hellfire Peninsula mineral, node 73'); INSERT IGNORE INTO pool_pool VALUES (10874,890,0,'Hellfire Peninsula mineral, node 73'); UPDATE gameobject SET guid=197744 WHERE guid=42280; INSERT IGNORE INTO pool_gameobject VALUES (197744,10875,0,'Hellfire Peninsula 181555, node 74'); INSERT IGNORE INTO gameobject VALUES (197743,181557,530,1,1,-1383.6,2757.85,-44.522,-1.09956,0.0,0.0,0.522499,-0.85264,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197743,10875,5,'Hellfire Peninsula 181557, node 74'); INSERT IGNORE INTO pool_template VALUES (10875,1,'Hellfire Peninsula mineral, node 74'); INSERT IGNORE INTO pool_pool VALUES (10875,890,0,'Hellfire Peninsula mineral, node 74'); UPDATE gameobject SET guid=197742 WHERE guid=42281; INSERT IGNORE INTO pool_gameobject VALUES (197742,10876,0,'Hellfire Peninsula 181555, node 75'); INSERT IGNORE INTO gameobject VALUES (197741,181557,530,1,1,152.045,4906.01,75.0122,-0.820305,0.0,0.0,0.398749,-0.91706,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197741,10876,5,'Hellfire Peninsula 181557, node 75'); INSERT IGNORE INTO pool_template VALUES (10876,1,'Hellfire Peninsula mineral, node 75'); INSERT IGNORE INTO pool_pool VALUES (10876,890,0,'Hellfire Peninsula mineral, node 75'); UPDATE gameobject SET guid=197740 WHERE guid=42282; INSERT IGNORE INTO pool_gameobject VALUES (197740,10877,0,'Hellfire Peninsula 181555, node 76'); INSERT IGNORE INTO gameobject VALUES (197739,181557,530,1,1,-773.854,3134.44,-14.4857,-2.80998,0.0,0.0,0.986286,-0.165048,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197739,10877,5,'Hellfire Peninsula 181557, node 76'); INSERT IGNORE INTO pool_template VALUES (10877,1,'Hellfire Peninsula mineral, node 76'); INSERT IGNORE INTO pool_pool VALUES (10877,890,0,'Hellfire Peninsula mineral, node 76'); UPDATE gameobject SET guid=197738 WHERE guid=42283; INSERT IGNORE INTO pool_gameobject VALUES (197738,10878,0,'Hellfire Peninsula 181555, node 77'); INSERT IGNORE INTO gameobject VALUES (197737,181557,530,1,1,127.795,4065.18,69.2198,-1.51844,0.0,0.0,0.688354,-0.725374,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197737,10878,5,'Hellfire Peninsula 181557, node 77'); INSERT IGNORE INTO pool_template VALUES (10878,1,'Hellfire Peninsula mineral, node 77'); INSERT IGNORE INTO pool_pool VALUES (10878,890,0,'Hellfire Peninsula mineral, node 77'); UPDATE gameobject SET guid=197736 WHERE guid=42285; INSERT IGNORE INTO pool_gameobject VALUES (197736,10879,0,'Hellfire Peninsula 181555, node 78'); INSERT IGNORE INTO gameobject VALUES (197735,181557,530,1,1,93.5405,4847.91,68.5572,1.78024,0.0,0.0,0.777146,0.62932,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197735,10879,5,'Hellfire Peninsula 181557, node 78'); INSERT IGNORE INTO pool_template VALUES (10879,1,'Hellfire Peninsula mineral, node 78'); INSERT IGNORE INTO pool_pool VALUES (10879,890,0,'Hellfire Peninsula mineral, node 78'); UPDATE gameobject SET guid=197734 WHERE guid=42287; INSERT IGNORE INTO pool_gameobject VALUES (197734,10880,0,'Hellfire Peninsula 181555, node 79'); INSERT IGNORE INTO gameobject VALUES (197733,181557,530,1,1,-371.08,4889.92,34.1058,-0.069813,0.0,0.0,0.034899,-0.999391,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197733,10880,5,'Hellfire Peninsula 181557, node 79'); INSERT IGNORE INTO pool_template VALUES (10880,1,'Hellfire Peninsula mineral, node 79'); INSERT IGNORE INTO pool_pool VALUES (10880,890,0,'Hellfire Peninsula mineral, node 79'); UPDATE gameobject SET guid=197732 WHERE guid=42288; INSERT IGNORE INTO pool_gameobject VALUES (197732,10881,0,'Hellfire Peninsula 181555, node 80'); INSERT IGNORE INTO gameobject VALUES (197731,181557,530,1,1,157.88,3618.23,84.0151,-1.67552,0.0,0.0,0.743145,-0.669131,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197731,10881,5,'Hellfire Peninsula 181557, node 80'); INSERT IGNORE INTO pool_template VALUES (10881,1,'Hellfire Peninsula mineral, node 80'); INSERT IGNORE INTO pool_pool VALUES (10881,890,0,'Hellfire Peninsula mineral, node 80'); UPDATE gameobject SET guid=197730 WHERE guid=42289; INSERT IGNORE INTO pool_gameobject VALUES (197730,10882,0,'Hellfire Peninsula 181555, node 81'); INSERT IGNORE INTO gameobject VALUES (197729,181557,530,1,1,-1085.26,1527.89,57.345,1.48353,0.0,0.0,0.67559,0.737277,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197729,10882,5,'Hellfire Peninsula 181557, node 81'); INSERT IGNORE INTO pool_template VALUES (10882,1,'Hellfire Peninsula mineral, node 81'); INSERT IGNORE INTO pool_pool VALUES (10882,890,0,'Hellfire Peninsula mineral, node 81'); UPDATE gameobject SET guid=197728 WHERE guid=42290; INSERT IGNORE INTO pool_gameobject VALUES (197728,10883,0,'Hellfire Peninsula 181555, node 82'); INSERT IGNORE INTO gameobject VALUES (197727,181557,530,1,1,-468.954,2067.11,93.4363,1.16937,0.0,0.0,0.551937,0.833886,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197727,10883,5,'Hellfire Peninsula 181557, node 82'); INSERT IGNORE INTO pool_template VALUES (10883,1,'Hellfire Peninsula mineral, node 82'); INSERT IGNORE INTO pool_pool VALUES (10883,890,0,'Hellfire Peninsula mineral, node 82'); UPDATE gameobject SET guid=197726 WHERE guid=42292; INSERT IGNORE INTO pool_gameobject VALUES (197726,10884,0,'Hellfire Peninsula 181555, node 83'); INSERT IGNORE INTO gameobject VALUES (197725,181557,530,1,1,-854.218,4421.1,86.1487,0.942478,0.0,0.0,0.45399,0.891007,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197725,10884,5,'Hellfire Peninsula 181557, node 83'); INSERT IGNORE INTO pool_template VALUES (10884,1,'Hellfire Peninsula mineral, node 83'); INSERT IGNORE INTO pool_pool VALUES (10884,890,0,'Hellfire Peninsula mineral, node 83'); UPDATE gameobject SET guid=197724 WHERE guid=42293; INSERT IGNORE INTO pool_gameobject VALUES (197724,10885,0,'Hellfire Peninsula 181555, node 84'); INSERT IGNORE INTO gameobject VALUES (197723,181557,530,1,1,-1119.21,4245.87,15.156,-2.61799,0.0,0.0,0.965926,-0.258819,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197723,10885,5,'Hellfire Peninsula 181557, node 84'); INSERT IGNORE INTO pool_template VALUES (10885,1,'Hellfire Peninsula mineral, node 84'); INSERT IGNORE INTO pool_pool VALUES (10885,890,0,'Hellfire Peninsula mineral, node 84'); UPDATE gameobject SET guid=197722 WHERE guid=42294; INSERT IGNORE INTO pool_gameobject VALUES (197722,10886,0,'Hellfire Peninsula 181555, node 85'); INSERT IGNORE INTO gameobject VALUES (197721,181557,530,1,1,-526.347,3671.12,30.2502,0.663225,0.0,0.0,0.325568,0.945519,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197721,10886,5,'Hellfire Peninsula 181557, node 85'); INSERT IGNORE INTO pool_template VALUES (10886,1,'Hellfire Peninsula mineral, node 85'); INSERT IGNORE INTO pool_pool VALUES (10886,890,0,'Hellfire Peninsula mineral, node 85'); UPDATE gameobject SET guid=197720 WHERE guid=42297; INSERT IGNORE INTO pool_gameobject VALUES (197720,10887,0,'Hellfire Peninsula 181555, node 86'); INSERT IGNORE INTO gameobject VALUES (197719,181557,530,1,1,-666.766,3166.57,-7.36018,-1.55334,0.0,0.0,0.700909,-0.71325,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197719,10887,5,'Hellfire Peninsula 181557, node 86'); INSERT IGNORE INTO pool_template VALUES (10887,1,'Hellfire Peninsula mineral, node 86'); INSERT IGNORE INTO pool_pool VALUES (10887,890,0,'Hellfire Peninsula mineral, node 86'); UPDATE gameobject SET guid=197718 WHERE guid=42300; INSERT IGNORE INTO pool_gameobject VALUES (197718,10888,0,'Hellfire Peninsula 181555, node 87'); INSERT IGNORE INTO gameobject VALUES (197717,181557,530,1,1,-286.728,2624.27,-1.81623,-1.78024,0.0,0.0,0.777146,-0.62932,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197717,10888,5,'Hellfire Peninsula 181557, node 87'); INSERT IGNORE INTO pool_template VALUES (10888,1,'Hellfire Peninsula mineral, node 87'); INSERT IGNORE INTO pool_pool VALUES (10888,890,0,'Hellfire Peninsula mineral, node 87'); UPDATE gameobject SET guid=197716 WHERE guid=42301; INSERT IGNORE INTO pool_gameobject VALUES (197716,10889,0,'Hellfire Peninsula 181555, node 88'); INSERT IGNORE INTO gameobject VALUES (197715,181557,530,1,1,-502.934,3103.16,-5.01644,1.25664,0.0,0.0,0.587785,0.809017,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197715,10889,5,'Hellfire Peninsula 181557, node 88'); INSERT IGNORE INTO pool_template VALUES (10889,1,'Hellfire Peninsula mineral, node 88'); INSERT IGNORE INTO pool_pool VALUES (10889,890,0,'Hellfire Peninsula mineral, node 88'); UPDATE gameobject SET guid=197714 WHERE guid=42308; INSERT IGNORE INTO pool_gameobject VALUES (197714,10890,0,'Hellfire Peninsula 181555, node 89'); INSERT IGNORE INTO gameobject VALUES (197713,181557,530,1,1,338.057,2143.58,117.038,-0.488692,0.0,0.0,0.241922,-0.970296,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197713,10890,5,'Hellfire Peninsula 181557, node 89'); INSERT IGNORE INTO pool_template VALUES (10890,1,'Hellfire Peninsula mineral, node 89'); INSERT IGNORE INTO pool_pool VALUES (10890,890,0,'Hellfire Peninsula mineral, node 89'); UPDATE gameobject SET guid=197712 WHERE guid=42315; INSERT IGNORE INTO pool_gameobject VALUES (197712,10891,0,'Hellfire Peninsula 181555, node 90'); INSERT IGNORE INTO gameobject VALUES (197711,181557,530,1,1,235.047,2106.05,38.3175,-1.11701,0.0,0.0,0.529919,-0.848048,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197711,10891,5,'Hellfire Peninsula 181557, node 90'); INSERT IGNORE INTO pool_template VALUES (10891,1,'Hellfire Peninsula mineral, node 90'); INSERT IGNORE INTO pool_pool VALUES (10891,890,0,'Hellfire Peninsula mineral, node 90'); UPDATE gameobject SET guid=197710 WHERE guid=42343; INSERT IGNORE INTO pool_gameobject VALUES (197710,10892,0,'Hellfire Peninsula 181555, node 91'); INSERT IGNORE INTO gameobject VALUES (197709,181557,530,1,1,68.8098,3462.06,65.6914,1.23918,0.0,0.0,0.580703,0.814116,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197709,10892,5,'Hellfire Peninsula 181557, node 91'); INSERT IGNORE INTO pool_template VALUES (10892,1,'Hellfire Peninsula mineral, node 91'); INSERT IGNORE INTO pool_pool VALUES (10892,890,0,'Hellfire Peninsula mineral, node 91'); UPDATE gameobject SET guid=197708 WHERE guid=61586; INSERT IGNORE INTO pool_gameobject VALUES (197708,10893,0,'Hellfire Peninsula 181555, node 92'); INSERT IGNORE INTO gameobject VALUES (197707,181557,530,1,1,-1707.45,3829.39,46.6761,-0.279252,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197707,10893,5,'Hellfire Peninsula 181557, node 92'); INSERT IGNORE INTO pool_template VALUES (10893,1,'Hellfire Peninsula mineral, node 92'); INSERT IGNORE INTO pool_pool VALUES (10893,890,0,'Hellfire Peninsula mineral, node 92'); UPDATE gameobject SET guid=197706 WHERE guid=61805; INSERT IGNORE INTO pool_gameobject VALUES (197706,10894,0,'Hellfire Peninsula 181555, node 93'); INSERT IGNORE INTO gameobject VALUES (197705,181557,530,1,1,-512.144,2157.33,69.081,1.37881,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197705,10894,5,'Hellfire Peninsula 181557, node 93'); INSERT IGNORE INTO pool_template VALUES (10894,1,'Hellfire Peninsula mineral, node 93'); INSERT IGNORE INTO pool_pool VALUES (10894,890,0,'Hellfire Peninsula mineral, node 93'); UPDATE gameobject SET guid=197704 WHERE guid=61806; INSERT IGNORE INTO pool_gameobject VALUES (197704,10895,0,'Hellfire Peninsula 181555, node 94'); INSERT IGNORE INTO gameobject VALUES (197703,181557,530,1,1,-413.45,1865.57,87.7079,-3.05433,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197703,10895,5,'Hellfire Peninsula 181557, node 94'); INSERT IGNORE INTO pool_template VALUES (10895,1,'Hellfire Peninsula mineral, node 94'); INSERT IGNORE INTO pool_pool VALUES (10895,890,0,'Hellfire Peninsula mineral, node 94'); UPDATE gameobject SET guid=197702 WHERE guid=61809; INSERT IGNORE INTO pool_gameobject VALUES (197702,10896,0,'Hellfire Peninsula 181555, node 95'); INSERT IGNORE INTO gameobject VALUES (197701,181557,530,1,1,447.691,2780.44,196.542,2.21656,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197701,10896,5,'Hellfire Peninsula 181557, node 95'); INSERT IGNORE INTO pool_template VALUES (10896,1,'Hellfire Peninsula mineral, node 95'); INSERT IGNORE INTO pool_pool VALUES (10896,890,0,'Hellfire Peninsula mineral, node 95'); UPDATE gameobject SET guid=197700 WHERE guid=61855; INSERT IGNORE INTO pool_gameobject VALUES (197700,10897,0,'Hellfire Peninsula 181555, node 96'); INSERT IGNORE INTO gameobject VALUES (197699,181557,530,1,1,-842.897,2338.84,-19.1807,-1.64061,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197699,10897,5,'Hellfire Peninsula 181557, node 96'); INSERT IGNORE INTO pool_template VALUES (10897,1,'Hellfire Peninsula mineral, node 96'); INSERT IGNORE INTO pool_pool VALUES (10897,890,0,'Hellfire Peninsula mineral, node 96'); UPDATE gameobject SET guid=197698 WHERE guid=61856; INSERT IGNORE INTO pool_gameobject VALUES (197698,10898,0,'Hellfire Peninsula 181555, node 97'); INSERT IGNORE INTO gameobject VALUES (197697,181557,530,1,1,-1186.19,3005.51,19.6691,-2.09439,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197697,10898,5,'Hellfire Peninsula 181557, node 97'); INSERT IGNORE INTO pool_template VALUES (10898,1,'Hellfire Peninsula mineral, node 97'); INSERT IGNORE INTO pool_pool VALUES (10898,890,0,'Hellfire Peninsula mineral, node 97'); UPDATE gameobject SET guid=197696 WHERE guid=61857; INSERT IGNORE INTO pool_gameobject VALUES (197696,10899,0,'Hellfire Peninsula 181555, node 98'); INSERT IGNORE INTO gameobject VALUES (197695,181557,530,1,1,-984.849,1870.67,97.0372,-1.39626,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197695,10899,5,'Hellfire Peninsula 181557, node 98'); INSERT IGNORE INTO pool_template VALUES (10899,1,'Hellfire Peninsula mineral, node 98'); INSERT IGNORE INTO pool_pool VALUES (10899,890,0,'Hellfire Peninsula mineral, node 98'); UPDATE gameobject SET guid=197694 WHERE guid=61858; INSERT IGNORE INTO pool_gameobject VALUES (197694,10900,0,'Hellfire Peninsula 181555, node 99'); INSERT IGNORE INTO gameobject VALUES (197693,181557,530,1,1,-706.551,2143.94,27.9824,-1.8675,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197693,10900,5,'Hellfire Peninsula 181557, node 99'); INSERT IGNORE INTO pool_template VALUES (10900,1,'Hellfire Peninsula mineral, node 99'); INSERT IGNORE INTO pool_pool VALUES (10900,890,0,'Hellfire Peninsula mineral, node 99'); UPDATE gameobject SET guid=197692 WHERE guid=61859; INSERT IGNORE INTO pool_gameobject VALUES (197692,10901,0,'Hellfire Peninsula 181555, node 100'); INSERT IGNORE INTO gameobject VALUES (197691,181557,530,1,1,-1604.35,3807.27,46.3801,3.00195,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197691,10901,5,'Hellfire Peninsula 181557, node 100'); INSERT IGNORE INTO pool_template VALUES (10901,1,'Hellfire Peninsula mineral, node 100'); INSERT IGNORE INTO pool_pool VALUES (10901,890,0,'Hellfire Peninsula mineral, node 100'); UPDATE gameobject SET guid=197690 WHERE guid=61860; INSERT IGNORE INTO pool_gameobject VALUES (197690,10902,0,'Hellfire Peninsula 181555, node 101'); INSERT IGNORE INTO gameobject VALUES (197689,181557,530,1,1,-1000.76,3052.22,26.0825,1.85005,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197689,10902,5,'Hellfire Peninsula 181557, node 101'); INSERT IGNORE INTO pool_template VALUES (10902,1,'Hellfire Peninsula mineral, node 101'); INSERT IGNORE INTO pool_pool VALUES (10902,890,0,'Hellfire Peninsula mineral, node 101'); UPDATE gameobject SET guid=197688 WHERE guid=61861; INSERT IGNORE INTO pool_gameobject VALUES (197688,10903,0,'Hellfire Peninsula 181555, node 102'); INSERT IGNORE INTO gameobject VALUES (197687,181557,530,1,1,-1290.44,3127.06,40.3766,1.58825,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197687,10903,5,'Hellfire Peninsula 181557, node 102'); INSERT IGNORE INTO pool_template VALUES (10903,1,'Hellfire Peninsula mineral, node 102'); INSERT IGNORE INTO pool_pool VALUES (10903,890,0,'Hellfire Peninsula mineral, node 102'); UPDATE gameobject SET guid=197686 WHERE guid=61862; INSERT IGNORE INTO pool_gameobject VALUES (197686,10904,0,'Hellfire Peninsula 181555, node 103'); INSERT IGNORE INTO gameobject VALUES (197685,181557,530,1,1,-672.305,4746.9,54.0757,-2.11185,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197685,10904,5,'Hellfire Peninsula 181557, node 103'); INSERT IGNORE INTO pool_template VALUES (10904,1,'Hellfire Peninsula mineral, node 103'); INSERT IGNORE INTO pool_pool VALUES (10904,890,0,'Hellfire Peninsula mineral, node 103'); UPDATE gameobject SET guid=197684 WHERE guid=61864; INSERT IGNORE INTO pool_gameobject VALUES (197684,10905,0,'Hellfire Peninsula 181555, node 104'); INSERT IGNORE INTO gameobject VALUES (197683,181557,530,1,1,-729.096,3772.82,20.3365,-2.61799,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197683,10905,5,'Hellfire Peninsula 181557, node 104'); INSERT IGNORE INTO pool_template VALUES (10905,1,'Hellfire Peninsula mineral, node 104'); INSERT IGNORE INTO pool_pool VALUES (10905,890,0,'Hellfire Peninsula mineral, node 104'); UPDATE gameobject SET guid=197682 WHERE guid=61865; INSERT IGNORE INTO pool_gameobject VALUES (197682,10906,0,'Hellfire Peninsula 181555, node 105'); INSERT IGNORE INTO gameobject VALUES (197681,181557,530,1,1,-1223.6,4229.35,38.327,-2.28638,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197681,10906,5,'Hellfire Peninsula 181557, node 105'); INSERT IGNORE INTO pool_template VALUES (10906,1,'Hellfire Peninsula mineral, node 105'); INSERT IGNORE INTO pool_pool VALUES (10906,890,0,'Hellfire Peninsula mineral, node 105'); UPDATE gameobject SET guid=197680 WHERE guid=61867; INSERT IGNORE INTO pool_gameobject VALUES (197680,10907,0,'Hellfire Peninsula 181555, node 106'); INSERT IGNORE INTO gameobject VALUES (197679,181557,530,1,1,-39.0497,4739.21,37.1566,0.610864,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197679,10907,5,'Hellfire Peninsula 181557, node 106'); INSERT IGNORE INTO pool_template VALUES (10907,1,'Hellfire Peninsula mineral, node 106'); INSERT IGNORE INTO pool_pool VALUES (10907,890,0,'Hellfire Peninsula mineral, node 106'); UPDATE gameobject SET guid=197678 WHERE guid=61868; INSERT IGNORE INTO pool_gameobject VALUES (197678,10908,0,'Hellfire Peninsula 181555, node 107'); INSERT IGNORE INTO gameobject VALUES (197677,181557,530,1,1,-478.153,4399.32,42.9991,-1.91986,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197677,10908,5,'Hellfire Peninsula 181557, node 107'); INSERT IGNORE INTO pool_template VALUES (10908,1,'Hellfire Peninsula mineral, node 107'); INSERT IGNORE INTO pool_pool VALUES (10908,890,0,'Hellfire Peninsula mineral, node 107'); UPDATE gameobject SET guid=197676 WHERE guid=61869; INSERT IGNORE INTO pool_gameobject VALUES (197676,10909,0,'Hellfire Peninsula 181555, node 108'); INSERT IGNORE INTO gameobject VALUES (197675,181557,530,1,1,-681.455,4445.64,98.1769,-1.98967,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197675,10909,5,'Hellfire Peninsula 181557, node 108'); INSERT IGNORE INTO pool_template VALUES (10909,1,'Hellfire Peninsula mineral, node 108'); INSERT IGNORE INTO pool_pool VALUES (10909,890,0,'Hellfire Peninsula mineral, node 108'); UPDATE gameobject SET guid=197674 WHERE guid=61870; INSERT IGNORE INTO pool_gameobject VALUES (197674,10910,0,'Hellfire Peninsula 181555, node 109'); INSERT IGNORE INTO gameobject VALUES (197673,181557,530,1,1,-779.104,4360.14,69.8468,-1.81514,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197673,10910,5,'Hellfire Peninsula 181557, node 109'); INSERT IGNORE INTO pool_template VALUES (10910,1,'Hellfire Peninsula mineral, node 109'); INSERT IGNORE INTO pool_pool VALUES (10910,890,0,'Hellfire Peninsula mineral, node 109'); UPDATE gameobject SET guid=197672 WHERE guid=61871; INSERT IGNORE INTO pool_gameobject VALUES (197672,10911,0,'Hellfire Peninsula 181555, node 110'); INSERT IGNORE INTO gameobject VALUES (197671,181557,530,1,1,-492.498,4547.56,71.1649,0.104719,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197671,10911,5,'Hellfire Peninsula 181557, node 110'); INSERT IGNORE INTO pool_template VALUES (10911,1,'Hellfire Peninsula mineral, node 110'); INSERT IGNORE INTO pool_pool VALUES (10911,890,0,'Hellfire Peninsula mineral, node 110'); UPDATE gameobject SET guid=197670 WHERE guid=61872; INSERT IGNORE INTO pool_gameobject VALUES (197670,10912,0,'Hellfire Peninsula 181555, node 111'); INSERT IGNORE INTO gameobject VALUES (197669,181557,530,1,1,-638.102,4387.24,71.6864,1.71042,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197669,10912,5,'Hellfire Peninsula 181557, node 111'); INSERT IGNORE INTO pool_template VALUES (10912,1,'Hellfire Peninsula mineral, node 111'); INSERT IGNORE INTO pool_pool VALUES (10912,890,0,'Hellfire Peninsula mineral, node 111'); UPDATE gameobject SET guid=197668 WHERE guid=61873; INSERT IGNORE INTO pool_gameobject VALUES (197668,10913,0,'Hellfire Peninsula 181555, node 112'); INSERT IGNORE INTO gameobject VALUES (197667,181557,530,1,1,-378.953,4085.3,111.915,-1.29154,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197667,10913,5,'Hellfire Peninsula 181557, node 112'); INSERT IGNORE INTO pool_template VALUES (10913,1,'Hellfire Peninsula mineral, node 112'); INSERT IGNORE INTO pool_pool VALUES (10913,890,0,'Hellfire Peninsula mineral, node 112'); UPDATE gameobject SET guid=197666 WHERE guid=61874; INSERT IGNORE INTO pool_gameobject VALUES (197666,10914,0,'Hellfire Peninsula 181555, node 113'); INSERT IGNORE INTO gameobject VALUES (197665,181557,530,1,1,-885.352,3273.1,48.1341,-2.11185,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197665,10914,5,'Hellfire Peninsula 181557, node 113'); INSERT IGNORE INTO pool_template VALUES (10914,1,'Hellfire Peninsula mineral, node 113'); INSERT IGNORE INTO pool_pool VALUES (10914,890,0,'Hellfire Peninsula mineral, node 113'); UPDATE gameobject SET guid=197664 WHERE guid=61875; INSERT IGNORE INTO pool_gameobject VALUES (197664,10915,0,'Hellfire Peninsula 181555, node 114'); INSERT IGNORE INTO gameobject VALUES (197663,181557,530,1,1,-1566.63,3521.33,20.8915,-1.06465,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197663,10915,5,'Hellfire Peninsula 181557, node 114'); INSERT IGNORE INTO pool_template VALUES (10915,1,'Hellfire Peninsula mineral, node 114'); INSERT IGNORE INTO pool_pool VALUES (10915,890,0,'Hellfire Peninsula mineral, node 114'); UPDATE gameobject SET guid=197662 WHERE guid=61876; INSERT IGNORE INTO pool_gameobject VALUES (197662,10916,0,'Hellfire Peninsula 181555, node 115'); INSERT IGNORE INTO gameobject VALUES (197661,181557,530,1,1,-340.807,4489.76,63.1904,1.51844,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197661,10916,5,'Hellfire Peninsula 181557, node 115'); INSERT IGNORE INTO pool_template VALUES (10916,1,'Hellfire Peninsula mineral, node 115'); INSERT IGNORE INTO pool_pool VALUES (10916,890,0,'Hellfire Peninsula mineral, node 115'); UPDATE gameobject SET guid=197660 WHERE guid=61877; INSERT IGNORE INTO pool_gameobject VALUES (197660,10917,0,'Hellfire Peninsula 181555, node 116'); INSERT IGNORE INTO gameobject VALUES (197659,181557,530,1,1,-9.49208,3867.02,85.3362,1.6057,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197659,10917,5,'Hellfire Peninsula 181557, node 116'); INSERT IGNORE INTO pool_template VALUES (10917,1,'Hellfire Peninsula mineral, node 116'); INSERT IGNORE INTO pool_pool VALUES (10917,890,0,'Hellfire Peninsula mineral, node 116'); UPDATE gameobject SET guid=197658 WHERE guid=61879; INSERT IGNORE INTO pool_gameobject VALUES (197658,10918,0,'Hellfire Peninsula 181555, node 117'); INSERT IGNORE INTO gameobject VALUES (197657,181557,530,1,1,-110.865,4614.29,35.0804,1.71042,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197657,10918,5,'Hellfire Peninsula 181557, node 117'); INSERT IGNORE INTO pool_template VALUES (10918,1,'Hellfire Peninsula mineral, node 117'); INSERT IGNORE INTO pool_pool VALUES (10918,890,0,'Hellfire Peninsula mineral, node 117'); UPDATE gameobject SET guid=197656 WHERE guid=61880; INSERT IGNORE INTO pool_gameobject VALUES (197656,10919,0,'Hellfire Peninsula 181555, node 118'); INSERT IGNORE INTO gameobject VALUES (197655,181557,530,1,1,-218.547,5217.55,87.9868,-1.15192,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197655,10919,5,'Hellfire Peninsula 181557, node 118'); INSERT IGNORE INTO pool_template VALUES (10919,1,'Hellfire Peninsula mineral, node 118'); INSERT IGNORE INTO pool_pool VALUES (10919,890,0,'Hellfire Peninsula mineral, node 118'); UPDATE gameobject SET guid=197654 WHERE guid=61881; INSERT IGNORE INTO pool_gameobject VALUES (197654,10920,0,'Hellfire Peninsula 181555, node 119'); INSERT IGNORE INTO gameobject VALUES (197653,181557,530,1,1,377.603,3855.3,149.804,2.32129,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197653,10920,5,'Hellfire Peninsula 181557, node 119'); INSERT IGNORE INTO pool_template VALUES (10920,1,'Hellfire Peninsula mineral, node 119'); INSERT IGNORE INTO pool_pool VALUES (10920,890,0,'Hellfire Peninsula mineral, node 119'); UPDATE gameobject SET guid=197652 WHERE guid=61882; INSERT IGNORE INTO pool_gameobject VALUES (197652,10921,0,'Hellfire Peninsula 181555, node 120'); INSERT IGNORE INTO gameobject VALUES (197651,181557,530,1,1,-563.171,4714.58,39.493,0.052359,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197651,10921,5,'Hellfire Peninsula 181557, node 120'); INSERT IGNORE INTO pool_template VALUES (10921,1,'Hellfire Peninsula mineral, node 120'); INSERT IGNORE INTO pool_pool VALUES (10921,890,0,'Hellfire Peninsula mineral, node 120'); UPDATE gameobject SET guid=197650 WHERE guid=61884; INSERT IGNORE INTO pool_gameobject VALUES (197650,10922,0,'Hellfire Peninsula 181555, node 121'); INSERT IGNORE INTO gameobject VALUES (197649,181557,530,1,1,-942.856,3587.07,134.604,1.48353,0.0,0.0,0.0,1.0,3600,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197649,10922,5,'Hellfire Peninsula 181557, node 121'); INSERT IGNORE INTO pool_template VALUES (10922,1,'Hellfire Peninsula mineral, node 121'); INSERT IGNORE INTO pool_pool VALUES (10922,890,0,'Hellfire Peninsula mineral, node 121'); UPDATE gameobject SET guid=197648 WHERE guid=64864; INSERT IGNORE INTO pool_gameobject VALUES (197648,10923,0,'Hellfire Peninsula 181555, node 122'); INSERT IGNORE INTO gameobject VALUES (197647,181557,530,1,1,-453.209,2674.38,61.9322,-0.994837,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197647,10923,5,'Hellfire Peninsula 181557, node 122'); INSERT IGNORE INTO pool_template VALUES (10923,1,'Hellfire Peninsula mineral, node 122'); INSERT IGNORE INTO pool_pool VALUES (10923,890,0,'Hellfire Peninsula mineral, node 122'); UPDATE gameobject SET guid=197646 WHERE guid=64866; INSERT IGNORE INTO pool_gameobject VALUES (197646,10924,0,'Hellfire Peninsula 181555, node 123'); INSERT IGNORE INTO gameobject VALUES (197645,181557,530,1,1,-194.059,3976.47,112.051,0.802851,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197645,10924,5,'Hellfire Peninsula 181557, node 123'); INSERT IGNORE INTO pool_template VALUES (10924,1,'Hellfire Peninsula mineral, node 123'); INSERT IGNORE INTO pool_pool VALUES (10924,890,0,'Hellfire Peninsula mineral, node 123'); UPDATE gameobject SET guid=197644 WHERE guid=64869; INSERT IGNORE INTO pool_gameobject VALUES (197644,10925,0,'Hellfire Peninsula 181555, node 124'); INSERT IGNORE INTO gameobject VALUES (197643,181557,530,1,1,27.0877,3154.21,5.02512,-0.104719,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197643,10925,5,'Hellfire Peninsula 181557, node 124'); INSERT IGNORE INTO pool_template VALUES (10925,1,'Hellfire Peninsula mineral, node 124'); INSERT IGNORE INTO pool_pool VALUES (10925,890,0,'Hellfire Peninsula mineral, node 124'); UPDATE gameobject SET guid=197642 WHERE guid=64871; INSERT IGNORE INTO pool_gameobject VALUES (197642,10926,0,'Hellfire Peninsula 181555, node 125'); INSERT IGNORE INTO gameobject VALUES (197641,181557,530,1,1,-767.561,3821.96,20.1006,-0.314158,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197641,10926,5,'Hellfire Peninsula 181557, node 125'); INSERT IGNORE INTO pool_template VALUES (10926,1,'Hellfire Peninsula mineral, node 125'); INSERT IGNORE INTO pool_pool VALUES (10926,890,0,'Hellfire Peninsula mineral, node 125'); UPDATE gameobject SET guid=197640 WHERE guid=64873; INSERT IGNORE INTO pool_gameobject VALUES (197640,10927,0,'Hellfire Peninsula 181555, node 126'); INSERT IGNORE INTO gameobject VALUES (197639,181557,530,1,1,-337.071,5131.43,115.857,2.61799,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197639,10927,5,'Hellfire Peninsula 181557, node 126'); INSERT IGNORE INTO pool_template VALUES (10927,1,'Hellfire Peninsula mineral, node 126'); INSERT IGNORE INTO pool_pool VALUES (10927,890,0,'Hellfire Peninsula mineral, node 126'); UPDATE gameobject SET guid=197638 WHERE guid=64874; INSERT IGNORE INTO pool_gameobject VALUES (197638,10928,0,'Hellfire Peninsula 181555, node 127'); INSERT IGNORE INTO gameobject VALUES (197637,181557,530,1,1,-541.575,3768.26,29.7481,-2.1293,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197637,10928,5,'Hellfire Peninsula 181557, node 127'); INSERT IGNORE INTO pool_template VALUES (10928,1,'Hellfire Peninsula mineral, node 127'); INSERT IGNORE INTO pool_pool VALUES (10928,890,0,'Hellfire Peninsula mineral, node 127'); UPDATE gameobject SET guid=197636 WHERE guid=64877; INSERT IGNORE INTO pool_gameobject VALUES (197636,10929,0,'Hellfire Peninsula 181555, node 128'); INSERT IGNORE INTO gameobject VALUES (197635,181557,530,1,1,-335.214,2848.88,-40.0328,-1.65806,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197635,10929,5,'Hellfire Peninsula 181557, node 128'); INSERT IGNORE INTO pool_template VALUES (10929,1,'Hellfire Peninsula mineral, node 128'); INSERT IGNORE INTO pool_pool VALUES (10929,890,0,'Hellfire Peninsula mineral, node 128'); UPDATE gameobject SET guid=197634 WHERE guid=64878; INSERT IGNORE INTO pool_gameobject VALUES (197634,10930,0,'Hellfire Peninsula 181555, node 129'); INSERT IGNORE INTO gameobject VALUES (197633,181557,530,1,1,-1007.11,2618.04,-3.95126,-2.33874,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197633,10930,5,'Hellfire Peninsula 181557, node 129'); INSERT IGNORE INTO pool_template VALUES (10930,1,'Hellfire Peninsula mineral, node 129'); INSERT IGNORE INTO pool_pool VALUES (10930,890,0,'Hellfire Peninsula mineral, node 129'); UPDATE gameobject SET guid=197632 WHERE guid=64879; INSERT IGNORE INTO pool_gameobject VALUES (197632,10931,0,'Hellfire Peninsula 181555, node 130'); INSERT IGNORE INTO gameobject VALUES (197631,181557,530,1,1,-219.238,2995.49,-61.8867,1.8675,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197631,10931,5,'Hellfire Peninsula 181557, node 130'); INSERT IGNORE INTO pool_template VALUES (10931,1,'Hellfire Peninsula mineral, node 130'); INSERT IGNORE INTO pool_pool VALUES (10931,890,0,'Hellfire Peninsula mineral, node 130'); UPDATE gameobject SET guid=197630 WHERE guid=64880; INSERT IGNORE INTO pool_gameobject VALUES (197630,10932,0,'Hellfire Peninsula 181555, node 131'); INSERT IGNORE INTO gameobject VALUES (197629,181557,530,1,1,-1459.01,3399.69,29.7245,2.35619,0.0,0.0,0.0,1.0,180,100,1); INSERT IGNORE INTO pool_gameobject VALUES (197629,10932,5,'Hellfire Peninsula 181557, node 131'); INSERT IGNORE INTO pool_template VALUES (10932,1,'Hellfire Peninsula mineral, node 131'); INSERT IGNORE INTO pool_pool VALUES (10932,890,0,'Hellfire Peninsula mineral, node 131'); UPDATE gameobject SET guid=197628 WHERE guid=120199; INSERT IGNORE INTO pool_gameobject VALUES (197628,10933,0,'Hellfire Peninsula 181555, node 132'); INSERT IGNORE INTO gameobject VALUES (197627,181557,530,1,1,-699.32,2052.46,41.1222,-1.91986,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197627,10933,5,'Hellfire Peninsula 181557, node 132'); INSERT IGNORE INTO pool_template VALUES (10933,1,'Hellfire Peninsula mineral, node 132'); INSERT IGNORE INTO pool_pool VALUES (10933,890,0,'Hellfire Peninsula mineral, node 132'); UPDATE gameobject SET guid=197626 WHERE guid=120200; INSERT IGNORE INTO pool_gameobject VALUES (197626,10934,0,'Hellfire Peninsula 181555, node 133'); INSERT IGNORE INTO gameobject VALUES (197625,181557,530,1,1,146.34,2377.6,53.6751,1.309,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197625,10934,5,'Hellfire Peninsula 181557, node 133'); INSERT IGNORE INTO pool_template VALUES (10934,1,'Hellfire Peninsula mineral, node 133'); INSERT IGNORE INTO pool_pool VALUES (10934,890,0,'Hellfire Peninsula mineral, node 133'); UPDATE gameobject SET guid=197624 WHERE guid=120201; INSERT IGNORE INTO pool_gameobject VALUES (197624,10935,0,'Hellfire Peninsula 181555, node 134'); INSERT IGNORE INTO gameobject VALUES (197623,181557,530,1,1,-191.189,2424.95,27.982,0.645772,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197623,10935,5,'Hellfire Peninsula 181557, node 134'); INSERT IGNORE INTO pool_template VALUES (10935,1,'Hellfire Peninsula mineral, node 134'); INSERT IGNORE INTO pool_pool VALUES (10935,890,0,'Hellfire Peninsula mineral, node 134'); UPDATE gameobject SET guid=197622 WHERE guid=120203; INSERT IGNORE INTO pool_gameobject VALUES (197622,10936,0,'Hellfire Peninsula 181555, node 135'); INSERT IGNORE INTO gameobject VALUES (197621,181557,530,1,1,-722.189,2254.43,13.2958,-0.715585,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197621,10936,5,'Hellfire Peninsula 181557, node 135'); INSERT IGNORE INTO pool_template VALUES (10936,1,'Hellfire Peninsula mineral, node 135'); INSERT IGNORE INTO pool_pool VALUES (10936,890,0,'Hellfire Peninsula mineral, node 135'); UPDATE gameobject SET guid=197620 WHERE guid=120204; INSERT IGNORE INTO pool_gameobject VALUES (197620,10937,0,'Hellfire Peninsula 181555, node 136'); INSERT IGNORE INTO gameobject VALUES (197619,181557,530,1,1,-961.27,3100.33,24.1396,-1.11701,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197619,10937,5,'Hellfire Peninsula 181557, node 136'); INSERT IGNORE INTO pool_template VALUES (10937,1,'Hellfire Peninsula mineral, node 136'); INSERT IGNORE INTO pool_pool VALUES (10937,890,0,'Hellfire Peninsula mineral, node 136'); UPDATE gameobject SET guid=197618 WHERE guid=120205; INSERT IGNORE INTO pool_gameobject VALUES (197618,10938,0,'Hellfire Peninsula 181555, node 137'); INSERT IGNORE INTO gameobject VALUES (197617,181557,530,1,1,15.2913,4605.28,52.1974,0.506145,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197617,10938,5,'Hellfire Peninsula 181557, node 137'); INSERT IGNORE INTO pool_template VALUES (10938,1,'Hellfire Peninsula mineral, node 137'); INSERT IGNORE INTO pool_pool VALUES (10938,890,0,'Hellfire Peninsula mineral, node 137'); UPDATE gameobject SET guid=197616 WHERE guid=120208; INSERT IGNORE INTO pool_gameobject VALUES (197616,10939,0,'Hellfire Peninsula 181555, node 138'); INSERT IGNORE INTO gameobject VALUES (197615,181557,530,1,1,-315.722,2689.44,29.2153,1.09956,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197615,10939,5,'Hellfire Peninsula 181557, node 138'); INSERT IGNORE INTO pool_template VALUES (10939,1,'Hellfire Peninsula mineral, node 138'); INSERT IGNORE INTO pool_pool VALUES (10939,890,0,'Hellfire Peninsula mineral, node 138'); UPDATE gameobject SET guid=197614 WHERE guid=120210; INSERT IGNORE INTO pool_gameobject VALUES (197614,10940,0,'Hellfire Peninsula 181555, node 139'); INSERT IGNORE INTO gameobject VALUES (197613,181557,530,1,1,-540.073,4913.38,38.92,-0.925024,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197613,10940,5,'Hellfire Peninsula 181557, node 139'); INSERT IGNORE INTO pool_template VALUES (10940,1,'Hellfire Peninsula mineral, node 139'); INSERT IGNORE INTO pool_pool VALUES (10940,890,0,'Hellfire Peninsula mineral, node 139'); UPDATE gameobject SET guid=197612 WHERE guid=120211; INSERT IGNORE INTO pool_gameobject VALUES (197612,10941,0,'Hellfire Peninsula 181555, node 140'); INSERT IGNORE INTO gameobject VALUES (197611,181557,530,1,1,-1279.76,3332.99,76.704,-2.16421,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197611,10941,5,'Hellfire Peninsula 181557, node 140'); INSERT IGNORE INTO pool_template VALUES (10941,1,'Hellfire Peninsula mineral, node 140'); INSERT IGNORE INTO pool_pool VALUES (10941,890,0,'Hellfire Peninsula mineral, node 140'); UPDATE gameobject SET guid=197610 WHERE guid=120212; INSERT IGNORE INTO pool_gameobject VALUES (197610,10942,0,'Hellfire Peninsula 181555, node 141'); INSERT IGNORE INTO gameobject VALUES (197609,181557,530,1,1,165.968,3552.82,72.1962,2.3911,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197609,10942,5,'Hellfire Peninsula 181557, node 141'); INSERT IGNORE INTO pool_template VALUES (10942,1,'Hellfire Peninsula mineral, node 141'); INSERT IGNORE INTO pool_pool VALUES (10942,890,0,'Hellfire Peninsula mineral, node 141'); UPDATE gameobject SET guid=197608 WHERE guid=120213; INSERT IGNORE INTO pool_gameobject VALUES (197608,10943,0,'Hellfire Peninsula 181555, node 142'); INSERT IGNORE INTO gameobject VALUES (197607,181557,530,1,1,-1304.69,4089.04,109.21,1.88495,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197607,10943,5,'Hellfire Peninsula 181557, node 142'); INSERT IGNORE INTO pool_template VALUES (10943,1,'Hellfire Peninsula mineral, node 142'); INSERT IGNORE INTO pool_pool VALUES (10943,890,0,'Hellfire Peninsula mineral, node 142'); UPDATE gameobject SET guid=197606 WHERE guid=120214; INSERT IGNORE INTO pool_gameobject VALUES (197606,10944,0,'Hellfire Peninsula 181555, node 143'); INSERT IGNORE INTO gameobject VALUES (197605,181557,530,1,1,-71.2834,4369.35,82.4477,-0.331611,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197605,10944,5,'Hellfire Peninsula 181557, node 143'); INSERT IGNORE INTO pool_template VALUES (10944,1,'Hellfire Peninsula mineral, node 143'); INSERT IGNORE INTO pool_pool VALUES (10944,890,0,'Hellfire Peninsula mineral, node 143'); UPDATE gameobject SET guid=197604 WHERE guid=120215; INSERT IGNORE INTO pool_gameobject VALUES (197604,10945,0,'Hellfire Peninsula 181555, node 144'); INSERT IGNORE INTO gameobject VALUES (197603,181557,530,1,1,-473.095,3062.3,-47.803,0.244346,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197603,10945,5,'Hellfire Peninsula 181557, node 144'); INSERT IGNORE INTO pool_template VALUES (10945,1,'Hellfire Peninsula mineral, node 144'); INSERT IGNORE INTO pool_pool VALUES (10945,890,0,'Hellfire Peninsula mineral, node 144'); UPDATE gameobject SET guid=197602 WHERE guid=120216; INSERT IGNORE INTO pool_gameobject VALUES (197602,10946,0,'Hellfire Peninsula 181555, node 145'); INSERT IGNORE INTO gameobject VALUES (197601,181557,530,1,1,-1401.76,2985.19,-25.812,-1.3439,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197601,10946,5,'Hellfire Peninsula 181557, node 145'); INSERT IGNORE INTO pool_template VALUES (10946,1,'Hellfire Peninsula mineral, node 145'); INSERT IGNORE INTO pool_pool VALUES (10946,890,0,'Hellfire Peninsula mineral, node 145'); UPDATE gameobject SET guid=197600 WHERE guid=120217; INSERT IGNORE INTO pool_gameobject VALUES (197600,10947,0,'Hellfire Peninsula 181555, node 146'); INSERT IGNORE INTO gameobject VALUES (197599,181557,530,1,1,-623.43,4294.95,48.2484,1.15192,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197599,10947,5,'Hellfire Peninsula 181557, node 146'); INSERT IGNORE INTO pool_template VALUES (10947,1,'Hellfire Peninsula mineral, node 146'); INSERT IGNORE INTO pool_pool VALUES (10947,890,0,'Hellfire Peninsula mineral, node 146'); UPDATE gameobject SET guid=197598 WHERE guid=120218; INSERT IGNORE INTO pool_gameobject VALUES (197598,10948,0,'Hellfire Peninsula 181555, node 147'); INSERT IGNORE INTO gameobject VALUES (197597,181557,530,1,1,-868.515,4304.86,49.619,-1.76278,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197597,10948,5,'Hellfire Peninsula 181557, node 147'); INSERT IGNORE INTO pool_template VALUES (10948,1,'Hellfire Peninsula mineral, node 147'); INSERT IGNORE INTO pool_pool VALUES (10948,890,0,'Hellfire Peninsula mineral, node 147'); UPDATE gameobject SET guid=197596 WHERE guid=120219; INSERT IGNORE INTO pool_gameobject VALUES (197596,10949,0,'Hellfire Peninsula 181555, node 148'); INSERT IGNORE INTO gameobject VALUES (197595,181557,530,1,1,-176.824,3609.23,40.2551,-0.383971,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197595,10949,5,'Hellfire Peninsula 181557, node 148'); INSERT IGNORE INTO pool_template VALUES (10949,1,'Hellfire Peninsula mineral, node 148'); INSERT IGNORE INTO pool_pool VALUES (10949,890,0,'Hellfire Peninsula mineral, node 148'); UPDATE gameobject SET guid=197594 WHERE guid=120220; INSERT IGNORE INTO pool_gameobject VALUES (197594,10950,0,'Hellfire Peninsula 181555, node 149'); INSERT IGNORE INTO gameobject VALUES (197593,181557,530,1,1,-166.345,4980.85,64.0407,0.366518,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197593,10950,5,'Hellfire Peninsula 181557, node 149'); INSERT IGNORE INTO pool_template VALUES (10950,1,'Hellfire Peninsula mineral, node 149'); INSERT IGNORE INTO pool_pool VALUES (10950,890,0,'Hellfire Peninsula mineral, node 149'); UPDATE gameobject SET guid=197592 WHERE guid=120221; INSERT IGNORE INTO pool_gameobject VALUES (197592,10951,0,'Hellfire Peninsula 181555, node 150'); INSERT IGNORE INTO gameobject VALUES (197591,181557,530,1,1,-581.675,3976.33,29.8187,-2.86233,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197591,10951,5,'Hellfire Peninsula 181557, node 150'); INSERT IGNORE INTO pool_template VALUES (10951,1,'Hellfire Peninsula mineral, node 150'); INSERT IGNORE INTO pool_pool VALUES (10951,890,0,'Hellfire Peninsula mineral, node 150'); UPDATE gameobject SET guid=197590 WHERE guid=120222; INSERT IGNORE INTO pool_gameobject VALUES (197590,10952,0,'Hellfire Peninsula 181555, node 151'); INSERT IGNORE INTO gameobject VALUES (197589,181557,530,1,1,-373.313,3403.72,-24.7577,-2.84488,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197589,10952,5,'Hellfire Peninsula 181557, node 151'); INSERT IGNORE INTO pool_template VALUES (10952,1,'Hellfire Peninsula mineral, node 151'); INSERT IGNORE INTO pool_pool VALUES (10952,890,0,'Hellfire Peninsula mineral, node 151'); UPDATE gameobject SET guid=197588 WHERE guid=120227; INSERT IGNORE INTO pool_gameobject VALUES (197588,10953,0,'Hellfire Peninsula 181555, node 152'); INSERT IGNORE INTO gameobject VALUES (197587,181557,530,1,1,-774.661,3031.31,9.82194,2.23402,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197587,10953,5,'Hellfire Peninsula 181557, node 152'); INSERT IGNORE INTO pool_template VALUES (10953,1,'Hellfire Peninsula mineral, node 152'); INSERT IGNORE INTO pool_pool VALUES (10953,890,0,'Hellfire Peninsula mineral, node 152'); UPDATE gameobject SET guid=197586 WHERE guid=120228; INSERT IGNORE INTO pool_gameobject VALUES (197586,10954,0,'Hellfire Peninsula 181555, node 153'); INSERT IGNORE INTO gameobject VALUES (197585,181557,530,1,1,-593.876,3642.77,33.7989,-0.628317,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197585,10954,5,'Hellfire Peninsula 181557, node 153'); INSERT IGNORE INTO pool_template VALUES (10954,1,'Hellfire Peninsula mineral, node 153'); INSERT IGNORE INTO pool_pool VALUES (10954,890,0,'Hellfire Peninsula mineral, node 153'); UPDATE gameobject SET guid=197584 WHERE guid=120229; INSERT IGNORE INTO pool_gameobject VALUES (197584,10955,0,'Hellfire Peninsula 181555, node 154'); INSERT IGNORE INTO gameobject VALUES (197583,181557,530,1,1,-205.703,2902.27,-47.3819,0.802851,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197583,10955,5,'Hellfire Peninsula 181557, node 154'); INSERT IGNORE INTO pool_template VALUES (10955,1,'Hellfire Peninsula mineral, node 154'); INSERT IGNORE INTO pool_pool VALUES (10955,890,0,'Hellfire Peninsula mineral, node 154'); UPDATE gameobject SET guid=197582 WHERE guid=120230; INSERT IGNORE INTO pool_gameobject VALUES (197582,10956,0,'Hellfire Peninsula 181555, node 155'); INSERT IGNORE INTO gameobject VALUES (197581,181557,530,1,1,-585.741,3882.64,37.022,1.37881,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197581,10956,5,'Hellfire Peninsula 181557, node 155'); INSERT IGNORE INTO pool_template VALUES (10956,1,'Hellfire Peninsula mineral, node 155'); INSERT IGNORE INTO pool_pool VALUES (10956,890,0,'Hellfire Peninsula mineral, node 155'); UPDATE gameobject SET guid=197580 WHERE guid=120231; INSERT IGNORE INTO pool_gameobject VALUES (197580,10957,0,'Hellfire Peninsula 181555, node 156'); INSERT IGNORE INTO gameobject VALUES (197579,181557,530,1,1,-866.193,1992.91,94.8726,-1.79769,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197579,10957,5,'Hellfire Peninsula 181557, node 156'); INSERT IGNORE INTO pool_template VALUES (10957,1,'Hellfire Peninsula mineral, node 156'); INSERT IGNORE INTO pool_pool VALUES (10957,890,0,'Hellfire Peninsula mineral, node 156'); UPDATE gameobject SET guid=197578 WHERE guid=120562; INSERT IGNORE INTO pool_gameobject VALUES (197578,10958,0,'Hellfire Peninsula 181555, node 157'); INSERT IGNORE INTO gameobject VALUES (197577,181557,530,1,1,-203.551,3344.23,-34.7894,-2.3911,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197577,10958,5,'Hellfire Peninsula 181557, node 157'); INSERT IGNORE INTO pool_template VALUES (10958,1,'Hellfire Peninsula mineral, node 157'); INSERT IGNORE INTO pool_pool VALUES (10958,890,0,'Hellfire Peninsula mineral, node 157'); UPDATE gameobject SET guid=197576 WHERE guid=120563; INSERT IGNORE INTO pool_gameobject VALUES (197576,10959,0,'Hellfire Peninsula 181555, node 158'); INSERT IGNORE INTO gameobject VALUES (197575,181557,530,1,1,70.6335,3043.45,-0.683014,-0.837757,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197575,10959,5,'Hellfire Peninsula 181557, node 158'); INSERT IGNORE INTO pool_template VALUES (10959,1,'Hellfire Peninsula mineral, node 158'); INSERT IGNORE INTO pool_pool VALUES (10959,890,0,'Hellfire Peninsula mineral, node 158'); UPDATE gameobject SET guid=197574 WHERE guid=120564; INSERT IGNORE INTO pool_gameobject VALUES (197574,10960,0,'Hellfire Peninsula 181555, node 159'); INSERT IGNORE INTO gameobject VALUES (197573,181557,530,1,1,-936.388,4386.66,76.3951,2.33874,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197573,10960,5,'Hellfire Peninsula 181557, node 159'); INSERT IGNORE INTO pool_template VALUES (10960,1,'Hellfire Peninsula mineral, node 159'); INSERT IGNORE INTO pool_pool VALUES (10960,890,0,'Hellfire Peninsula mineral, node 159'); UPDATE gameobject SET guid=197572 WHERE guid=120565; INSERT IGNORE INTO pool_gameobject VALUES (197572,10961,0,'Hellfire Peninsula 181555, node 160'); INSERT IGNORE INTO gameobject VALUES (197571,181557,530,1,1,-703.119,3840.01,84.9607,3.08918,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197571,10961,5,'Hellfire Peninsula 181557, node 160'); INSERT IGNORE INTO pool_template VALUES (10961,1,'Hellfire Peninsula mineral, node 160'); INSERT IGNORE INTO pool_pool VALUES (10961,890,0,'Hellfire Peninsula mineral, node 160'); UPDATE gameobject SET guid=197570 WHERE guid=120751; INSERT IGNORE INTO pool_gameobject VALUES (197570,10962,0,'Hellfire Peninsula 181555, node 161'); INSERT IGNORE INTO gameobject VALUES (197569,181557,530,1,1,-559.553,1987.44,96.3802,2.77507,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197569,10962,5,'Hellfire Peninsula 181557, node 161'); INSERT IGNORE INTO pool_template VALUES (10962,1,'Hellfire Peninsula mineral, node 161'); INSERT IGNORE INTO pool_pool VALUES (10962,890,0,'Hellfire Peninsula mineral, node 161'); UPDATE gameobject SET guid=197568 WHERE guid=120752; INSERT IGNORE INTO pool_gameobject VALUES (197568,10963,0,'Hellfire Peninsula 181555, node 162'); INSERT IGNORE INTO gameobject VALUES (197567,181557,530,1,1,-922.363,2892.01,3.82162,-0.471238,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197567,10963,5,'Hellfire Peninsula 181557, node 162'); INSERT IGNORE INTO pool_template VALUES (10963,1,'Hellfire Peninsula mineral, node 162'); INSERT IGNORE INTO pool_pool VALUES (10963,890,0,'Hellfire Peninsula mineral, node 162'); UPDATE gameobject SET guid=197566 WHERE guid=120753; INSERT IGNORE INTO pool_gameobject VALUES (197566,10964,0,'Hellfire Peninsula 181555, node 163'); INSERT IGNORE INTO gameobject VALUES (197565,181557,530,1,1,-1397.36,3471.09,54.3677,-1.78023,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197565,10964,5,'Hellfire Peninsula 181557, node 163'); INSERT IGNORE INTO pool_template VALUES (10964,1,'Hellfire Peninsula mineral, node 163'); INSERT IGNORE INTO pool_pool VALUES (10964,890,0,'Hellfire Peninsula mineral, node 163'); UPDATE gameobject SET guid=197564 WHERE guid=120754; INSERT IGNORE INTO pool_gameobject VALUES (197564,10965,0,'Hellfire Peninsula 181555, node 164'); INSERT IGNORE INTO gameobject VALUES (197563,181557,530,1,1,-509.66,1825.48,63.7777,0.174532,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197563,10965,5,'Hellfire Peninsula 181557, node 164'); INSERT IGNORE INTO pool_template VALUES (10965,1,'Hellfire Peninsula mineral, node 164'); INSERT IGNORE INTO pool_pool VALUES (10965,890,0,'Hellfire Peninsula mineral, node 164'); UPDATE gameobject SET guid=197562 WHERE guid=120755; INSERT IGNORE INTO pool_gameobject VALUES (197562,10966,0,'Hellfire Peninsula 181555, node 165'); INSERT IGNORE INTO gameobject VALUES (197561,181557,530,1,1,-107.311,2431.11,54.6949,-1.11701,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197561,10966,5,'Hellfire Peninsula 181557, node 165'); INSERT IGNORE INTO pool_template VALUES (10966,1,'Hellfire Peninsula mineral, node 165'); INSERT IGNORE INTO pool_pool VALUES (10966,890,0,'Hellfire Peninsula mineral, node 165'); UPDATE gameobject SET guid=197560 WHERE guid=120756; INSERT IGNORE INTO pool_gameobject VALUES (197560,10967,0,'Hellfire Peninsula 181555, node 166'); INSERT IGNORE INTO gameobject VALUES (197559,181557,530,1,1,-815.427,2254.09,3.31931,0.226892,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197559,10967,5,'Hellfire Peninsula 181557, node 166'); INSERT IGNORE INTO pool_template VALUES (10967,1,'Hellfire Peninsula mineral, node 166'); INSERT IGNORE INTO pool_pool VALUES (10967,890,0,'Hellfire Peninsula mineral, node 166'); UPDATE gameobject SET guid=197558 WHERE guid=120757; INSERT IGNORE INTO pool_gameobject VALUES (197558,10968,0,'Hellfire Peninsula 181555, node 167'); INSERT IGNORE INTO gameobject VALUES (197557,181557,530,1,1,-812.086,2048.77,40.0752,-2.25147,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197557,10968,5,'Hellfire Peninsula 181557, node 167'); INSERT IGNORE INTO pool_template VALUES (10968,1,'Hellfire Peninsula mineral, node 167'); INSERT IGNORE INTO pool_pool VALUES (10968,890,0,'Hellfire Peninsula mineral, node 167'); UPDATE gameobject SET guid=197556 WHERE guid=120758; INSERT IGNORE INTO pool_gameobject VALUES (197556,10969,0,'Hellfire Peninsula 181555, node 168'); INSERT IGNORE INTO gameobject VALUES (197555,181557,530,1,1,-445.374,2153.05,85.3596,-2.44346,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197555,10969,5,'Hellfire Peninsula 181557, node 168'); INSERT IGNORE INTO pool_template VALUES (10969,1,'Hellfire Peninsula mineral, node 168'); INSERT IGNORE INTO pool_pool VALUES (10969,890,0,'Hellfire Peninsula mineral, node 168'); UPDATE gameobject SET guid=197554 WHERE guid=120760; INSERT IGNORE INTO pool_gameobject VALUES (197554,10970,0,'Hellfire Peninsula 181555, node 169'); INSERT IGNORE INTO gameobject VALUES (197553,181557,530,1,1,-327.815,2518.92,41.0388,2.79252,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197553,10970,5,'Hellfire Peninsula 181557, node 169'); INSERT IGNORE INTO pool_template VALUES (10970,1,'Hellfire Peninsula mineral, node 169'); INSERT IGNORE INTO pool_pool VALUES (10970,890,0,'Hellfire Peninsula mineral, node 169'); UPDATE gameobject SET guid=197552 WHERE guid=120761; INSERT IGNORE INTO pool_gameobject VALUES (197552,10971,0,'Hellfire Peninsula 181555, node 170'); INSERT IGNORE INTO gameobject VALUES (197551,181557,530,1,1,-1028.08,3968.82,111.831,-1.85005,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197551,10971,5,'Hellfire Peninsula 181557, node 170'); INSERT IGNORE INTO pool_template VALUES (10971,1,'Hellfire Peninsula mineral, node 170'); INSERT IGNORE INTO pool_pool VALUES (10971,890,0,'Hellfire Peninsula mineral, node 170'); UPDATE gameobject SET guid=197550 WHERE guid=120762; INSERT IGNORE INTO pool_gameobject VALUES (197550,10972,0,'Hellfire Peninsula 181555, node 171'); INSERT IGNORE INTO gameobject VALUES (197549,181557,530,1,1,-1162.33,3361.92,124.377,-1.01229,0.0,0.0,0.0,1.0,3600,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197549,10972,5,'Hellfire Peninsula 181557, node 171'); INSERT IGNORE INTO pool_template VALUES (10972,1,'Hellfire Peninsula mineral, node 171'); INSERT IGNORE INTO pool_pool VALUES (10972,890,0,'Hellfire Peninsula mineral, node 171'); UPDATE gameobject SET guid=197548 WHERE guid=121595; INSERT IGNORE INTO pool_gameobject VALUES (197548,10973,0,'Hellfire Peninsula 181555, node 172'); INSERT IGNORE INTO gameobject VALUES (197547,181557,530,1,1,-159.065,2840.8,26.7642,-1.11701,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197547,10973,5,'Hellfire Peninsula 181557, node 172'); INSERT IGNORE INTO pool_template VALUES (10973,1,'Hellfire Peninsula mineral, node 172'); INSERT IGNORE INTO pool_pool VALUES (10973,890,0,'Hellfire Peninsula mineral, node 172'); UPDATE gameobject SET guid=197546 WHERE guid=121596; INSERT IGNORE INTO pool_gameobject VALUES (197546,10974,0,'Hellfire Peninsula 181555, node 173'); INSERT IGNORE INTO gameobject VALUES (197545,181557,530,1,1,-175.172,2688.76,39.6906,2.86233,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197545,10974,5,'Hellfire Peninsula 181557, node 173'); INSERT IGNORE INTO pool_template VALUES (10974,1,'Hellfire Peninsula mineral, node 173'); INSERT IGNORE INTO pool_pool VALUES (10974,890,0,'Hellfire Peninsula mineral, node 173'); UPDATE gameobject SET guid=197544 WHERE guid=121598; INSERT IGNORE INTO pool_gameobject VALUES (197544,10975,0,'Hellfire Peninsula 181555, node 174'); INSERT IGNORE INTO gameobject VALUES (197543,181557,530,1,1,-988.538,4069.49,85.2849,-2.23402,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197543,10975,5,'Hellfire Peninsula 181557, node 174'); INSERT IGNORE INTO pool_template VALUES (10975,1,'Hellfire Peninsula mineral, node 174'); INSERT IGNORE INTO pool_pool VALUES (10975,890,0,'Hellfire Peninsula mineral, node 174'); UPDATE gameobject SET guid=197542 WHERE guid=121599; INSERT IGNORE INTO pool_gameobject VALUES (197542,10976,0,'Hellfire Peninsula 181555, node 175'); INSERT IGNORE INTO gameobject VALUES (197541,181557,530,1,1,-378.815,2946.42,-60.526,-2.00713,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197541,10976,5,'Hellfire Peninsula 181557, node 175'); INSERT IGNORE INTO pool_template VALUES (10976,1,'Hellfire Peninsula mineral, node 175'); INSERT IGNORE INTO pool_pool VALUES (10976,890,0,'Hellfire Peninsula mineral, node 175'); UPDATE gameobject SET guid=197540 WHERE guid=121600; INSERT IGNORE INTO pool_gameobject VALUES (197540,10977,0,'Hellfire Peninsula 181555, node 176'); INSERT IGNORE INTO gameobject VALUES (197539,181557,530,1,1,207.161,2240.34,51.0655,2.00713,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197539,10977,5,'Hellfire Peninsula 181557, node 176'); INSERT IGNORE INTO pool_template VALUES (10977,1,'Hellfire Peninsula mineral, node 176'); INSERT IGNORE INTO pool_pool VALUES (10977,890,0,'Hellfire Peninsula mineral, node 176'); UPDATE gameobject SET guid=197538 WHERE guid=121601; INSERT IGNORE INTO pool_gameobject VALUES (197538,10978,0,'Hellfire Peninsula 181555, node 177'); INSERT IGNORE INTO gameobject VALUES (197537,181557,530,1,1,34.8345,2239.57,87.9856,1.88495,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197537,10978,5,'Hellfire Peninsula 181557, node 177'); INSERT IGNORE INTO pool_template VALUES (10978,1,'Hellfire Peninsula mineral, node 177'); INSERT IGNORE INTO pool_pool VALUES (10978,890,0,'Hellfire Peninsula mineral, node 177'); UPDATE gameobject SET guid=197536 WHERE guid=121602; INSERT IGNORE INTO pool_gameobject VALUES (197536,10979,0,'Hellfire Peninsula 181555, node 178'); INSERT IGNORE INTO gameobject VALUES (197535,181557,530,1,1,-1104.67,2564.65,42.0649,0.104719,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197535,10979,5,'Hellfire Peninsula 181557, node 178'); INSERT IGNORE INTO pool_template VALUES (10979,1,'Hellfire Peninsula mineral, node 178'); INSERT IGNORE INTO pool_pool VALUES (10979,890,0,'Hellfire Peninsula mineral, node 178'); UPDATE gameobject SET guid=197534 WHERE guid=121603; INSERT IGNORE INTO pool_gameobject VALUES (197534,10980,0,'Hellfire Peninsula 181555, node 179'); INSERT IGNORE INTO gameobject VALUES (197533,181557,530,1,1,60.0663,1755.74,46.9669,-1.88495,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197533,10980,5,'Hellfire Peninsula 181557, node 179'); INSERT IGNORE INTO pool_template VALUES (10980,1,'Hellfire Peninsula mineral, node 179'); INSERT IGNORE INTO pool_pool VALUES (10980,890,0,'Hellfire Peninsula mineral, node 179'); UPDATE gameobject SET guid=197532 WHERE guid=121685; INSERT IGNORE INTO pool_gameobject VALUES (197532,10981,0,'Hellfire Peninsula 181555, node 180'); INSERT IGNORE INTO gameobject VALUES (197531,181557,530,1,1,292.107,3410.13,76.1362,2.96704,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197531,10981,5,'Hellfire Peninsula 181557, node 180'); INSERT IGNORE INTO pool_template VALUES (10981,1,'Hellfire Peninsula mineral, node 180'); INSERT IGNORE INTO pool_pool VALUES (10981,890,0,'Hellfire Peninsula mineral, node 180'); UPDATE gameobject SET guid=197530 WHERE guid=121686; INSERT IGNORE INTO pool_gameobject VALUES (197530,10982,0,'Hellfire Peninsula 181555, node 181'); INSERT IGNORE INTO gameobject VALUES (197529,181557,530,1,1,498.235,3065.31,10.1884,-2.00713,0.0,0.0,0.0,1.0,7200,255,1); INSERT IGNORE INTO pool_gameobject VALUES (197529,10982,5,'Hellfire Peninsula 181557, node 181'); INSERT IGNORE INTO pool_template VALUES (10982,1,'Hellfire Peninsula mineral, node 181'); INSERT IGNORE INTO pool_pool VALUES (10982,890,0,'Hellfire Peninsula mineral, node 181'); UPDATE gameobject SET spawntimesecs=60 WHERE guid IN (SELECT guid FROM pool_gameobject WHERE pool_entry BETWEEN 10000 AND 10999); DELETE FROM gameobject WHERE guid=61099; DELETE FROM gameobject WHERE guid=61963; DELETE FROM gameobject WHERE guid=64885; -- random UPDATE creature SET spawndist=0, MovementType=0 WHERE id IN (26712,26631,27909); INSERT IGNORE INTO creature VALUES (16327,26632,600,3,1,0,0,-236.826,-675.405,131.948,4.76475,86400,0.0,0,1,0,0,0); INSERT IGNORE INTO creature_template_addon VALUES (26632,0,0,1,0,0,0,'49551 0'); UPDATE creature_template SET InhabitType=InhabitType|4 WHERE entry=29794; UPDATE creature_template SET flags_extra=flags_extra|2 WHERE entry=15730; -- Cleanup UPDATE gameobject SET state = 0 WHERE id IN (SELECT entry FROM gameobject_template WHERE type = 0 AND data0 = 1); UPDATE creature_template SET unit_flags=unit_flags&~2048 WHERE unit_flags&2048=2048; UPDATE creature_template SET unit_flags=unit_flags&~524288 WHERE unit_flags&524288=524288; UPDATE creature_template SET unit_flags=unit_flags&~67108864 WHERE unit_flags&67108864=67108864; UPDATE creature_template SET unit_flags=unit_flags&~8388608 WHERE unit_flags&8388608=8388608; UPDATE creature, creature_template SET creature.curhealth=creature_template.minhealth,creature.curmana=creature_template.minmana WHERE creature.id=creature_template.entry and creature_template.RegenHealth = '1'; UPDATE creature_template SET dynamicflags = dynamicflags &~ 223; UPDATE creature_template SET npcflag = npcflag&~16777216; -- UNIT_NPC_FLAG_SPELLCLICK -- UPDATE gameobject_template SET flags=flags&~4 WHERE type IN (2,19,17); UPDATE creature SET MovementType = 0 WHERE spawndist = 0 AND MovementType=1; UPDATE creature SET spawndist=0 WHERE MovementType=0; UPDATE quest_template SET SpecialFlags=SpecialFlags|1 WHERE QuestFlags=QuestFlags|4096; UPDATE quest_template SET SpecialFlags=SpecialFlags|1 WHERE QuestFlags=QuestFlags|32768; DELETE FROM go,gt USING gameobject go LEFT JOIN gameobject_template gt ON go.id=gt.entry WHERE gt.entry IS NULL; DELETE FROM gi,gt USING gameobject_involvedrelation gi LEFT JOIN gameobject_template gt ON gi.id=gt.entry WHERE gt.entry IS NULL; DELETE FROM gqr,gt USING gameobject_questrelation gqr LEFT JOIN gameobject_template gt ON gqr.id=gt.entry WHERE gt.entry IS NULL; DELETE FROM ge,go USING game_event_gameobject ge LEFT JOIN gameobject go ON ge.guid=go.guid WHERE go.guid IS NULL; DELETE FROM gameobject_scripts WHERE id NOT IN (SELECT guid FROM gameobject); DELETE FROM gameobject_scripts WHERE command in (11, 12) and datalong NOT IN (SELECT guid FROM gameobject); DELETE FROM gameobject_battleground WHERE guid NOT IN (SELECT guid FROM gameobject); DELETE FROM creature_battleground WHERE guid NOT IN (SELECT guid FROM creature); DELETE FROM creature_addon WHERE guid NOT IN (SELECT guid FROM creature); UPDATE creature_addon SET moveflags=moveflags &~ 0x00000100; -- SPLINEFLAG_DONE UPDATE creature_addon SET moveflags=moveflags &~ 0x00000200; -- SPLINEFLAG_FALLING UPDATE creature_addon SET moveflags=moveflags &~ 0x00000800; -- SPLINEFLAG_TRAJECTORY (can crash client) UPDATE creature_addon SET moveflags=moveflags &~ 0x00200000; -- SPLINEFLAG_UNKNOWN3 (can crash client) UPDATE creature_addon SET moveflags=moveflags &~ 0x08000000; UPDATE creature_template_addon SET moveflags=moveflags &~ 0x00000100; UPDATE creature_template_addon SET moveflags=moveflags &~ 0x00000200; UPDATE creature_template_addon SET moveflags=moveflags &~ 0x00000800; UPDATE creature_template_addon SET moveflags=moveflags &~ 0x00200000; UPDATE creature_template_addon SET moveflags=moveflags &~ 0x08000000; DELETE FROM npc_gossip WHERE npc_guid NOT IN (SELECT guid FROM creature); DELETE FROM creature_movement WHERE id NOT IN (SELECT guid FROM creature); DELETE FROM game_event_creature WHERE guid NOT IN (SELECT guid FROM creature); DELETE FROM creature_questrelation WHERE id NOT IN (SELECT entry FROM creature_template); DELETE FROM creature_onkill_reputation WHERE creature_id NOT IN (SELECT entry FROM creature_template); UPDATE creature_template SET npcflag=npcflag|2 WHERE entry IN (SELECT id FROM creature_questrelation UNION SELECT id FROM creature_involvedrelation); UPDATE db_version set version = 'UDB 0.12.1 (396) for MaNGOS 10904 with SD2 SQL for rev. 1913'; UPDATE db_version set cache_id = 396; -- END
remixod/netServer
Run/Content/Impl/UDB/Updates/0.12.1_additions/396_updatepack_mangos.sql
SQL
gpl-2.0
626,567
/** Copyright (c) 2008- Samuli Jรคrvelรค All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html. If redistributing this code, this entire header must remain intact. */ function init(path) { servicePath = path; getSessionInfo(onSession, onError); }; function onSession(session) { if (!session["authentication_required"]) { onError({error:"Configuration Error", details:"Current Mollify configuration does not require authentication, and registration is disabled"}); return; } if (!session.features["registration"]) { onError({error:"Configuration Error", details:"Registration plugin not installed"}); return; } $("#register-button").click(onRegister); $("#registration-form").show(); } function onRegister() { $(".registration-field").removeClass("invalid"); $(".registration-field-hint").html(""); var name = $("#username-field").val(); var pw = $("#password-field").val(); var confirmPw = $("#confirm-password-field").val(); var email = $("#email-field").val(); if (name.length == 0) { $("#username-field").addClass("invalid"); $("#username-hint").html("Enter the username"); } if (pw.length == 0) { $("#password-field").addClass("invalid"); $("#password-hint").html("Enter the password"); } if (confirmPw.length == 0) { $("#confirm-password-field").addClass("invalid"); $("#confirm-password-hint").html("Re-enter the password"); } if (email.length == 0) { $("#email-field").addClass("invalid"); $("#email-hint").html("Enter your email"); } if (name.length == 0 || pw.length == 0 || confirmPw.length == 0 || email.length == 0) return; if (pw != confirmPw) { $("#password-field").addClass("invalid"); $("#confirm-password-field").addClass("invalid"); $("#password-hint").html("The passwords don't match"); return; } if (window.onValidateCustomFields) { if (!window.onValidateCustomFields()) return; } var additionalData = null; if (window.getCustomRegistrationData) additionalData = window.getCustomRegistrationData(); register(name, pw, email, additionalData, onRegistered, onError); } function onRegistered(response) { if (response.error) { onError(response); return; } window.location = 'pages/registration_success.html'; }
janosgyerik/TheToolbox
mollify/backend/plugin/Registration/js/registration_form.js
JavaScript
gpl-2.0
2,399
/* vi: set sw=4 ts=4: */ /* * udhcp client * * Russ Dill <Russ.Dill@asu.edu> July 2001 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <syslog.h> /* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */ #define WANT_PIDFILE 1 #include "common.h" #include "dhcpd.h" #include "dhcpc.h" #include <netinet/if_ether.h> #include <linux/filter.h> #include <linux/if_packet.h> /* "struct client_config_t client_config" is in bb_common_bufsiz1 */ #if ENABLE_LONG_OPTS static const char udhcpc_longopts[] ALIGN1 = "clientid-none\0" No_argument "C" "vendorclass\0" Required_argument "V" "hostname\0" Required_argument "H" "fqdn\0" Required_argument "F" "interface\0" Required_argument "i" "now\0" No_argument "n" "pidfile\0" Required_argument "p" "quit\0" No_argument "q" "release\0" No_argument "R" "request\0" Required_argument "r" "script\0" Required_argument "s" "timeout\0" Required_argument "T" "retries\0" Required_argument "t" "tryagain\0" Required_argument "A" "syslog\0" No_argument "S" "request-option\0" Required_argument "O" "no-default-options\0" No_argument "o" "foreground\0" No_argument "f" "background\0" No_argument "b" "broadcast\0" No_argument "B" IF_FEATURE_UDHCPC_ARPING("arping\0" Optional_argument "a") IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P") ; #endif /* Must match getopt32 option string order */ enum { OPT_C = 1 << 0, OPT_V = 1 << 1, OPT_H = 1 << 2, OPT_h = 1 << 3, OPT_F = 1 << 4, OPT_i = 1 << 5, OPT_n = 1 << 6, OPT_p = 1 << 7, OPT_q = 1 << 8, OPT_R = 1 << 9, OPT_r = 1 << 10, OPT_s = 1 << 11, OPT_T = 1 << 12, OPT_t = 1 << 13, OPT_S = 1 << 14, OPT_A = 1 << 15, OPT_O = 1 << 16, OPT_o = 1 << 17, OPT_x = 1 << 18, OPT_f = 1 << 19, OPT_B = 1 << 20, /* The rest has variable bit positions, need to be clever */ OPTBIT_B = 20, USE_FOR_MMU( OPTBIT_b,) IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,) IF_FEATURE_UDHCP_PORT( OPTBIT_P,) USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,) IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,) IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,) }; /*** Script execution code ***/ /* get a rough idea of how long an option will be (rounding up...) */ static const uint8_t len_of_option_as_string[] = { [OPTION_IP ] = sizeof("255.255.255.255 "), [OPTION_IP_PAIR ] = sizeof("255.255.255.255 ") * 2, [OPTION_STATIC_ROUTES ] = sizeof("255.255.255.255/32 255.255.255.255 "), [OPTION_6RD ] = sizeof("32 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 "), [OPTION_STRING ] = 1, [OPTION_STRING_HOST ] = 1, #if ENABLE_FEATURE_UDHCP_RFC3397 [OPTION_DNS_STRING ] = 1, /* unused */ /* Hmmm, this severely overestimates size if SIP_SERVERS option * is in domain name form: N-byte option in binary form * mallocs ~16*N bytes. But it is freed almost at once. */ [OPTION_SIP_SERVERS ] = sizeof("255.255.255.255 "), #endif // [OPTION_BOOLEAN ] = sizeof("yes "), [OPTION_U8 ] = sizeof("255 "), [OPTION_U16 ] = sizeof("65535 "), // [OPTION_S16 ] = sizeof("-32768 "), [OPTION_U32 ] = sizeof("4294967295 "), [OPTION_S32 ] = sizeof("-2147483684 "), }; /* note: ip is a pointer to an IP in network order, possibly misaliged */ static int sprint_nip(char *dest, const char *pre, const uint8_t *ip) { return sprintf(dest, "%s%u.%u.%u.%u", pre, ip[0], ip[1], ip[2], ip[3]); } /* really simple implementation, just count the bits */ static int mton(uint32_t mask) { int i = 0; mask = ntohl(mask); /* 111110000-like bit pattern */ while (mask) { i++; mask <<= 1; } return i; } #if ENABLE_FEATURE_UDHCPC_SANITIZEOPT /* Check if a given label represents a valid DNS label * Return pointer to the first character after the label upon success, * NULL otherwise. * See RFC1035, 2.3.1 */ /* We don't need to be particularly anal. For example, allowing _, hyphen * at the end, or leading and trailing dots would be ok, since it * can't be used for attacks. (Leading hyphen can be, if someone uses * cmd "$hostname" * in the script: then hostname may be treated as an option) */ static const char *valid_domain_label(const char *label) { unsigned char ch; unsigned pos = 0; for (;;) { ch = *label; if ((ch|0x20) < 'a' || (ch|0x20) > 'z') { if (pos == 0) { /* label must begin with letter */ return NULL; } if (ch < '0' || ch > '9') { if (ch == '\0' || ch == '.') return label; /* DNS allows only '-', but we are more permissive */ if (ch != '-' && ch != '_') return NULL; } } label++; pos++; //Do we want this? //if (pos > 63) /* NS_MAXLABEL; labels must be 63 chars or less */ // return NULL; } } /* Check if a given name represents a valid DNS name */ /* See RFC1035, 2.3.1 */ static int good_hostname(const char *name) { //const char *start = name; for (;;) { name = valid_domain_label(name); if (!name) return 0; if (!name[0]) return 1; //Do we want this? //return ((name - start) < 1025); /* NS_MAXDNAME */ name++; } } #else # define good_hostname(name) 1 #endif /* Create "opt_name=opt_value" string */ static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_optflag *optflag, const char *opt_name) { unsigned upper_length; int len, type, optlen; char *dest, *ret; /* option points to OPT_DATA, need to go back to get OPT_LEN */ len = option[-OPT_DATA + OPT_LEN]; type = optflag->flags & OPTION_TYPE_MASK; optlen = dhcp_option_lengths[type]; upper_length = len_of_option_as_string[type] * ((unsigned)(len + optlen - 1) / (unsigned)optlen); dest = ret = xmalloc(upper_length + strlen(opt_name) + 2); dest += sprintf(ret, "%s=", opt_name); while (len >= optlen) { switch (type) { case OPTION_IP: case OPTION_IP_PAIR: dest += sprint_nip(dest, "", option); if (type == OPTION_IP) break; dest += sprint_nip(dest, "/", option + 4); break; // case OPTION_BOOLEAN: // dest += sprintf(dest, *option ? "yes" : "no"); // break; case OPTION_U8: dest += sprintf(dest, "%u", *option); break; // case OPTION_S16: case OPTION_U16: { uint16_t val_u16; move_from_unaligned16(val_u16, option); dest += sprintf(dest, "%u", ntohs(val_u16)); break; } case OPTION_S32: case OPTION_U32: { uint32_t val_u32; move_from_unaligned32(val_u32, option); dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32)); break; } /* Note: options which use 'return' instead of 'break' * (for example, OPTION_STRING) skip the code which handles * the case of list of options. */ case OPTION_STRING: case OPTION_STRING_HOST: memcpy(dest, option, len); dest[len] = '\0'; if (type == OPTION_STRING_HOST && !good_hostname(dest)) safe_strncpy(dest, "bad", len); return ret; case OPTION_STATIC_ROUTES: { /* Option binary format: * mask [one byte, 0..32] * ip [big endian, 0..4 bytes depending on mask] * router [big endian, 4 bytes] * may be repeated * * We convert it to a string "IP/MASK ROUTER IP2/MASK2 ROUTER2" */ const char *pfx = ""; while (len >= 1 + 4) { /* mask + 0-byte ip + router */ uint32_t nip; uint8_t *p; unsigned mask; int bytes; mask = *option++; if (mask > 32) break; len--; nip = 0; p = (void*) &nip; bytes = (mask + 7) / 8; /* 0 -> 0, 1..8 -> 1, 9..16 -> 2 etc */ while (--bytes >= 0) { *p++ = *option++; len--; } if (len < 4) break; /* print ip/mask */ dest += sprint_nip(dest, pfx, (void*) &nip); pfx = " "; dest += sprintf(dest, "/%u ", mask); /* print router */ dest += sprint_nip(dest, "", option); option += 4; len -= 4; } return ret; } case OPTION_6RD: /* Option binary format (see RFC 5969): * 0 1 2 3 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | OPTION_6RD | option-length | IPv4MaskLen | 6rdPrefixLen | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | 6rdPrefix | * ... (16 octets) ... * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * ... 6rdBRIPv4Address(es) ... * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * We convert it to a string * "IPv4MaskLen 6rdPrefixLen 6rdPrefix 6rdBRIPv4Address..." * * Sanity check: ensure that our length is at least 22 bytes, that * IPv4MaskLen <= 32, * 6rdPrefixLen <= 128, * 6rdPrefixLen + (32 - IPv4MaskLen) <= 128 * (2nd condition need no check - it follows from 1st and 3rd). * Else, return envvar with empty value ("optname=") */ if (len >= (1 + 1 + 16 + 4) && option[0] <= 32 && (option[1] + 32 - option[0]) <= 128 ) { /* IPv4MaskLen */ dest += sprintf(dest, "%u ", *option++); /* 6rdPrefixLen */ dest += sprintf(dest, "%u ", *option++); /* 6rdPrefix */ dest += sprint_nip6(dest, /* "", */ option); option += 16; len -= 1 + 1 + 16 + 4; /* "+ 4" above corresponds to the length of IPv4 addr * we consume in the loop below */ while (1) { /* 6rdBRIPv4Address(es) */ dest += sprint_nip(dest, " ", option); option += 4; len -= 4; /* do we have yet another 4+ bytes? */ if (len < 0) break; /* no */ } } return ret; #if ENABLE_FEATURE_UDHCP_RFC3397 case OPTION_DNS_STRING: /* unpack option into dest; use ret for prefix (i.e., "optname=") */ dest = dname_dec(option, len, ret); if (dest) { free(ret); return dest; } /* error. return "optname=" string */ return ret; case OPTION_SIP_SERVERS: /* Option binary format: * type: byte * type=0: domain names, dns-compressed * type=1: IP addrs */ option++; len--; if (option[-1] == 0) { dest = dname_dec(option, len, ret); if (dest) { free(ret); return dest; } } else if (option[-1] == 1) { const char *pfx = ""; while (1) { len -= 4; if (len < 0) break; dest += sprint_nip(dest, pfx, option); pfx = " "; option += 4; } } return ret; #endif } /* switch */ /* If we are here, try to format any remaining data * in the option as another, similarly-formatted option */ option += optlen; len -= optlen; // TODO: it can be a list only if (optflag->flags & OPTION_LIST). // Should we bail out/warn if we see multi-ip option which is // not allowed to be such (for example, DHCP_BROADCAST)? - if (len < optlen /* || !(optflag->flags & OPTION_LIST) */) break; *dest++ = ' '; *dest = '\0'; } /* while */ return ret; } /* put all the parameters into the environment */ static char **fill_envp(struct dhcp_packet *packet) { int envc; int i; char **envp, **curr; const char *opt_name; uint8_t *temp; uint8_t overload = 0; #define BITMAP unsigned #define BBITS (sizeof(BITMAP) * 8) #define BMASK(i) (1 << (i & (sizeof(BITMAP) * 8 - 1))) #define FOUND_OPTS(i) (found_opts[(unsigned)i / BBITS]) BITMAP found_opts[256 / BBITS]; memset(found_opts, 0, sizeof(found_opts)); /* We need 6 elements for: * "interface=IFACE" * "ip=N.N.N.N" from packet->yiaddr * "siaddr=IP" from packet->siaddr_nip (unless 0) * "boot_file=FILE" from packet->file (unless overloaded) * "sname=SERVER_HOSTNAME" from packet->sname (unless overloaded) * terminating NULL */ envc = 6; /* +1 element for each option, +2 for subnet option: */ if (packet) { /* note: do not search for "pad" (0) and "end" (255) options */ //TODO: change logic to scan packet _once_ for (i = 1; i < 255; i++) { temp = udhcp_get_option(packet, i); if (temp) { if (i == DHCP_OPTION_OVERLOAD) overload = *temp; else if (i == DHCP_SUBNET) envc++; /* for $mask */ envc++; /*if (i != DHCP_MESSAGE_TYPE)*/ FOUND_OPTS(i) |= BMASK(i); } } } curr = envp = xzalloc(sizeof(envp[0]) * envc); *curr = xasprintf("interface=%s", client_config.interface); putenv(*curr++); if (!packet) return envp; /* Export BOOTP fields. Fields we don't (yet?) export: * uint8_t op; // always BOOTREPLY * uint8_t htype; // hardware address type. 1 = 10mb ethernet * uint8_t hlen; // hardware address length * uint8_t hops; // used by relay agents only * uint32_t xid; * uint16_t secs; // elapsed since client began acquisition/renewal * uint16_t flags; // only one flag so far: bcast. Never set by server * uint32_t ciaddr; // client IP (usually == yiaddr. can it be different * // if during renew server wants to give us differn IP?) * uint32_t gateway_nip; // relay agent IP address * uint8_t chaddr[16]; // link-layer client hardware address (MAC) * TODO: export gateway_nip as $giaddr? */ /* Most important one: yiaddr as $ip */ *curr = xmalloc(sizeof("ip=255.255.255.255")); sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr); putenv(*curr++); if (packet->siaddr_nip) { /* IP address of next server to use in bootstrap */ *curr = xmalloc(sizeof("siaddr=255.255.255.255")); sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip); putenv(*curr++); } if (!(overload & FILE_FIELD) && packet->file[0]) { /* watch out for invalid packets */ *curr = xasprintf("boot_file=%."DHCP_PKT_FILE_LEN_STR"s", packet->file); putenv(*curr++); } if (!(overload & SNAME_FIELD) && packet->sname[0]) { /* watch out for invalid packets */ *curr = xasprintf("sname=%."DHCP_PKT_SNAME_LEN_STR"s", packet->sname); putenv(*curr++); } /* Export known DHCP options */ opt_name = dhcp_option_strings; i = 0; while (*opt_name) { uint8_t code = dhcp_optflags[i].code; BITMAP *found_ptr = &FOUND_OPTS(code); BITMAP found_mask = BMASK(code); if (!(*found_ptr & found_mask)) goto next; *found_ptr &= ~found_mask; /* leave only unknown options */ temp = udhcp_get_option(packet, code); *curr = xmalloc_optname_optval(temp, &dhcp_optflags[i], opt_name); putenv(*curr++); if (code == DHCP_SUBNET) { /* Subnet option: make things like "$ip/$mask" possible */ uint32_t subnet; move_from_unaligned32(subnet, temp); *curr = xasprintf("mask=%u", mton(subnet)); putenv(*curr++); } next: opt_name += strlen(opt_name) + 1; i++; } /* Export unknown options */ for (i = 0; i < 256;) { BITMAP bitmap = FOUND_OPTS(i); if (!bitmap) { i += BBITS; continue; } if (bitmap & BMASK(i)) { unsigned len, ofs; temp = udhcp_get_option(packet, i); /* udhcp_get_option returns ptr to data portion, * need to go back to get len */ len = temp[-OPT_DATA + OPT_LEN]; *curr = xmalloc(sizeof("optNNN=") + 1 + len*2); ofs = sprintf(*curr, "opt%u=", i); *bin2hex(*curr + ofs, (void*) temp, len) = '\0'; putenv(*curr++); } i++; } return envp; } /* Call a script with a par file and env vars */ static void udhcp_run_script(struct dhcp_packet *packet, const char *name) { char **envp, **curr; char *argv[3]; envp = fill_envp(packet); /* call script */ log1("Executing %s %s", client_config.script, name); argv[0] = (char*) client_config.script; argv[1] = (char*) name; argv[2] = NULL; spawn_and_wait(argv); for (curr = envp; *curr; curr++) { log2(" %s", *curr); bb_unsetenv_and_free(*curr); } free(envp); } /*** Sending/receiving packets ***/ static ALWAYS_INLINE uint32_t random_xid(void) { return rand(); } /* Initialize the packet with the proper defaults */ static void init_packet(struct dhcp_packet *packet, char type) { uint16_t secs; /* Fill in: op, htype, hlen, cookie fields; message type option: */ udhcp_init_header(packet, type); packet->xid = random_xid(); client_config.last_secs = monotonic_sec(); if (client_config.first_secs == 0) client_config.first_secs = client_config.last_secs; secs = client_config.last_secs - client_config.first_secs; packet->secs = htons(secs); memcpy(packet->chaddr, client_config.client_mac, 6); if (client_config.clientid) udhcp_add_binary_option(packet, client_config.clientid); } static void add_client_options(struct dhcp_packet *packet) { int i, end, len; udhcp_add_simple_option(packet, DHCP_MAX_SIZE, htons(IP_UDP_DHCP_SIZE)); /* Add a "param req" option with the list of options we'd like to have * from stubborn DHCP servers. Pull the data from the struct in common.c. * No bounds checking because it goes towards the head of the packet. */ end = udhcp_end_option(packet->options); len = 0; for (i = 1; i < DHCP_END; i++) { if (client_config.opt_mask[i >> 3] & (1 << (i & 7))) { packet->options[end + OPT_DATA + len] = i; len++; } } if (len) { packet->options[end + OPT_CODE] = DHCP_PARAM_REQ; packet->options[end + OPT_LEN] = len; packet->options[end + OPT_DATA + len] = DHCP_END; } if (client_config.vendorclass) udhcp_add_binary_option(packet, client_config.vendorclass); if (client_config.hostname) udhcp_add_binary_option(packet, client_config.hostname); if (client_config.fqdn) udhcp_add_binary_option(packet, client_config.fqdn); /* Request broadcast replies if we have no IP addr */ if ((option_mask32 & OPT_B) && packet->ciaddr == 0) packet->flags |= htons(BROADCAST_FLAG); /* Add -x options if any */ { struct option_set *curr = client_config.options; while (curr) { udhcp_add_binary_option(packet, curr->data); curr = curr->next; } // if (client_config.sname) // strncpy((char*)packet->sname, client_config.sname, sizeof(packet->sname) - 1); // if (client_config.boot_file) // strncpy((char*)packet->file, client_config.boot_file, sizeof(packet->file) - 1); } // This will be needed if we remove -V VENDOR_STR in favor of // -x vendor:VENDOR_STR //if (!udhcp_find_option(packet.options, DHCP_VENDOR)) // /* not set, set the default vendor ID */ // ...add (DHCP_VENDOR, "udhcp "BB_VER) opt... } /* RFC 2131 * 4.4.4 Use of broadcast and unicast * * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM * messages, unless the client knows the address of a DHCP server. * The client unicasts DHCPRELEASE messages to the server. Because * the client is declining the use of the IP address supplied by the server, * the client broadcasts DHCPDECLINE messages. * * When the DHCP client knows the address of a DHCP server, in either * INIT or REBOOTING state, the client may use that address * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address. * The client may also use unicast to send DHCPINFORM messages * to a known DHCP server. If the client receives no response to DHCP * messages sent to the IP address of a known DHCP server, the DHCP * client reverts to using the IP broadcast address. */ static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet) { return udhcp_send_raw_packet(packet, /*src*/ INADDR_ANY, CLIENT_PORT, /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex); } static int bcast_or_ucast(struct dhcp_packet *packet, uint32_t ciaddr, uint32_t server) { if (server) return udhcp_send_kernel_packet(packet, ciaddr, CLIENT_PORT, server, SERVER_PORT); return raw_bcast_from_client_config_ifindex(packet); } /* Broadcast a DHCP discover packet to the network, with an optionally requested IP */ /* NOINLINE: limit stack usage in caller */ static NOINLINE int send_discover(uint32_t xid, uint32_t requested) { struct dhcp_packet packet; /* Fill in: op, htype, hlen, cookie, chaddr fields, * random xid field (we override it below), * client-id option (unless -C), message type option: */ init_packet(&packet, DHCPDISCOVER); packet.xid = xid; if (requested) udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); /* Add options: maxsize, * optionally: hostname, fqdn, vendorclass, * "param req" option according to -O, options specified with -x */ add_client_options(&packet); bb_info_msg("Sending discover..."); return raw_bcast_from_client_config_ifindex(&packet); } /* Broadcast a DHCP request message */ /* RFC 2131 3.1 paragraph 3: * "The client _broadcasts_ a DHCPREQUEST message..." */ /* NOINLINE: limit stack usage in caller */ static NOINLINE int send_select(uint32_t xid, uint32_t server, uint32_t requested) { struct dhcp_packet packet; struct in_addr addr; /* * RFC 2131 4.3.2 DHCPREQUEST message * ... * If the DHCPREQUEST message contains a 'server identifier' * option, the message is in response to a DHCPOFFER message. * Otherwise, the message is a request to verify or extend an * existing lease. If the client uses a 'client identifier' * in a DHCPREQUEST message, it MUST use that same 'client identifier' * in all subsequent messages. If the client included a list * of requested parameters in a DHCPDISCOVER message, it MUST * include that list in all subsequent messages. */ /* Fill in: op, htype, hlen, cookie, chaddr fields, * random xid field (we override it below), * client-id option (unless -C), message type option: */ init_packet(&packet, DHCPREQUEST); packet.xid = xid; udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); /* Add options: maxsize, * optionally: hostname, fqdn, vendorclass, * "param req" option according to -O, and options specified with -x */ add_client_options(&packet); addr.s_addr = requested; bb_info_msg("Sending select for %s...", inet_ntoa(addr)); return raw_bcast_from_client_config_ifindex(&packet); } /* Unicast or broadcast a DHCP renew message */ /* NOINLINE: limit stack usage in caller */ static NOINLINE int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) { struct dhcp_packet packet; /* * RFC 2131 4.3.2 DHCPREQUEST message * ... * DHCPREQUEST generated during RENEWING state: * * 'server identifier' MUST NOT be filled in, 'requested IP address' * option MUST NOT be filled in, 'ciaddr' MUST be filled in with * client's IP address. In this situation, the client is completely * configured, and is trying to extend its lease. This message will * be unicast, so no relay agents will be involved in its * transmission. Because 'giaddr' is therefore not filled in, the * DHCP server will trust the value in 'ciaddr', and use it when * replying to the client. */ /* Fill in: op, htype, hlen, cookie, chaddr fields, * random xid field (we override it below), * client-id option (unless -C), message type option: */ init_packet(&packet, DHCPREQUEST); packet.xid = xid; packet.ciaddr = ciaddr; /* Add options: maxsize, * optionally: hostname, fqdn, vendorclass, * "param req" option according to -O, and options specified with -x */ add_client_options(&packet); bb_info_msg("Sending renew..."); return bcast_or_ucast(&packet, ciaddr, server); } #if ENABLE_FEATURE_UDHCPC_ARPING /* Broadcast a DHCP decline message */ /* NOINLINE: limit stack usage in caller */ static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t requested) { struct dhcp_packet packet; /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, * client-id option (unless -C), message type option: */ init_packet(&packet, DHCPDECLINE); #if 0 /* RFC 2131 says DHCPDECLINE's xid is randomly selected by client, * but in case the server is buggy and wants DHCPDECLINE's xid * to match the xid which started entire handshake, * we use the same xid we used in initial DHCPDISCOVER: */ packet.xid = xid; #endif /* DHCPDECLINE uses "requested ip", not ciaddr, to store offered IP */ udhcp_add_simple_option(&packet, DHCP_REQUESTED_IP, requested); udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); bb_info_msg("Sending decline..."); return raw_bcast_from_client_config_ifindex(&packet); } #endif /* Unicast a DHCP release message */ static int send_release(uint32_t server, uint32_t ciaddr) { struct dhcp_packet packet; /* Fill in: op, htype, hlen, cookie, chaddr, random xid fields, * client-id option (unless -C), message type option: */ init_packet(&packet, DHCPRELEASE); /* DHCPRELEASE uses ciaddr, not "requested ip", to store IP being released */ packet.ciaddr = ciaddr; udhcp_add_simple_option(&packet, DHCP_SERVER_ID, server); bb_info_msg("Sending release..."); /* Note: normally we unicast here since "server" is not zero. * However, there _are_ people who run "address-less" DHCP servers, * and reportedly ISC dhcp client and Windows allow that. */ return bcast_or_ucast(&packet, ciaddr, server); } /* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */ /* NOINLINE: limit stack usage in caller */ static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd) { int bytes; struct ip_udp_dhcp_packet packet; uint16_t check; struct iovec iov; struct msghdr msg; #ifdef PACKET_AUXDATA unsigned char cmsgbuf[CMSG_LEN(sizeof(struct tpacket_auxdata))]; struct cmsghdr *cmsg; #endif /* used to use just safe_read(fd, &packet, sizeof(packet)) * but we need to check for TP_STATUS_CSUMNOTREADY :( */ iov.iov_base = &packet; iov.iov_len = sizeof(packet); memset(&msg, 0, sizeof(msg)); msg.msg_iov = &iov; msg.msg_iovlen = 1; #ifdef PACKET_AUXDATA msg.msg_control = cmsgbuf; msg.msg_controllen = sizeof(cmsgbuf); #endif for (;;) { bytes = recvmsg(fd, &msg, 0); if (bytes < 0) { if (errno == EINTR) continue; log1("Packet read error, ignoring"); /* NB: possible down interface, etc. Caller should pause. */ return bytes; /* returns -1 */ } break; } if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) { log1("Packet is too short, ignoring"); return -2; } if (bytes < ntohs(packet.ip.tot_len)) { /* packet is bigger than sizeof(packet), we did partial read */ log1("Oversized packet, ignoring"); return -2; } /* ignore any extra garbage bytes */ bytes = ntohs(packet.ip.tot_len); /* make sure its the right packet for us, and that it passes sanity checks */ if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION || packet.ip.ihl != (sizeof(packet.ip) >> 2) || packet.udp.dest != htons(CLIENT_PORT) /* || bytes > (int) sizeof(packet) - can't happen */ || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip)) ) { log1("Unrelated/bogus packet, ignoring"); return -2; } /* verify IP checksum */ check = packet.ip.check; packet.ip.check = 0; if (check != inet_cksum((uint16_t *)&packet.ip, sizeof(packet.ip))) { log1("Bad IP header checksum, ignoring"); return -2; } #ifdef PACKET_AUXDATA for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) { if (cmsg->cmsg_level == SOL_PACKET && cmsg->cmsg_type == PACKET_AUXDATA ) { /* some VMs don't checksum UDP and TCP data * they send to the same physical machine, * here we detect this case: */ struct tpacket_auxdata *aux = (void *)CMSG_DATA(cmsg); if (aux->tp_status & TP_STATUS_CSUMNOTREADY) goto skip_udp_sum_check; } } #endif /* verify UDP checksum. IP header has to be modified for this */ memset(&packet.ip, 0, offsetof(struct iphdr, protocol)); /* ip.xx fields which are not memset: protocol, check, saddr, daddr */ packet.ip.tot_len = packet.udp.len; /* yes, this is needed */ check = packet.udp.check; packet.udp.check = 0; if (check && check != inet_cksum((uint16_t *)&packet, bytes)) { log1("Packet with bad UDP checksum received, ignoring"); return -2; } #ifdef PACKET_AUXDATA skip_udp_sum_check: #endif if (packet.data.cookie != htonl(DHCP_MAGIC)) { bb_info_msg("Packet with bad magic, ignoring"); return -2; } log1("Received a packet"); udhcp_dump_packet(&packet.data); bytes -= sizeof(packet.ip) + sizeof(packet.udp); memcpy(dhcp_pkt, &packet.data, bytes); return bytes; } /*** Main ***/ static int sockfd = -1; #define LISTEN_NONE 0 #define LISTEN_KERNEL 1 #define LISTEN_RAW 2 static smallint listen_mode; /* initial state: (re)start DHCP negotiation */ #define INIT_SELECTING 0 /* discover was sent, DHCPOFFER reply received */ #define REQUESTING 1 /* select/renew was sent, DHCPACK reply received */ #define BOUND 2 /* half of lease passed, want to renew it by sending unicast renew requests */ #define RENEWING 3 /* renew requests were not answered, lease is almost over, send broadcast renew */ #define REBINDING 4 /* manually requested renew (SIGUSR1) */ #define RENEW_REQUESTED 5 /* release, possibly manually requested (SIGUSR2) */ #define RELEASED 6 static smallint state; static int udhcp_raw_socket(int ifindex) { int fd; struct sockaddr_ll sock; log1("Opening raw socket on ifindex %d", ifindex); //log2? fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)); /* ^^^^^ * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) * ETH_P_IP: want to receive only packets with IPv4 eth type */ log1("Got raw socket fd"); //log2? sock.sll_family = AF_PACKET; sock.sll_protocol = htons(ETH_P_IP); sock.sll_ifindex = ifindex; xbind(fd, (struct sockaddr *) &sock, sizeof(sock)); #if 0 /* Several users reported breakage when BPF filter is used */ if (CLIENT_PORT == 68) { /* Use only if standard port is in use */ /* * I've selected not to see LL header, so BPF doesn't see it, too. * The filter may also pass non-IP and non-ARP packets, but we do * a more complete check when receiving the message in userspace. * * and filter shamelessly stolen from: * * http://www.flamewarmaster.de/software/dhcpclient/ * * There are a few other interesting ideas on that page (look under * "Motivation"). Use of netlink events is most interesting. Think * of various network servers listening for events and reconfiguring. * That would obsolete sending HUP signals and/or make use of restarts. * * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>. * License: GPL v2. */ static const struct sock_filter filter_instr[] = { /* load 9th byte (protocol) */ BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9), /* jump to L1 if it is IPPROTO_UDP, else to L4 */ BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 0, 6), /* L1: load halfword from offset 6 (flags and frag offset) */ BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 6), /* jump to L4 if any bits in frag offset field are set, else to L2 */ BPF_JUMP(BPF_JMP|BPF_JSET|BPF_K, 0x1fff, 4, 0), /* L2: skip IP header (load index reg with header len) */ BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), /* load udp destination port from halfword[header_len + 2] */ BPF_STMT(BPF_LD|BPF_H|BPF_IND, 2), /* jump to L3 if udp dport is CLIENT_PORT, else to L4 */ BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 68, 0, 1), /* L3: accept packet ("accept 0x7fffffff bytes") */ /* Accepting 0xffffffff works too but kernel 2.6.19 is buggy */ BPF_STMT(BPF_RET|BPF_K, 0x7fffffff), /* L4: discard packet ("accept zero bytes") */ BPF_STMT(BPF_RET|BPF_K, 0), }; static const struct sock_fprog filter_prog = { .len = sizeof(filter_instr) / sizeof(filter_instr[0]), /* casting const away: */ .filter = (struct sock_filter *) filter_instr, }; /* Ignoring error (kernel may lack support for this) */ if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog, sizeof(filter_prog)) >= 0) log1("Attached filter to raw socket fd"); // log? } #endif #ifdef PACKET_AUXDATA if (setsockopt(fd, SOL_PACKET, PACKET_AUXDATA, &const_int_1, sizeof(int)) < 0 ) { if (errno != ENOPROTOOPT) log1("Can't set PACKET_AUXDATA on raw socket"); } #endif log1("Created raw socket"); return fd; } static void change_listen_mode(int new_mode) { log1("Entering listen mode: %s", new_mode != LISTEN_NONE ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw") : "none" ); listen_mode = new_mode; if (sockfd >= 0) { close(sockfd); sockfd = -1; } if (new_mode == LISTEN_KERNEL) sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface); else if (new_mode != LISTEN_NONE) sockfd = udhcp_raw_socket(client_config.ifindex); /* else LISTEN_NONE: sockfd stays closed */ } /* Called only on SIGUSR1 */ static void perform_renew(void) { bb_info_msg("Performing a DHCP renew"); switch (state) { case BOUND: change_listen_mode(LISTEN_KERNEL); case RENEWING: case REBINDING: state = RENEW_REQUESTED; break; case RENEW_REQUESTED: /* impatient are we? fine, square 1 */ udhcp_run_script(NULL, "deconfig"); case REQUESTING: case RELEASED: change_listen_mode(LISTEN_RAW); state = INIT_SELECTING; break; case INIT_SELECTING: break; } } static void perform_release(uint32_t server_addr, uint32_t requested_ip) { char buffer[sizeof("255.255.255.255")]; struct in_addr temp_addr; /* send release packet */ if (state == BOUND || state == RENEWING || state == REBINDING) { temp_addr.s_addr = server_addr; strcpy(buffer, inet_ntoa(temp_addr)); temp_addr.s_addr = requested_ip; bb_info_msg("Unicasting a release of %s to %s", inet_ntoa(temp_addr), buffer); send_release(server_addr, requested_ip); /* unicast */ udhcp_run_script(NULL, "deconfig"); } bb_info_msg("Entering released state"); change_listen_mode(LISTEN_NONE); state = RELEASED; } static uint8_t* alloc_dhcp_option(int code, const char *str, int extra) { uint8_t *storage; int len = strnlen(str, 255); storage = xzalloc(len + extra + OPT_DATA); storage[OPT_CODE] = code; storage[OPT_LEN] = len + extra; memcpy(storage + extra + OPT_DATA, str, len); return storage; } #if BB_MMU static void client_background(void) { bb_daemonize(0); logmode &= ~LOGMODE_STDIO; /* rewrite pidfile, as our pid is different now */ write_pidfile(client_config.pidfile); } #endif //usage:#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 //usage:# define IF_UDHCP_VERBOSE(...) __VA_ARGS__ //usage:#else //usage:# define IF_UDHCP_VERBOSE(...) //usage:#endif //usage:#define udhcpc_trivial_usage //usage: "[-fbq"IF_UDHCP_VERBOSE("v")"RB]"IF_FEATURE_UDHCPC_ARPING(" [-a[MSEC]]")" [-t N] [-T SEC] [-A SEC/-n]\n" //usage: " [-i IFACE]"IF_FEATURE_UDHCP_PORT(" [-P PORT]")" [-s PROG] [-p PIDFILE]\n" //usage: " [-oC] [-r IP] [-V VENDOR] [-F NAME] [-x OPT:VAL]... [-O OPT]..." //usage:#define udhcpc_full_usage "\n" //usage: IF_LONG_OPTS( //usage: "\n -i,--interface IFACE Interface to use (default eth0)" //usage: IF_FEATURE_UDHCP_PORT( //usage: "\n -P,--client-port PORT Use PORT (default 68)" //usage: ) //usage: "\n -s,--script PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" //usage: "\n -p,--pidfile FILE Create pidfile" //usage: "\n -B,--broadcast Request broadcast replies" //usage: "\n -t,--retries N Send up to N discover packets (default 3)" //usage: "\n -T,--timeout SEC Pause between packets (default 3)" //usage: "\n -A,--tryagain SEC Wait if lease is not obtained (default 20)" //usage: "\n -n,--now Exit if lease is not obtained" //usage: "\n -q,--quit Exit after obtaining lease" //usage: "\n -R,--release Release IP on exit" //usage: "\n -f,--foreground Run in foreground" //usage: USE_FOR_MMU( //usage: "\n -b,--background Background if lease is not obtained" //usage: ) //usage: "\n -S,--syslog Log to syslog too" //usage: IF_FEATURE_UDHCPC_ARPING( //usage: "\n -a[MSEC],--arping[=MSEC] Validate offered address with ARP ping" //usage: ) //usage: "\n -r,--request IP Request this IP address" //usage: "\n -o,--no-default-options Don't request any options (unless -O is given)" //usage: "\n -O,--request-option OPT Request option OPT from server (cumulative)" //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" //usage: "\n Examples of string, numeric, and hex byte opts:" //usage: "\n -x hostname:bbox - option 12" //usage: "\n -x lease:3600 - option 51 (lease time)" //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" //usage: "\n -F,--fqdn NAME Ask server to update DNS mapping for NAME" //usage: "\n -V,--vendorclass VENDOR Vendor identifier (default 'udhcp VERSION')" //usage: "\n -C,--clientid-none Don't send MAC as client identifier" //usage: IF_UDHCP_VERBOSE( //usage: "\n -v Verbose" //usage: ) //usage: ) //usage: IF_NOT_LONG_OPTS( //usage: "\n -i IFACE Interface to use (default eth0)" //usage: IF_FEATURE_UDHCP_PORT( //usage: "\n -P PORT Use PORT (default 68)" //usage: ) //usage: "\n -s PROG Run PROG at DHCP events (default "CONFIG_UDHCPC_DEFAULT_SCRIPT")" //usage: "\n -p FILE Create pidfile" //usage: "\n -B Request broadcast replies" //usage: "\n -t N Send up to N discover packets (default 3)" //usage: "\n -T SEC Pause between packets (default 3)" //usage: "\n -A SEC Wait if lease is not obtained (default 20)" //usage: "\n -n Exit if lease is not obtained" //usage: "\n -q Exit after obtaining lease" //usage: "\n -R Release IP on exit" //usage: "\n -f Run in foreground" //usage: USE_FOR_MMU( //usage: "\n -b Background if lease is not obtained" //usage: ) //usage: "\n -S Log to syslog too" //usage: IF_FEATURE_UDHCPC_ARPING( //usage: "\n -a[MSEC] Validate offered address with ARP ping" //usage: ) //usage: "\n -r IP Request this IP address" //usage: "\n -o Don't request any options (unless -O is given)" //usage: "\n -O OPT Request option OPT from server (cumulative)" //usage: "\n -x OPT:VAL Include option OPT in sent packets (cumulative)" //usage: "\n Examples of string, numeric, and hex byte opts:" //usage: "\n -x hostname:bbox - option 12" //usage: "\n -x lease:3600 - option 51 (lease time)" //usage: "\n -x 0x3d:0100BEEFC0FFEE - option 61 (client id)" //usage: "\n -F NAME Ask server to update DNS mapping for NAME" //usage: "\n -V VENDOR Vendor identifier (default 'udhcp VERSION')" //usage: "\n -C Don't send MAC as client identifier" //usage: IF_UDHCP_VERBOSE( //usage: "\n -v Verbose" //usage: ) //usage: ) //usage: "\nSignals:" //usage: "\n USR1 Renew lease" //usage: "\n USR2 Release lease" int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int udhcpc_main(int argc UNUSED_PARAM, char **argv) { uint8_t *message; const char *str_V, *str_h, *str_F, *str_r; IF_FEATURE_UDHCPC_ARPING(const char *str_a = "2000";) IF_FEATURE_UDHCP_PORT(char *str_P;) void *clientid_mac_ptr; llist_t *list_O = NULL; llist_t *list_x = NULL; int tryagain_timeout = 20; int discover_timeout = 3; int discover_retries = 3; uint32_t server_addr = server_addr; /* for compiler */ uint32_t requested_ip = 0; uint32_t xid = xid; /* for compiler */ int packet_num; int timeout; /* must be signed */ unsigned already_waited_sec; unsigned opt; IF_FEATURE_UDHCPC_ARPING(unsigned arpping_ms;) int max_fd; int retval; fd_set rfds; /* Default options */ IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;) IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;) client_config.interface = "eth0"; client_config.script = CONFIG_UDHCPC_DEFAULT_SCRIPT; str_V = "udhcp "BB_VER; /* Parse command line */ /* O,x: list; -T,-t,-A take numeric param */ opt_complementary = "O::x::T+:t+:A+" IF_UDHCP_VERBOSE(":vv") ; IF_LONG_OPTS(applet_long_options = udhcpc_longopts;) opt = getopt32(argv, "CV:H:h:F:i:np:qRr:s:T:t:SA:O:ox:fB" USE_FOR_MMU("b") IF_FEATURE_UDHCPC_ARPING("a::") IF_FEATURE_UDHCP_PORT("P:") "v" , &str_V, &str_h, &str_h, &str_F , &client_config.interface, &client_config.pidfile, &str_r /* i,p */ , &client_config.script /* s */ , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */ , &list_O , &list_x IF_FEATURE_UDHCPC_ARPING(, &str_a) IF_FEATURE_UDHCP_PORT(, &str_P) IF_UDHCP_VERBOSE(, &dhcp_verbose) ); if (opt & (OPT_h|OPT_H)) { //msg added 2011-11 bb_error_msg("option -h NAME is deprecated, use -x hostname:NAME"); client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0); } if (opt & OPT_F) { /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */ client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3); /* Flag bits: 0000NEOS * S: 1 = Client requests server to update A RR in DNS as well as PTR * O: 1 = Server indicates to client that DNS has been updated regardless * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>, * not "host.domain.com". Format 0 is obsolete. * N: 1 = Client requests server to not update DNS (S must be 0 then) * Two [0] bytes which follow are deprecated and must be 0. */ client_config.fqdn[OPT_DATA + 0] = 0x1; /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */ /*client_config.fqdn[OPT_DATA + 2] = 0; */ } if (opt & OPT_r) requested_ip = inet_addr(str_r); #if ENABLE_FEATURE_UDHCP_PORT if (opt & OPT_P) { CLIENT_PORT = xatou16(str_P); SERVER_PORT = CLIENT_PORT - 1; } #endif IF_FEATURE_UDHCPC_ARPING(arpping_ms = xatou(str_a);) while (list_O) { char *optstr = llist_pop(&list_O); unsigned n = bb_strtou(optstr, NULL, 0); if (errno || n > 254) { n = udhcp_option_idx(optstr); n = dhcp_optflags[n].code; } client_config.opt_mask[n >> 3] |= 1 << (n & 7); } if (!(opt & OPT_o)) { unsigned i, n; for (i = 0; (n = dhcp_optflags[i].code) != 0; i++) { if (dhcp_optflags[i].flags & OPTION_REQ) { client_config.opt_mask[n >> 3] |= 1 << (n & 7); } } } while (list_x) { char *optstr = llist_pop(&list_x); char *colon = strchr(optstr, ':'); if (colon) *colon = ' '; /* now it looks similar to udhcpd's config file line: * "optname optval", using the common routine: */ udhcp_str2optset(optstr, &client_config.options); } if (udhcp_read_interface(client_config.interface, &client_config.ifindex, NULL, client_config.client_mac) ) { return 1; } clientid_mac_ptr = NULL; if (!(opt & OPT_C) && !udhcp_find_option(client_config.options, DHCP_CLIENT_ID)) { /* not suppressed and not set, set the default client ID */ client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7); client_config.clientid[OPT_DATA] = 1; /* type: ethernet */ clientid_mac_ptr = client_config.clientid + OPT_DATA+1; memcpy(clientid_mac_ptr, client_config.client_mac, 6); } if (str_V[0] != '\0') { // can drop -V, str_V, client_config.vendorclass, // but need to add "vendor" to the list of recognized // string opts for this to work; // and need to tweak add_client_options() too... // ...so the question is, should we? //bb_error_msg("option -V VENDOR is deprecated, use -x vendor:VENDOR"); client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0); } #if !BB_MMU /* on NOMMU reexec (i.e., background) early */ if (!(opt & OPT_f)) { bb_daemonize_or_rexec(0 /* flags */, argv); logmode = LOGMODE_NONE; } #endif if (opt & OPT_S) { openlog(applet_name, LOG_PID, LOG_DAEMON); logmode |= LOGMODE_SYSLOG; } /* Make sure fd 0,1,2 are open */ bb_sanitize_stdio(); /* Equivalent of doing a fflush after every \n */ setlinebuf(stdout); /* Create pidfile */ write_pidfile(client_config.pidfile); /* Goes to stdout (unless NOMMU) and possibly syslog */ bb_info_msg("%s (v"BB_VER") started", applet_name); /* Set up the signal pipe */ udhcp_sp_setup(); /* We want random_xid to be random... */ srand(monotonic_us()); state = INIT_SELECTING; udhcp_run_script(NULL, "deconfig"); change_listen_mode(LISTEN_RAW); packet_num = 0; timeout = 0; already_waited_sec = 0; /* Main event loop. select() waits on signal pipe and possibly * on sockfd. * "continue" statements in code below jump to the top of the loop. */ for (;;) { struct timeval tv; struct dhcp_packet packet; /* silence "uninitialized!" warning */ unsigned timestamp_before_wait = timestamp_before_wait; //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode); /* Was opening raw or udp socket here * if (listen_mode != LISTEN_NONE && sockfd < 0), * but on fast network renew responses return faster * than we open sockets. Thus this code is moved * to change_listen_mode(). Thus we open listen socket * BEFORE we send renew request (see "case BOUND:"). */ max_fd = udhcp_sp_fd_set(&rfds, sockfd); tv.tv_sec = timeout - already_waited_sec; tv.tv_usec = 0; retval = 0; /* If we already timed out, fall through with retval = 0, else... */ if ((int)tv.tv_sec > 0) { log1("Waiting on select %u seconds", (int)tv.tv_sec); timestamp_before_wait = (unsigned)monotonic_sec(); retval = select(max_fd + 1, &rfds, NULL, NULL, &tv); if (retval < 0) { /* EINTR? A signal was caught, don't panic */ if (errno == EINTR) { already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; continue; } /* Else: an error occured, panic! */ bb_perror_msg_and_die("select"); } } /* If timeout dropped to zero, time to become active: * resend discover/renew/whatever */ if (retval == 0) { /* When running on a bridge, the ifindex may have changed * (e.g. if member interfaces were added/removed * or if the status of the bridge changed). * Refresh ifindex and client_mac: */ if (udhcp_read_interface(client_config.interface, &client_config.ifindex, NULL, client_config.client_mac) ) { goto ret0; /* iface is gone? */ } if (clientid_mac_ptr) memcpy(clientid_mac_ptr, client_config.client_mac, 6); /* We will restart the wait in any case */ already_waited_sec = 0; switch (state) { case INIT_SELECTING: if (!discover_retries || packet_num < discover_retries) { if (packet_num == 0) xid = random_xid(); /* broadcast */ send_discover(xid, requested_ip); timeout = discover_timeout; packet_num++; continue; } leasefail: udhcp_run_script(NULL, "leasefail"); #if BB_MMU /* -b is not supported on NOMMU */ if (opt & OPT_b) { /* background if no lease */ bb_info_msg("No lease, forking to background"); client_background(); /* do not background again! */ opt = ((opt & ~OPT_b) | OPT_f); } else #endif if (opt & OPT_n) { /* abort if no lease */ bb_info_msg("No lease, failing"); retval = 1; goto ret; } /* wait before trying again */ timeout = tryagain_timeout; packet_num = 0; continue; case REQUESTING: if (!discover_retries || packet_num < discover_retries) { /* send broadcast select packet */ send_select(xid, server_addr, requested_ip); timeout = discover_timeout; packet_num++; continue; } /* Timed out, go back to init state. * "discover...select...discover..." loops * were seen in the wild. Treat them similarly * to "no response to discover" case */ change_listen_mode(LISTEN_RAW); state = INIT_SELECTING; goto leasefail; case BOUND: /* 1/2 lease passed, enter renewing state */ state = RENEWING; client_config.first_secs = 0; /* make secs field count from 0 */ change_listen_mode(LISTEN_KERNEL); log1("Entering renew state"); /* fall right through */ case RENEW_REQUESTED: /* manual (SIGUSR1) renew */ case_RENEW_REQUESTED: case RENEWING: if (timeout > 60) { /* send an unicast renew request */ /* Sometimes observed to fail (EADDRNOTAVAIL) to bind * a new UDP socket for sending inside send_renew. * I hazard to guess existing listening socket * is somehow conflicting with it, but why is it * not deterministic then?! Strange. * Anyway, it does recover by eventually failing through * into INIT_SELECTING state. */ send_renew(xid, server_addr, requested_ip); timeout >>= 1; continue; } /* Timed out, enter rebinding state */ log1("Entering rebinding state"); state = REBINDING; /* fall right through */ case REBINDING: /* Switch to bcast receive */ change_listen_mode(LISTEN_RAW); /* Lease is *really* about to run out, * try to find DHCP server using broadcast */ if (timeout > 0) { /* send a broadcast renew request */ send_renew(xid, 0 /*INADDR_ANY*/, requested_ip); timeout >>= 1; continue; } /* Timed out, enter init state */ bb_info_msg("Lease lost, entering init state"); udhcp_run_script(NULL, "deconfig"); state = INIT_SELECTING; client_config.first_secs = 0; /* make secs field count from 0 */ /*timeout = 0; - already is */ packet_num = 0; continue; /* case RELEASED: */ } /* yah, I know, *you* say it would never happen */ timeout = INT_MAX; continue; /* back to main loop */ } /* if select timed out */ /* select() didn't timeout, something happened */ /* Is it a signal? */ /* note: udhcp_sp_read checks FD_ISSET before reading */ switch (udhcp_sp_read(&rfds)) { case SIGUSR1: client_config.first_secs = 0; /* make secs field count from 0 */ already_waited_sec = 0; perform_renew(); if (state == RENEW_REQUESTED) { /* We might be either on the same network * (in which case renew might work), * or we might be on a completely different one * (in which case renew won't ever succeed). * For the second case, must make sure timeout * is not too big, or else we can send * futile renew requests for hours. * (Ab)use -A TIMEOUT value (usually 20 sec) * as a cap on the timeout. */ if (timeout > tryagain_timeout) timeout = tryagain_timeout; goto case_RENEW_REQUESTED; } /* Start things over */ packet_num = 0; /* Kill any timeouts, user wants this to hurry along */ timeout = 0; continue; case SIGUSR2: perform_release(server_addr, requested_ip); timeout = INT_MAX; continue; case SIGTERM: bb_info_msg("Received SIGTERM"); goto ret0; } /* Is it a packet? */ if (listen_mode == LISTEN_NONE || !FD_ISSET(sockfd, &rfds)) continue; /* no */ { int len; /* A packet is ready, read it */ if (listen_mode == LISTEN_KERNEL) len = udhcp_recv_kernel_packet(&packet, sockfd); else len = udhcp_recv_raw_packet(&packet, sockfd); if (len == -1) { /* Error is severe, reopen socket */ bb_info_msg("Read error: %s, reopening socket", strerror(errno)); sleep(discover_timeout); /* 3 seconds by default */ change_listen_mode(listen_mode); /* just close and reopen */ } /* If this packet will turn out to be unrelated/bogus, * we will go back and wait for next one. * Be sure timeout is properly decreased. */ already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait; if (len < 0) continue; } if (packet.xid != xid) { log1("xid %x (our is %x), ignoring packet", (unsigned)packet.xid, (unsigned)xid); continue; } /* Ignore packets that aren't for us */ if (packet.hlen != 6 || memcmp(packet.chaddr, client_config.client_mac, 6) != 0 ) { //FIXME: need to also check that last 10 bytes are zero log1("chaddr does not match, ignoring packet"); // log2? continue; } message = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE); if (message == NULL) { bb_error_msg("no message type option, ignoring packet"); continue; } switch (state) { case INIT_SELECTING: /* Must be a DHCPOFFER */ if (*message == DHCPOFFER) { uint8_t *temp; /* What exactly is server's IP? There are several values. * Example DHCP offer captured with tchdump: * * 10.34.25.254:67 > 10.34.25.202:68 // IP header's src * BOOTP fields: * Your-IP 10.34.25.202 * Server-IP 10.34.32.125 // "next server" IP * Gateway-IP 10.34.25.254 // relay's address (if DHCP relays are in use) * DHCP options: * DHCP-Message Option 53, length 1: Offer * Server-ID Option 54, length 4: 10.34.255.7 // "server ID" * Default-Gateway Option 3, length 4: 10.34.25.254 // router * * We think that real server IP (one to use in renew/release) * is one in Server-ID option. But I am not 100% sure. * IP header's src and Gateway-IP (same in this example) * might work too. * "Next server" and router are definitely wrong ones to use, though... */ /* We used to ignore pcakets without DHCP_SERVER_ID. * I've got user reports from people who run "address-less" servers. * They either supply DHCP_SERVER_ID of 0.0.0.0 or don't supply it at all. * They say ISC DHCP client supports this case. */ server_addr = 0; temp = udhcp_get_option(&packet, DHCP_SERVER_ID); if (!temp) { bb_error_msg("no server ID, using 0.0.0.0"); } else { /* it IS unaligned sometimes, don't "optimize" */ move_from_unaligned32(server_addr, temp); } /*xid = packet.xid; - already is */ requested_ip = packet.yiaddr; /* enter requesting state */ state = REQUESTING; timeout = 0; packet_num = 0; already_waited_sec = 0; } continue; case REQUESTING: case RENEWING: case RENEW_REQUESTED: case REBINDING: if (*message == DHCPACK) { unsigned start; uint32_t lease_seconds; struct in_addr temp_addr; uint8_t *temp; temp = udhcp_get_option(&packet, DHCP_LEASE_TIME); if (!temp) { bb_error_msg("no lease time with ACK, using 1 hour lease"); lease_seconds = 60 * 60; } else { /* it IS unaligned sometimes, don't "optimize" */ move_from_unaligned32(lease_seconds, temp); lease_seconds = ntohl(lease_seconds); /* paranoia: must not be too small and not prone to overflows */ if (lease_seconds < 0x10) lease_seconds = 0x10; if (lease_seconds >= 0x10000000) lease_seconds = 0x0fffffff; } #if ENABLE_FEATURE_UDHCPC_ARPING if (opt & OPT_a) { /* RFC 2131 3.1 paragraph 5: * "The client receives the DHCPACK message with configuration * parameters. The client SHOULD perform a final check on the * parameters (e.g., ARP for allocated network address), and notes * the duration of the lease specified in the DHCPACK message. At this * point, the client is configured. If the client detects that the * address is already in use (e.g., through the use of ARP), * the client MUST send a DHCPDECLINE message to the server and restarts * the configuration process..." */ if (!arpping(packet.yiaddr, NULL, (uint32_t) 0, client_config.client_mac, client_config.interface, arpping_ms) ) { bb_info_msg("Offered address is in use " "(got ARP reply), declining"); send_decline(/*xid,*/ server_addr, packet.yiaddr); if (state != REQUESTING) udhcp_run_script(NULL, "deconfig"); change_listen_mode(LISTEN_RAW); state = INIT_SELECTING; client_config.first_secs = 0; /* make secs field count from 0 */ requested_ip = 0; timeout = tryagain_timeout; packet_num = 0; already_waited_sec = 0; continue; /* back to main loop */ } } #endif /* enter bound state */ timeout = lease_seconds / 2; temp_addr.s_addr = packet.yiaddr; bb_info_msg("Lease of %s obtained, lease time %u", inet_ntoa(temp_addr), (unsigned)lease_seconds); requested_ip = packet.yiaddr; start = monotonic_sec(); udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew"); already_waited_sec = (unsigned)monotonic_sec() - start; state = BOUND; change_listen_mode(LISTEN_NONE); if (opt & OPT_q) { /* quit after lease */ goto ret0; } /* future renew failures should not exit (JM) */ opt &= ~OPT_n; #if BB_MMU /* NOMMU case backgrounded earlier */ if (!(opt & OPT_f)) { client_background(); /* do not background again! */ opt = ((opt & ~OPT_b) | OPT_f); } #endif /* make future renew packets use different xid */ /* xid = random_xid(); ...but why bother? */ continue; /* back to main loop */ } if (*message == DHCPNAK) { /* If network has more than one DHCP server, * "wrong" server can reply first, with a NAK. * Do not interpret it as a NAK from "our" server. */ if (server_addr != 0) { uint32_t svid; uint8_t *temp; temp = udhcp_get_option(&packet, DHCP_SERVER_ID); if (!temp) { non_matching_svid: log1("%s with wrong server ID, ignoring packet", "Received DHCP NAK" ); continue; } move_from_unaligned32(svid, temp); if (svid != server_addr) goto non_matching_svid; } /* return to init state */ bb_info_msg("Received DHCP NAK"); udhcp_run_script(&packet, "nak"); if (state != REQUESTING) udhcp_run_script(NULL, "deconfig"); change_listen_mode(LISTEN_RAW); sleep(3); /* avoid excessive network traffic */ state = INIT_SELECTING; client_config.first_secs = 0; /* make secs field count from 0 */ requested_ip = 0; timeout = 0; packet_num = 0; already_waited_sec = 0; } continue; /* case BOUND: - ignore all packets */ /* case RELEASED: - ignore all packets */ } /* back to main loop */ } /* for (;;) - main loop ends */ ret0: if (opt & OPT_R) /* release on quit */ perform_release(server_addr, requested_ip); retval = 0; ret: /*if (client_config.pidfile) - remove_pidfile has its own check */ remove_pidfile(client_config.pidfile); return retval; }
giuliolunati/busybox
networking/udhcp/dhcpc.c
C
gpl-2.0
58,350
/** * This file enumerates the nodes used in the Lawrence Livermore National Laboratory flowchart series * https://flowcharts.llnl.gov */ module.exports = [ { id: 'nuclear', name: 'Nuclear', category: 'source', yOrder: 0, styleLinkOut: true, }, { id: 'wind', name: 'Wind', category: 'source', yOrder: 1, styleLinkOut: true, }, { id: 'solar', name: 'Solar', category: 'source', yOrder: 2, styleLinkOut: true, }, { id: 'geothermal', name: 'Geothermal', category: 'source', yOrder: 3, styleLinkOut: true, }, { id: 'hydro', name: 'Hydro', category: 'source', yOrder: 4, styleLinkOut: true, }, { id: 'coal', name: 'Coal', category: 'source', yOrder: 5, styleLinkOut: true, }, { id: 'naturalGas', name: 'Natural Gas', category: 'source', yOrder: 6, styleLinkOut: true, }, { id: 'biomass', name: 'Biomass', category: 'source', yOrder: 7, styleLinkOut: true, }, { id: 'petroleum', name: 'Petroleum', category: 'source', yOrder: 8, styleLinkOut: true, }, { id: 'electricity', name: 'Electricity Generation', category: 'consumer', yOrder: 0, styleLinkOut: l => (l.target === 'rejectedEnergy' || l.target === 'carbonEmissions' ? false : 'electricity'), }, { id: 'residential', name: 'Residential', category: 'consumer', yOrder: 1, }, { id: 'commercial', name: 'Commercial', category: 'consumer', yOrder: 2, }, { id: 'industrial', name: 'Industrial', category: 'consumer', yOrder: 3, }, { id: 'transportation', name: 'Transportation', category: 'consumer', yOrder: 4, }, // Consumption Sankeys { id: 'rejectedEnergy', name: 'Lost Energy (Inefficiency)', category: 'analysis', yOrder: 0, styleLinkIn: true, whichSankey: 'consumption', }, { id: 'energyServices', name: 'Energy Services', category: 'analysis', yOrder: 1, styleLinkIn: true, whichSankey: 'consumption', }, // CO2 Sankeys { id: 'carbonEmissions', name: 'Carbon Emissions', category: 'analysis', yOrder: 2, styleLinkIn: true, whichSankey: 'emissions', }, ];
dlopuch/energyviz
public/js/data/llnl-sankey-nodes.js
JavaScript
gpl-2.0
2,338
/** = Mootools File Manager = The MootoolsFileManager plugin allows for the management, selection and insertion of links to files and inline images to the edited HTML. It requires the use of Mootools. If you do not use mootools plugins, then mootools is not loaded. If mootools is already loaded, it will not be reloaded (so if you want to use your own version of Mootools then load it first). == Usage == Instruct Xinha to load the MootoolsFileManager plugin (follow the NewbieGuide). Configure the plugin as per the directions in the config.php file. * @author $Author$ * @version $Id$ * @package MootoolsFileManager */ MootoolsFileManager._pluginInfo = { name : "Mootols File Manager", version : "1.0", developer : "James Sleeman (Xinha), Christoph Pojer (FileManager)", license : "MIT" }; // All the configuration is done through PHP, please read config.php to learn how (or if you're in a real // hurry, just edit config.php) Xinha.Config.prototype.MootoolsFileManager = { 'backend' : Xinha.getPluginDir("MootoolsFileManager") + '/backend.php?__plugin=MootoolsFileManager&', 'backend_data' : { } }; MootoolsFileManager.AssetLoader = Xinha.includeAssets(); // In case you want to use your own version of Mootools, you can load it first. if(typeof MooTools == 'undefined') { MootoolsFileManager.AssetLoader .loadScript('mootools-filemanager/Demos/mootools-core.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Demos/mootools-more.js', 'MootoolsFileManager'); } // In case you want to use your own version of FileManager, you can load it first. // You better look at the changes we had to do to the standard one though. if(typeof FileManager == 'undefined') { MootoolsFileManager.AssetLoader .loadStyle('mootools-filemanager/Css/FileManager.css', 'MootoolsFileManager') .loadStyle('mootools-filemanager/Css/Additions.css', 'MootoolsFileManager') .loadScript('mootools-filemanager/Source/Additions.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Source/Uploader/Fx.ProgressBar.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Source/Uploader/Swiff.Uploader.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Source/FileManager.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Source/Uploader.js', 'MootoolsFileManager') .loadScript('mootools-filemanager/Language/Language.en.js', 'MootoolsFileManager'); } MootoolsFileManager.AssetLoader.loadStyle('MootoolsFileManager.css', 'MootoolsFileManager'); function MootoolsFileManager(editor) { this.editor = editor; var self = this; var cfg = editor.config; // Do a callback to the PHP backend and get it to "decode" the configuration for us into a // javascript object. // IMPORTANT: we need to do this synchronously to ensure that the buttons are added to the toolbar // before the toolbar is drawn. var phpcfg = Xinha._posturlcontent(editor.config.MootoolsFileManager.backend+'__function=read-config', editor.config.MootoolsFileManager.backend_data); eval ('var f = '+phpcfg+';'); self.phpcfg = f; self.hookUpButtons(); return; }; /** Connect up/insert the appropriate buttons and load in the auxillary files. * * The different "modes" of this plugin have been split into several auxilliary files * as it's likely you may not want them all (esp if we add more modes later). * * Each mode's "include" is loaded as soon as we know it could be needed by the * editor, we don't wait until the button is pressed as that would be slow for * the user to respond. * */ MootoolsFileManager.prototype.hookUpButtons = function() { var self = this; var phpcfg = self.phpcfg; if (phpcfg.files_dir) { MootoolsFileManager.AssetLoader.loadScriptOnce('MootoolsFileManager.FileManager.js', 'MootoolsFileManager'); this.editor.config.registerButton({ id : "linkfile", tooltip : Xinha._lc("Insert File Link",'ExtendedFileManager'), image : Xinha.getPluginDir('ExtendedFileManager') + '/img/ed_linkfile.gif', textMode : false, action : function(editor) { MootoolsFileManager.AssetLoader.whenReady(function() { self.OpenFileManager(); }); } }); this.editor.config.addToolbarElement("linkfile", "createlink", 1); }; if(phpcfg.images_dir) { MootoolsFileManager.AssetLoader.loadScriptOnce('MootoolsFileManager.ImageManager.js', 'MootoolsFileManager'); // Override our Editors insert image button action. self.editor._insertImage = function(image) { MootoolsFileManager.AssetLoader.whenReady(function() { self.OpenImageManager(image); }); } } }; /** Helper method to scale (an image typically) to a new constraint. * * @param origdim object { width: 123,height: 456 } The original dimensions. * @param newdim object { width: 456, height: 123 } The new (maximum) dimensions. * @param flexside 'width'|'height' (optional) the side which can be "flexible" * Defaults to the "short" side. * @return { width: 789, height: 987 } The scaled dimensions which should be used. */ MootoolsFileManager.prototype.ScaleImage = function( origdim, newdim, flexside ) { if(!origdim.height || !origdim.width) return newdim; // No old size, stays new. if(!newdim.height && !newdim.width) return origdim; // No new size, stays the same. if(!flexside) { if(origdim.width > origdim.height) { flexside = 'height'; // Landscape image, allow the height to flex. } else { flexside = 'width'; // Portrait image, allow the width to flex } } var knownside = null; switch(flexside) { case 'height': knownside = 'width'; break; case 'width' : knownside = 'height'; break; } // If we DON'T know the known side, we need to flip it. if(!newdim[knownside]) { var t = knownside; knownside = flexside; flexside = t; } var ratio = 0; switch(flexside) { case 'width': ratio = origdim.width / origdim.height; break; case 'height': ratio = origdim.height / origdim.width; break; } var rdim = {}; rdim[knownside] = newdim[knownside]; rdim[flexside] = Math.floor(newdim[knownside] * ratio); if(isNaN(rdim[knownside])) rdim[knownside] = null; if(isNaN(rdim[flexside])) rdim[flexside] = null; return rdim; } /** Take a multi-part CSS size specification (eg sizes for 4 borders) and * shrink it into one if possible. */ MootoolsFileManager.prototype.shortSize = function(cssSize) { if(/ /.test(cssSize)) { var sizes = cssSize.split(' '); var useFirstSize = true; for(var i = 1; i < sizes.length; i++) { if(sizes[0] != sizes[i]) { useFirstSize = false; break; } } if(useFirstSize) cssSize = sizes[0]; } return cssSize; }; /** Take a colour in rgb(a,b) format and convert to HEX * handles multiple colours in same string as well. */ MootoolsFileManager.prototype.convertToHex = function(color) { if (typeof color == "string" && /, /.test.color) color = color.replace(/, /, ','); // rgb(a, b) => rgb(a,b) if (typeof color == "string" && / /.test.color) { // multiple values var colors = color.split(' '); var colorstring = ''; for (var i = 0; i < colors.length; i++) { colorstring += Xinha._colorToRgb(colors[i]); if (i + 1 < colors.length) colorstring += " "; } return colorstring; } return Xinha._colorToRgb(color); }
openacs/openacs-core
packages/acs-templating/www/resources/xinha-nightly/plugins/MootoolsFileManager/MootoolsFileManager.js
JavaScript
gpl-2.0
7,628
@CHARSET "UTF-8"; @import url("layout.css"); body { background-image: url('../images/background-burn.jpg'); background-repeat: no-repeat; background-size: 100%; } header { /* background-image: url('../images/background-film.jpg'); background-color: #666; border-bottom: solid 1px #444; */ text-align: center; padding-top: 32px; opacity: 0.8; } header #logo-container { margin: auto; /* background-color: #cb5b51; */ background-color: #222; width: 100px; height: 100px; padding-top: 16px; } header #logo { color: #fff; font-size: 52pt; } main { } #download-options { background-color: rgba(0,0,0,0.4); border: solid 1px #222; border-radius: 4px; padding: 10px 0px 10px 0px; margin-left: 20px; margin-right: 20px; padding: 15px 20px 15px 20px; } #download-options .row { margin-bottom: 10px; } #keep-original-lbl { font-weight: normal; } /* the dial label */ .dials-container .col-xs-3 { text-align: center; } /* the dial doesn't respond to text centering */ .dials-container .col-xs-3 div.c100 { margin-left: 30px; } #progress-container { margin-top: 12px; } .col-xs-3 label { width: 100%; text-align: right; margin-top: 7px; text-shadow: 1px 1px #000; } .mini-cb-container { padding-top: 7px; } .slider-container { padding-top: 7px; } #quality-slider { margin-left: 10px; margin-right: 10px; } #download-btn-container { margin-top: 20px; text-align: center; } /* switch control on dark background shows through a bit */ .bootstrap-switch { background-color: #fff; } .hide-ui { display: none; } #mp3-options { background-color: rgba(0,0,0,0.3); border: solid 1px #222; border-radius: 4px; padding: 10px 0px 10px 0px; } footer { background-color: rgba(255,255,255,0.1); } #footer-right { text-align: right; } #footer-right i { font-size: 0.9em; } #footer-left, #footer-left *, #footer-right, #footer-right * { color: #888; } #output { border: solid 2px #ddd; padding: 10px; height: 100px; margin-bottom: 20px; overflow: scroll; border-radius: 4px; background-color: #ddd; }
jasonhinkle/Tube-DL
assets/css/app.css
CSS
gpl-2.0
2,114
<!DOCTYPE html> <html> <head> <title>Asterisk Project : Asterisk 12 ManagerAction_IAXpeerlist</title> <link rel="stylesheet" href="styles/site.css" type="text/css" /> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body class="theme-default aui-theme-default"> <div id="page"> <div id="main" class="aui-page-panel"> <div id="main-header"> <div id="breadcrumb-section"> <ol id="breadcrumbs"> <li class="first"> <span><a href="index.html">Asterisk Project</a></span> </li> <li> <span><a href="Asterisk-12-Documentation_25919697.html">Asterisk 12 Documentation</a></span> </li> <li> <span><a href="Asterisk-12-Command-Reference_26476688.html">Asterisk 12 Command Reference</a></span> </li> <li> <span><a href="Asterisk-12-AMI-Actions_26476692.html">Asterisk 12 AMI Actions</a></span> </li> </ol> </div> <h1 id="title-heading" class="pagetitle"> <span id="title-text"> Asterisk Project : Asterisk 12 ManagerAction_IAXpeerlist </span> </h1> </div> <div id="content" class="view"> <div class="page-metadata"> Added by wikibot , edited by wikibot on Aug 29, 2013 </div> <div id="main-content" class="wiki-content group"> <h1 id="Asterisk12ManagerAction_IAXpeerlist-IAXpeerlist">IAXpeerlist</h1> <h3 id="Asterisk12ManagerAction_IAXpeerlist-Synopsis">Synopsis</h3> <p>List IAX Peers.</p> <h3 id="Asterisk12ManagerAction_IAXpeerlist-Description">Description</h3> <p>List all the IAX peers.</p> <h3 id="Asterisk12ManagerAction_IAXpeerlist-Syntax">Syntax</h3> <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent"> <pre>Action: IAXpeerlist ActionID: &lt;value&gt; </pre> </div></div> <h5 id="Asterisk12ManagerAction_IAXpeerlist-Arguments">Arguments</h5> <ul> <li><code>ActionID</code> - ActionID for this transaction. Will be returned.</li> </ul> <h3 id="Asterisk12ManagerAction_IAXpeerlist-SeeAlso">See Also</h3> <h3 id="Asterisk12ManagerAction_IAXpeerlist-ImportVersion">Import Version</h3> <p>This documentation was imported from Asterisk Version Unknown</p> </div> </div> </div> <div id="footer"> <section class="footer-body"> <p>Document generated by Confluence on Dec 20, 2013 14:14</p> </section> </div> </div> </body> </html>
truongduy134/asterisk
doc/Asterisk-Admin-Guide/Asterisk-12-ManagerAction_IAXpeerlist_26476767.html
HTML
gpl-2.0
3,344
#include "collection.h" #if defined (USE_OLD_COLLECTION) #include "oldcollection.cpp" #elif defined (USE_STL_COLLECTION) #include <list> #include <vector> #ifndef LIST_TESTING #include "unit_util.h" #include "unit_generic.h" #else #include "testcollection/unit.h" #endif using std::list; using std::vector; //UnitIterator BEGIN: UnitCollection::UnitIterator& UnitCollection::UnitIterator::operator=( const UnitCollection::UnitIterator &orig ) { if (col != orig.col) { if (col) col->unreg( this ); col = orig.col; if (col) col->reg( this ); } it = orig.it; return *this; } UnitCollection::UnitIterator::UnitIterator( const UnitIterator &orig ) { col = orig.col; it = orig.it; if (col) col->reg( this ); } UnitCollection::UnitIterator::UnitIterator( UnitCollection *orig ) { col = orig; it = col->u.begin(); while(it != col->u.end()){ if((*it) == NULL) ++it; else { if((*it)->Killed()) col->erase(it); else break; } } col->reg(this); } UnitCollection::UnitIterator::~UnitIterator() { if (col) col->unreg( this ); } void UnitCollection::UnitIterator::remove() { if ( col && it != col->u.end() ) col->erase( it ); } void UnitCollection::UnitIterator::moveBefore( UnitCollection &otherlist ) { if ( col && it != col->u.end() ) { otherlist.prepend( *it ); col->erase( it ); } } void UnitCollection::UnitIterator::preinsert( Unit *unit ) { if (col && unit) col->insert( it, unit ); } void UnitCollection::UnitIterator::postinsert( Unit *unit ) { list< Unit* >::iterator tmp = it; if ( col && unit && it != col->u.end() ) { ++tmp; col->insert( tmp, unit ); } } void UnitCollection::UnitIterator::advance() { if ( !col || it == col->u.end() ) return; ++it; while ( it != col->u.end() ) { if ( (*it) == NULL) ++it; else { if((*it)->Killed()) col->erase(it); else break; } } } Unit* UnitCollection::UnitIterator::next() { advance(); return *it; } //UnitIterator END: //ConstIterator Begin: UnitCollection::ConstIterator&UnitCollection::ConstIterator::operator=( const UnitCollection::ConstIterator &orig ) { col = orig.col; it = orig.it; return *this; } UnitCollection::ConstIterator::ConstIterator( const ConstIterator &orig ) { col = orig.col; it = orig.it; } UnitCollection::ConstIterator::ConstIterator( const UnitCollection *orig ) { col = orig; for (it = orig->u.begin(); it != col->u.end(); ++it) if ((*it) && !(*it)->Killed()) break; } UnitCollection::ConstIterator::~ConstIterator() {} Unit* UnitCollection::ConstIterator::next() { advance(); if ( col && it != col->u.end() ) return *it; return NULL; } inline void UnitCollection::ConstIterator::advance() { if ( !col || it == col->u.end() ) return; ++it; while ( it != col->u.end() ) { if ( (*it) == NULL ) ++it; else { if ((*it)->Killed()) ++it; else break; } } } const UnitCollection::ConstIterator&UnitCollection::ConstIterator::operator++() { advance(); return *this; } const UnitCollection::ConstIterator UnitCollection::ConstIterator::operator++( int ) { UnitCollection::ConstIterator tmp( *this ); advance(); return tmp; } //ConstIterator END: //UnitCollection BEGIN: UnitCollection::UnitCollection() { activeIters.reserve( 20 ); } UnitCollection::UnitCollection( const UnitCollection &uc ) { list< Unit* >::const_iterator in = uc.u.begin(); while ( in != uc.u.end() ) { append( *in ); ++in; } } void UnitCollection::insert_unique( Unit *unit ) { if (unit) { for (list< Unit* >::iterator it = u.begin(); it != u.end(); ++it) if (*it == unit) return; unit->Ref(); u.push_front( unit ); } } void UnitCollection::prepend( Unit *unit ) { if (unit) { unit->Ref(); u.push_front( unit ); } } void UnitCollection::prepend( UnitIterator *it ) { Unit *tmp = NULL; if (!it) return; list< Unit* >::iterator tmpI = u.begin(); while ( (tmp = **it) ) { tmp->Ref(); u.insert( tmpI, tmp ); ++tmpI; it->advance(); } } void UnitCollection::append( Unit *un ) { if (un) { un->Ref(); u.push_back( un ); } } void UnitCollection::append( UnitIterator *it ) { if (!it) return; Unit *tmp = NULL; while ( (tmp = **it) ) { tmp->Ref(); u.push_back( tmp ); it->advance(); } } void UnitCollection::insert( list< Unit* >::iterator &temp, Unit *unit ) { if (unit) { unit->Ref(); temp = u.insert( temp, unit ); } temp = u.end(); } void UnitCollection::clear() { if ( !activeIters.empty() ) { fprintf(stderr, "WARNING! Attempting to clear a collection with active iterators!\n" ); return; } for (list< Unit* >::iterator it = u.begin(); it != u.end(); ++it) { (*it)->UnRef(); (*it) = NULL; } u.clear(); } void UnitCollection::destr() { for (list< Unit* >::iterator it = u.begin(); it != u.end(); ++it) if (*it) { (*it)->UnRef(); (*it) = NULL; } for (vector< un_iter* >::iterator t = activeIters.begin(); t != activeIters.end(); ++t) (*t)->col = NULL; } bool UnitCollection::contains( const Unit *unit ) const { if (u.empty() || !unit) return false; for (list< Unit* >::const_iterator it = u.begin(); it != u.end(); ++it) if ( (*it) == unit && !(*it)->Killed() ) return true; return false; } inline void UnitCollection::erase( list< Unit* >::iterator &it2 ) { if ( !(*it2) ) { ++it2; return; } //If we have more than 4 iterators, just push node onto vector. if (activeIters.size() > 3) { removedIters.push_back( it2 ); (*it2)->UnRef(); (*it2) = NULL; ++it2; return; } //If we have between 2 and 4 iterators, see if any are actually //on the node we want to remove, if so, just push onto vector. //Purpose : This special case is to reduce the size of the list in the //situation where removedIters isn't being processed. if (activeIters.size() > 1) for (vector<UnitCollection::UnitIterator*>::size_type i = 0; i < activeIters.size(); ++i) if (activeIters[i]->it == it2) { removedIters.push_back( it2 ); (*it2)->UnRef(); (*it2) = NULL; ++it2; return; } //If we have 1 iterator, or none of the iterators are currently on the //requested node to be removed, then remove it right away. (*it2)->UnRef(); (*it2) = NULL; it2 = u.erase( it2 ); } bool UnitCollection::remove( const Unit *unit ) { if (u.empty() || !unit) return false; for (list< Unit* >::iterator it = u.begin(); it != u.end();++it) { if ( (*it) == unit ) { erase( it ); return(true); } } return (false); } const UnitCollection& UnitCollection::operator=( const UnitCollection &uc ) { destr(); list< Unit* >::const_iterator in = uc.u.begin(); while ( in != uc.u.end() ) { append( *in ); ++in; } return *this; } inline void UnitCollection::reg( un_iter *iter ) { activeIters.push_back( iter ); } inline void UnitCollection::unreg( un_iter *iter ) { for (vector< un_iter* >::iterator t = activeIters.begin(); t != activeIters.end(); ++t) if ( (*t) == iter ) { activeIters.erase( t ); break; } if ( activeIters.empty() || ( activeIters.size() == 1 && ( activeIters[0]->it == u.end() || ( *(activeIters[0]->it) ) ) ) ) while ( !removedIters.empty() ) { u.erase( removedIters.back() ); removedIters.pop_back(); } } //UnitCollection END: #endif //USE_STL_COLLECTION
vinni-au/vega-strike
vegastrike/src/cmd/collection.cpp
C++
gpl-2.0
8,317
<?php namespace Wikibase\Client\Tests\DataAccess\Scribunto; use Language; use ParserOptions; use Wikibase\Client\DataAccess\Scribunto\WikibaseLuaBindings; use Wikibase\Client\Usage\EntityUsage; use Wikibase\Client\Usage\HashUsageAccumulator; use Wikibase\Client\Usage\UsageAccumulator; use Wikibase\DataModel\Entity\EntityId; use Wikibase\DataModel\Entity\Item; use Wikibase\DataModel\Entity\ItemId; use Wikibase\DataModel\Entity\BasicEntityIdParser; use Wikibase\DataModel\Services\Lookup\EntityLookup; use Wikibase\DataModel\Term\Term; use Wikibase\Lib\Store\HashSiteLinkStore; use Wikibase\Lib\Store\SiteLinkLookup; use Wikibase\SettingsArray; use Wikibase\Test\MockRepository; /** * @covers Wikibase\Client\DataAccess\Scribunto\WikibaseLuaBindings * * @group Wikibase * @group WikibaseClient * @group WikibaseScribunto * * @licence GNU GPL v2+ * @author Jens Ohlig < jens.ohlig@wikimedia.de > * @author Katie Filbert < aude.wiki@gmail.com > * @author Marius Hoch < hoo@online.de > */ class WikibaseLuaBindingsTest extends \PHPUnit_Framework_TestCase { public function testConstructor() { $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore() ); $this->assertInstanceOf( 'Wikibase\Client\DataAccess\Scribunto\WikibaseLuaBindings', $wikibaseLuaBindings ); } /** * @param EntityLookup|null $entityLookup * @param UsageAccumulator|null $usageAccumulator * @param ParserOptions|null $parserOptions * @return WikibaseLuaBindings */ private function getWikibaseLuaBindings( EntityLookup $entityLookup, SiteLinkLookup $siteLinkLookup, UsageAccumulator $usageAccumulator = null, ParserOptions $parserOptions = null ) { $labelDescriptionLookup = $this->getMock( 'Wikibase\DataModel\Services\Lookup\LabelDescriptionLookup' ); $labelDescriptionLookup->expects( $this->any() ) ->method( 'getLabel' ) ->will( $this->returnValue( new Term( 'xy', 'LabelString' ) ) ); $labelDescriptionLookup->expects( $this->any() ) ->method( 'getDescription' ) ->will( $this->returnValue( new Term( 'xy', 'DescriptionString' ) ) ); return new WikibaseLuaBindings( new BasicEntityIdParser(), $entityLookup, $siteLinkLookup, new SettingsArray(), $labelDescriptionLookup, $usageAccumulator ?: new HashUsageAccumulator(), $parserOptions ?: new ParserOptions(), "enwiki" // siteId ); } private function hasUsage( $actualUsages, EntityId $entityId, $aspect ) { $usage = new EntityUsage( $entityId, $aspect ); $key = $usage->getIdentityString(); return isset( $actualUsages[$key] ); } public function testGetEntityId() { $item = new Item( new ItemId( 'Q33' ) ); $item->getSiteLinkList()->addNewSiteLink( 'enwiki', 'Rome' ); $usages = new HashUsageAccumulator(); $entityLookup = new MockRepository(); $entityLookup->putEntity( $item ); $siteLinkStore = new HashSiteLinkStore(); $siteLinkStore->saveLinksOfItem( $item ); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( $entityLookup, $siteLinkStore, $usages ); $itemId = $wikibaseLuaBindings->getEntityId( 'Rome' ); $this->assertEquals( 'Q33', $itemId ); $this->assertTrue( $this->hasUsage( $usages->getUsages(), new ItemId( $itemId ), EntityUsage::TITLE_USAGE ), 'title usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), new ItemId( $itemId ), EntityUsage::SITELINK_USAGE ), 'sitelink usage' ); $itemId = $wikibaseLuaBindings->getEntityId( 'Barcelona' ); $this->assertSame( null, $itemId ); } public function getLabelProvider() { return array( array( 'LabelString', 'Q123' ), array( null, 'DoesntExist' ) ); } /** * @dataProvider getLabelProvider * * @param string $expected * @param string $itemId */ public function testGetLabel( $expected, $itemId ) { $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore() ); $this->assertSame( $expected, $wikibaseLuaBindings->getLabel( $itemId ) ); } public function testGetLabel_usage() { $usages = new HashUsageAccumulator(); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore(), $usages ); $itemId = new ItemId( 'Q7' ); $wikibaseLuaBindings->getLabel( $itemId->getSerialization() ); //NOTE: label usage is not tracked directly, this is done via the LabelDescriptionLookup $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::TITLE_USAGE ), 'title usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::ALL_USAGE ), 'all usage' ); } public function getDescriptionProvider() { return array( array( 'DescriptionString', 'Q123' ), array( null, 'DoesntExist' ) ); } /** * @dataProvider getDescriptionProvider * * @param string $expected * @param string $itemId */ public function testGetDescription( $expected, $itemId ) { $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore() ); $this->assertSame( $expected, $wikibaseLuaBindings->getDescription( $itemId ) ); } public function testGetDescription_usage() { $usages = new HashUsageAccumulator(); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore(), $usages ); $itemId = new ItemId( 'Q7' ); $wikibaseLuaBindings->getDescription( $itemId->getSerialization() ); $this->assertTrue( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::OTHER_USAGE ), 'other usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::LABEL_USAGE ), 'label usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::TITLE_USAGE ), 'title usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::ALL_USAGE ), 'all usage' ); } public function getSiteLinkPageNameProvider() { return array( array( 'Beer', 'Q666' ), array( null, 'DoesntExist' ) ); } /** * @dataProvider getSiteLinkPageNameProvider * * @param string $expected * @param string $itemId */ public function testGetSiteLinkPageName( $expected, $itemId ) { $item = $this->getItem(); $entityLookup = new MockRepository(); $entityLookup->putEntity( $item ); $siteLinkStore = new HashSiteLinkStore(); $siteLinkStore->saveLinksOfItem( $item ); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( $entityLookup, $siteLinkStore ); $this->assertSame( $expected, $wikibaseLuaBindings->getSiteLinkPageName( $itemId ) ); } public function testGetSiteLinkPageName_usage() { $item = $this->getItem(); $entityLookup = new MockRepository(); $entityLookup->putEntity( $item ); $siteLinkStore = new HashSiteLinkStore(); $siteLinkStore->saveLinksOfItem( $item ); $usages = new HashUsageAccumulator(); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( $entityLookup, $siteLinkStore, $usages ); $itemId = $item->getId(); $wikibaseLuaBindings->getSiteLinkPageName( $itemId->getSerialization() ); $this->assertTrue( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::TITLE_USAGE ), 'title usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::LABEL_USAGE ), 'label usage' ); $this->assertFalse( $this->hasUsage( $usages->getUsages(), $itemId, EntityUsage::ALL_USAGE ), 'all usage' ); } public function testGetUserLang() { $parserOptions = new ParserOptions(); $parserOptions->setUserLang( Language::factory( 'ru' ) ); $self = $this; // PHP 5.3 ... $cacheSplit = false; $parserOptions->registerWatcher( function( $optionName ) use ( $self, &$cacheSplit ) { $self->assertSame( 'userlang', $optionName ); $cacheSplit = true; } ); $wikibaseLuaBindings = $this->getWikibaseLuaBindings( new MockRepository(), new HashSiteLinkStore(), new HashUsageAccumulator(), $parserOptions ); $userLang = $wikibaseLuaBindings->getUserLang(); $this->assertSame( 'ru', $userLang ); $this->assertTrue( $cacheSplit ); } protected function getItem() { $item = new Item( new ItemId( 'Q666' ) ); $item->setLabel( 'en', 'Beer' ); $item->setDescription( 'en', 'yummy beverage' ); $item->getSiteLinkList()->addNewSiteLink( 'enwiki', 'Beer' ); $item->getSiteLinkList()->addNewSiteLink( 'dewiki', 'Bier' ); return $item; } }
JeroenDeDauw/mediawiki-extensions-Wikibase
client/tests/phpunit/includes/DataAccess/Scribunto/WikibaseLuaBindingsTest.php
PHP
gpl-2.0
8,458
__author__ = 'rene' education_csv = './data/education.csv' education_column_to_get = 13 innovation_csv = './data/innovation.csv' innovation_column_to_get = 6 def parse_idh_csv(indicator_name, csv_file, column_to_analyze): count = 0 ich_countries = [] with open(csv_file, 'r') as the_file: for line in the_file: count += 1 line = line.strip() if not line: continue csv_values = line.split(',') if csv_values[0] == '': continue if count == 1: continue ich_indicator = csv_values[column_to_analyze] country_name = csv_values[1] country_code = csv_values[3] if len(country_code) == 3 or len(country_code) == 2: country = {indicator_name: ich_indicator, 'country_name': country_name, 'country_code': country_code} ich_countries.append(country) return ich_countries def merge_ich_countries(countries_a, countries_b, column_to_merge): merged_countries = [] for country_a in countries_a: for country_b in countries_b: if country_a['country_code'] == country_b['country_code']: if country_b[column_to_merge] != '..' and country_a['science_ich'] != '..': new_country = country_a new_country[column_to_merge] = country_b[column_to_merge] merged_countries.append(new_country) return merged_countries def process_countries_with_idh(): education_ich_countries = parse_idh_csv('science_ich', education_csv, education_column_to_get) innovation_ich_countries = parse_idh_csv('engineering_graduates_ich', innovation_csv, innovation_column_to_get) final_countries = merge_ich_countries(education_ich_countries, innovation_ich_countries, 'engineering_graduates_ich') return final_countries
renefs87/semantic-vg-companies
python_data_parser/csv_parser.py
Python
gpl-2.0
1,936
<?php /** * Header Template * * Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications * should be made in a child theme. * * @category CyberChimps Framework * @package Framework * @since 1.0 * @author CyberChimps * @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later) * @link http://www.cyberchimps.com/ */ ?> <!DOCTYPE html> <meta http-equiv="X-UA-Compatible" content="IE=10;IE=9;IE=8;IE=EDGE" /> <!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html class="ie ie8 lte9 lte8" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 9]> <html class="ie ie9" <?php language_attributes(); ?>> <![endif]--> <!--[if gt IE 9]> <html <?php language_attributes(); ?>> <![endif]--> <!--[if !IE]><!--> <html <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"/> <meta name="viewport" content="initial-scale=1.0,maximum-scale=3.0,width=device-width"/> <title><?php wp_title( '' ); ?></title> <link rel="profile" href="http://gmpg.org/xfn/11"/> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"/> <!-- IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/inc/js/html5.js" type="text/javascript"></script> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <!-- ---------------- Header --------------------- --> <div class="container-full-width" id="header_section"> <div class="container"> <?php do_action( 'cyberchimps_before_wrapper' ); ?> <div class="container-fluid"> <?php do_action( 'cyberchimps_header' ); ?> </div> <!-- .container-fluid--> </div> <!-- .container --> </div> <!-- #header_section --> <?php do_action( 'cyberchimps_before_navigation' ); ?> <!-- ---------------- Menu --------------------- --> <div class="container-full-width" id="navigation_menu"> <div class="container"> <div class="container-fluid"> <!-- Left header ribbon --> <div class="ribbon-left-cut"></div> <!-- ribbon left cut --> <div class="ribbon-left"></div> <!-- ribbon left --> <nav id="navigation" role="navigation"> <div class="main-navigation navbar"> <div class="navbar-inner"> <div class="container"> <!-- Left header ribbon --> <div class="ribbon-right"></div> <!-- ribbon right --> <div class="ribbon-right-cut"></div> <!-- ribbon right cut --> <?php /* hide collapsing menu if not responsive */ if (cyberchimps_get_option( 'responsive_design', 'checked' )): ?> <div class="nav-collapse collapse"> <?php endif; ?> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav', 'walker' => new cyberchimps_walker(), 'fallback_cb' => 'cyberchimps_fallback_menu' ) ); ?> <?php if( cyberchimps_get_option( 'searchbar', 1 ) == "1" ) : ?> <?php get_search_form(); ?> <?php endif; ?> <?php /* hide collapsing menu if not responsive */ if (cyberchimps_get_option( 'responsive_design', 'checked' )): ?> </div> <!-- collapse --> <!-- .btn-navbar is used as the toggle for collapsed navbar content --> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <?php endif; ?> <!-- Shadow just below to the navigation --> <div class="nav-shadow"></div> </div> <!-- container --> </div> <!-- .navbar-inner .row-fluid --> </div> <!-- main-navigation navbar --> </nav> <!-- #navigation --> </div> <!-- .container-fluid--> </div> <!-- .container --> </div> <!-- #navigation_menu --> <?php do_action( 'cyberchimps_after_navigation' ); ?>
SAEBelgradeWeb/vencanje
wp-content/themes/iribbon/header.php
PHP
gpl-2.0
4,220
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Mobissime Liberta source code Documentation</title> <link rel="stylesheet" href="resources/bootstrap.min.css?973e37a8502921d56bc02bb55321f45b072b6f71"> <link rel="stylesheet" href="resources/style.css?a2b5efb503881470385230f40f9bcc3c94d665e7"> </head> <body> <nav id="navigation" class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <a href="index.html" class="navbar-brand">Liberta Doc</a> </div> <div class="collapse navbar-collapse"> <form id="search" class="navbar-form navbar-left" role="search"> <input type="hidden" name="cx" value=""> <input type="hidden" name="ie" value="UTF-8"> <div class="form-group"> <input type="text" name="q" class="search-query form-control" placeholder="Search"> </div> </form> <ul class="nav navbar-nav"> <li class="active"> <span>Namespace</span> </li> <li> <span>Class</span> </li> </ul> </div> </div> </nav> <div id="left"> <div id="menu"> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"> <a href="namespace-MyCrm.html"> MyCrm<span></span> </a> <ul> <li> <a href="namespace-MyCrm.Modules.html"> Modules<span></span> </a> <ul> <li> <a href="namespace-MyCrm.Modules.LibertaTest.html"> LibertaTest<span></span> </a> <ul> <li> <a href="namespace-MyCrm.Modules.LibertaTest.Controllers.html"> Controllers </a> </li> </ul></li></ul></li></ul></li> </ul> </div> <div id="elements"> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <div id="content" class="namespace"> <h1>Namespace MyCrm</h1> <div class="panel panel-default"> <div class="panel-heading"><h2>Namespaces summary</h2></div> <table class="summary table table-bordered table-striped" id="namespaces"> <tr> <td class="name"><a href="namespace-MyCrm.Modules.html">MyCrm\Modules</a></td> </tr> </table> </div> </div> </div> <div id="footer"> API documentation generated by <a href="https://github.com/paulcoiffier/Liberta-PhpApiGen">Liberta PhpApiGen plugin</a> </div> </div> <script src="resources/combined.js?41dee271a5f05eb87058e81d1bce306c8302a2ea"></script> <script src="elementlist.js?55dfb171b358ca49ec20be67d608cfd7e0b7aeeb"></script> </body> </html>
paulcoiffier/Mobissime-Liberta
src/MyCrm/Modules/LibertaTest/Doc/namespace-MyCrm.html
HTML
gpl-2.0
2,585
/* This file is part of Evoral. * Copyright (C) 2008 David Robillard <http://drobilla.net> * Copyright (C) 2000-2008 Paul Davis * Author: Hans Baier * * Evoral is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <cassert> #include <cmath> #include <iostream> #include <stdint.h> #include "libsmf/smf.h" #include "evoral/Event.hpp" #include "evoral/SMF.hpp" #include "evoral/midi_util.h" #include "pbd/file_manager.h" using namespace std; namespace Evoral { SMF::~SMF() { if (_smf) { smf_delete(_smf); _smf = 0; _smf_track = 0; } } uint16_t SMF::num_tracks() const { return _smf->number_of_tracks; } uint16_t SMF::ppqn() const { return _smf->ppqn; } /** Seek to the specified track (1-based indexing) * \return 0 on success */ int SMF::seek_to_track(int track) { _smf_track = smf_get_track_by_number(_smf, track); if (_smf_track != NULL) { _smf_track->next_event_number = (_smf_track->number_of_events == 0) ? 0 : 1; return 0; } else { return -1; } } /** Attempt to open the SMF file for reading and/or writing. * * \return 0 on success * -1 if the file can not be opened or created * -2 if the file exists but specified track does not exist */ int SMF::open(const std::string& path, int track) THROW_FILE_ERROR { assert(track >= 1); if (_smf) { smf_delete(_smf); } _file_path = path; PBD::StdioFileDescriptor d (_file_path, "r"); FILE* f = d.allocate (); if (f == 0) { return -1; } if ((_smf = smf_load (f)) == 0) { return -1; } if ((_smf_track = smf_get_track_by_number(_smf, track)) == 0) { return -2; } //cerr << "Track " << track << " # events: " << _smf_track->number_of_events << endl; if (_smf_track->number_of_events == 0) { _smf_track->next_event_number = 0; _empty = true; } else { _smf_track->next_event_number = 1; _empty = false; } return 0; } /** Attempt to create a new SMF file for reading and/or writing. * * \return 0 on success * -1 if the file can not be created * -2 if the track can not be created */ int SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR { assert(track >= 1); if (_smf) { smf_delete(_smf); } _file_path = path; _smf = smf_new(); if (_smf == NULL) { return -1; } if (smf_set_ppqn(_smf, ppqn) != 0) { return -1; } for (int i = 0; i < track; ++i) { _smf_track = smf_track_new(); assert(_smf_track); smf_add_track(_smf, _smf_track); } _smf_track = smf_get_track_by_number(_smf, track); if (!_smf_track) return -2; _smf_track->next_event_number = 0; { /* put a stub file on disk */ PBD::StdioFileDescriptor d (_file_path, "w+"); FILE* f = d.allocate (); if (f == 0) { return -1; } if (smf_save (_smf, f)) { return -1; } } _empty = true; return 0; } void SMF::close() THROW_FILE_ERROR { if (_smf) { smf_delete(_smf); _smf = 0; _smf_track = 0; } } void SMF::seek_to_start() const { _smf_track->next_event_number = 1; } /** Read an event from the current position in file. * * File position MUST be at the beginning of a delta time, or this will die very messily. * ev.buffer must be of size ev.size, and large enough for the event. The returned event * will have it's time field set to it's delta time, in SMF tempo-based ticks, using the * rate given by ppqn() (it is the caller's responsibility to calculate a real time). * * \a buf must be a pointer to a buffer allocated with malloc, or a pointer to NULL. * \a size must be the capacity of \a buf. If it is not large enough, \a buf will * be reallocated and *size will be set to the new size of buf. * * if the event is a meta-event and is an Evoral Note ID, then \a note_id will be set * to the value of the NoteID; otherwise, meta-events will set \a note_id to -1. * * \return event length (including status byte) on success, 0 if event was * a meta event, or -1 on EOF (or end of track). */ int SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* note_id) const { smf_event_t* event; assert(delta_t); assert(size); assert(buf); assert(note_id); if ((event = smf_track_get_next_event(_smf_track)) != NULL) { *delta_t = event->delta_time_pulses; if (smf_event_is_metadata(event)) { *note_id = -1; // "no note id in this meta-event */ if (event->midi_buffer[1] == 0x7f) { // Sequencer-specific uint32_t evsize; uint32_t lenlen; if (smf_extract_vlq (&event->midi_buffer[2], event->midi_buffer_length-2, &evsize, &lenlen) == 0) { if (event->midi_buffer[2+lenlen] == 0x99 && // Evoral event->midi_buffer[3+lenlen] == 0x1) { // Evoral Note ID uint32_t id; uint32_t idlen; if (smf_extract_vlq (&event->midi_buffer[4+lenlen], event->midi_buffer_length-(4+lenlen), &id, &idlen) == 0) { *note_id = id; } } } } return 0; /* this is a meta-event */ } int event_size = event->midi_buffer_length; assert(event_size > 0); // Make sure we have enough scratch buffer if (*size < (unsigned)event_size) { *buf = (uint8_t*)realloc(*buf, event_size); } memcpy(*buf, event->midi_buffer, size_t(event_size)); *size = event_size; assert(midi_event_is_valid(*buf, *size)); /* printf("SMF::read_event @ %u: ", *delta_t); for (size_t i = 0; i < *size; ++i) { printf("%X ", (*buf)[i]); } printf("\n") */ return event_size; } else { return -1; } } void SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, event_id_t note_id) { if (size == 0) { return; } /* printf("SMF::append_event_delta @ %u:", delta_t); for (size_t i = 0; i < size; ++i) { printf("%X ", buf[i]); } printf("\n"); */ if (!midi_event_is_valid(buf, size)) { cerr << "WARNING: SMF ignoring illegal MIDI event" << endl; return; } smf_event_t* event; /* XXX july 2010: currently only store event ID's for notes, program changes and bank changes */ uint8_t const c = buf[0] & 0xf0; bool const store_id = ( c == MIDI_CMD_NOTE_ON || c == MIDI_CMD_NOTE_OFF || c == MIDI_CMD_PGM_CHANGE || (c == MIDI_CMD_CONTROL && (buf[1] == MIDI_CTL_MSB_BANK || buf[1] == MIDI_CTL_LSB_BANK)) ); if (store_id && note_id >= 0) { int idlen; int lenlen; uint8_t idbuf[16]; uint8_t lenbuf[16]; event = smf_event_new (); assert(event != NULL); /* generate VLQ representation of note ID */ idlen = smf_format_vlq (idbuf, sizeof(idbuf), note_id); /* generate VLQ representation of meta event length, which is the idlen + 2 bytes (Evoral type ID plus Note ID type) */ lenlen = smf_format_vlq (lenbuf, sizeof(lenbuf), idlen+2); event->midi_buffer_length = 2 + lenlen + 2 + idlen; /* this should be allocated by malloc(3) because libsmf will call free(3) on it */ event->midi_buffer = (uint8_t*) malloc (sizeof (uint8_t*) * event->midi_buffer_length); event->midi_buffer[0] = 0xff; // Meta-event event->midi_buffer[1] = 0x7f; // Sequencer-specific memcpy (&event->midi_buffer[2], lenbuf, lenlen); event->midi_buffer[2+lenlen] = 0x99; // Evoral type ID event->midi_buffer[3+lenlen] = 0x1; // Evoral type Note ID memcpy (&event->midi_buffer[4+lenlen], idbuf, idlen); assert(_smf_track); smf_track_add_event_delta_pulses(_smf_track, event, 0); } event = smf_event_new_from_pointer(buf, size); assert(event != NULL); assert(_smf_track); smf_track_add_event_delta_pulses(_smf_track, event, delta_t); _empty = false; } void SMF::begin_write() { assert(_smf_track); smf_track_delete(_smf_track); _smf_track = smf_track_new(); assert(_smf_track); smf_add_track(_smf, _smf_track); assert(_smf->number_of_tracks == 1); } void SMF::end_write() THROW_FILE_ERROR { PBD::StdioFileDescriptor d (_file_path, "w+"); FILE* f = d.allocate (); if (f == 0) { throw FileError (); } if (smf_save(_smf, f) != 0) { throw FileError(); } } double SMF::round_to_file_precision (double val) const { double div = ppqn(); return round (val * div) / div; } void SMF::set_path (const std::string& p) { _file_path = p; } } // namespace Evoral
davidhalter-archive/ardour
libs/evoral/src/SMF.cpp
C++
gpl-2.0
9,910
<?php get_header(); ?> <?php get_sidebar(); ?> <div id="content"> <?php get_template_part('includes/breadcrumbs'); ?> <article> <?php $count = 1; ?> <?php if (have_posts()) : while ( have_posts() ) : the_post() ?> <?php include('includes/loop.php'); ?> <?php if ( $count%2 == 0 ) { ?> <?php }; $count++; ?> <?php endwhile; ?> <div class="clear"></div> </article><!-- article --> <div class="link-all-video-content"><a href="/all-video-news/">ะ”ะธะฒะธั‚ะธััŒ ะฒัั– ะฝะพะฒะธะฝะธ</a></div> <!-- <div class="pagination"> <?php pagination( '&laquo; prev', 'next &raquo;') ?> </div> --><!-- .pagination --> <article><?php include('includes/our-projects.php'); ?></article> <div class="link-all-projects-content"><a href="/all-projects/">ะ”ะธะฒะธั‚ะธััŒ ะฒัั– ะฟั€ะพะตะบั‚ะธ</a></div> <?php else : ?> <?php endif; ?> </div><!-- #content --> <?php get_footer(); ?>
gonchar-a-v/sts
wp-content/themes/videopro/index.php
PHP
gpl-2.0
1,045
/** * This class is used to aggregate completion statistics to be used for the * streaming and analytics services */ package de.completionary.proxy.elasticsearch; import java.util.ArrayList; import java.util.List; import java.util.Set; import java.util.TreeSet; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; import de.completionary.proxy.analytics.AnalyticsLogger; import de.completionary.proxy.helper.ProxyOptions; import de.completionary.proxy.thrift.services.streaming.StreamedStatisticsField; import de.completionary.proxy.thrift.services.suggestion.AnalyticsData; import de.completionary.proxy.thrift.services.suggestion.Suggestion; /** * @author Jonas Kunze (kunze.jonas@gmail.com) * * TODO: This class is not thread safe at the moment. We should * implement a ZMQ communication layer between ES-Index and Aggregator */ class StatisticsAggregator { /* * List of the active users during the current aggregation priod (1s) */ private Set<Long> activeUsers = new TreeSet<Long>(); private AtomicInteger numberOfQueries = new AtomicInteger(0); private Set<String> randomSampleOfCurrentCompletedTerms = new TreeSet<String>(); private AtomicInteger numberOfSelectedSuggestions = new AtomicInteger(0); private AtomicInteger numberOfSearchSessions = new AtomicInteger(0); private AtomicInteger numberOfShownSuggestions = new AtomicInteger(0); private AtomicLong indexSize; private AtomicLong numberOfQueriesThisMonth; private static final AnalyticsLogger logger = new AnalyticsLogger(); public StatisticsAggregator( long indexSize, long numberOfQueriesThisMonth) { this.indexSize = new AtomicLong(indexSize); this.numberOfQueriesThisMonth = new AtomicLong(numberOfQueriesThisMonth); } /** * Must be called every time an search session is finished (suggestion is * selected, timeout or query is deleted) */ public void onSearchSessionFinished(AnalyticsData userData) { numberOfSearchSessions.incrementAndGet(); logger.logSessionFinished(userData); } /** * Must be called every time a suggestion query was run * * @param userData * End user specific analytics data * @param suggestRequest * The string that was completed * @param suggestions * The list of suggestions that was sent back to the client */ public void onQuery( final AnalyticsData userData, final String suggestRequest, final List<Suggestion> suggestions) { activeUsers.add(userData.userID); numberOfQueries.incrementAndGet(); numberOfQueriesThisMonth.incrementAndGet(); if (!suggestions.isEmpty()) { numberOfShownSuggestions.addAndGet(suggestions.size()); randomSampleOfCurrentCompletedTerms.add(suggestions.get(0) .getSuggestion()); } logger.logQuery(userData, suggestRequest); } /** * Must be called every time the end user clicks on a suggestion. This * method counts the number of selected terms and stores a sample of these. * Additionally this method triggers a onSessionFinished * * @param suggestionID * The ID of the suggestion string that was selected by the end * user * @param suggestionID * The suggestion string that was selected by the end user */ public void onSuggestionSelected( final String suggestionID, final String suggestionString, final AnalyticsData userData) { if (ProxyOptions.MAX_NUMBER_OF_SAMPLE_TERMS_IN_STREAM != randomSampleOfCurrentCompletedTerms .size()) { randomSampleOfCurrentCompletedTerms.add(suggestionString); } numberOfSelectedSuggestions.incrementAndGet(); numberOfSearchSessions.incrementAndGet(); logger.logSuggestionSelected(userData, suggestionID); } /** * Must be called every time a new term was added to the index */ public void onTermAdded() { indexSize.incrementAndGet(); } /** * Must be called every time a term was deleted from the index */ public void onTermDeleted() { indexSize.decrementAndGet(); } /** * Returns the statistics aggregated since last call of this method * * @return */ public StreamedStatisticsField getCurrentStatistics() { StreamedStatisticsField result = new StreamedStatisticsField(activeUsers.size(), numberOfQueries.get(), new ArrayList<String>( randomSampleOfCurrentCompletedTerms), numberOfSelectedSuggestions.get(), numberOfSearchSessions.get(), numberOfShownSuggestions.get(), indexSize.get(), numberOfQueriesThisMonth.get()); reset(); return result; } /** * Resets all statistics values */ private void reset() { activeUsers.clear(); numberOfQueries.set(0); randomSampleOfCurrentCompletedTerms.clear(); numberOfSelectedSuggestions.set(0); numberOfSearchSessions.set(0); numberOfShownSuggestions.set(0); } }
Completionary/completionProxy
src/main/java/de/completionary/proxy/elasticsearch/StatisticsAggregator.java
Java
gpl-2.0
5,490
<html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="assets/stylesheet-en.css" /> </head> <body class="eng"> <div class='verse' data-adhikarana='jyลtiradhikaraแน‡am' data-adhikaranaID='BS_C01_S03_A029' id='BS_C01_S03_V40' type='sutra'> <div class='versetext'>jyลtirdarล›anฤt เฅฅ 40 เฅฅ</div> <div class='bhashya' id='BS_C01_S03_V40_B1'><span class='qt'><a href='Chandogya_id.html#Ch_C08_S12_V03'>โ€˜ฤ“แนฃa samprasฤdลเคฝsmฤccharฤซrฤtsamutthฤya paraแน jyลtirupasampadya svฤ“na rลซpฤ“แน‡ฤbhiniแนฃpadyatฤ“โ€™ (chฤ. u. 8 เฅค 12 เฅค 3)</a></span> iti ล›rลซyatฤ“ เฅค tatra saแนล›ayyatฤ“ &#8212; kiแน jyลtiแธฅล›abdaแน cakแนฃurviแนฃayatamลpahaแน tฤ“jaแธฅ, kiแน vฤ paraแน brahmฤ“ti เฅค kiแน tฤvatprฤptam ? prasiddhamฤ“va tฤ“jล jyลtiแธฅล›abdamiti เฅค kutaแธฅ ? tatra jyลtiแธฅล›abdasya rลซแธhatvฤt เฅค <span class='qt'><a href='BS_id.html#BS_C01_S01_V24'>โ€˜jyลtiล›caraแน‡ฤbhidhฤnฤtโ€™ (bra. sลซ. 1 เฅค 1 เฅค 24)</a></span> ityatra hi prakaraแน‡ฤjjyลtiแธฅล›abdaแธฅ svฤrthaแน parityajya brahmaแน‡i vartatฤ“ ; na cฤ“ha tadvatkiรฑcitsvฤrthaparityฤgฤ“ kฤraแน‡aแน drฬฅล›yatฤ“ เฅค tathฤ ca nฤแธฤซkhaแน‡แธฤ“ &#8212; <span class='qt'><a href='Chandogya_id.html#Ch_C08_S06_V05'>โ€˜atha yatraitadasmฤccharฤซrฤdutkrฤmatyathaitairฤ“va raล›mibhirลซrdhvamฤkramatฤ“โ€™ (chฤ. u. 8 เฅค 6 เฅค 5)</a></span> iti mumukแนฃลrฤdityaprฤptirabhihitฤ เฅค tasmฤtprasiddhamฤ“va tฤ“jล jyลtiแธฅล›abdamiti, ฤ“vaแน prฤptฤ“ brลซmaแธฅ &#8212;</div> <div class='bhashya' id='BS_C01_S03_V40_B2'>paramฤ“va brahma jyลtiแธฅล›abdam เฅค kasmฤt ? darล›anฤt เฅค tasya hฤซha prakaraแน‡ฤ“ vaktavyatvฤ“nฤnuvrฬฅttirdrฬฅล›yatฤ“ ; <span class='qt'><a href='Chandogya_id.html#Ch_C08_S07_V01'>โ€˜ya ฤtmฤpahatapฤpmฤโ€™ (chฤ. u. 8 เฅค 7 เฅค 1)</a></span> ityapahatapฤpmatvฤdiguแน‡akasyฤtmanaแธฅ prakaraแน‡ฤdฤvanvฤ“แนฃแนญavyatvฤ“na vijijรฑฤsitavyatvฤ“na ca pratijรฑฤnฤt ; <span class='qt'><a href='Chandogya_id.html#Ch_C08_S09_V03'>โ€˜ฤ“taแน tvฤ“va tฤ“ bhลซyลเคฝnuvyฤkhyฤsyฤmiโ€™ (chฤ. u. 8 เฅค 9 เฅค 3)</a></span> iti cฤnusandhฤnฤt ; <span class='qt'><a href='Chandogya_id.html#Ch_C08_S12_V01'>โ€˜aล›arฤซraแน vฤva santaแน na priyฤpriyฤ“ sprฬฅล›ataแธฅโ€™ (chฤ. u. 8 เฅค 12 เฅค 1)</a></span> iti cฤล›arฤซratฤyai jyลtiแธฅsampattฤ“rasyฤbhidhฤnฤt ; brahmabhฤvฤccฤnyatrฤล›arฤซratฤnupapattฤ“แธฅ ; โ€˜paraแน jyลtiแธฅโ€™ <span class='qt'><a href='Chandogya_id.html#Ch_C08_S12_V03'>โ€˜sa uttamaแธฅ puruแนฃaแธฅโ€™ (chฤ. u. 8 เฅค 12 เฅค 3)</a></span> iti ca viล›ฤ“แนฃaแน‡ฤt เฅค yattลซktaแน mumukแนฃลrฤdityaprฤptirabhihitฤ“ti, nฤsฤvฤtyantikล mลkแนฃaแธฅ, gatyutkrฤntisambandhฤt เฅค na hyฤtyantikฤ“ mลkแนฃฤ“ gatyutkrฤntฤซ sta iti vakแนฃyฤmaแธฅ เฅฅ 40 เฅฅ</div> </div> </body> </html>
SrirangaDigital/shankara-android
app/src/main/assets/html/en/BS_C01_S03_V40.html
HTML
gpl-2.0
2,741
/* ============================================================ * * This file is a part of digiKam project * http://www.digikam.org * * Date : 2006-02-21 * Description : a generic list view item widget to * display metadata key like a title * * Copyright (C) 2006-2015 by Gilles Caulier <caulier dot gilles at gmail dot com> * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software Foundation; * either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * ============================================================ */ #include "mdkeylistviewitem.h" // Qt includes #include <QPalette> #include <QFont> #include <QPainter> #include <QApplication> // KDE includes #include <klocalizedstring.h> // Local includes #include "thememanager.h" namespace Digikam { MdKeyListViewItem::MdKeyListViewItem(QTreeWidget* const parent, const QString& key) : QObject(parent), QTreeWidgetItem(parent) { m_key = key; m_decryptedKey = key; // Standard Exif key descriptions. if (key == QLatin1String("Iop")) { m_decryptedKey = i18n("Interoperability"); } else if (key == QLatin1String("Image")) { m_decryptedKey = i18n("Image Information"); } else if (key == QLatin1String("Photo")) { m_decryptedKey = i18n("Photograph Information"); } else if (key == QLatin1String("GPSInfo")) { m_decryptedKey = i18n("Global Positioning System"); } else if (key == QLatin1String("Thumbnail")) { m_decryptedKey = i18n("Embedded Thumbnail"); } // Standard IPTC key descriptions. else if (key == QLatin1String("Envelope")) { m_decryptedKey = i18n("IIM Envelope"); } else if (key == QLatin1String("Application2")) { m_decryptedKey = i18n("IIM Application 2"); } // Standard XMP key descriptions. else if (key == QLatin1String("aux")) { m_decryptedKey = i18n("Additional Exif Properties"); } else if (key == QLatin1String("crs")) { m_decryptedKey = i18n("Camera Raw"); } else if (key == QLatin1String("dc")) { m_decryptedKey = i18n("Dublin Core"); } else if (key == QLatin1String("digiKam")) { m_decryptedKey = i18n("digiKam schema"); } else if (key == QLatin1String("exif")) { m_decryptedKey = i18n("Exif-specific Properties"); } else if (key == QLatin1String("iptc")) { m_decryptedKey = i18n("IPTC Core"); } else if (key == QLatin1String("iptcExt")) { m_decryptedKey = i18n("IPTC Extension schema"); } else if (key == QLatin1String("MicrosoftPhoto")) { m_decryptedKey = i18n("Microsoft Photo"); } else if (key == QLatin1String("pdf")) { m_decryptedKey = i18n("Adobe PDF"); } else if (key == QLatin1String("photoshop")) { m_decryptedKey = i18n("Adobe Photoshop"); } else if (key == QLatin1String("plus")) { m_decryptedKey = i18n("PLUS License Data Format Schema"); } else if (key == QLatin1String("tiff")) { m_decryptedKey = i18n("TIFF Properties"); } else if (key == QLatin1String("xmp")) { m_decryptedKey = i18n("Basic Schema"); } else if (key == QLatin1String("xmpBJ")) { m_decryptedKey = i18n("Basic Job Ticket"); } else if (key == QLatin1String("xmpDM")) { m_decryptedKey = i18n("Dynamic Media"); } else if (key == QLatin1String("xmpMM")) { m_decryptedKey = i18n("Media Management "); } else if (key == QLatin1String("xmpRights")) { m_decryptedKey = i18n("Rights Management"); } else if (key == QLatin1String("xmpTPg")) { m_decryptedKey = i18n("Paged-Text"); } // Additional XMP key descriptions. else if (key == QLatin1String("mwg-rs")) { m_decryptedKey = i18n("Metadata Working Group Regions"); } else if (key == QLatin1String("dwc")) { m_decryptedKey = i18n("Darwin Core"); } // Reset all item flags: item is not selectable. setFlags(Qt::ItemIsEnabled); setDisabled(false); setExpanded(true); setFirstColumnSpanned(true); setTextAlignment(0, Qt::AlignCenter); QFont fn0(font(0)); fn0.setBold(true); fn0.setItalic(false); setFont(0, fn0); QFont fn1(font(1)); fn1.setBold(true); fn1.setItalic(false); setFont(1, fn1); setText(0, m_decryptedKey); slotThemeChanged(); connect(ThemeManager::instance(), SIGNAL(signalThemeChanged()), this, SLOT(slotThemeChanged())); } MdKeyListViewItem::~MdKeyListViewItem() { } QString MdKeyListViewItem::getKey() const { return m_key; } QString MdKeyListViewItem::getDecryptedKey() const { return m_decryptedKey; } void MdKeyListViewItem::slotThemeChanged() { setBackground(0, QBrush(qApp->palette().color(QPalette::Highlight))); setBackground(1, QBrush(qApp->palette().color(QPalette::Highlight))); setForeground(0, QBrush(qApp->palette().color(QPalette::HighlightedText))); setForeground(1, QBrush(qApp->palette().color(QPalette::HighlightedText))); } } // namespace Digikam
rompe/digikam-core-yolo
libs/widgets/metadata/mdkeylistviewitem.cpp
C++
gpl-2.0
5,583
#include "mastrix.hpp" ClientConsoleVar<float> consoleSpeed("console_speed", 600); ClientConsoleVar<float> consoleHeight("console_height", 200); Console console; const float console_margin_left = 3; const float console_margin_bottom = 10; const float fade_height = 10; const float bottom_margin = 3; const float text_height = 12; const float line_margin = 4; Color console_bgcolor(77,77,77, 180); Color console_transparent(77,77,77, 0); Color console_fade(100, 100, 100, 100); //fix this Color console_cheap_line(255,255,255); CLIENT_CONSOLE_COMMAND(toggleconsole) { console.toggle(); } Console::Console() { cursor_pos = 0; isDown = false; position = 0; pending = ""; } void Console::toggle(void) { isDown = !isDown; line = ""; if(isDown) this->enable(); } void Console::println(const char *str) { history.push_front( std::string(str) ); } void Console::printf(const char *fmt, ...) { char buf[512] = ""; va_list args; va_start(args, fmt); vsnprintf(buf, 512, fmt, args); va_end(args); char *pos = strtok(buf, "\n"); do { if(pos) history.push_front( std::string(pos) ); } while((pos = strtok(NULL, "\n"))); } bool Console::timepass(void) { char k = 0; if(isDown && position < consoleHeight) { position += consoleSpeed*getRealDt(); } else if(!isDown && position > -fade_height) { position -= consoleSpeed*getRealDt(); } return false; } bool Console::handleEvent(SDL_Event *ev) { if(!isDown) return false; switch (ev->type) { case SDL_KEYDOWN: if(ev->key.keysym.unicode > 0 && ev->key.keysym.unicode < 256) keypress( ev->key.keysym.unicode ); return true; case SDL_KEYUP: return true; default: return false; } return false; } void Console::keypress(char key) { switch(key) { case '`': case'~': toggle(); break; case '\b': line = line.substr(0, line.length()-1); break; case '\n': case '\r': history.push_front(line); pending += line; line = ""; if(clientScripting.isCompleteCommand(pending)) { command(pending); pending = ""; } else { pending += "\n"; } break; default: line += key; break; } } void Console::command(std::string cmd) { clientScripting.command(cmd.c_str()); } ClientConsoleVar<bool> cheapConsole("cheapconsole", false); void Console::redraw(void) { // if(position <= 0) remove(); float draw_y = position - bottom_margin; // Draw background if(cheapConsole) graphics.drawLine( console_cheap_line, 0, position, graphics.getScreenWidth(), position + fade_height); else { glBegin(GL_QUADS); graphics.setColor(console_bgcolor); glVertex2f(0, 0); glVertex2f(graphics.getScreenWidth(), 0); glVertex2f(graphics.getScreenWidth(), position); glVertex2f(0, position); glVertex2f(0, position); glVertex2f(graphics.getScreenWidth(), position); graphics.setColor(console_transparent); glVertex2f(graphics.getScreenWidth(), position+fade_height); glVertex2f(0, position+fade_height); glEnd(); } // Draw current line graphics.drawText(line.c_str(), console_margin_left, draw_y); draw_y -= (text_height+line_margin); // Draw history lines for(historyList::iterator ii=history.begin(); ii!=history.end(); ii++) { //GameX.DrawText(console_margin_left, draw_y, (char*)(*ii).c_str(), 230, 230, 255); graphics.drawText((*ii).c_str(), console_margin_left, draw_y); if(draw_y < 0) break; draw_y -= text_height; } }
yixu34/Mastrix
console.cpp
C++
gpl-2.0
3,459
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_07) on Tue Sep 12 14:15:00 CEST 2006 --> <TITLE> Uses of Class net.jxta.edutella.util.RdfUtilities </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class net.jxta.edutella.util.RdfUtilities"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../net/jxta/edutella/util/RdfUtilities.html" title="class in net.jxta.edutella.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?net/jxta/edutella/util/\class-useRdfUtilities.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RdfUtilities.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>net.jxta.edutella.util.RdfUtilities</B></H2> </CENTER> No usage of net.jxta.edutella.util.RdfUtilities <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../net/jxta/edutella/util/RdfUtilities.html" title="class in net.jxta.edutella.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?net/jxta/edutella/util/\class-useRdfUtilities.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RdfUtilities.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
elitak/peertrust
doc/javadoc/net/jxta/edutella/util/class-use/RdfUtilities.html
HTML
gpl-2.0
5,781
<?php /** * This file displays page with left sidebar. * * @package Theme Horse * @subpackage Ambition * @since Ambition 1.0 */ ?> <?php /** * ambition_before_primary */ do_action('ambition_before_primary'); ?> <div id="primary"> <?php /** * ambition_before_loop_content * * HOOKED_FUNCTION_NAME PRIORITY * * ambition_loop_before 10 */ do_action('ambition_before_loop_content'); /** * ambition_loop_content * * HOOKED_FUNCTION_NAME PRIORITY * * ambition_theloop 10 */ do_action('ambition_loop_content'); /** * ambition_after_loop_content * * HOOKED_FUNCTION_NAME PRIORITY * * ambition_next_previous 5 * ambition_loop_after 10 */ do_action('ambition_after_loop_content'); ?> </div><!-- #primary --> <?php /** * ambition_after_primary */ do_action('ambition_after_primary'); ?> <div id="secondary" class="no-margin-left"> <?php if (is_page_template('page-templates/page-template-contact.php')) { get_sidebar( 'contact-page' ); }else{ get_sidebar('left'); } ?> </div><!-- #secondary -->
Tamiiy/spartan-english
wp-content/themes/ambition/content-leftsidebar.php
PHP
gpl-2.0
1,074
/* * A test created to check the hosts. */ function main() { var hosts = cluster::hosts(); var map; var retval = true; for (idx = 0; idx < hosts.size(); ++idx) { map = hosts[idx].toMap(); className = map["class_name"]; role = map["role"]; port = map["port"]; hostStatus = map["hoststatus"]; //print("map: ", hosts[idx].toMap()); print(""); print(" hostName(): ", hosts[idx].hostName()); print(" dataHostName(): ", hosts[idx].dataHostName()); print(" internalHostName(): ", hosts[idx].internalHostName()); print(" port(): ", hosts[idx].port()); print(" connected(): ", hosts[idx].connected()); print(" class_name: ", className); print(" role: ", role); print(" port: ", port); print(" hoststatus: ", hostStatus); print(""); if (role == "controller") { if (port != 9555) { error("The port is not ok."); retval = false; } else { print("The port is ok."); } } else if (role == "none") { if (port != 3306) { error("The port is not ok."); retval = false; } else { print("The port is ok."); } } else { error("The role '", role, "' is invalid."); return false; } if (hostStatus != "CmonHostOnline") { error("Host status is not ok."); retval = false; } else { print("The host status is ok."); } if (!hosts[idx].connected()) { error("Host is not connected."); retval = false; } else { print("Host is connected, ok."); } } return retval; }
severalnines/s9s-tools
tests/scripts/cluster_scripts/hostsinfo.js
JavaScript
gpl-2.0
1,999
๏ปฟnamespace Nexus.Client.Games.Gamebryo.Settings.UI { partial class GeneralSettingsPage { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.lblWorkingDirectory = new System.Windows.Forms.Label(); this.tbxWorkingDirectory = new System.Windows.Forms.TextBox(); this.butSelectWorkingDirectory = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.tbxCommandArguments = new System.Windows.Forms.TextBox(); this.tbxCommand = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.fbdWorkingDirectory = new System.Windows.Forms.FolderBrowserDialog(); this.rdcDirectories = new Nexus.Client.Games.Settings.RequiredDirectoriesControl(); this.erpErrors = new System.Windows.Forms.ErrorProvider(this.components); this.cbxBoldifyESMs = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.erpErrors)).BeginInit(); this.SuspendLayout(); // // lblWorkingDirectory // this.lblWorkingDirectory.AutoSize = true; this.lblWorkingDirectory.Location = new System.Drawing.Point(1, 90); this.lblWorkingDirectory.Name = "lblWorkingDirectory"; this.lblWorkingDirectory.Size = new System.Drawing.Size(73, 13); this.lblWorkingDirectory.TabIndex = 3; this.lblWorkingDirectory.Text = "{0} Directory*:"; // // tbxWorkingDirectory // this.tbxWorkingDirectory.Location = new System.Drawing.Point(24, 106); this.tbxWorkingDirectory.Name = "tbxWorkingDirectory"; this.tbxWorkingDirectory.Size = new System.Drawing.Size(314, 20); this.tbxWorkingDirectory.TabIndex = 1; // // butSelectWorkingDirectory // this.butSelectWorkingDirectory.AutoSize = true; this.butSelectWorkingDirectory.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.butSelectWorkingDirectory.Location = new System.Drawing.Point(344, 104); this.butSelectWorkingDirectory.Name = "butSelectWorkingDirectory"; this.butSelectWorkingDirectory.Size = new System.Drawing.Size(26, 23); this.butSelectWorkingDirectory.TabIndex = 2; this.butSelectWorkingDirectory.Text = "..."; this.butSelectWorkingDirectory.UseVisualStyleBackColor = true; this.butSelectWorkingDirectory.Click += new System.EventHandler(this.butSelectWorkingDirectory_Click); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(16, 22); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(57, 13); this.label3.TabIndex = 6; this.label3.Text = "Command:"; // // groupBox1 // this.groupBox1.Controls.Add(this.tbxCommandArguments); this.groupBox1.Controls.Add(this.tbxCommand); this.groupBox1.Controls.Add(this.label4); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Location = new System.Drawing.Point(24, 133); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(346, 78); this.groupBox1.TabIndex = 3; this.groupBox1.TabStop = false; this.groupBox1.Text = "Custom Launch Command"; // // tbxCommandArguments // this.tbxCommandArguments.Location = new System.Drawing.Point(79, 45); this.tbxCommandArguments.Name = "tbxCommandArguments"; this.tbxCommandArguments.Size = new System.Drawing.Size(257, 20); this.tbxCommandArguments.TabIndex = 5; // // tbxCommand // this.tbxCommand.Location = new System.Drawing.Point(79, 19); this.tbxCommand.Name = "tbxCommand"; this.tbxCommand.Size = new System.Drawing.Size(257, 20); this.tbxCommand.TabIndex = 4; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(13, 48); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(60, 13); this.label4.TabIndex = 7; this.label4.Text = "Arguments:"; // // rdcDirectories // this.m_fpdFontProvider.SetFontSet(this.rdcDirectories, "StandardText"); this.rdcDirectories.InstallInfoLabel = "Install Info*:"; this.rdcDirectories.Location = new System.Drawing.Point(0, 3); this.rdcDirectories.ModDirectoryLabel = "Mod Directory*:"; this.rdcDirectories.Name = "rdcDirectories"; this.rdcDirectories.Size = new System.Drawing.Size(393, 85); this.rdcDirectories.TabIndex = 0; // // erpErrors // this.erpErrors.ContainerControl = this; // // cbxBoldifyESMs // this.cbxBoldifyESMs.AutoSize = true; this.cbxBoldifyESMs.Location = new System.Drawing.Point(24, 222); this.cbxBoldifyESMs.Name = "cbxBoldifyESMs"; this.cbxBoldifyESMs.Size = new System.Drawing.Size(137, 17); this.cbxBoldifyESMs.TabIndex = 4; this.cbxBoldifyESMs.Text = "Show ESM files in bold."; this.cbxBoldifyESMs.UseVisualStyleBackColor = true; // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.label1.AutoSize = true; this.m_fpdFontProvider.SetFontSet(this.label1, "StandardText"); this.m_fpdFontProvider.SetFontStyle(this.label1, System.Drawing.FontStyle.Italic); this.label1.Location = new System.Drawing.Point(233, 272); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(137, 13); this.label1.TabIndex = 5; this.label1.Text = "* requires application restart"; // // GeneralSettingsPage // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Transparent; this.Controls.Add(this.label1); this.Controls.Add(this.cbxBoldifyESMs); this.Controls.Add(this.rdcDirectories); this.Controls.Add(this.groupBox1); this.Controls.Add(this.butSelectWorkingDirectory); this.Controls.Add(this.tbxWorkingDirectory); this.Controls.Add(this.lblWorkingDirectory); this.Name = "GeneralSettingsPage"; this.Size = new System.Drawing.Size(403, 307); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.erpErrors)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblWorkingDirectory; private System.Windows.Forms.TextBox tbxWorkingDirectory; private System.Windows.Forms.Button butSelectWorkingDirectory; private System.Windows.Forms.Label label3; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.TextBox tbxCommandArguments; private System.Windows.Forms.TextBox tbxCommand; private System.Windows.Forms.Label label4; private System.Windows.Forms.FolderBrowserDialog fbdWorkingDirectory; private Nexus.Client.Games.Settings.RequiredDirectoriesControl rdcDirectories; private System.Windows.Forms.ErrorProvider erpErrors; private System.Windows.Forms.CheckBox cbxBoldifyESMs; private System.Windows.Forms.Label label1; } }
reactormonk/nmm
GamebryoBase/Settings/UI/GeneralSettingsPage.Designer.cs
C#
gpl-2.0
8,055
# -*- coding: utf-8 -*- from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render_to_response from geraldo.generators import PDFGenerator from sigi.apps.casas.models import CasaLegislativa, Funcionario from sigi.apps.casas.reports import CasasLegislativasLabels from sigi.apps.casas.reports import CasasLegislativasLabelsSemPresidente from sigi.apps.casas.reports import CasasLegislativasReport from sigi.apps.casas.reports import CasasSemConvenioReport from sigi.apps.casas.reports import InfoCasaLegislativa from sigi.apps.parlamentares.models import Parlamentar from sigi.apps.parlamentares.reports import ParlamentaresLabels from django.core.paginator import Paginator, InvalidPage, EmptyPage from django.conf import settings import csv # @param qs: queryset # @param o: (int) number of order field def query_ordena(qs, o): from sigi.apps.casas.admin import CasaLegislativaAdmin list_display = CasaLegislativaAdmin.list_display order_fields = [] for order_number in o.split('.'): order_number = int(order_number) order = '' if order_number != abs(order_number): order_number = abs(order_number) order = '-' order_fields.append(order + list_display[order_number - 1]) qs = qs.order_by(*order_fields) return qs def get_for_qs(get,qs): """ Verifica atributos do GET e retorna queryset correspondente """ kwargs = {} for k,v in get.iteritems(): if str(k) not in ('page', 'pop', 'q', '_popup', 'o', 'ot'): kwargs[str(k)] = v qs = qs.filter(**kwargs) if 'o' in get: qs = query_ordena(qs,get['o']) return qs def carrinhoOrGet_for_qs(request): """ Verifica se existe casas na sessรฃo se nรฃo verifica get e retorna qs correspondente. """ if request.session.has_key('carrinho_casas'): ids = request.session['carrinho_casas'] qs = CasaLegislativa.objects.filter(pk__in=ids) else: qs = CasaLegislativa.objects.all() if request.GET: qs = get_for_qs(request.GET,qs) return qs def adicionar_casas_carrinho(request,queryset=None,id=None): if request.method == 'POST': ids_selecionados = request.POST.getlist('_selected_action') if not request.session.has_key('carrinho_casas'): request.session['carrinho_casas'] = ids_selecionados else: lista = request.session['carrinho_casas'] # Verifica se id jรก nรฃo estรก adicionado for id in ids_selecionados: if not id in lista: lista.append(id) request.session['carrinho_casas'] = lista def visualizar_carrinho(request): qs = carrinhoOrGet_for_qs(request) paginator = Paginator(qs, 100) # Make sure page request is an int. If not, deliver first page. # Esteja certo de que o `page request` รฉ um inteiro. Se nรฃo, mostre a primeira pรกgina. try: page = int(request.GET.get('page', '1')) except ValueError: page = 1 # Se o page request (9999) estรก fora da lista, mostre a รบltima pรกgina. try: paginas = paginator.page(page) except (EmptyPage, InvalidPage): paginas = paginator.page(paginator.num_pages) carrinhoIsEmpty = not(request.session.has_key('carrinho_casas')) return render_to_response( 'casas/carrinho.html', { 'MEDIA_URL':settings.MEDIA_URL, 'carIsEmpty':carrinhoIsEmpty, 'paginas':paginas, 'query_str':'?'+request.META['QUERY_STRING'] } ) def excluir_carrinho(request): if request.session.has_key('carrinho_casas'): del request.session['carrinho_casas'] return HttpResponseRedirect('.') def deleta_itens_carrinho(request): if request.method == 'POST': ids_selecionados = request.POST.getlist('_selected_action') if request.session.has_key('carrinho_casas'): lista = request.session['carrinho_casas'] for item in ids_selecionados: lista.remove(item) if lista: request.session['carrinho_casas'] = lista else: del lista; del request.session['carrinho_casas'] return HttpResponseRedirect('.') def labels_report(request, id=None, tipo=None, formato='3x9_etiqueta'): """ TODO: adicionar suporte para resultado de pesquisa do admin. """ if request.POST: if request.POST.has_key('tipo_etiqueta'): tipo = request.POST['tipo_etiqueta'] if request.POST.has_key('tamanho_etiqueta'): formato = request.POST['tamanho_etiqueta'] if tipo =='sem_presidente': return labels_report_sem_presidente(request, id, formato) if id: qs = CasaLegislativa.objects.filter(pk=id) else: qs = carrinhoOrGet_for_qs(request) if not qs: return HttpResponseRedirect('../') response = HttpResponse(mimetype='application/pdf') response['Content-Disposition'] = 'attachment; filename=casas.pdf' report = CasasLegislativasLabels(queryset=qs, formato=formato) report.generate_by(PDFGenerator, filename=response) return response def labels_report_parlamentar(request, id=None, formato='3x9_etiqueta'): """ TODO: adicionar suporte para resultado de pesquisa do admin. """ if request.POST: if request.POST.has_key('tamanho_etiqueta'): formato = request.POST['tamanho_etiqueta'] if id: legislaturas = [c.legislatura_set.latest('data_inicio') for c in CasaLegislativa.objects.filter(pk__in=id, legislatura__id__isnull=False).distinct()] mandatos = reduce(lambda x, y: x | y, [l.mandato_set.all() for l in legislaturas]) parlamentares = [m.parlamentar for m in mandatos] qs = parlamentares else: qs = carrinhoOrGet_for_parlamentar_qs(request) if not qs: return HttpResponseRedirect('../') response = HttpResponse(mimetype='application/pdf') response['Content-Disposition'] = 'attachment; filename=casas.pdf' report = ParlamentaresLabels(queryset=qs, formato=formato) report.generate_by(PDFGenerator, filename=response) return response def carrinhoOrGet_for_parlamentar_qs(request): """ Verifica se existe parlamentares na sessรฃo se nรฃo verifica get e retorna qs correspondente. """ if request.session.has_key('carrinho_casas'): ids = request.session['carrinho_casas'] legislaturas = [c.legislatura_set.latest('data_inicio') for c in CasaLegislativa.objects.filter(pk__in=ids, legislatura__id__isnull=False).distinct()] mandatos = reduce(lambda x, y: x | y, [l.mandato_set.all() for l in legislaturas]) parlamentares = [m.parlamentar for m in mandatos] qs = parlamentares else: legislaturas = [c.legislatura_set.latest('data_inicio') for c in CasaLegislativa.objects.all().distinct()] mandatos = reduce(lambda x, y: x | y, [l.mandato_set.all() for l in legislaturas]) parlamentares = [m.parlamentar for m in mandatos] qs = parlamentares if request.GET: qs = get_for_qs(request.GET,qs) return qs def labels_report_sem_presidente(request, id=None, formato='2x5_etiqueta'): """ TODO: adicionar suporte para resultado de pesquisa do admin. """ if id: qs = CasaLegislativa.objects.filter(pk=id) else: qs = carrinhoOrGet_for_qs(request) if not qs: return HttpResponseRedirect('../') response = HttpResponse(mimetype='application/pdf') response['Content-Disposition'] = 'attachment; filename=casas.pdf' report = CasasLegislativasLabelsSemPresidente(queryset=qs, formato=formato) report.generate_by(PDFGenerator, filename=response) return response def report(request, id=None,tipo=None): if request.POST: if request.POST.has_key('tipo_relatorio'): tipo = request.POST['tipo_relatorio'] if tipo =='completo': return report_complete(request, id) if id: qs = CasaLegislativa.objects.filter(pk=id) else: qs = carrinhoOrGet_for_qs(request) if not qs: return HttpResponseRedirect('../') #qs.order_by('municipio__uf','nome') response = HttpResponse(mimetype='application/pdf') response['Content-Disposition'] = 'attachment; filename=casas.pdf' report = CasasLegislativasReport(queryset=qs) report.generate_by(PDFGenerator, filename=response) return response def report_complete(request,id=None): if id: qs = CasaLegislativa.objects.filter(pk=id) else: qs = carrinhoOrGet_for_qs(request) if not qs: return HttpResponseRedirect('../') response = HttpResponse(mimetype='application/pdf') response['Content-Disposition'] = 'attachment; filename=casas.pdf' # Gera um relatorio para cada casa e concatena os relatorios cont = 0 canvas = None quant = qs.count() if quant > 1: for i in qs: cont += 1 #queryset deve ser uma lista lista = (i,) if cont == 1: report = InfoCasaLegislativa(queryset=lista) canvas = report.generate_by(PDFGenerator, return_canvas=True,filename=response,) else: report = InfoCasaLegislativa(queryset=lista) if cont == quant: report.generate_by(PDFGenerator, canvas=canvas) else: canvas = report.generate_by(PDFGenerator, canvas=canvas, return_canvas=True) else: report = InfoCasaLegislativa(queryset=qs) report.generate_by(PDFGenerator,filename=response) return response def casas_sem_convenio_report(request): qs = CasaLegislativa.objects.filter(convenio=None).order_by('municipio__uf','nome') if request.GET: qs = get_for_qs(request.GET,qs) if not qs: return HttpResponseRedirect('../') response = HttpResponse(mimetype='application/pdf') report = CasasSemConvenioReport(queryset=qs) report.generate_by(PDFGenerator, filename=response) return response def export_csv(request): response = HttpResponse(mimetype='text/csv') response['Content-Disposition'] = 'attachment; filename=casas.csv' writer = csv.writer(response) casas = carrinhoOrGet_for_qs(request) if not casas or not request.POST: return HttpResponseRedirect('../') atributos = request.POST.getlist("itens_csv_selected") atributos2 = [s.encode("utf-8") for s in atributos] try: atributos2.insert(atributos2.index('Municรญpio'), u'UF') except ValueError: pass writer.writerow(atributos2) for casa in casas: lista = [] contatos = casa.funcionario_set.filter(setor="contato_interlegis") for atributo in atributos: if u"CNPJ" == atributo: lista.append(casa.cnpj.encode("utf-8")) elif u"Cรณdigo IBGE" == atributo: lista.append(str(casa.municipio.codigo_ibge).encode("utf-8")) elif u"Cรณdigo TSE" == atributo: lista.append(str(casa.municipio.codigo_tse).encode("utf-8")) elif u"Nome" == atributo: lista.append(casa.nome.encode("utf-8")) elif u"Municรญpio" == atributo: lista.append(unicode(casa.municipio.uf.sigla).encode("utf-8")) lista.append(unicode(casa.municipio.nome).encode("utf-8")) elif u"Presidente" == atributo: #TODO: Esse encode deu erro em 25/04/2012. Comentei para que o usuรกrio pudesse continuar seu trabalho # ร‰ preciso descobrir o porque do erro e fazer a correรงรฃo definitiva. # lista.append(str(casa.presidente or "").encode("utf-8")) lista.append(str(casa.presidente or "")) elif u"Logradouro" == atributo: lista.append(casa.logradouro.encode("utf-8")) elif u"Bairro" == atributo: lista.append(casa.bairro.encode("utf-8")) elif u"CEP" == atributo: lista.append(casa.cep.encode("utf-8")) elif u"Telefone" == atributo: lista.append(str(casa.telefone or "")) elif u"Pรกgina web" == atributo: lista.append(casa.pagina_web.encode("utf-8")) elif u"Email" == atributo: lista.append(casa.email.encode("utf-8")) elif u"Nรบmero de parlamentares" == atributo: lista.append(casa.total_parlamentares) elif u"รšltima alteraรงรฃo de endereco" == atributo: lista.append(casa.ult_alt_endereco) elif u"Nome contato" == atributo: if contatos and contatos[0].nome: lista.append(contatos[0].nome.encode("utf-8")) else: lista.append('') elif u"Cargo contato" == atributo: if contatos and contatos[0].cargo: lista.append(contatos[0].cargo.encode("utf-8")) else: lista.append('') elif u"Email contato" == atributo: if contatos and contatos[0].email: lista.append(contatos[0].email.encode("utf-8")) else: lista.append('') else: pass writer.writerow(lista) return response
brenotx/SIGI-1.6
sigi/apps/casas/views.py
Python
gpl-2.0
14,027
<!DOCTYPE html> <!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]--> <!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]--> <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]--> <head> <meta charset="utf-8"> <title>Pebble SDK: String</title> <link href='bootstrap.css' media='screen' rel='stylesheet' type='text/css' /> <link href='pebble-developer.css' media='screen' rel='stylesheet' type='text/css' /> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="stylesheet.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30638158-4']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div id="top" ><!-- do not remove this div, it is closed by doxygen! --> <div class="navbar navbar-inverse "> <div class="navbar-inner"> <div class="container"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <div class="nav-collapse collapse"> <ul class="nav"> <li><a class="first" href="#"><span></span></a></li> <li><a href="http://developer.getpebble.com/">Develop for Pebble</a></li> </ul> <ul class="nav pull-right"> <li class="doc-nav-searchbox"> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> <li><a href="http://forums.getpebble.com/">Forum</a></li> <li><a href="http://developer.getpebble.com/2/api-reference/modules.html">API Documentation</a></li> <li><a href="http://developer.getpebble.com/2/">Guides</a></li> <li><a href="http://developer.getpebble.com/blog/">Developer Blog</a></li> </ul> </div> </div> </div> </div> <!-- Generated by Doxygen 1.8.4 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('group___standard_string.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Enumerator</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(7)"><span class="SelectionMark">&#160;</span>Groups</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">String<div class="ingroups"><a class="el" href="group___standard_c.html">Standard C</a></div></div> </div> </div><!--header--> <div class="contents"> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <p>Standard C-string manipulation. </p> <h2 class="groupheader">Function Documentation</h2> <a class="anchor" id="ga19546e43db31c3095991b04023b422b2"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">char * strcat </td> <td>(</td> <td class="paramtype">char *&#160;</td> <td class="paramname"><em>dest</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>src</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Concatenates the string in src to the end of the string pointed by dest and null terminates dest. </p> <p>There should be no overlap of dest and src. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">dest</td><td>The destination buffer with enough space for src beyond the null character </td></tr> <tr><td class="paramname">src</td><td>The source C string </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The destination buffer dest </dd></dl> </div> </div> <a class="anchor" id="ga6f3dcb20ff11ff9db5904c3cfb61a38c"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">int strcmp </td> <td>(</td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>str1</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>str2</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compares the null terminated strings str1 and str2 to each other. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">str1</td><td>The first C string to compare </td></tr> <tr><td class="paramname">str2</td><td>The second C string to compare </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The difference of the first differing pair of bytes or 0 if the strings are identical </dd></dl> </div> </div> <a class="anchor" id="gac5082c8ce4f0cddd88bf4d0d2e738308"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">char * strcpy </td> <td>(</td> <td class="paramtype">char *&#160;</td> <td class="paramname"><em>dest</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>src</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Copies the string in src into dest and null terminates dest. </p> <p>There should be no overlap of dest and src in memory. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">dest</td><td>The destination buffer with enough space for src </td></tr> <tr><td class="paramname">src</td><td>The source C string </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The destination buffer dest </dd></dl> </div> </div> <a class="anchor" id="ga008e171a518fe0e0352f31b245e03875"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="group___standard_memory.html#ga7b60c5629e55e8ec87a4547dd4abced4">size_t</a> strlen </td> <td>(</td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>str</em>)</td><td></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Calculates the length of a null terminated string. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">str</td><td>The C string. </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The length of the C string str. </dd></dl> </div> </div> <a class="anchor" id="gaef7c0be850a2df7a4e4c5f76774a721b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">char * strncat </td> <td>(</td> <td class="paramtype">char *&#160;</td> <td class="paramname"><em>dest</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>src</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="group___standard_memory.html#ga7b60c5629e55e8ec87a4547dd4abced4">size_t</a>&#160;</td> <td class="paramname"><em>n</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Concatenates up to n bytes from the string in src to the end of the string pointed by dest and null terminates dest. </p> <p>There should be no overlap of dest and src in memeory. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">dest</td><td>The destination buffer with enough space for src beyond the null character </td></tr> <tr><td class="paramname">src</td><td>The source string </td></tr> <tr><td class="paramname">n</td><td>The maximum number of bytes to copy </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The destination buffer dest </dd></dl> </div> </div> <a class="anchor" id="gab36f95eb212013e67f97dacede2751db"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">int strncmp </td> <td>(</td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>str1</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>str2</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="group___standard_memory.html#ga7b60c5629e55e8ec87a4547dd4abced4">size_t</a>&#160;</td> <td class="paramname"><em>n</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Compares the null terminated strings str1 and str2 to each other for up to n bytes. </p> <p>Comparison ends when a null is read or when n bytes are read, whichever happens first. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">str1</td><td>The first C string to compare </td></tr> <tr><td class="paramname">str2</td><td>The second C string to compare </td></tr> <tr><td class="paramname">n</td><td>The maximum number of bytes to compare </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The difference of the first differing pair of bytes or the final pair of bytes read or 0 if the portions of the strings read are identical </dd></dl> </div> </div> <a class="anchor" id="ga9380f4a95b2c4e3d979b1634d3a8bcc9"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">char * strncpy </td> <td>(</td> <td class="paramtype">char *&#160;</td> <td class="paramname"><em>dest</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char *&#160;</td> <td class="paramname"><em>src</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="group___standard_memory.html#ga7b60c5629e55e8ec87a4547dd4abced4">size_t</a>&#160;</td> <td class="paramname"><em>n</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Copies up to n bytes from the string in src into dest and null terminates dest. </p> <p>If dest is null terminated before n bytes have been written, null bytes will continue to be written until n bytes total were written. There should be no overlap of dest and src in memory. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">dest</td><td>The destination buffer with enough space for n bytes </td></tr> <tr><td class="paramname">src</td><td>The source string </td></tr> <tr><td class="paramname">n</td><td>The number of bytes to copy </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>The destination buffer dest </dd></dl> </div> </div> </div><!-- contents --> </div><!-- doc-content --> </div> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Aug 12 2015 18:15:29 for Pebble SDK by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.4 </li> </ul> </div> </body> </html>
sung9155/pebble-korean-language-pack
PebbleSDK-3.2.1/Documentation/Aplite/group___standard_string.html
HTML
gpl-2.0
16,127
/** * Copyright (C) 2006, Laboratorio di Valutazione delle Prestazioni - Politecnico di Milano * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ package jmt.gui.jmodel.definitions; import java.awt.Color; import jmt.gui.common.definitions.ClassDefinition; /** * <p>Title: Jmodel Class Definition Interface</p> * <p>Description: This interface provides methods for editing classes for JMODEL models. * It actually extends JSIM ClassDefinition interface to provide a compatibility layer</p> * * @author Bertoli Marco * Date: 14-giu-2005 * Time: 9.44.32 */ public interface JmodelClassDefinition extends ClassDefinition { /**Code for class color search*/ public int CLASS_COLOR = 5; public int REFERENCE_SOURCE_NAME = 6; /** * Creates a new Class with default parameters and default generated name * @return search key for newly created class */ public Object addClass(); /** * Sets the color of a class * @param key search key for class * @param color Color that should be associated with given class */ public void setClassColor(Object key, Color color); /** * Returns a class color * @param key search key for class * @return Color associated with given class, or null if class does not exist */ public Color getClassColor(Object key); /** * Returns a serialized object for a given class, used to support cut/paste, * undo/redo operations * @param classKey Search's key for station * @return Serialized class object */ public Object serializeClass(Object classKey); /** * Deserializes given class * @param serializedForm class's Serialized form got from <code>serializeClass</code> * method. * @return search's key for inserted class */ public Object deserializeClass(Object serializedForm); }
chpatrick/jmt
src/jmt/gui/jmodel/definitions/JmodelClassDefinition.java
Java
gpl-2.0
2,541
<?php /* Plugin Name: IS Circular Photo Gallery Plugin URI: http://www.polaroidgallery.hostoi.com Description: WordPress implementation of the circular picture gallery. Version: 1.9 Author: I. Savkovic Author URI: http://www.polaroidgallery.hostoi.com Originally based on the plugin by Bev Stofko http://www.stofko.ca/wp-imageflow2-wordpress-plugin/. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ global $wp_version; define('ISCPGALLERYVERSION', version_compare($wp_version, '2.8.4', '>=')); if(!defined("PHP_EOL")){define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "\r\n" : "\n");} if (!class_exists("ISCPGallery")) { Class ISCPGallery { var $adminOptionsName = 'iscpgallery_options'; /* html div ids */ var $imageflow2div = 'iscp_imageflow'; var $loadingdiv = 'iscp_loading'; var $imagesdiv = 'iscp_images'; var $captionsdiv = 'iscp_captions'; var $sliderdiv = 'iscp_slider'; var $scrollbardiv = 'iscp_scrollbar'; var $noscriptdiv = 'iscp_imageflow_noscript'; var $largerimagesdiv = 'iscp_largerimages'; var $iscp_instance = 0; var $iscp_id = 0; function iscpgallery() { if (!ISCPGALLERYVERSION) { add_action ('admin_notices',__('WP-IS Circular Photo Gallery requires at least WordPress 2.8.4','wp-iscircularphoto')); return; } register_activation_hook( __FILE__, array(&$this, 'activate')); register_deactivation_hook( __FILE__, array(&$this, 'deactivate')); add_action('init', array(&$this, 'addScripts')); add_action('admin_menu', array(&$this, 'add_settings_page')); add_shortcode('wp-iscircularphoto', array(&$this, 'flow_func')); add_filter("attachment_fields_to_edit", array(&$this, "image_links"), null, 2); add_filter("attachment_fields_to_save", array(&$this, "image_links_save"), null , 2); } function activate() { /* ** Nothing needs to be done for now */ } function deactivate() { /* ** Nothing needs to be done for now */ } function flow_func($attr,$iscp_id) { /* ** WP-IS Circular Photo gallery shortcode handler */ /* Increment the instance to support multiple galleries on a single page */ $this->iscp_instance ++; /* Load scripts, get options */ $options = $this->getAdminOptions(); /* Produce the Javascript for this instance */ $js = "\n".'<script type="text/javascript">'."\n"; $js .= 'jQuery(document).ready(function() { '."\n".'var iscirculargallery_' . $this->iscp_instance . ' = new iscirculargallery('.$this->iscp_instance.','.$this->iscp_id.');'."\n"; $js .= 'iscirculargallery_' . $this->iscp_instance . '.init( {'; if ( !isset ($attr['rotate']) ) { $js .= 'conf_autorotate: "' . $options['autorotate'] . '", '; } else { $js .= 'conf_autorotate: "' . $attr['rotate'] . '", '; } $js .= 'conf_autorotatepause: ' . $options['pause'] . ', '; if ( !isset ($attr['startimg']) ) { $js .= 'conf_startimg: 1' . ', '; } else { $js .= 'conf_startimg: ' . $attr['startimg'] . ', '; } if ( !isset ($attr['nocaptions']) ) { $js .= 'conf_nocaptions: true' . ', '; } else { $js .= 'conf_nocaptions: ' . $options['nocaptions'] . ', '; } if ( !isset ($attr['samewindow']) ) { $js .= $options['samewindow']? 'conf_samewindow: true' : 'conf_samewindow: false'; } else { $js .= 'conf_samewindow: ' . $attr['samewindow']; } $js .= '} );'."\n"; $js .= '});'."\n"; $js .= "</script>\n\n"; /* Get the list of images */ $image_list = apply_filters ('iscp_image_list', array(), $attr); if (empty($image_list)) { if ( !isset ($attr['dir']) ) { $image_list = $this->images_from_library($attr, $options); } else { $image_list = $this->images_from_dir($attr, $options); } } /* Prepare options */ $bgcolor = $options['bgcolor']; $txcolor = $options['txcolor']; $slcolor = $options['slcolor']; $width = $options['width']; $height = $options['height']; $link = $options['link']; $imgbdcolor = $options['imgbdcolor']; $imgbdwidth = $options['imgbdwidth']; $lgimgbdcolor = $options['lgimgbdcolor']; $lgimgbdwidth = $options['lgimgbdwidth']; $bgccolor = $options['bgccolor']; $bdccolor = $options['bdccolor']; $lgimgwidth = $options['lgimgwidth']; $lgimgheight = $options['lgimgheight']; $imgwidth = $options['imgwidth']; $plugin_url = plugins_url( '', __FILE__ ); /** * Start output */ $noscript = '<noscript><div id="' . $this->noscriptdiv . '_' . $this->iscp_instance . '" class="' . $this->noscriptdiv . '">'; $output = '<div id="' . $this->imageflow2div . '_' . $this->iscp_instance . '" class="' . $this->imageflow2div . '" style="background-color: ' . $bgcolor . '; color: ' . $txcolor . '; width: ' . $width . '; height: ' . $height . '">' . PHP_EOL; $output .= '<div id="' . $this->loadingdiv . '_' . $this->iscp_instance . '" class="' . $this->loadingdiv . '" style="color: ' . $txcolor .';">' . PHP_EOL; $output .= '<b>'; $output .= __('Loading Images','wp-iscircularphoto'); $output .= '</b><br/>' . PHP_EOL; $output .= '<img src="' . $plugin_url . '/img/loading.gif" width="208" height="13" alt="' . $this->loadingdiv . '" />' . PHP_EOL; $output .= '</div>' . PHP_EOL; $output .= ' <div id="' . $this->imagesdiv . '_' . $this->iscp_instance . '" class="' . $this->imagesdiv . '" style="border-width: ' . $imgbdwidth . '; border-color: ' . $imgbdcolor . '; width: ' . $imgwidth . ';">' . PHP_EOL; /** $output .= '<style type="text/css">.iscp_images img { border : 4px solid #C9D0E3;} </style>' . PHP_EOL; */ /** * Add images */ if (!empty ($image_list) ) { $i = 0; foreach ( $image_list as $this_image ) { /* What does the carousel image link to? */ $linkurl = $this_image['link']; $rel = ''; $dsc = ''; if ($linkurl === '') { /* We are linking to the popup - use the title and description as the alt text */ $linkurl = $this_image['large']; $rel = ' data-style="iscp_lightbox"'; $alt = ' alt="'.$this_image['title'].'"'; if ($this_image['desc'] != '') { $dsc = ' data-description="' . htmlspecialchars(str_replace(array("\r\n", "\r", "\n"), "<br />", $this_image['desc'])) . '"'; } } else { /* We are linking to an external url - use the title as the alt text */ $alt = ' alt="'.$this_image['title'].'"'; } $output .= '<img src="'.$this_image['small'].'" data-link="'.$linkurl.'"'. $rel . $alt . $dsc . ' />'; /* build separate thumbnail list for users with scripts disabled */ $noscript .= '<a href="' . $linkurl . '"><img src="' . $this_image['small'] .'" width="100" alt="'.$this_image['title'].'" /></a>'; $i++; } $this->iscp_id ++; } $output .= '</div>' . PHP_EOL; /* larger image */ $output .= '<div id="' . $this->largerimagesdiv . '_' . $this->iscp_instance . '" class="' . $this->largerimagesdiv . '" style="border-width: ' . $lgimgbdwidth . '; border-color: ' . $lgimgbdcolor . '; width: ' . $lgimgwidth . '; height: ' . $lgimgheight . ';">' . PHP_EOL; /*$output .= '<div id="' . $this->largerimagesdiv . '_' . $this->iscp_instance . '" class="' . $this->largerimagesdiv . '">' . PHP_EOL;*/ /*$output .= '<div id="' . $this->largerimages . '_' . $this->iscp_instance . '" class="' . $this->largerimages . '" style="border-width: ' . $lgimgbdwidth . '; border-color: ' . $lgimgbdcolor . ';">' . PHP_EOL; */ /** * Add images */ if (!empty ($image_list) ) { $i = 0; foreach ( $image_list as $this_image ) { /* What does the carousel image link to? */ $linkurl = $this_image['link']; $rel = ''; $dsc = ''; if ($linkurl === '') { /* We are linking to the popup - use the title and description as the alt text */ $linkurl = $this_image['large']; $rel = ' data-style="iscp_lightbox"'; $alt = ' alt="'.$this_image['title'].'"'; if ($this_image['desc'] != '') { $dsc = ' data-description="' . htmlspecialchars(str_replace(array("\r\n", "\r", "\n"), "<br />", $this_image['desc'])) . '"'; } } else { /* We are linking to an external url - use the title as the alt text */ $alt = ' alt="'.$this_image['title'].'"'; } $output .= '<img src="'.$this_image['small'].'" data-link="'.$linkurl.'"'. $rel . $alt . $dsc . ' />'; /* build separate thumbnail list for users with scripts disabled */ $noscript .= '<a href="' . $linkurl . '"><img src="' . $this_image['small'] .'" width="100" alt="'.$this_image['title'].'" /></a>'; $i++; } $this->iscp_id ++; } $output .= '</div>' . PHP_EOL; $output .= '<div id="' . $this->captionsdiv . '_' . $this->iscp_instance . '" class="' . $this->captionsdiv . '" style="background-color: ' . $bgccolor . ' ; border-color: ' . $bdccolor . '"'; if ($options['nocaptions']) $output .= ' style="display:none !important;"'; $output .= '></div>' . PHP_EOL; $output .= '<div id="' . $this->scrollbardiv . '_' . $this->iscp_instance . '" class="' . $this->scrollbardiv; if ($slcolor == "black") $output .= ' black'; $output .= '"'; if ($options['noslider']) $output .= ' style="display:none !important;"'; $output .= '><div id="' . $this->sliderdiv . '_' . $this->iscp_instance . '" class="' . $this->sliderdiv . '">' . PHP_EOL; $output .= '</div>'; $output .= '</div>' . PHP_EOL; $output .= $noscript . '</div></noscript></div>'; return $js . $output; } function images_from_library ($attr, $options) { /* ** Generate a list of the images we are using from the Media Library */ if ( isset( $attr['orderby'] ) ) { $attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] ); if ( !$attr['orderby'] ) unset( $attr['orderby'] ); } /* ** Standard gallery shortcode defaults that we support here */ global $post; extract(shortcode_atts(array( 'order' => 'ASC', 'orderby' => 'menu_order ID', 'id' => $post->ID, 'include' => '', 'exclude' => '', 'mediatag' => '', // corresponds to Media Tags plugin by Paul Menard ), $attr)); $id = intval($id); if ( 'RAND' == $order ) $orderby = 'none'; if ( !empty($mediatag) ) { $mediaList = get_attachments_by_media_tags("media_tags=$mediatag&orderby=$orderby&order=$order"); $attachments = array(); foreach ($mediaList as $key => $val) { $attachments[$val->ID] = $mediaList[$key]; } } elseif ( !empty($include) ) { $include = preg_replace( '/[^0-9,]+/', '', $include ); $_attachments = get_posts( array('include' => $include, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) ); $attachments = array(); foreach ( $_attachments as $key => $val ) { $attachments[$val->ID] = $_attachments[$key]; } } elseif ( !empty($exclude) ) { $exclude = preg_replace( '/[^0-9,]+/', '', $exclude ); $attachments = get_children( array('post_parent' => $id, 'exclude' => $exclude, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) ); } else { $attachments = get_children( array('post_parent' => $id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) ); } $image_list = array(); foreach ( $attachments as $id => $attachment ) { $small_image = wp_get_attachment_image_src($id, "medium"); $large_image = wp_get_attachment_image_src($id, "large"); /* If the media description contains an url and the link option is enabled, use the media description as the linkurl */ $link_url = ''; if (($options['link'] == 'true') && ((substr($attachment->post_content,0,7) == 'http://') || (substr($attachment->post_content,0,8) == 'https://'))) { $link_url = $attachment->post_content; } $image_link = get_post_meta($id, '_iscp-image-link', true); if (isset($image_link) && ($image_link != '')) $link_url = $image_link; $image_list[] = array ( 'small' => $small_image[0], 'large' => $large_image[0], 'link' => $link_url, 'title' => $attachment->post_title, 'desc' => $attachment->post_content, ); } return $image_list; } function images_from_dir ($attr, $options) { /* ** Generate the image list by reading a folder */ $image_list = array(); $galleries_path = rtrim($_SERVER['DOCUMENT_ROOT'], '/') . '/' . $this->get_path($options['gallery_url']); if (!file_exists($galleries_path)) return ''; /* ** Gallery directory is ok - replace the shortcode with the image gallery */ $plugin_url = get_option('siteurl') . "/" . PLUGINDIR . "/" . plugin_basename(dirname(__FILE__)); $gallerypath = $galleries_path . $attr['dir']; if (file_exists($gallerypath)) { $handle = opendir($gallerypath); while ($image=readdir($handle)) { if (filetype($gallerypath."/".$image) != "dir" && !preg_match('/refl_/',$image)) { $pageURL = 'http'; if (isset($_SERVER['HTTPS']) && ($_SERVER["HTTPS"] == "on")) {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"]; } else { $pageURL .= $_SERVER["SERVER_NAME"]; } $imagepath = $pageURL . '/' . $this->get_path($options['gallery_url']) . $attr['dir'] . '/' . $image; $image_list[] = array ( 'small' => $imagepath, 'large' => $imagepath, 'link' => '', 'title' => $image, 'desc' => '', ); } // $this->iscp_id ++; } closedir($handle); } return $image_list; } function getAdminOptions() { /* ** Merge default options with the saved values */ $use_options = array( 'gallery_url' => '0', // Path to gallery folders when not using built in gallery shortcode 'bgcolor' => '#000000', // Background color defaults to black 'txcolor' => '#FFFFFF', // Text color defaults to white 'slcolor' => 'white', // Slider color defaults to white 'link' => 'false', // Don't link to image description 'width' => '640px', // Width of containing div 'height' => '480px', // Height of containing div 'autorotate' => 'off', // True to enable auto rotation 'pause' => '3000', // Time to pause between auto rotations 'samewindow' => false, // True to open links in same window rather than new window 'nocaptions' => false, // True to hide captions in the carousel 'noslider' => true, // True to hide the scrollbar 'defheight' => false, // True to use default value 'bgccolor' => '#6ED2CF', // Background color defaults 'bdccolor' => '#5882FA', // Background color defaults 'imgbdcolor' => '#DDDBDB', // Border color defaults 'lgimgbdcolor' => '#5882FA', // Border color of central image defaults 'imgbdwidth'=> '5px', // Width of image border 'lgimgbdwidth'=> '5px', // Width of large image border 'lgimgwidth'=> '160px', // Width of large image 'lgimgheight'=> '120px', // Height of large image 'imgwidth'=> '80px' // Width of image ); $saved_options = get_option($this->adminOptionsName); if (!empty($saved_options)) { foreach ($saved_options as $key => $option) $use_options[$key] = $option; } if ($use_options['defheight'] == 'true') { $use_options['height'] = '480px'; } return $use_options; } function get_path($gallery_url) { /* ** Determine the path to prepend with DOCUMENT_ROOT */ if (substr($gallery_url, 0, 7) != "http://") return $gallery_url; $dir_array = parse_url($gallery_url); return $dir_array['path']; } function addScripts() { if (!is_admin()) { wp_enqueue_style( 'iscpgallerycss', plugins_url('css/screen.css', __FILE__)); wp_enqueue_script('iscp_gallery', plugins_url('js/iscirculargallery.js', __FILE__), array('jquery'), '1.9'); } else { wp_enqueue_script('iscp_utility_js', plugins_url('js/iscp_utility.js', __FILE__)); } } function image_links($form_fields, $post) { $form_fields["iscp-image-link"] = array( "label" => __("WP-IS Circular Photo Gallery Link"), "input" => "", // this is default if "input" is omitted "value" => get_post_meta($post->ID, "_iscp-image-link", true), "helps" => __("To be used with carousel added via [wp-iscircularphoto] shortcode."), ); return $form_fields; } function image_links_save($post, $attachment) { // $attachment part of the form $_POST ($_POST[attachments][postID]) // $post['post_type'] == 'attachment' if( isset($attachment['iscp-image-link']) ){ // update_post_meta(postID, meta_key, meta_value); update_post_meta($post['ID'], '_iscp-image-link', $attachment['iscp-image-link']); } return $post; } function add_settings_page() { add_options_page('WP-IS Circular Photo Gallery Options', 'WP-IS Circular Photo Gallery', 'manage_options', 'wpISCircularPhoto', array(&$this, 'settings_page')); } function settings_page() { global $options_page; if (!current_user_can('manage_options')) wp_die(__('Sorry, but you have no permission to change settings.','wp-iscircularphoto')); $options = $this->getAdminOptions(); if (isset($_POST['save_iscpgallery']) && ($_POST['save_iscpgallery'] == 'true') && check_admin_referer('iscpgallery_options')) { echo "<div id='message' class='updated fade'>"; /* ** Validate the background colour */ if ((preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_bgc'])) || ($_POST['iscpgallery_bgc'] == 'transparent')) { $options['bgcolor'] = $_POST['iscpgallery_bgc']; } else { echo "<p><b style='color:red;'>".__('Invalid background color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_bgc'] ."</b></p>"; } /* ** Validate the text colour */ if (preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_txc'])) { $options['txcolor'] = $_POST['iscpgallery_txc']; } else { echo "<p><b style='color:red;'>".__('Invalid text color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_txc'] ."</b></p>"; } /* ** Validate the caption background colour */ if ((preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_bgcc'])) || ($_POST['iscpgallery_bgcc'] == 'transparent')) { $options['bgccolor'] = $_POST['iscpgallery_bgcc']; } else { echo "<p><b style='color:red;'>".__('Invalid background color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_bgcc'] ."</b></p>"; } /* ** Validate the caption border colour */ if ((preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_bdcc'])) || ($_POST['iscpgallery_bdcc'] == 'transparent')) { $options['bdccolor'] = $_POST['iscpgallery_bdcc']; } else { echo "<p><b style='color:red;'>".__('Invalid background color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_bdcc'] ."</b></p>"; } /* ** Look for disable captions option */ if (isset ($_POST['iscpgallery_nocaptions']) && ($_POST['iscpgallery_nocaptions'] == 'nocaptions')) { $options['nocaptions'] = true; } else { $options['nocaptions'] = false; } /* ** Validate the images border colour */ if ((preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_bdimg'])) || ($_POST['iscpgallery_bdimg'] == 'transparent')) { $options['imgbdcolor'] = $_POST['iscpgallery_bdimg']; } else { echo "<p><b style='color:red;'>".__('Invalid background color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_bdimg'] ."</b></p>"; } /* /* ** Validate the large image border colour */ if ((preg_match('/^#[a-f0-9]{6}$/i', $_POST['iscpgallery_lgbdimg'])) || ($_POST['iscpgallery_lgbdimg'] == 'transparent')) { $options['lgimgbdcolor'] = $_POST['iscpgallery_lgbdimg']; } else { echo "<p><b style='color:red;'>".__('Invalid border color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_lgbdimg'] ."</b></p>"; } /* /* ** Validate the slider color */ /* if (($_POST['iscpgallery_slc'] == 'black') || ($_POST['iscpgallery_slc'] == 'white')) { $options['slcolor'] = $_POST['iscpgallery_slc']; } else { echo "<p><b style='color:red;'>".__('Invalid slider color, not saved.','wp-iscircularphoto'). " - " . $_POST['iscpgallery_slc'] ."</b></p>"; } */ /* ** Look for disable slider option */ /* if (isset ($_POST['iscpgallery_noslider']) && ($_POST['iscpgallery_noslider'] == 'noslider')) { */ $options['noslider'] = true; /* } else { $options['noslider'] = false; } */ /* ** Accept the container width */ $options['width'] = $_POST['iscpgallery_width']; /* /* ** Accept the image border width */ $options['imgbdwidth'] = $_POST['iscpgallery_imgbdwidth']; /* ** Accept the large image border width */ $options['lgimgbdwidth'] = $_POST['iscpgallery_lgimgbdwidth']; /* ** Accept the large image width */ $options['lgimgwidth'] = $_POST['iscpgallery_lgimgwidth']; /* ** Accept the large image height */ $options['lgimgheight'] = $_POST['iscpgallery_lgimgheight']; /* ** Accept the image width */ $options['imgwidth'] = $_POST['iscpgallery_imgwidth']; /* /* ** Look for the container height */ // $options['height'] = $_POST['iscpgallery_height']; if (isset ($_POST['iscpgallery_defheight']) && ($_POST['iscpgallery_defheight'] == 'defheight')) { $options['defheight'] = true; $options['height'] = $_POST['height']; } else { $options['defheight'] = false; $options['height'] = $_POST['iscpgallery_height']; } /* ** Look for link to new window option */ if (isset ($_POST['iscpgallery_samewindow']) && ($_POST['iscpgallery_samewindow'] == 'same')) { $options['samewindow'] = true; } else { $options['samewindow'] = false; } /* ** Look for auto rotate option */ if (isset ($_POST['iscpgallery_autorotate']) && ($_POST['iscpgallery_autorotate'] == 'autorotate')) { $options['autorotate'] = 'on'; } else { $options['autorotate'] = 'off'; } /* ** Accept the pause value */ $options['pause'] = $_POST['iscpgallery_pause']; /* ** Done validation, update whatever was accepted */ $options['gallery_url'] = trim($_POST['iscpgallery_path']); update_option($this->adminOptionsName, $options); echo '<p>'.__('Settings were saved.','wp-iscircularphoto').'</p></div>'; } ?> <div class="wrap"> <h2>WP-IS Circular Photo Gallery Settings</h2> <form action="options-general.php?page=wpISCircularPhoto" method="post"> <h3><?php echo __('Formatting','wp-iscircularphoto'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <label for="iscpgallery_bgc"><?php echo __('Background color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_bgc" id="iscpgallery_bgc" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['bgcolor']; ?>"> &nbsp;<em>Hex value or "transparent"</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Container width CSS', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_width" value="<?php echo $options['width']; ?>"> </td> </tr> <tr> <th scope="row"> <?php echo __('Container height', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_height" value="<?php echo $options['height']; ?>"> &nbsp;<label for="iscpgallery_defheight">Default value (480px): </label> <input type="checkbox" name="iscpgallery_defheight" id="iscpgallery_defheight" value="defheight" <?php if ($options['defheight'] == 'true') echo ' CHECKED'; ?> /> </td> </tr> </table> <h3><?php echo __('Captions Formatting','wp-iscircularphoto'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <label for="iscpgallery_txc"><?php echo __('Text color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_txc" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['txcolor']; ?>"> &nbsp;<label for="iscpgallery_nocaptions">Disable captions: </label> <input type="checkbox" name="iscpgallery_nocaptions" id="iscpgallery_nocaptions" value="nocaptions" <?php if ($options['nocaptions'] == 'true') echo ' CHECKED'; ?> /> </td> </tr> <tr> <th scope="row"> <label for="iscpgallery_bgcc"><?php echo __('Background color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_bgcc" id="iscpgallery_bgcc" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['bgccolor']; ?>"> &nbsp;<em>Hex value or "transparent"</em> </td> </tr> <tr> <th scope="row"> <label for="iscpgallery_bdcc"><?php echo __('Border color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_bdcc" id="iscpgallery_bdcc" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['bdccolor']; ?>"> &nbsp;<em>Hex value or "transparent"</em> </td> </tr> </table> <h3><?php echo __('Pictures Formatting','wp-iscircularphoto'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <?php echo __('Picture width', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_imgwidth" value="<?php echo $options['imgwidth']; ?>"> &nbsp;<em>Default value 80px</em> </td> </tr> <tr> <th scope="row"> <label for="iscpgallery_bdimg"><?php echo __('Border color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_bdimg" id="iscpgallery_bdimg" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['imgbdcolor']; ?>"> &nbsp;<em>Hex value or "transparent"</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Border width', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_imgbdwidth" value="<?php echo $options['imgbdwidth']; ?>"> </td> </tr> </table> <h3><?php echo __('Large Picture Formatting','wp-iscircularphoto'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <?php echo __('Large picture width', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_lgimgwidth" value="<?php echo $options['lgimgwidth']; ?>"> &nbsp;<em>Default value 160px</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Large picture height', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_lgimgheight" value="<?php echo $options['lgimgheight']; ?>"> &nbsp;<em>Default value 120px</em> </td> </tr> <tr> <th scope="row"> <label for="iscpgallery_lgbdimg"><?php echo __('Border color', 'wp-iscircularphoto'); ?></label> </td> <td> <input type="text" name="iscpgallery_lgbdimg" id="iscpgallery_lgbdimg" onkeyup="colorcode_validate(this, this.value);" value="<?php echo $options['lgimgbdcolor']; ?>"> &nbsp;<em>Hex value or "transparent"</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Border width', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_lgimgbdwidth" value="<?php echo $options['lgimgbdwidth']; ?>"> </td> </tr> </table> <h3><?php echo __('Behaviour','wp-iscircularphoto'); ?></h3> <p>The images in the carousel will by default link to a Lightbox enlargement of the image. Alternatively, you may specify a URL to link to each image. This link address should be configured in the image uploader/editor of the Media Library.</p> <table class="form-table"> <tr> <th scope="row"> <?php echo __('Open URL links in same window', 'wp-iscircularphoto'); ?> </td> <td> <input type="checkbox" name="iscpgallery_samewindow" value="same" <?php if ($options['samewindow'] == 'true') echo ' CHECKED'; ?> /> <em>The default is to open links in a new window</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Enable auto rotation', 'wp-iscircularphoto'); ?> </td> <td> <input type="checkbox" name="iscpgallery_autorotate" value="autorotate" <?php if ($options['autorotate'] == 'on') echo ' CHECKED'; ?> /> <em>This may be overridden in the shortcode</em> </td> </tr> <tr> <th scope="row"> <?php echo __('Auto rotation pause', 'wp-iscircularphoto'); ?> </td> <td> <input type="text" name="iscpgallery_pause" value="<?php echo $options['pause']; ?>"> </td> </tr> </table> <h3><?php echo __('Galleries Based on Folders','wp-iscircularphoto'); ?></h3> <a style="cursor:pointer;" title="Click for help" onclick="toggleVisibility('detailed_display_tip');">Click to toggle detailed help</a> <div id="detailed_display_tip" style="display:none; width: 600px; background-color: #eee; padding: 8px; border: 1px solid #aaa; margin: 20px; box-shadow: rgb(51, 51, 51) 2px 2px 8px;"> <p>You can upload a collection of images to a folder and have WP-IS Circular Photo Gallery read the folder and gather the images, without the need to upload through the Wordpress image uploader. Using this method provides fewer features in the gallery since there are no titles, links, or descriptions stored with the images. This is provided as a quick and easy way to display an image carousel.</p> <p>The folder structure should resemble the following:</p> <p> - wp-content<br /> &nbsp;&nbsp;&nbsp;- galleries<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- gallery1<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image1.jpg<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image2.jpg<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image3.jpg<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- gallery2<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image4.jpg<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image5.jpg<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- image6.jpg</p> <p>With this structure you would enter "wp-content/galleries/" as the folder path below.</p> </div> <table class="form-table"> <tr> <th scope="row"> <?php echo __('Folder Path','wp-iscircularphoto'); ?> </td> <td> <?php echo __('This should be the path to galleries from homepage root path, or full url including http://.','wp-iscircularphoto'); ?> <br /><input type="text" size="35" name="iscpgallery_path" value="<?php echo $options['gallery_url']; ?>"> <br /><?php echo __('e.g.','wp-iscircularphoto'); ?> wp-content/galleries/ <br /><?php echo __('Ending slash, but NO starting slash','wp-iscircularphoto'); ?> </td> </tr> <tr> <th scope="row"> <?php echo __('These folder galleries were found:','wp-iscircularphoto'); ?> </th> <td> <?php $galleries_path = rtrim($_SERVER['DOCUMENT_ROOT'], '/') . '/' . $this->get_path($options['gallery_url']); if (file_exists($galleries_path)) { $handle = opendir($galleries_path); while ($dir=readdir($handle)) { if ($dir != "." && $dir != "..") { echo "[wp-iscircularphoto dir=".$dir."]"; echo "<br />"; } } closedir($handle); } else { echo "Gallery path doesn't exist"; } ?> </td> </tr> </table> <p class="submit"><input class="button button-primary" name="submit" value="<?php echo __('Save Changes','wp-iscircularphoto'); ?>" type="submit" /></p> <input type="hidden" value="true" name="save_iscpgallery"> <?php if ( function_exists('wp_nonce_field') ) wp_nonce_field('iscpgallery_options'); ?> </form> </div> <?php } } } if (class_exists("ISCPGallery")) { $iscpgallery = new ISCPGallery(); } ?>
amyevans/davmschool
wp-content/plugins/is-circular-photo-gallery/wp-iscircularphoto.php
PHP
gpl-2.0
33,964
<?php // File Security Check if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && basename( __FILE__ ) == basename( $_SERVER['SCRIPT_FILENAME'] ) ) { die ( 'You do not have sufficient permissions to access this page!' ); } /* Template Name: Faq (Accordion) */ get_header(); ?> <!-- BEGIN #content --> <section id="content" class="<?php echo $post->post_name; ?>"> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <header> <h1 class="entry-title"><?php the_title(); ?></h1> </header> <?php nice_breadcrumbs(); ?> <div class="entry clearfix"> <?php the_content(); ?> <?php if ( get_query_var( 'paged' ) ) $paged = get_query_var( 'paged' ); elseif ( get_query_var( 'page' ) ) $paged = get_query_var( 'page' ); else $paged = 1; ?> <?php $args = array( 'post_type' => 'faq', 'posts_per_page' => '-1', 'orderby' => 'menu_order', 'order' => apply_filters( 'nice_faq_order', 'ASC' ), 'paged' => $paged ); $faq_query = new WP_Query( $args ); if ( $faq_query->have_posts() ) : $loop = 0; while ( $faq_query->have_posts() ) : $faq_query->the_post(); ?> <article id="faq-<?php the_ID(); ?>" class="faq clearfix"> <header> <span id="faq-<?php echo get_the_ID(); ?>" class="faq-title"> <a href="#faq-title-<?php echo get_the_ID(); ?>"> <?php the_title(); ?> </a> </span> </header> <div class="entry-content"> <?php the_content(); ?> </div> </article> <?php endwhile; endif; ?> </div> <?php endwhile; ?> <?php else : ?> <header> <h2><?php _e( 'Not Found', 'nicethemes' ); ?></h2> </header> <p><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'nicethemes' ); ?></p> <?php get_search_form(); ?> <?php endif; ?> <!-- END #content --> </section> <!-- BEGIN #sidebar --> <aside id="sidebar" role="complementary"> <?php dynamic_sidebar( 'faq' ); ?> <!-- END #sidebar --> </aside> <?php get_footer();
supahseppe/path-of-gaming
wp-content/themes/flatbase/template-faq.php
PHP
gpl-2.0
2,110
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Interface com.google.gwt.activity.shared.Activity (Google Web Toolkit Javadoc) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface com.google.gwt.activity.shared.Activity (Google Web Toolkit Javadoc)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> GWT 2.6.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/google/gwt/activity/shared//class-useActivity.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Activity.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>com.google.gwt.activity.shared.Activity</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.google.gwt.activity.shared"><B>com.google.gwt.activity.shared</B></A></TD> <TD>Classes used to implement app navigation.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.google.gwt.activity.shared"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A> in <A HREF="../../../../../../com/google/gwt/activity/shared/package-summary.html">com.google.gwt.activity.shared</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../../com/google/gwt/activity/shared/package-summary.html">com.google.gwt.activity.shared</A> that implement <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/google/gwt/activity/shared/AbstractActivity.html" title="class in com.google.gwt.activity.shared">AbstractActivity</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Simple Activity implementation that is always willing to stop, and does nothing onStop and onCancel.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../com/google/gwt/activity/shared/package-summary.html">com.google.gwt.activity.shared</A> that return <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></CODE></FONT></TD> <TD><CODE><B>ActivityMapper.</B><B><A HREF="../../../../../../com/google/gwt/activity/shared/ActivityMapper.html#getActivity(com.google.gwt.place.shared.Place)">getActivity</A></B>(<A HREF="../../../../../../com/google/gwt/place/shared/Place.html" title="class in com.google.gwt.place.shared">Place</A>&nbsp;place)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the activity to run for the given <A HREF="../../../../../../com/google/gwt/place/shared/Place.html" title="class in com.google.gwt.place.shared"><CODE>Place</CODE></A>, or null.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></CODE></FONT></TD> <TD><CODE><B>CachingActivityMapper.</B><B><A HREF="../../../../../../com/google/gwt/activity/shared/CachingActivityMapper.html#getActivity(com.google.gwt.place.shared.Place)">getActivity</A></B>(<A HREF="../../../../../../com/google/gwt/place/shared/Place.html" title="class in com.google.gwt.place.shared">Place</A>&nbsp;place)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared">Activity</A></CODE></FONT></TD> <TD><CODE><B>FilteredActivityMapper.</B><B><A HREF="../../../../../../com/google/gwt/activity/shared/FilteredActivityMapper.html#getActivity(com.google.gwt.place.shared.Place)">getActivity</A></B>(<A HREF="../../../../../../com/google/gwt/place/shared/Place.html" title="class in com.google.gwt.place.shared">Place</A>&nbsp;place)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/gwt/activity/shared/Activity.html" title="interface in com.google.gwt.activity.shared"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> GWT 2.6.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/google/gwt/activity/shared//class-useActivity.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Activity.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
JakaCikac/dScrum
web/WEB-INF/classes/gwt-2.6.0/doc/javadoc/com/google/gwt/activity/shared/class-use/Activity.html
HTML
gpl-2.0
10,654
/* * Copyright (c) 2013, OpenCloudDB/MyCAT and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software;Designed and Developed mainly by many Chinese * opensource volunteers. you can redistribute it and/or modify it under the * terms of the GNU General Public License version 2 only, as published by the * Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Any questions about this component can be directed to it's project Web address * https://code.google.com/p/opencloudb/. * */ package io.mycat.backend.mysql.nio.handler; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.List; import java.util.Set; import java.util.concurrent.atomic.AtomicBoolean; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.base.Strings; import io.mycat.MycatServer; import io.mycat.backend.BackendConnection; import io.mycat.backend.datasource.PhysicalDBNode; import io.mycat.backend.mysql.LoadDataUtil; import io.mycat.config.ErrorCode; import io.mycat.config.MycatConfig; import io.mycat.config.model.SchemaConfig; import io.mycat.net.mysql.BinaryRowDataPacket; import io.mycat.net.mysql.ErrorPacket; import io.mycat.net.mysql.FieldPacket; import io.mycat.net.mysql.OkPacket; import io.mycat.net.mysql.RowDataPacket; import io.mycat.route.RouteResultset; import io.mycat.route.RouteResultsetNode; import io.mycat.server.NonBlockingSession; import io.mycat.server.ServerConnection; import io.mycat.server.parser.ServerParse; import io.mycat.server.parser.ServerParseShow; import io.mycat.server.response.ShowFullTables; import io.mycat.server.response.ShowTables; import io.mycat.statistic.stat.QueryResult; import io.mycat.statistic.stat.QueryResultDispatcher; import io.mycat.util.ResultSetUtil; import io.mycat.util.StringUtil; /** * @author mycat */ public class SingleNodeHandler implements ResponseHandler, Terminatable, LoadDataResponseHandler { private static final Logger LOGGER = LoggerFactory.getLogger(SingleNodeHandler.class); private final RouteResultsetNode node; private final RouteResultset rrs; private final NonBlockingSession session; // only one thread access at one time no need lock private volatile byte packetId; private volatile ByteBuffer buffer; private volatile boolean isRunning; private Runnable terminateCallBack; private long startTime; private long netInBytes; private long netOutBytes; private long selectRows; private long affectedRows; protected final AtomicBoolean errorRepsponsed = new AtomicBoolean(false); private boolean prepared; private int fieldCount; private List<FieldPacket> fieldPackets = new ArrayList<FieldPacket>(); private volatile boolean isDefaultNodeShowTable; private volatile boolean isDefaultNodeShowFullTable; private Set<String> shardingTablesSet; private byte[] header = null; private List<byte[]> fields = null; public SingleNodeHandler(RouteResultset rrs, NonBlockingSession session) { this.rrs = rrs; this.node = rrs.getNodes()[0]; if (node == null) { throw new IllegalArgumentException("routeNode is null!"); } if (session == null) { throw new IllegalArgumentException("session is null!"); } this.session = session; ServerConnection source = session.getSource(); String schema = source.getSchema(); if (schema != null && ServerParse.SHOW == rrs.getSqlType()) { SchemaConfig schemaConfig = MycatServer.getInstance().getConfig().getSchemas().get(schema); int type = ServerParseShow.tableCheck(rrs.getStatement(), 0); isDefaultNodeShowTable = (ServerParseShow.TABLES == type && !Strings.isNullOrEmpty(schemaConfig.getDataNode())); isDefaultNodeShowFullTable = (ServerParseShow.FULLTABLES == type && !Strings.isNullOrEmpty(schemaConfig.getDataNode())); if (isDefaultNodeShowTable) { shardingTablesSet = ShowTables.getTableSet(source, rrs.getStatement()); } else if (isDefaultNodeShowFullTable) { shardingTablesSet = ShowFullTables.getTableSet(source, rrs.getStatement()); } } if ( rrs != null && rrs.getStatement() != null) { netInBytes += rrs.getStatement().getBytes().length; } } @Override public void terminate(Runnable callback) { boolean zeroReached = false; if (isRunning) { terminateCallBack = callback; } else { zeroReached = true; } if (zeroReached) { callback.run(); } } private void endRunning() { Runnable callback = null; if (isRunning) { isRunning = false; callback = terminateCallBack; terminateCallBack = null; } if (callback != null) { callback.run(); } } private void recycleResources() { ByteBuffer buf = buffer; if (buf != null) { session.getSource().recycle(buffer); buffer = null; } } public void execute() throws Exception { startTime=System.currentTimeMillis(); ServerConnection sc = session.getSource(); this.isRunning = true; this.packetId = 0; final BackendConnection conn = session.getTarget(node); LOGGER.debug("rrs.getRunOnSlave() " + rrs.getRunOnSlaveDebugInfo()); node.setRunOnSlave(rrs.getRunOnSlave()); // ๅฎž็Žฐ master/slaveๆณจ่งฃ LOGGER.debug("node.getRunOnSlave() " + node.getRunOnSlaveDebugInfo()); try { if (session.tryExistsCon(conn, node)) { _execute(conn); } else { // create new connection MycatConfig conf = MycatServer.getInstance().getConfig(); LOGGER.debug("node.getRunOnSlave() " + node.getRunOnSlave()); node.setRunOnSlave(rrs.getRunOnSlave()); // ๅฎž็Žฐ master/slaveๆณจ่งฃ LOGGER.debug("node.getRunOnSlave() " + node.getRunOnSlave()); PhysicalDBNode dn = conf.getDataNodes().get(node.getName()); dn.getConnection(dn.getDatabase(), sc.isAutocommit(), node, this, node); } }catch (Exception e) { ServerConnection source = session.getSource(); LOGGER.warn(new StringBuilder().append(source).append(rrs).toString(), e); //่ฎพ็ฝฎ้”™่ฏฏ connectionError(e, null); } } @Override public void connectionAcquired(final BackendConnection conn) { session.bindConnection(node, conn); _execute(conn); } private void _execute(BackendConnection conn) { if (session.closed()) { endRunning(); session.clearResources(true); return; } conn.setResponseHandler(this); try { conn.execute(node, session.getSource(), session.getSource() .isAutocommit()); } catch (Exception e1) { executeException(conn, e1); return; } } private void executeException(BackendConnection c, Exception e) { ErrorPacket err = new ErrorPacket(); err.packetId = ++packetId; err.errno = ErrorCode.ERR_FOUND_EXCEPION; err.message = StringUtil.encode(e.toString(), session.getSource().getCharset()); this.backConnectionErr(err, c); } @Override public void connectionError(Throwable e, BackendConnection conn) { endRunning(); // ErrorPacket err = new ErrorPacket(); // err.packetId = ++packetId; // err.errno = ErrorCode.ER_NEW_ABORTING_CONNECTION; // err.message = StringUtil.encode(e.getMessage(), session.getSource().getCharset()); ServerConnection source = session.getSource(); // source.write(err.write(allocBuffer(), source, true)); //modify by zwy 2018.07 if(errorRepsponsed.compareAndSet(false, true)) { // source.setTxInterrupt(e.getMessage()); source.writeErrMessage(ErrorCode.ER_NEW_ABORTING_CONNECTION, e.getMessage()); } } @Override public void errorResponse(byte[] data, BackendConnection conn) { ErrorPacket err = new ErrorPacket(); err.read(data); err.packetId = ++packetId; backConnectionErr(err, conn); } private void backConnectionErr(ErrorPacket errPkg, BackendConnection conn) { endRunning(); ServerConnection source = session.getSource(); String errUser = source.getUser(); String errHost = source.getHost(); int errPort = source.getLocalPort(); String errmgs = " errno:" + errPkg.errno + " " + new String(errPkg.message); LOGGER.warn("execute sql err :" + errmgs + " con:" + conn + " frontend host:" + errHost + "/" + errPort + "/" + errUser); session.releaseConnectionIfSafe(conn, LOGGER.isDebugEnabled(), false); source.setTxInterrupt(errmgs); /** * TODO: ไฟฎๅคๅ…จ็‰ˆๆœฌBUG * * BUGๅค็Žฐ๏ผš * 1ใ€MysqlClient: SELECT 9223372036854775807 + 1; * 2ใ€MyCatServer: ERROR 1690 (22003): BIGINT value is out of range in '(9223372036854775807 + 1)' * 3ใ€MysqlClient: ERROR 2013 (HY000): Lost connection to MySQL server during query * * FixedๅŽ * 1ใ€MysqlClient: SELECT 9223372036854775807 + 1; * 2ใ€MyCatServer: ERROR 1690 (22003): BIGINT value is out of range in '(9223372036854775807 + 1)' * 3ใ€MysqlClient: ERROR 1690 (22003): BIGINT value is out of range in '(9223372036854775807 + 1)' * */ // ็”ฑไบŽ pakcetId != 1 ้€ ๆˆ็š„้—ฎ้ข˜ //todo ็ปŸไธ€่ฐƒ็”จwriteErr errPkg.packetId = 1; //errPkg.write(source); //modify by zwy if (errorRepsponsed.compareAndSet(false, true)) { source.writeErrMessage(errPkg.errno, new String(errPkg.message)); } recycleResources(); } /** * insert/update/delete * * okResponse()๏ผš่ฏปๅ–dataๅญ—่Š‚ๆ•ฐ็ป„๏ผŒ็ป„ๆˆไธ€ไธชOKPacket๏ผŒๅนถ่ฐƒ็”จok.write(source)ๅฐ†็ป“ๆžœๅ†™ๅ…ฅๅ‰็ซฏ่ฟžๆŽฅFrontendConnection็š„ๅ†™็ผ“ๅ†ฒ้˜Ÿๅˆ—writeQueueไธญ๏ผŒ * ็œŸๆญฃๅ‘้€็ป™ๅบ”็”จๆ˜ฏ็”ฑๅฏนๅบ”็š„NIOSocketWRไปŽๅ†™้˜Ÿๅˆ—ไธญ่ฏปๅ–ByteBufferๅนถ่ฟ”ๅ›ž็š„ */ @Override public void okResponse(byte[] data, BackendConnection conn) { // this.netOutBytes += data.length; boolean executeResponse = conn.syncAndExcute(); if (executeResponse) { ServerConnection source = session.getSource(); OkPacket ok = new OkPacket(); ok.read(data); boolean isCanClose2Client =(!rrs.isCallStatement()) ||(rrs.isCallStatement() &&!rrs.getProcedure().isResultSimpleValue()); if (rrs.isLoadData()) { byte lastPackId = source.getLoadDataInfileHandler().getLastPackId(); ok.packetId = ++lastPackId;// OK_PACKET source.getLoadDataInfileHandler().clear(); } else if (isCanClose2Client) { ok.packetId = ++packetId;// OK_PACKET } if (isCanClose2Client) { session.releaseConnectionIfSafe(conn, LOGGER.isDebugEnabled(), false); endRunning(); } ok.serverStatus = source.isAutocommit() ? 2 : 1; recycleResources(); if (isCanClose2Client) { source.setLastInsertId(ok.insertId); //modify by zwy 2018.07 if(!errorRepsponsed.get() && !session.closed() && source.canResponse()) { ok.write(source); } } this.affectedRows = ok.affectedRows; source.setExecuteSql(null); // add by lian // ่งฃๅ†ณsql็ปŸ่ฎกไธญๅ†™ๆ“ไฝœๆฐธ่ฟœไธบ0 QueryResult queryResult = new QueryResult(session.getSource().getUser(), rrs.getSqlType(), rrs.getStatement(), affectedRows, netInBytes, netOutBytes, startTime, System.currentTimeMillis(),0); QueryResultDispatcher.dispatchQuery( queryResult ); } } /** * select * * ่กŒ็ป“ๆŸๆ ‡ๅฟ—่ฟ”ๅ›žๆ—ถ่งฆๅ‘๏ผŒๅฐ†EOFๆ ‡ๅฟ—ๅ†™ๅ…ฅ็ผ“ๅ†ฒๅŒบ๏ผŒๆœ€ๅŽ่ฐƒ็”จsource.write(buffer)ๅฐ†็ผ“ๅ†ฒๅŒบๆ”พๅ…ฅๅ‰็ซฏ่ฟžๆŽฅ็š„ๅ†™็ผ“ๅ†ฒ้˜Ÿๅˆ—ไธญ๏ผŒ็ญ‰ๅพ…NIOSocketWRๅฐ†ๅ…ถๅ‘้€็ป™ๅบ”็”จ */ @Override public void rowEofResponse(byte[] eof, BackendConnection conn) { this.netOutBytes += eof.length; ServerConnection source = session.getSource(); conn.recordSql(source.getHost(), source.getSchema(), node.getStatement()); // ๅˆคๆ–ญๆ˜ฏ่ฐƒ็”จๅญ˜ๅ‚จ่ฟ‡็จ‹็š„่ฏไธ่ƒฝๅœจ่ฟ™้‡Œ้‡Šๆ”พ้“พๆŽฅ if (!rrs.isCallStatement()||(rrs.isCallStatement()&&rrs.getProcedure().isResultSimpleValue())) { session.releaseConnectionIfSafe(conn, LOGGER.isDebugEnabled(), false); endRunning(); } eof[3] = ++packetId; buffer = source.writeToBuffer(eof, allocBuffer()); int resultSize = source.getWriteQueue().size()*MycatServer.getInstance().getConfig().getSystem().getBufferPoolPageSize(); resultSize=resultSize+buffer.position(); MiddlerResultHandler middlerResultHandler = session.getMiddlerResultHandler(); if(middlerResultHandler !=null ){ middlerResultHandler.secondEexcute(); } else{ //modify by zwy 2018.07 if(!errorRepsponsed.get()&& !session.closed()&& source.canResponse()) { source.write(buffer); } } source.setExecuteSql(null); //TODO: add by zhuam //ๆŸฅ่ฏข็ป“ๆžœๆดพๅ‘ QueryResult queryResult = new QueryResult(session.getSource().getUser(), rrs.getSqlType(), rrs.getStatement(), affectedRows, netInBytes, netOutBytes, startTime, System.currentTimeMillis(),resultSize); QueryResultDispatcher.dispatchQuery( queryResult ); } /** * lazy create ByteBuffer only when needed * * @return */ private ByteBuffer allocBuffer() { if (buffer == null) { buffer = session.getSource().allocate(); } return buffer; } /** * select * * ๅ…ƒๆ•ฐๆฎ่ฟ”ๅ›žๆ—ถ่งฆๅ‘๏ผŒๅฐ†headerๅ’Œๅ…ƒๆ•ฐๆฎๅ†…ๅฎนไพๆฌกๅ†™ๅ…ฅ็ผ“ๅ†ฒๅŒบไธญ */ @Override public void fieldEofResponse(byte[] header, List<byte[]> fields, byte[] eof, BackendConnection conn) { this.header = header; this.fields = fields; MiddlerResultHandler middlerResultHandler = session.getMiddlerResultHandler(); if(null !=middlerResultHandler ){ return; } this.netOutBytes += header.length; for (int i = 0, len = fields.size(); i < len; ++i) { byte[] field = fields.get(i); this.netOutBytes += field.length; } header[3] = ++packetId; ServerConnection source = session.getSource(); buffer = source.writeToBuffer(header, allocBuffer()); for (int i = 0, len = fields.size(); i < len; ++i) { byte[] field = fields.get(i); field[3] = ++packetId; // ไฟๅญ˜fieldไฟกๆฏ FieldPacket fieldPk = new FieldPacket(); fieldPk.read(field); fieldPackets.add(fieldPk); buffer = source.writeToBuffer(field, buffer); } fieldCount = fieldPackets.size(); eof[3] = ++packetId; buffer = source.writeToBuffer(eof, buffer); if (isDefaultNodeShowTable) { for (String name : shardingTablesSet) { RowDataPacket row = new RowDataPacket(1); row.add(StringUtil.encode(name.toLowerCase(), source.getCharset())); row.packetId = ++packetId; buffer = row.write(buffer, source, true); } } else if (isDefaultNodeShowFullTable) { for (String name : shardingTablesSet) { RowDataPacket row = new RowDataPacket(1); row.add(StringUtil.encode(name.toLowerCase(), source.getCharset())); row.add(StringUtil.encode("BASE TABLE", source.getCharset())); row.packetId = ++packetId; buffer = row.write(buffer, source, true); } } } /** * select * * ่กŒๆ•ฐๆฎ่ฟ”ๅ›žๆ—ถ่งฆๅ‘๏ผŒๅฐ†่กŒๆ•ฐๆฎๅ†™ๅ…ฅ็ผ“ๅ†ฒๅŒบไธญ */ @Override public void rowResponse(byte[] row, BackendConnection conn) { //ๅทฒ็ปๆœ‰้”™่ฏฏไบ†็›ดๆŽฅไธๅค„็†่ฟ”ๅ›ž modify by zwy2018.07 if(errorRepsponsed.get()) { return; } this.netOutBytes += row.length; this.selectRows++; if (isDefaultNodeShowTable || isDefaultNodeShowFullTable) { RowDataPacket rowDataPacket = new RowDataPacket(1); rowDataPacket.read(row); String table = StringUtil.decode(rowDataPacket.fieldValues.get(0), session.getSource().getCharset()); if (shardingTablesSet.contains(table.toUpperCase())) { return; } } row[3] = ++packetId; if ( prepared ) { RowDataPacket rowDataPk = new RowDataPacket(fieldCount); rowDataPk.read(row); BinaryRowDataPacket binRowDataPk = new BinaryRowDataPacket(); binRowDataPk.read(fieldPackets, rowDataPk); binRowDataPk.packetId = rowDataPk.packetId; // binRowDataPk.write(session.getSource()); /* * [fix bug] : ่ฟ™้‡Œไธ่ƒฝ็›ดๆŽฅๅฐ†ๅŒ…ๅ†™ๅˆฐๅ‰็ซฏ่ฟžๆŽฅ, * ๅ› ไธบๅœจfieldEofResponse()ๆ–นๆณ•็ป“ๆŸๅŽbuffer่ฟ˜ๆฒกๅ†™ๅ‡บ, * ๆ‰€ไปฅ่ฟ™้‡Œๅบ”่ฏฅๅฐ†ๅŒ…ๆ•ฐๆฎ้กบๅบๅ†™ๅ…ฅbuffer(ๅฆ‚ๆžœbufferๆปกไบ†ๅฐฑๅ†™ๅ‡บ),็„ถๅŽๅ†ๅฐ†bufferๅ†™ๅ‡บ */ buffer = binRowDataPk.write(buffer, session.getSource(), true); } else { MiddlerResultHandler middlerResultHandler = session.getMiddlerResultHandler(); if(null ==middlerResultHandler ){ buffer = session.getSource().writeToBuffer(row, allocBuffer()); }else{ if(middlerResultHandler instanceof MiddlerQueryResultHandler){ byte[] rv = ResultSetUtil.getColumnVal(row, fields, 0); String rowValue = rv==null?"":new String(rv); middlerResultHandler.add(rowValue); } } } } @Override public void writeQueueAvailable() { } @Override public void connectionClose(BackendConnection conn, String reason) { ErrorPacket err = new ErrorPacket(); err.packetId = ++packetId; err.errno = ErrorCode.ER_ERROR_ON_CLOSE; err.message = StringUtil.encode(reason, session.getSource() .getCharset()); this.backConnectionErr(err, conn); } public void clearResources() { } @Override public void requestDataResponse(byte[] data, BackendConnection conn) { LoadDataUtil.requestFileDataResponse(data, conn); } public boolean isPrepared() { return prepared; } public void setPrepared(boolean prepared) { this.prepared = prepared; } @Override public String toString() { return "SingleNodeHandler [node=" + node + ", packetId=" + packetId + "]"; } }
lian88jian/Mycat-Server
src/main/java/io/mycat/backend/mysql/nio/handler/SingleNodeHandler.java
Java
gpl-2.0
17,722
/******************************************************************************* Copyright (C) Marvell International Ltd. and its affiliates ******************************************************************************** Marvell GPL License Option If you received this File from Marvell, you may opt to use, redistribute and/or modify this File in accordance with the terms and conditions of the General Public License Version 2, June 1991 (the "GPL License"), a copy of which is available along with the File in the license.txt file or by writing to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 or on the worldwide web at http://www.gnu.org/licenses/gpl.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The GPL License provides additional details about this warranty disclaimer. *******************************************************************************/ #include <common.h> #if defined(CONFIG_CMD_SAR) #include "cpu/mvCpu.h" #include "ctrlEnv/mvCtrlEnvRegs.h" #include "ctrlEnv/mvCtrlEnvLib.h" #include "boardEnv/mvBoardEnvLib.h" extern MV_BOARD_INFO *marvellAC3BoardInfoTbl[]; /* bc2 sample and reset register # 4f # 4e # 4d # 4c # # # # # # #--|--|--|--|--#--|--|--|--|--#--|--|--|--|--#--|--|--|--|--# # | | | | # | | | | # | | | | # | | | | # #--|--|--|--|--#--|--|--|--|--#--|--|--|--|--#--|--|--|--|--# # | # | | # | # # #-P|-R|bootsel-#-R|-TM-f---|-CPU-f--|-CORE-f-#-----devid----# */ enum { /* Update defaultValue[] if any change to this enum has made!*/ CMD_CORE_CLK_FREQ = 0, CMD_CPU_DDR_REQ, #ifdef CONFIG_BOBCAT2 CMD_TM_FREQ, #elif defined(CONFIG_ALLEYCAT3) CMD_PCIE_CLOCK, CMD_PLL_CLOCK, CMD_DEVICE_NUM, CMD_BOARD_ID, CMD_DDR_ECC_EN, #endif CMD_PCIE_MODE, CMD_BOOTSRC, CMD_DEVICE_ID, CMD_DUMP, CMD_DEFAULT, CMD_UNKNOWN }; #ifdef CONFIG_BOBCAT2 int defaultValue[] = { 0, /* Core clock */ 3, /* CPU/DDR clock */ 3, /* TM frequency */ 1, /* PCIe mode */ 3, /* Boot source */ 0 }; /* Device ID */ MV_U32 coreClockTbl[] = MV_CORE_CLK_TBL_BC2; MV_CPUDDR_MODE cpuDdrClkTbl[] = MV_CPU_DDR_CLK_TBL_BC2; #elif defined(CONFIG_ALLEYCAT3) int defaultValue[] = { 4, /* Core clock */ 3, /* CPU/DDR clock */ 0, /* PCIe clock */ 1, /* PLL clock */ 0, /* Device number */ 0, /* Board ID */ 0, /* DDR ECC enable */ 0, /* PCIe mode */ 3, /* Boot source */ 0 }; /* Device ID */ MV_U32 coreClockTbl[] = MV_CORE_CLK_TBL_AC3; MV_CPUDDR_MODE cpuDdrClkTbl[] = MV_CPU_DDR_CLK_TBL_AC3; #else #error "Unknown MSYS family!" #endif MV_TM_MODE tmClkTbl[] = MV_TM_CLK_TBL; typedef struct { char bootstr[80]; MV_STATUS internalFreq; } MV_BOOT_SRC; MV_BOOT_SRC bootSrcTbl[] = { { "BootROM enabled, Boot from Device (NOR) flash", MV_FALSE }, { "BootROM enabled, Boot from NAND flash (on DEV_CSn[0])", MV_FALSE }, { "BootROM enabled, Boot from UART", MV_FALSE }, { "BootROM enabled, Boot from SPI0 (CS0)", MV_FALSE }, { "Reserved. BootROM enabled, Boot from PCIe", MV_TRUE }, { "BootROM enabled,Standby slave. Must set PCI-E as endpoint", MV_FALSE }, { "BootROM enabled, UART debug prompt mode", MV_FALSE }, { "Reserved BootROM disabled, Boot from SPI 0(CS0)", MV_TRUE } }; void SatR_usage(void); static int sar_cmd_get(const char *cmd) { if (strcmp(cmd, "coreclock") == 0) return CMD_CORE_CLK_FREQ; if (strcmp(cmd, "freq") == 0) return CMD_CPU_DDR_REQ; #ifdef CONFIG_BOBCAT2 if (strcmp(cmd, "tmfreq") == 0) return CMD_TM_FREQ; #elif defined CONFIG_ALLEYCAT3 if (strcmp(cmd, "pciclock") == 0) return CMD_PCIE_CLOCK; if (strcmp(cmd, "pllclock") == 0) return CMD_PLL_CLOCK; if (strcmp(cmd, "devicenum") == 0) return CMD_DEVICE_NUM; if (strcmp(cmd, "boardid") == 0) return CMD_BOARD_ID; if (strcmp(cmd, "ddreccenable") == 0) return CMD_DDR_ECC_EN; #endif if (strcmp(cmd, "pcimode") == 0) return CMD_PCIE_MODE; if (strcmp(cmd, "bootsrc") == 0) return CMD_BOOTSRC; if (strcmp(cmd, "deviceid") == 0) return CMD_DEVICE_ID; if (strcmp(cmd, "dump") == 0) return CMD_DUMP; if (strcmp(cmd, "default") == 0) return CMD_DEFAULT; return CMD_UNKNOWN; } static int do_sar_list(int mode) { int i; switch (mode) { case CMD_CORE_CLK_FREQ: printf("Determines the core clock frequency:\n"); printf("\t| ID | Core clock (MHz) |\n"); printf("\t--------------------------\n"); for (i = 0; i < 7; i++) printf("\t| %2d | %4d |\n", i, coreClockTbl[i]); printf("\t--------------------------\n"); break; case CMD_CPU_DDR_REQ: printf("Determines the CPU and DDR frequency:\n"); printf("\t| ID | CPU Freq (MHz) | DDR Freq (MHz) |\n"); printf("\t-----------------------------------------\n"); for (i = 0; i < 7; i++) { if (cpuDdrClkTbl[i].internalFreq) continue; printf("\t| %2d | %4d | %4d |\n", i, cpuDdrClkTbl[i].cpuFreq, cpuDdrClkTbl[i].ddrFreq); } printf("\t-----------------------------------------\n"); break; #ifdef CONFIG_BOBCAT2 case CMD_TM_FREQ: printf("Determines the TM frequency:\n"); printf("\t| ID | TM Freq (MHz) | DDR Freq (MHz) |\n"); printf("\t----------------------------------------\n"); printf("\t| 0 | Disabled | |\n"); for (i = 1; i < 7; i++) { if (tmClkTbl[i].internalFreq) continue; printf("\t| %2d | %4d | %4d |\n", i, tmClkTbl[i].tmFreq, tmClkTbl[i].ddr3Freq); } printf("\t----------------------------------------\n"); break; #elif defined CONFIG_ALLEYCAT3 case CMD_DDR_ECC_EN: printf("Determines the DDR ECC status:\n"); printf("\t| ID | ECC status |\n"); printf("\t------------------------\n"); printf("\t| 0 | ECC Disabled |\n"); printf("\t| 1 | ECC Enabled |\n"); printf("\t------------------------\n"); break; case CMD_PCIE_CLOCK: printf("Determines the PCI-E clock source:\n"); printf("\t| ID | Clock source |\n"); printf("\t-------------------------------------------\n"); printf("\t| 0 | Internally generated by PLL |\n"); printf("\t| 1 | External 100 MHz from PEX_CLK_P |\n"); printf("\t-------------------------------------------\n"); break; case CMD_PLL_CLOCK: printf("Determines the PLL VCO clock frequency:\n"); printf("\t| ID | Clock freq (GHz) |\n"); printf("\t--------------------------\n"); printf("\t| 0 | 1 |\n"); printf("\t| 1 | 2.5 |\n"); printf("\t--------------------------\n"); break; case CMD_BOARD_ID: printf("Determines the board ID (0-7)\n"); printf("\t| ID | Board |\n"); printf("\t----------------------------------\n"); for (i = 0; i < AC3_MARVELL_BOARD_NUM ; i++) printf("\t| %d | %-22s |\n", i, marvellAC3BoardInfoTbl[i]->boardName ); printf("\t----------------------------------\n"); break; case CMD_DEVICE_NUM: printf("Determines the device number (0-3)\n"); break; #endif case CMD_PCIE_MODE: printf("Determines the PCI-E mode:\n"); printf("\t| ID | Mode |\n"); printf("\t------------------------\n"); printf("\t| 0 | Endpoint |\n"); printf("\t| 1 | Root Complex |\n"); printf("\t------------------------\n"); break; case CMD_BOOTSRC: printf("Determines the Boot source device:\n"); printf("\t| ID | Boot Source description |\n"); printf("\t-----------------------------------------------------------------\n"); for (i = 0; i < 7; i++) { if (bootSrcTbl[i].internalFreq) continue; printf("\t| %2d | %s\n", i, bootSrcTbl[i].bootstr); } printf("\t-----------------------------------------------------------------\n"); break; case CMD_DEVICE_ID: printf("Determines the device ID (0-31)\n"); break; case CMD_UNKNOWN: default: printf("Usage: sar list [options] (see help) \n"); return 1; } return 0; } static int do_sar_read(int mode) { MV_U8 tmp, i; switch (mode) { case CMD_CORE_CLK_FREQ: if (mvBoardCoreFreqGet(&tmp) == MV_OK) printf("coreclock\t\t= %d ==> Core @ %dMHz\n", tmp, coreClockTbl[tmp]); else printf("coreclock Error: failed reading Core Clock Frequency (PLL_0)\n"); break; case CMD_CPU_DDR_REQ: if (mvBoardCpuFreqGet(&tmp) == MV_OK) printf("freq\t\t\t= %d ==> CPU @ %dMHz DDR @ %dMHz \n", tmp, cpuDdrClkTbl[tmp].cpuFreq, cpuDdrClkTbl[tmp].ddrFreq); else printf("freq Error: failed reading CPU/DDR Clocks Frequency (PLL_1)\n"); break; #ifdef CONFIG_BOBCAT2 case CMD_TM_FREQ: if (mvBoardTmFreqGet(&tmp) == MV_OK) printf("tmfreq\t\t\t= %d ==> TM @ %dMHz DDR3 @ %dMHz \n", tmp, tmClkTbl[tmp].tmFreq, tmClkTbl[tmp].ddr3Freq); else printf("tmfreq Error: failed reading TM Clock Frequency (PLL_2)\n"); break; #elif defined CONFIG_ALLEYCAT3 case CMD_DDR_ECC_EN: if (mvBoardDdrEccEnableGet(&tmp) == MV_OK) printf("ddreccenable \t\t= %d ==> %s\n", tmp, ((tmp == 0) ? "ECC Disabled" : "ECC Enabled")); else printf("ddreccenable Error: failed reading DDR Bus Width\n"); break; case CMD_PCIE_CLOCK: if (mvBoardPcieClockGet(&tmp) == MV_OK) printf("pciclock \t\t= %d ==> %s\n", tmp, ((tmp == 0) ? "Internally generated by PLL" : "External 100MHz from PEX_CLK_P")); else printf("pciclock Error: failed reading PCI-E clock\n"); break; case CMD_PLL_CLOCK: if (mvBoardPllClockGet(&tmp) == MV_OK) printf("pllclock (PLL2 VCO)\t\t= %d ==> %s\n", tmp, ((tmp == 0) ? "1GHz" : "2.5GHz")); else printf("pllclock (PLL2 VCO) Error: failed reading PLL VCO clock\n"); break; case CMD_DEVICE_NUM: if (mvBoardDeviceNumGet(&tmp) == MV_OK) printf("devicenum\t\t= %d \n", tmp); else printf("devicenum Error: failed reading devicenum\n"); break; case CMD_BOARD_ID: if (mvBoardSarBoardIdGet(&tmp) == MV_OK) printf("boardid\t\t\t= %d ==> %s\n", tmp, marvellAC3BoardInfoTbl[tmp]->boardName); else printf("boardid Error: failed reading boardid\n"); break; #endif case CMD_PCIE_MODE: if (mvBoardPcieModeGet(&tmp) == MV_OK) printf("pcimode \t\t= %d ==> %s\n", tmp, ((tmp == 0) ? "Endpoint" : "Root Complex")); else printf("pcimode Error: failed reading PCI-E mode\n"); break; case CMD_BOOTSRC: if (mvBoardBootDevGet(&tmp) == MV_OK) printf("bootsrc\t\t\t= %d ==> %s\n", tmp, bootSrcTbl[tmp].bootstr); else printf("bootsrc Error: failed reading Boot Source\n"); break; case CMD_DEVICE_ID: if (mvBoardDeviceIdGet(&tmp) == MV_OK) printf("deviceid\t\t= %d \n", tmp); else printf("deviceid Error: failed reading deviceid\n"); break; case CMD_DUMP: case CMD_UNKNOWN: for (i = 0 ; i < CMD_DUMP; i++) do_sar_read(i); break; case CMD_DEFAULT: return 0; default: printf("Usage: sar list [options] (see help)\n"); return 1; } return 0; } static int do_sar_write(int mode, int value) { MV_U8 tmp, i; MV_STATUS rc = MV_OK; tmp = (MV_U8)value; switch (mode) { case CMD_CORE_CLK_FREQ: rc = mvBoardCoreFreqSet(tmp); break; case CMD_CPU_DDR_REQ: rc = mvBoardCpuFreqSet(tmp); break; #ifdef CONFIG_BOBCAT2 case CMD_TM_FREQ: rc = mvBoardTmFreqSet(tmp); break; #elif defined CONFIG_ALLEYCAT3 case CMD_DDR_ECC_EN: rc = mvBoardDdrEccEnableSet(tmp); break; case CMD_PCIE_CLOCK: rc = mvBoardPcieClockSet(tmp); break; case CMD_PLL_CLOCK: rc = mvBoardPllClockSet(tmp); break; case CMD_BOARD_ID: rc = mvBoardSarBoardIdSet(tmp); break; case CMD_DEVICE_NUM: rc = mvBoardDeviceNumSet(tmp); break; #endif case CMD_PCIE_MODE: rc = mvBoardPcieModeSet(tmp); break; case CMD_BOOTSRC: rc = mvBoardBootDevSet(tmp); break; case CMD_DEVICE_ID: rc = mvBoardDeviceIdSet(tmp); break; case CMD_DEFAULT: for (i = 0 ; i < CMD_DUMP; i++) { #if defined CONFIG_ALLEYCAT3 if (i == CMD_BOARD_ID) { MV_U32 brdId = mvBoardIdGet(); if ((brdId < AC3_MARVELL_BOARD_ID_BASE) || (brdId >= AC3_MARVELL_MAX_BOARD_ID)) mvOsPrintf("Bad Board ID returned - %d! Assigning default value!\n", brdId); else defaultValue[i] = brdId - AC3_MARVELL_BOARD_ID_BASE; /* Update default value with real board ID*/ } #endif /* CONFIG_ALLEYCAT3 */ if (1 == do_sar_write(i, defaultValue[i])) rc = MV_FALSE; do_sar_read(i); } if (rc == MV_OK) mvOsPrintf("\nRestored all S@R default values\n"); break; case CMD_UNKNOWN: default: printf("Usage: sar list [options] (see help) \n"); return 1; } if (rc != MV_OK) { mvOsPrintf("Write S@R failed!\n"); return 1; } return 0; } int do_sar(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) { const char *cmd; int mode, value; /* need at least two arguments */ if (argc < 2) goto usage; cmd = argv[1]; mode = sar_cmd_get(argv[2]); #if defined CONFIG_ALLEYCAT3 if(mvBoardIdGet() != DB_AC3_ID && mode != CMD_BOARD_ID) { mvOsPrintf("Error: Sample at reset supports modifying only 'boardid' field for current board\n\n"); goto usage; } #endif if (strcmp(cmd, "list") == 0) return do_sar_list(mode); else if (strcmp(cmd, "write") == 0) { value = simple_strtoul(argv[3], NULL, 10); if (do_sar_write(mode, value) == 0) do_sar_read(mode); return 0; } else if (strcmp(cmd, "read") == 0) return do_sar_read(mode); usage: cmd_usage(cmdtp); return 1; } U_BOOT_CMD(SatR, 6, 1, do_sar, "Sample At Reset sub-system", "list <field> - list configuration options for <field>\n\n" "SatR read dump - print all SatR configuration values\n" "SatR read <field> - print the requested <field> value\n\n" "SatR write default - restore all SatR fields to their default values\n" "SatR write <field> <val> - write the requested <field> <value>\n\n" "\tHW SatR fields\n" "\t--------------\n" "coreclock - Core frequency\n" "freq - CPU DDR frequency\n" #ifdef CONFIG_BOBCAT2 "tmfreq - TM frequency\n" #elif defined CONFIG_ALLEYCAT3 "pcimode - PCIe mode (EP/RC)\n" "pciclock - PCIe reference clock source\n" "pllclock - PLL2 VCO clock frequency\n" "devicenum - Devicenum\n" #endif "bootsrc - Boot source\n" "deviceid - Device ID\n" #ifdef CONFIG_ALLEYCAT3 "\n\tSW SatR fields\n" "\t--------------\n" "ddreccenable - DDR ECC modes\n" "boardid - Board ID\n" #endif ); #endif /*defined(CONFIG_CMD_SAR)*/
Kinoma/acorn_uboot
board/mv_ebu/msys/cmd_sar.c
C
gpl-2.0
14,787
<html lang="en"> <head> <title>s390 Register - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="s390-Syntax.html#s390-Syntax" title="s390 Syntax"> <link rel="next" href="s390-Mnemonics.html#s390-Mnemonics" title="s390 Mnemonics"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> <link rel="stylesheet" type="text/css" href="../cs.css"> </head> <body> <div class="node"> <a name="s390-Register"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="s390-Mnemonics.html#s390-Mnemonics">s390 Mnemonics</a>, Up:&nbsp;<a rel="up" accesskey="u" href="s390-Syntax.html#s390-Syntax">s390 Syntax</a> <hr> </div> <h5 class="subsubsection">9.31.3.1 Register naming</h5> <p><a name="index-register-naming_002c-s390-1533"></a><a name="index-s390-register-naming-1534"></a> The <code>as</code> recognizes a number of predefined symbols for the various processor registers. A register specification in one of the instruction formats is an unsigned integer between 0 and 15. The specific instruction and the position of the register in the instruction format denotes the type of the register. The register symbols are prefixed with &lsquo;<samp><span class="samp">%</span></samp>&rsquo;: <pre class="display"> <p><table summary=""><tr align="left"><td valign="top">%rN </td><td valign="top">the 16 general purpose registers, 0 &lt;= N &lt;= 15 <br></td></tr><tr align="left"><td valign="top">%fN </td><td valign="top">the 16 floating point registers, 0 &lt;= N &lt;= 15 <br></td></tr><tr align="left"><td valign="top">%aN </td><td valign="top">the 16 access registers, 0 &lt;= N &lt;= 15 <br></td></tr><tr align="left"><td valign="top">%cN </td><td valign="top">the 16 control registers, 0 &lt;= N &lt;= 15 <br></td></tr><tr align="left"><td valign="top">%lit </td><td valign="top">an alias for the general purpose register %r13 <br></td></tr><tr align="left"><td valign="top">%sp </td><td valign="top">an alias for the general purpose register %r15 <br></td></tr></table> </pre> </body></html>
GeeteshKhatavkar/gh0st_kernel_samsung_royxx
arm-2010.09/share/doc/arm-arm-none-eabi/html/as.html/s390-Register.html
HTML
gpl-2.0
3,384
import greenfoot.*; /** * Esta parte es la referiada hacia la bala del enemigo, en donde se elimina del mundo para que haya una mejor interaccion * * @author (your name) * @version (a version number or a date) */ public class balamala extends Actor { /** * Act - do whatever the balamala wants to do. This method is called whenever * the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { // Add your action code here. move(-4); if (this.atWorldEdge()==true) { World world; world = getWorld(); world.removeObject(this); return; } } /** * Parte donde se crea la bandera, de cuando se encuentra en el borde del mundo */ public boolean atWorldEdge() { { if (getX() == 0) { return true; } else { return false; } } // Agrega tus cรณdigos de acciรณn aquรญ. } }
ppoo14152/Battle-Space
balamala.java
Java
gpl-2.0
1,034
<?php /** * Created by PhpStorm. * User: tuanna64 * Date: 9/5/16 * Time: 2:43 PM */ /** * @ Thiแบฟt lแบญp cรกc hแบฑng dแปฏ liแป‡u quan trแปng * @ THEME_URL = get_stylesheet_directory() - ฤ‘ฦฐแปng dแบซn tแป›i thฦฐ mแปฅc theme * @ CORE = thฦฐ mแปฅc /core cแปงa theme, chแปฉa cรกc file nguแป“n quan trแปng. **/ define('THEME_URL', get_stylesheet_directory()); define('CORE', THEME_URL . '/core'); require_once( CORE . '/init.php' ); // load file fptonline/core/init.php /** * @ Thiแบฟt lแบญp $content_width ฤ‘แปƒ khai bรกo kรญch thฦฐแป›c chiแปu rแป™ng cแปงa nแป™i dung **/ if (!isset($content_width)) { /* * Nแบฟu biแบฟn $content_width chฦฐa cรณ dแปฏ liแป‡u thรฌ gรกn giรก trแป‹ cho nรณ */ $content_width = 620; } /** * @ Thiแบฟt lแบญp cรกc chแปฉc nฤƒng sแบฝ ฤ‘ฦฐแปฃc theme hแป— trแปฃ **/ if (!function_exists('fptonline_theme_setup')) { /* * Nแบฟu chฦฐa cรณ hร m fptonline_theme_setup() thรฌ sแบฝ tแบกo mแป›i hร m ฤ‘รณ */ function fptonline_theme_setup() { /* * Thiแบฟt lแบญp theme cรณ thแปƒ dแป‹ch ฤ‘ฦฐแปฃc */ $language_folder = THEME_URL . '/languages'; load_theme_textdomain('fptonline', $language_folder); // fptonline la textdomain support translate /* * Tแปฑ chรจn RSS Feed links trong <head> */ add_theme_support('automatic-feed-links'); /* * Thรชm chแปฉc nฤƒng post thumbnail */ add_theme_support( 'post-thumbnails' ); /* * Thรชm chแปฉc nฤƒng title-tag ฤ‘แปƒ tแปฑ thรชm <title> * Hiแปƒn thแป‹ kiแปƒu Tรชn website | Mรด tแบฃ website แปŸ trang chแปง * Hiแปƒn thแป‹ kiแปƒu Tรชn post/page | Tรชn website แปŸ trang nแป™i dung post type */ add_theme_support( 'title-tag' ); /* * Thรชm chแปฉc nฤƒng post format */ add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'quote', 'link' ) ); /* * Thรชm chแปฉc nฤƒng custom background */ $default_background = array( 'default-color' => '#e8e8e8', ); add_theme_support( 'custom-background', $default_background ); /* * Tแบกo menu cho theme */ register_nav_menu ( 'primary-menu', __('Primary Menu', 'fptonline') ); // ho tro co the dich duoc // de dich can cau truc __('Text', 'textdomain') /* * Tแบกo sidebar cho theme */ $sidebar = array( 'name' => __('Main Sidebar', 'fptonline'), 'id' => 'main-sidebar', 'description' => 'Main sidebar for fptonline theme', 'class' => 'main-sidebar', 'before_title' => '<h2 class="title-6">', // tag html off widgettitle(sibar header) 'after_title' => '</h2>' ); register_sidebar( $sidebar ); } add_action('init', 'fptonline_theme_setup'); } // add function for theme /** @ Thiแบฟt lแบญp hร m hiแปƒn thแป‹ logo @ fptonline_logo() **/ if ( ! function_exists( 'fptonline_logo' ) ) { function fptonline_logo() {?> <a href="<?php bloginfo('url'); ?>" title="FPT" class="logo"><img src="<?php echo get_theme_root_uri().'/testtheme/'?>images/logo.png" alt="logo"></a> <?php } } /** @ Thiแบฟt lแบญp hร m hiแปƒn thแป‹ menu @ fptonline_menu( $slug ) **/ if ( ! function_exists( 'fptonline_menu' ) ) { function fptonline_menu( $slug ) { $menu = array( 'theme_location' => $slug, 'container' => 'nav', 'container_class' => $slug, ); wp_nav_menu( $menu ); } } /** @ Tแบกo hร m phรขn trang cho index, archive. @ Hร m nร y sแบฝ hiแปƒn thแป‹ liรชn kแบฟt phรขn trang theo dแบกng chแปฏ: Newer Posts & Older Posts @ fptonline_pagination() **/ if ( ! function_exists( 'fptonline_pagination' ) ) { function fptonline_pagination() { /* * Khรดng hiแปƒn thแป‹ phรขn trang nแบฟu trang ฤ‘รณ cรณ รญt hฦกn 2 trang */ if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return ''; } ?> <nav class="pagination" role="navigation"> <?php if ( get_next_post_link() ) : ?>รกdasd <div class="prev"><?php next_posts_link( __('Older Posts', 'fptonline') ); ?></div> <?php endif; ?> <?php if ( get_previous_post_link() ) : ?> <div class="next"><?php previous_posts_link( __('Newer Posts', 'fptonline') ); ?></div> <?php endif; ?> </nav><?php } } if ( ! function_exists( 'fptonline_thumbnail' ) ) { function fptonline_thumbnail( $size ) { // Chแป‰ hiแปƒn thumbnail vแป›i post khรดng cรณ mแบญt khแบฉu if ( ! is_single() && has_post_thumbnail() && ! post_password_required() || has_post_format( 'image' ) ) : ?> <figure class="post-thumbnail"><?php the_post_thumbnail( $size ); ?></figure><?php endif; } } /** @ Hร m hiแปƒn thแป‹ tiรชu ฤ‘แป cแปงa post trong .entry-header @ Tiรชu ฤ‘แป cแปงa post sแบฝ lร  nแบฑm trong thแบป <h1> แปŸ trang single @ Cรฒn แปŸ trang chแปง vร  trang lฦฐu trแปฏ, nรณ sแบฝ lร  thแบป <h2> @ fptonline_entry_header() **/ if ( ! function_exists( 'fptonline_entry_header' ) ) { function fptonline_entry_header() { if ( is_single() ) : ?> <h1 class="entry-title"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </h1> <?php else : ?> <h2 class="entry-title"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </h2><?php endif; } } /** @ Hร m hiแปƒn thแป‹ thรดng tin cแปงa post (Post Meta) @ fptonline_entry_meta() **/ if( ! function_exists( 'fptonline_entry_meta' ) ) { function fptonline_entry_meta() { if ( ! is_page() ) : echo '<div class="entry-meta">'; // Hiแปƒn thแป‹ tรชn tรกc giแบฃ, tรชn category vร  ngร y thรกng ฤ‘ฤƒng bร i printf( __('<span class="author">Posted by %1$s</span>', 'fptonline'), get_the_author() ); printf( __('<span class="date-published"> at %1$s</span>', 'fptonline'), get_the_date() ); printf( __('<span class="category"> in %1$s</span>', 'fptonline'), get_the_category_list( ', ' ) ); // Hiแปƒn thแป‹ sแป‘ ฤ‘แบฟm lฦฐแปฃt bรฌnh luแบญn if ( comments_open() ) : echo ' <span class="meta-reply">'; comments_popup_link( __('Leave a comment', 'fptonline'), __('One comment', 'fptonline'), __('% comments', 'fptonline'), __('Read all comments', 'fptonline') ); echo '</span>'; endif; echo '</div>'; endif; } } /* * Thรชm chแปฏ Read More vร o excerpt */ function fptonline_readmore() { echo '...<a class="read-more" href="'. get_permalink( get_the_ID() ) . '">' . __('Read More', 'fptonline') . '</a>'; } /** @ Hร m hiแปƒn thแป‹ nแป™i dung cแปงa post type @ Hร m nร y sแบฝ hiแปƒn thแป‹ ฤ‘oแบกn rรบt gแปn cแปงa post ngoร i trang chแปง (the_excerpt) @ Nhฦฐng nรณ sแบฝ hiแปƒn thแป‹ toร n bแป™ nแป™i dung cแปงa post แปŸ trang single (the_content) @ fptonline_entry_content() **/ if ( ! function_exists( 'fptonline_entry_content' ) ) { function fptonline_entry_content() { if ( ! is_single() ) : the_excerpt(); else : the_content(); /* * Code hiแปƒn thแป‹ phรขn trang trong post type */ $link_pages = array( 'before' => __('<p>Page:', 'fptonline'), 'after' => '</p>', 'nextpagelink' => __( 'Next page', 'fptonline' ), 'previouspagelink' => __( 'Previous page', 'fptonline' ) ); wp_link_pages( $link_pages ); endif; } } /** @ Hร m hiแปƒn thแป‹ tag cแปงa post @ fptonline_entry_tag() **/ if ( ! function_exists( 'fptonline_entry_tag' ) ) { function fptonline_entry_tag() { if ( has_tag() ) : echo '<div class="entry-tag">'; printf( __('bร i viแบฟt liรชn quan %1$s', 'fptonline'), get_the_tag_list( '', ', ' ) ); echo '</div>'; endif; } } /** tuanna adฤ‘ function */ if ( ! function_exists( 'get_post_homepage' ) ) { function fptonline_get_post_homepage() { echo 'nguyen Anh tuan'; /*$args_my_query = array( 'post_type' => 'post', 'orderby' => 'DESC', 'posts_per_page' => 2 ); $my_query_post = new WP_Query($args_my_query); return $my_query_post;*/ } } /** End tuanna adฤ‘ function */
tuannadl/fptonline
wp-content/themes/testtheme/functions.php
PHP
gpl-2.0
9,078
<?php // +-------------------------------------------------+ // ยฉ 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net) // +-------------------------------------------------+ // $Id: ntlm_handshake.class.php,v 1.2 2013-01-23 15:01:40 dbellamy Exp $ require_once('log.class.php'); // Test // // session_start(); // $nh = new ntlm_handshake(); // $nh->version = 1; // $auth = $nh->run(); // if ($auth) { // print "You are authenticated<br />"; // } else { // print "You are not authenticated<br />"; // } // highlight_string(print_r($nh->auth,true)); class ntlm_handshake { public $targetname = 'testwebsite'; public $domain = 'testdomain'; public $computer = 'mycomputer'; public $dnsdomain = 'testdomain.local'; public $dnscomputer = 'mycomputer.local'; public $workstation = ''; public $version = 1; public $v2_only = true; public $headers = array(); public $auth_header = null; public $msg = ''; public $msg2 = ''; public $fail_msg = '<h1>Authentication Required</h1>'; public $auth = array(); public $clientblob = ''; public $clientblobhash = ''; public $ntlm_hosts = array(); //plages d'adresses IP pour lesquelles une authentification NTLM est possible public $http_proxies = array(); //proxies http public $ntlm_check=true; //vรฉrification NTLM ? public $ntlm_check_ip = false; //vรฉrification de l'adresse IP public $log = false; function __construct () { } function run() { $this->ntlm_prompt(); return $this->auth['authenticated']; } //dรฉfinition d'un log. function set_log($log=false, $log_file='', $log_format='text', $log_now=false, $log_reset=true) { $this->log = $log; if ($this->log) { log::$log_file=$log_file; log::$log_format=$log_format; log::$log_now=$log_now; if ($log_reset) log::reset(); } } function set_ntlm_hosts($ntlm_hosts=array(), $http_proxies=array()) { $this->ntlm_hosts = $ntlm_hosts; $this->http_proxies = $http_proxies; $this->ntlm_check_ip = true; } function check_ip() { if ($this->ntlm_check_ip) { $remote_addr = $_SERVER['REMOTE_ADDR']; if (in_array($remote_addr,$this->http_proxies)) { $remote_addr = $_SERVER['HTTP_X_FORWARDED_FOR']; } $this->ntlm_check = false; foreach($this->ntlm_hosts as $ntlm_host) { if(stripos($remote_addr,$ntlm_host)===0) { $this->ntlm_check = true; break; } } } } function ntlm_prompt() { $this->check_ip(); if (!$this->ntlm_check) return; $this->auth_header = isset($_SERVER['HTTP_AUTHORIZATION']) ? $_SERVER['HTTP_AUTHORIZATION'] : null; if ($this->log) { if ($this->auth_header == null) { log::print_message('HTTP_AUTHORIZATION non dรฉfini.'); } else { log::print_message('HTTP_AUTHORIZATION = '); log::print_message($this->auth_header); } } if ($this->auth_header == null && function_exists('apache_request_headers')) { $this->headers = apache_request_headers(); $this->auth_header = isset($this->headers['Authorization']) ? $this->headers['Authorization'] : null; } if ($this->log) { if ($this->auth_header == null) { log::print_message('Apache headers non dรฉfinis.'); } else { log::print_message('Apache headers = '); log::print_message($this->headers); log::print_message('auth_header = '); log::print_message($this->auth_header); log::print_message(bin2hex(base64_decode($this->auth_header))); } } if (isset($_SESSION['_ntlm_auth'])) { if ($this->log) { log::print_message('_ntlm_auth = '); log::print_message($_SESSION['_ntlm_auth']); } $this->auth = $_SESSION['_ntlm_auth']; return ; } if (!$this->auth_header) { header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: NTLM'); print $this->fail_msg; if ($this->log) { log::print_message("Pas de headers."); log::print_message($this->fail_msg); log::print_message("Envoi header 'HTTP/1.1 401 Unauthorized'"); log::print_message("Envoi header 'WWW-Authenticate: NTLM'"); } exit; } if (substr($this->auth_header,0,5) == 'NTLM ') { $this->msg = base64_decode(substr($this->auth_header, 5)); if (substr($this->msg, 0, 8) != "NTLMSSP\x00") { if ($this->log) { log::print_message("Header NTLM non reconnus."); } die(); } if ($this->msg[8] == "\x01") { if ($this->version==1) { $this->msg2 = "NTLMSSP\x00\x02\x00\x00\x00\x00\x00\x00"; $this->msg2.= "\x00\x28\x00\x00\x00\x01\x82\x00\x00"; $this->msg2.= "\x00\x02\x02\x02\x00\x00\x00\x00\x00"; $this->msg2.= "\x00\x00\x00\x00\x00\x00\x00"; header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: NTLM '.trim(base64_encode($this->msg2))); if ($this->log) { log::print_message("Envoi header 'HTTP/1.1 401 Unauthorized'"); log::print_message("Envoi header 'WWW-Authenticate: NTLM'"); log::print_message(bin2hex($this->msg2)); } } else if ($this->version==2) { $_SESSION['_ntlm_server_challenge'] = $this->ntlm_get_random_bytes(8); $this->msg2 = $this->ntlm_get_challenge_msg($_SESSION['_ntlm_server_challenge']); header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: NTLM '.trim(base64_encode($this->msg2))); if ($this->log) { log::print_message("Envoi header 'HTTP/1.1 401 Unauthorized'"); log::print_message("Envoi header 'WWW-Authenticate: NTLM'"); log::print_message("Envoi challenge NTLM"); log::print_message(bin2hex($this->msg2)); } } exit; } else if ($this->msg[8] == "\x03") { if ($this->version==1) { $this->auth = $this->ntlm_parse_response_msg(); } else if ($this->version==2) { $this->auth = $this->ntlm_parse_response_msg($_SESSION['_ntlm_server_challenge']); unset($_SESSION['_ntlm_server_challenge']); if (!$this->auth['authenticated']) { header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: NTLM'); print $this->fail_msg; print $this->auth['error']; if ($this->log) { log::print_message("Envoi header 'HTTP/1.1 401 Unauthorized'"); log::print_message("Envoi header 'WWW-Authenticate: NTLM'"); log::print_message($this->fail_msg); log::print_message($this->auth['error']); } exit; } } $_SESSION['_ntlm_auth'] = $this->auth; return ; } } else { if($this->log) { log::print_message("Pas de header NTLM."); } } } function ntlm_utf8_to_utf16le($str) { return iconv('UTF-8', 'UTF-16LE', $str); } function ntlm_md4($s) { if (function_exists('mhash')) { return mhash(MHASH_MD4, $s); } return pack('H*', hash('md4', $s)); } function ntlm_av_pair($type, $utf16) { return pack('v', $type).pack('v', strlen($utf16)).$utf16; } function ntlm_field_value($start, $decode_utf16 = true) { $len = (ord($this->msg[$start+1]) * 256) + ord($this->msg[$start]); $off = (ord($this->msg[$start+5]) * 256) + ord($this->msg[$start+4]); $result = substr($this->msg, $off, $len); if ($decode_utf16) { $result = iconv('UTF-16LE', 'UTF-8', $result); } return $result; } function ntlm_hmac_md5($key) { $blocksize = 64; if (strlen($key) > $blocksize) { $key = pack('H*', md5($key)); } $key = str_pad($key, $blocksize, "\0"); $ipadk = $key ^ str_repeat("\x36", $blocksize); $opadk = $key ^ str_repeat("\x5c", $blocksize); return pack('H*', md5($opadk.pack('H*', md5($ipadk.$this->msg)))); } function ntlm_get_random_bytes($length) { $result = ''; for ($i = 0; $i < $length; $i++) { $result .= chr(rand(0, 255)); } return $result; } function ntlm_get_challenge_msg($challenge='') { $this->domain = $this->ntlm_field_value(16); $ws = $this->ntlm_field_value(24); $tdata = $this->ntlm_av_pair(2, $this->ntlm_utf8_to_utf16le($this->domain)).$this->ntlm_av_pair(1, $this->ntlm_utf8_to_utf16le($this->computer)).$this->ntlm_av_pair(4, $this->ntlm_utf8_to_utf16le($this->dnsdomain)).$this->ntlm_av_pair(3, $this->ntlm_utf8_to_utf16le($this->dnscomputer))."\0\0\0\0\0\0\0\0"; $tname = $this->ntlm_utf8_to_utf16le($this->targetname); $this->msg2 = "NTLMSSP\x00\x02\x00\x00\x00". pack('vvV', strlen($tname), strlen($tname), 48). // target name len/alloc/offset "\x01\x02\x81\x00". // flags $challenge. // challenge "\x00\x00\x00\x00\x00\x00\x00\x00". // context pack('vvV', strlen($tdata), strlen($tdata), 48 + strlen($tname)). // target info len/alloc/offset $tname.$tdata; return $this->msg2; } function ntlm_verify_hash($challenge) { // $md4hash = $this->get_ntlm_user_hash($this->user); // if (!$md4hash) { // return false; // } // $ntlmv2hash = ntlm_hmac_md5($md4hash, ntlm_utf8_to_utf16le(strtoupper($this->user).$this->domain)); // $blobhash = ntlm_hmac_md5($ntlmv2hash, $challenge.$this->clientblob); // // echo // 'domain = '.$this->domain."\r\n". // 'user = '.$this->user."\r\n". // 'challenge = '.bin2hex($challenge )."\r\n". // 'clientblob = '.bin2hex($this->clientblob )."\r\n". // 'clientblobhash = '.bin2hex($this->clientblobhash )."\r\n". // 'md4hash = '.bin2hex($md4hash )."\r\n". // 'ntlmv2hash = '.bin2hex($ntlmv2hash)."\r\n". // 'blobhash = '.bin2hex($blobhash)."\r\n"; // // return ($blobhash == $this->clientblobhash); //return ntlm_md4(ntlm_utf8_to_utf16le('test')); return true; } function ntlm_parse_response_msg($challenge='') { if ($this->version==1) { $this->user = $this->ntlm_field_value(36); $this->domain = $this->ntlm_field_value(28); $this->workstation = $this->ntlm_field_value(44); } else if ($this->version==2) { $this->user = $this->ntlm_field_value(36); $this->domain = $this->ntlm_field_value(28); $this->workstation = $this->ntlm_field_value(44); $ntlmresponse = $this->ntlm_field_value(20, false); //$blob = "\x01\x01\x00\x00\x00\x00\x00\x00".$timestamp.$nonce."\x00\x00\x00\x00".$tdata; $this->clientblob = substr($ntlmresponse, 16); $this->clientblobhash = substr($ntlmresponse, 0, 16); if (substr($this->clientblob, 0, 8) != "\x01\x01\x00\x00\x00\x00\x00\x00") { //return array('authenticated' => true, 'username' => $this->user, 'domain' => $this->domain, 'workstation' => $this->workstation); return array('authenticated' => false, 'error' => 'NTLMv2 response required. Please force your client to use NTLMv2.'); } if (!$this->ntlm_verify_hash($challenge)) { return array('authenticated' => false, 'error' => 'Incorrect username or password.', 'username' => $this->user, 'domain' => $this->domain, 'workstation' => $this->workstation); } } return array('authenticated' => true, 'username' => $this->user, 'domain' => $this->domain, 'workstation' => $this->workstation); } function ntlm_unset_auth() { unset ($_SESSION['_ntlm_auth']); } function get_ntlm_user_hash() { //$userdb = array('loune'=>'test', 'user1'=>'password'); //if (!isset($userdb[strtolower($this->user)])) //return false; //return ntlm_md4(ntlm_utf8_to_utf16le('test')); return true; } }
Gambiit/pmb-on-docker
web_appli/pmb/opac_css/classes/ntlm_handshake.class.php
PHP
gpl-2.0
11,186
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.3.1"/> <title>Taobao Cpp/Qt SDK: Location Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Taobao Cpp/Qt SDK </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pri-attribs">Private Attributes</a> &#124; <a href="classLocation-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">Location Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>็”จๆˆทๅœฐๅ€ <a href="classLocation.html#details">More...</a></p> <p><code>#include &lt;<a class="el" href="Location_8h_source.html">Location.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a677c893af2037e7e77b28634658c2e73"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a677c893af2037e7e77b28634658c2e73">~Location</a> ()</td></tr> <tr class="separator:a677c893af2037e7e77b28634658c2e73"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4137889c12a968157a7c00e9bc5b5250"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a4137889c12a968157a7c00e9bc5b5250">getAddress</a> () const </td></tr> <tr class="separator:a4137889c12a968157a7c00e9bc5b5250"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0d677a0336131b314d6dc550f5f7f224"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a0d677a0336131b314d6dc550f5f7f224">setAddress</a> (QString <a class="el" href="classLocation.html#aeabd936113b83f4af61287effd23e497">address</a>)</td></tr> <tr class="separator:a0d677a0336131b314d6dc550f5f7f224"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab046fc103e03a5dae3545d402c48edb7"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ab046fc103e03a5dae3545d402c48edb7">getCity</a> () const </td></tr> <tr class="separator:ab046fc103e03a5dae3545d402c48edb7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2a1fdf8bd0245879a4093a762bfcff1d"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a2a1fdf8bd0245879a4093a762bfcff1d">setCity</a> (QString <a class="el" href="classLocation.html#ac7b735fa9efb490ddaec07e6a9216c79">city</a>)</td></tr> <tr class="separator:a2a1fdf8bd0245879a4093a762bfcff1d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5e4b524747a18b70a26c3db38fde7278"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a5e4b524747a18b70a26c3db38fde7278">getCountry</a> () const </td></tr> <tr class="separator:a5e4b524747a18b70a26c3db38fde7278"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aee7e85b4bdcdd4b4318d96fd037c333e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#aee7e85b4bdcdd4b4318d96fd037c333e">setCountry</a> (QString <a class="el" href="classLocation.html#ac5234d0601193bdbc66b1522ad8bf8e1">country</a>)</td></tr> <tr class="separator:aee7e85b4bdcdd4b4318d96fd037c333e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aeb8ed7fac812fdd3db9d6860711513a4"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#aeb8ed7fac812fdd3db9d6860711513a4">getDistrict</a> () const </td></tr> <tr class="separator:aeb8ed7fac812fdd3db9d6860711513a4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad3d6a504d9ed8b0eae0b2e085858210e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ad3d6a504d9ed8b0eae0b2e085858210e">setDistrict</a> (QString <a class="el" href="classLocation.html#aa78cda3c6d626e0557b0dad2d49229d2">district</a>)</td></tr> <tr class="separator:ad3d6a504d9ed8b0eae0b2e085858210e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac2427b835ed4a196ff379335085dfab4"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ac2427b835ed4a196ff379335085dfab4">getState</a> () const </td></tr> <tr class="separator:ac2427b835ed4a196ff379335085dfab4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2b0d73f5dc2e61b87144e5c4d5e60bfb"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a2b0d73f5dc2e61b87144e5c4d5e60bfb">setState</a> (QString <a class="el" href="classLocation.html#a6218c481a6b06e3c0d3bd34a8b4e4231">state</a>)</td></tr> <tr class="separator:a2b0d73f5dc2e61b87144e5c4d5e60bfb"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a82a716de69127097569b708de7101313"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a82a716de69127097569b708de7101313">getZip</a> () const </td></tr> <tr class="separator:a82a716de69127097569b708de7101313"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a017d2a76ee4e0cda00ff372547a53489"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a017d2a76ee4e0cda00ff372547a53489">setZip</a> (QString <a class="el" href="classLocation.html#aba59c82526d4df1b308e30d95862aab7">zip</a>)</td></tr> <tr class="separator:a017d2a76ee4e0cda00ff372547a53489"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae319cb15041f04ae47677a90883ce1b4"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ae319cb15041f04ae47677a90883ce1b4">parseResponse</a> ()</td></tr> <tr class="separator:ae319cb15041f04ae47677a90883ce1b4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classTaoDomain"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classTaoDomain')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classTaoDomain.html">TaoDomain</a></td></tr> <tr class="memitem:aebdf128b091f01ebf8fb9d54a6aed808 inherit pub_methods_classTaoDomain"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTaoDomain.html#aebdf128b091f01ebf8fb9d54a6aed808">TaoDomain</a> ()</td></tr> <tr class="separator:aebdf128b091f01ebf8fb9d54a6aed808 inherit pub_methods_classTaoDomain"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a35c282269ada3a7e71798a85df4fb4f9 inherit pub_methods_classTaoDomain"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTaoDomain.html#a35c282269ada3a7e71798a85df4fb4f9">~TaoDomain</a> ()</td></tr> <tr class="separator:a35c282269ada3a7e71798a85df4fb4f9 inherit pub_methods_classTaoDomain"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a03306cb36ac8333211a49d31a836b032 inherit pub_methods_classTaoDomain"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTaoDomain.html#a03306cb36ac8333211a49d31a836b032">setParser</a> (<a class="el" href="classParser.html">Parser</a> *parser)</td></tr> <tr class="separator:a03306cb36ac8333211a49d31a836b032 inherit pub_methods_classTaoDomain"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-attribs"></a> Private Attributes</h2></td></tr> <tr class="memitem:aeabd936113b83f4af61287effd23e497"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#aeabd936113b83f4af61287effd23e497">address</a></td></tr> <tr class="memdesc:aeabd936113b83f4af61287effd23e497"><td class="mdescLeft">&#160;</td><td class="mdescRight">่ฏฆ็ป†ๅœฐๅ€๏ผŒๆœ€ๅคง256ไธชๅญ—่Š‚๏ผˆ128ไธชไธญๆ–‡๏ผ‰ <a href="#aeabd936113b83f4af61287effd23e497">More...</a><br/></td></tr> <tr class="separator:aeabd936113b83f4af61287effd23e497"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac7b735fa9efb490ddaec07e6a9216c79"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ac7b735fa9efb490ddaec07e6a9216c79">city</a></td></tr> <tr class="memdesc:ac7b735fa9efb490ddaec07e6a9216c79"><td class="mdescLeft">&#160;</td><td class="mdescRight">ๆ‰€ๅœจๅŸŽๅธ‚๏ผˆไธญๆ–‡ๅ็งฐ๏ผ‰ <a href="#ac7b735fa9efb490ddaec07e6a9216c79">More...</a><br/></td></tr> <tr class="separator:ac7b735fa9efb490ddaec07e6a9216c79"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac5234d0601193bdbc66b1522ad8bf8e1"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#ac5234d0601193bdbc66b1522ad8bf8e1">country</a></td></tr> <tr class="memdesc:ac5234d0601193bdbc66b1522ad8bf8e1"><td class="mdescLeft">&#160;</td><td class="mdescRight">ๅ›ฝๅฎถๅ็งฐ <a href="#ac5234d0601193bdbc66b1522ad8bf8e1">More...</a><br/></td></tr> <tr class="separator:ac5234d0601193bdbc66b1522ad8bf8e1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa78cda3c6d626e0557b0dad2d49229d2"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#aa78cda3c6d626e0557b0dad2d49229d2">district</a></td></tr> <tr class="memdesc:aa78cda3c6d626e0557b0dad2d49229d2"><td class="mdescLeft">&#160;</td><td class="mdescRight">ๅŒบ/ๅŽฟ๏ผˆๅช้€‚็”จไบŽ็‰ฉๆตAPI๏ผ‰ <a href="#aa78cda3c6d626e0557b0dad2d49229d2">More...</a><br/></td></tr> <tr class="separator:aa78cda3c6d626e0557b0dad2d49229d2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6218c481a6b06e3c0d3bd34a8b4e4231"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#a6218c481a6b06e3c0d3bd34a8b4e4231">state</a></td></tr> <tr class="memdesc:a6218c481a6b06e3c0d3bd34a8b4e4231"><td class="mdescLeft">&#160;</td><td class="mdescRight">ๆ‰€ๅœจ็œไปฝ๏ผˆไธญๆ–‡ๅ็งฐ๏ผ‰ <a href="#a6218c481a6b06e3c0d3bd34a8b4e4231">More...</a><br/></td></tr> <tr class="separator:a6218c481a6b06e3c0d3bd34a8b4e4231"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aba59c82526d4df1b308e30d95862aab7"><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classLocation.html#aba59c82526d4df1b308e30d95862aab7">zip</a></td></tr> <tr class="memdesc:aba59c82526d4df1b308e30d95862aab7"><td class="mdescLeft">&#160;</td><td class="mdescRight">้‚ฎๆ”ฟ็ผ–็  <a href="#aba59c82526d4df1b308e30d95862aab7">More...</a><br/></td></tr> <tr class="separator:aba59c82526d4df1b308e30d95862aab7"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pub_attribs_classTaoDomain"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_classTaoDomain')"><img src="closed.png" alt="-"/>&#160;Public Attributes inherited from <a class="el" href="classTaoDomain.html">TaoDomain</a></td></tr> <tr class="memitem:ad34bf26981ee22bb6d77619e4c9dce91 inherit pub_attribs_classTaoDomain"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classParser.html">Parser</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTaoDomain.html#ad34bf26981ee22bb6d77619e4c9dce91">responseParser</a></td></tr> <tr class="separator:ad34bf26981ee22bb6d77619e4c9dce91 inherit pub_attribs_classTaoDomain"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>็”จๆˆทๅœฐๅ€ </p> <dl class="section author"><dt>Author</dt><dd>sd44 <a href="#" onclick="location.href='mai'+'lto:'+'sd4'+'4s'+'dd4'+'4@'+'yea'+'h.'+'net'; return false;">sd44s<span style="display: none;">.nosp@m.</span>dd44<span style="display: none;">.nosp@m.</span>@yeah<span style="display: none;">.nosp@m.</span>.net</a> </dd></dl> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a677c893af2037e7e77b28634658c2e73"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual Location::~Location </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a4137889c12a968157a7c00e9bc5b5250"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getAddress </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="ab046fc103e03a5dae3545d402c48edb7"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getCity </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a5e4b524747a18b70a26c3db38fde7278"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getCountry </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="aeb8ed7fac812fdd3db9d6860711513a4"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getDistrict </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="ac2427b835ed4a196ff379335085dfab4"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getState </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a82a716de69127097569b708de7101313"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">QString Location::getZip </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="ae319cb15041f04ae47677a90883ce1b4"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">void Location::parseResponse </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Implements <a class="el" href="classTaoDomain.html#a5d8565d97558794245a2d33220fe90ca">TaoDomain</a>.</p> </div> </div> <a class="anchor" id="a0d677a0336131b314d6dc550f5f7f224"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setAddress </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>address</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a2a1fdf8bd0245879a4093a762bfcff1d"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setCity </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>city</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="aee7e85b4bdcdd4b4318d96fd037c333e"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setCountry </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>country</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="ad3d6a504d9ed8b0eae0b2e085858210e"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setDistrict </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>district</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a2b0d73f5dc2e61b87144e5c4d5e60bfb"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setState </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>state</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a017d2a76ee4e0cda00ff372547a53489"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void Location::setZip </td> <td>(</td> <td class="paramtype">QString&#160;</td> <td class="paramname"><em>zip</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <h2 class="groupheader">Member Data Documentation</h2> <a class="anchor" id="aeabd936113b83f4af61287effd23e497"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::address</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>่ฏฆ็ป†ๅœฐๅ€๏ผŒๆœ€ๅคง256ไธชๅญ—่Š‚๏ผˆ128ไธชไธญๆ–‡๏ผ‰ </p> </div> </div> <a class="anchor" id="ac7b735fa9efb490ddaec07e6a9216c79"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::city</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ๆ‰€ๅœจๅŸŽๅธ‚๏ผˆไธญๆ–‡ๅ็งฐ๏ผ‰ </p> </div> </div> <a class="anchor" id="ac5234d0601193bdbc66b1522ad8bf8e1"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::country</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ๅ›ฝๅฎถๅ็งฐ </p> </div> </div> <a class="anchor" id="aa78cda3c6d626e0557b0dad2d49229d2"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::district</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ๅŒบ/ๅŽฟ๏ผˆๅช้€‚็”จไบŽ็‰ฉๆตAPI๏ผ‰ </p> </div> </div> <a class="anchor" id="a6218c481a6b06e3c0d3bd34a8b4e4231"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::state</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ๆ‰€ๅœจ็œไปฝ๏ผˆไธญๆ–‡ๅ็งฐ๏ผ‰ </p> </div> </div> <a class="anchor" id="aba59c82526d4df1b308e30d95862aab7"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">QString Location::zip</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>้‚ฎๆ”ฟ็ผ–็  </p> </div> </div> <hr/>The documentation for this class was generated from the following files:<ul> <li>TaoApiCpp/domain/<a class="el" href="Location_8h_source.html">Location.h</a></li> <li>TaoApiCpp/domain/<a class="el" href="Location_8cpp.html">Location.cpp</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Sun Apr 14 2013 16:25:39 for Taobao Cpp/Qt SDK by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
sd44/TaobaoCppQtSDK
doc/classLocation.html
HTML
gpl-2.0
27,356
<?php function paupress_pro_settings() { $paupro_settings = apply_filters( 'paupro_settings', array( array( 'meta' => array( 'source' => 'paupress', 'meta_key' => 'paupro_license_title', 'name' => __( 'PauPro License Information', 'paupress' ), 'help' => '', 'description' => __( 'Please enter your license details below to enable automatic updates. Please note that you have to download and install the Pro version before you are able to take advantage of the Pro features.', 'paupress' ), 'options' => array( 'field_type' => 'title', 'req' => false, 'public' => false, 'choices' => false ) ) ), array( 'meta' => array( 'source' => 'paupress', 'meta_key' => 'paupro_license_key', 'name' => __( 'Your license key', 'paupress' ), 'help' =>'', 'options' => array( 'field_type' => 'text', 'req' => false, 'public' => false, 'choices' => false, ) ) ), )); $paupack_settings = apply_filters( 'paupack_settings', array() ); return array_merge( $paupro_settings, $paupack_settings ); }
BrandonThomas84/cos_core
wp-content/plugins/paupress/options/paupress-pro-settings.php
PHP
gpl-2.0
1,244
(function ($) { "use strict"; $(document).ready(function() { var switched = false; var updateTables = function() { if (($(window).width() < 767) && !switched ){ switched = true; $("table.smartadapt-responsive-table").each(function(i, element) { splitTable($(element)); }); return true; } else if (switched && ($(window).width() > 767)) { switched = false; $("table.smartadapt-responsive-table").each(function(i, element) { unsplitTable($(element)); }); } }; $(window).load(updateTables); $(window).on("redraw",function(){switched=false;updateTables();}); // An event to listen for $(window).on("resize", updateTables); function splitTable(original) { original.wrap("<div class='table-wrapper' />"); var copy = original.clone(); copy.find("td:not(:first-child), th:not(:first-child)").css("display", "none"); copy.removeClass("smartadapt-responsive-table"); original.closest(".table-wrapper").append(copy); copy.wrap("<div class='pinned' />"); original.wrap("<div class='scrollable' />"); setCellHeights(original, copy); } function unsplitTable(original) { original.closest(".table-wrapper").find(".pinned").remove(); original.unwrap(); original.unwrap(); } function setCellHeights(original, copy) { var tr = original.find('tr'), tr_copy = copy.find('tr'), heights = []; tr.each(function (index) { var self = $(this), tx = self.find('th, td'); tx.each(function () { var height = $(this).outerHeight(true); heights[index] = heights[index] || 0; if (height > heights[index]) heights[index] = height; }); }); tr_copy.each(function (index) { $(this).height(heights[index]); }); } }); })(jQuery);
AlexanderNZ/socomd-wp
wp-content/themes/smartadapt/js/responsive-tables.js
JavaScript
gpl-2.0
1,835
<?php /** * autorize.net AIM payment method class * * @package paymentMethod * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: authorizenet_aim.php 3308 2006-03-29 08:21:33Z ajeh $ */ /** * Authorize.net Payment Module (AIM version) * You must have SSL active on your server to be compliant with merchant TOS * */ class authorizenet_aim extends base { /** * $code determines the internal 'code' name used to designate "this" payment module * * @var string */ var $code; /** * $title is the displayed name for this payment method * * @var string */ var $title; /** * $description is a soft name for this payment method * * @var string */ var $description; /** * $enabled determines whether this module shows or not... in catalog. * * @var boolean */ var $enabled; /** * $response tracks response information returned from the AIM gateway * * @var string/array */ var $response; /** * Constructor * * @return authorizenet_aim */ function authorizenet_aim() { global $order; $this->code = 'authorizenet_aim'; if ($_GET['main_page'] != '') { $this->title = MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CATALOG_TITLE; // Payment module title in Catalog } else { $this->title = MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_ADMIN_TITLE; // Payment module title in Admin } $this->description = MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_DESCRIPTION; // Descriptive Info about module in Admin $this->enabled = ((MODULE_PAYMENT_AUTHORIZENET_AIM_STATUS == 'True') ? true : false); // Whether the module is installed or not $this->sort_order = MODULE_PAYMENT_AUTHORIZENET_AIM_SORT_ORDER; // Sort Order of this payment option on the customer payment page $this->form_action_url = zen_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL', false); // Page to go to upon submitting page info if ((int)MODULE_PAYMENT_AUTHORIZENET_AIM_ORDER_STATUS_ID > 0) { $this->order_status = MODULE_PAYMENT_AUTHORIZENET_AIM_ORDER_STATUS_ID; } if (is_object($order)) $this->update_status(); } /** * calculate zone matches and flag settings to determine whether this module should display to customers or not * */ function update_status() { global $order, $db; if ( ($this->enabled == true) && ((int)MODULE_PAYMENT_AUTHORIZENET_AIM_ZONE > 0) ) { $check_flag = false; $check = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_AUTHORIZENET_AIM_ZONE . "' and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); while (!$check->EOF) { if ($check->fields['zone_id'] < 1) { $check_flag = true; break; } elseif ($check->fields['zone_id'] == $order->billing['zone_id']) { $check_flag = true; break; } $check->MoveNext(); } if ($check_flag == false) { $this->enabled = false; } } } /** * JS validation which does error-checking of data-entry if this module is selected for use * (Number, Owner, and CVV Lengths) * * @return string */ function javascript_validation() { $js = ' if (payment_value == "' . $this->code . '") {' . "\n" . ' var cc_owner = document.checkout_payment.authorizenet_aim_cc_owner.value;' . "\n" . ' var cc_number = document.checkout_payment.authorizenet_aim_cc_number.value;' . "\n"; if (MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV == 'True') { $js .= ' var cc_cvv = document.checkout_payment.authorizenet_aim_cc_cvv.value;' . "\n"; } $js .= ' if (cc_owner == "" || cc_owner.length < ' . CC_OWNER_MIN_LENGTH . ') {' . "\n" . ' error_message = error_message + "' . MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_JS_CC_OWNER . '";' . "\n" . ' error = 1;' . "\n" . ' }' . "\n" . ' if (cc_number == "" || cc_number.length < ' . CC_NUMBER_MIN_LENGTH . ') {' . "\n" . ' error_message = error_message + "' . MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_JS_CC_NUMBER . '";' . "\n" . ' error = 1;' . "\n" . ' }' . "\n"; if (MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV == 'True') { $js .= ' if (cc_cvv == "" || cc_cvv.length < "3" || cc_cvv.length > "4") {' . "\n". ' error_message = error_message + "' . MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_JS_CC_CVV . '";' . "\n" . ' error = 1;' . "\n" . ' }' . "\n" ; } $js .= ' }' . "\n"; return $js; } /** * Display Credit Card Information Submission Fields on the Checkout Payment Page * * @return array */ function selection() { global $order; for ($i=1; $i<13; $i++) { $expires_month[] = array('id' => sprintf('%02d', $i), 'text' => strftime('%B',mktime(0,0,0,$i,1,2000))); } $today = getdate(); for ($i=$today['year']; $i < $today['year']+10; $i++) { $expires_year[] = array('id' => strftime('%y',mktime(0,0,0,1,1,$i)), 'text' => strftime('%Y',mktime(0,0,0,1,1,$i))); } if (MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV == 'True') { $selection = array('id' => $this->code, 'module' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CATALOG_TITLE, 'fields' => array(array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_OWNER, 'field' => zen_draw_input_field('authorizenet_aim_cc_owner', $order->billing['firstname'] . ' ' . $order->billing['lastname'], 'id="'.$this->code.'-cc-owner"'), 'tag' => $this->code.'-cc-owner'), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_NUMBER, 'field' => zen_draw_input_field('authorizenet_aim_cc_number', '', 'id="'.$this->code.'-cc-number"'), 'tag' => $this->code.'-cc-number'), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_EXPIRES, 'field' => zen_draw_pull_down_menu('authorizenet_aim_cc_expires_month', $expires_month, '', 'id="'.$this->code.'-cc-expires-month"') . '&nbsp;' . zen_draw_pull_down_menu('authorizenet_aim_cc_expires_year', $expires_year), 'tag' => $this->code.'-cc-expires-month'), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CVV, 'field' => zen_draw_input_field('authorizenet_aim_cc_cvv','', 'size="4", maxlength="4"' . ' id="'.$this->code.'-cc-cvv"'), 'tag' => $this->code.'-cc-cvv') )); } else { $selection = array('id' => $this->code, 'module' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CATALOG_TITLE, 'fields' => array(array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_OWNER, 'field' => zen_draw_input_field('authorizenet_aim_cc_owner', $order->billing['firstname'] . ' ' . $order->billing['lastname'])), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_NUMBER, 'field' => zen_draw_input_field('authorizenet_aim_cc_number')), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_EXPIRES, 'field' => zen_draw_pull_down_menu('authorizenet_aim_cc_expires_month', $expires_month) . '&nbsp;' . zen_draw_pull_down_menu('authorizenet_aim_cc_expires_year', $expires_year)))); } return $selection; } /** * Evaluates the Credit Card Type for acceptance and the validity of the Credit Card Number & Expiration Date * */ function pre_confirmation_check() { global $_POST, $messageStack; include(DIR_WS_CLASSES . 'cc_validation.php'); $cc_validation = new cc_validation(); $result = $cc_validation->validate($_POST['authorizenet_aim_cc_number'], $_POST['authorizenet_aim_cc_expires_month'], $_POST['authorizenet_aim_cc_expires_year'], $_POST['authorizenet_aim_cc_cvv']); $error = ''; switch ($result) { case -1: $error = sprintf(TEXT_CCVAL_ERROR_UNKNOWN_CARD, substr($cc_validation->cc_number, 0, 4)); break; case -2: case -3: case -4: $error = TEXT_CCVAL_ERROR_INVALID_DATE; break; case false: $error = TEXT_CCVAL_ERROR_INVALID_NUMBER; break; } if ( ($result == false) || ($result < 1) ) { $payment_error_return = 'payment_error=' . $this->code . '&authorizenet_aim_cc_owner=' . urlencode($_POST['authorizenet_aim_cc_owner']) . '&authorizenet_aim_cc_expires_month=' . $_POST['authorizenet_aim_cc_expires_month'] . '&authorizenet_aim_cc_expires_year=' . $_POST['authorizenet_aim_cc_expires_year']; $messageStack->add_session('checkout_payment', $error . '['.$this->code.']', 'error'); zen_redirect(zen_href_link(FILENAME_CHECKOUT_PAYMENT, $payment_error_return, 'SSL', true, false)); } $this->cc_card_type = $cc_validation->cc_type; $this->cc_card_number = $cc_validation->cc_number; $this->cc_expiry_month = $cc_validation->cc_expiry_month; $this->cc_expiry_year = $cc_validation->cc_expiry_year; } /** * Display Credit Card Information on the Checkout Confirmation Page * * @return array */ function confirmation() { global $_POST; if (MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV == 'True') { $confirmation = array(//'title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CATALOG_TITLE, // Redundant 'fields' => array(array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_TYPE, 'field' => $this->cc_card_type), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_OWNER, 'field' => $_POST['authorizenet_aim_cc_owner']), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_NUMBER, 'field' => substr($this->cc_card_number, 0, 4) . str_repeat('X', (strlen($this->cc_card_number) - 8)) . substr($this->cc_card_number, -4)), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_EXPIRES, 'field' => strftime('%B, %Y', mktime(0,0,0,$_POST['authorizenet_aim_cc_expires_month'], 1, '20' . $_POST['authorizenet_aim_cc_expires_year']))), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CVV, 'field' => $_POST['authorizenet_aim_cc_cvv']))); } else { $confirmation = array(//'title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CATALOG_TITLE, // Redundant 'fields' => array(array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_TYPE, 'field' => $this->cc_card_type), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_OWNER, 'field' => $_POST['authorizenet_aim_cc_owner']), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_NUMBER, 'field' => substr($this->cc_card_number, 0, 4) . str_repeat('X', (strlen($this->cc_card_number) - 8)) . substr($this->cc_card_number, -4)), array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_CREDIT_CARD_EXPIRES, 'field' => strftime('%B, %Y', mktime(0,0,0,$_POST['authorizenet_aim_cc_expires_month'], 1, '20' . $_POST['authorizenet_aim_cc_expires_year']))))); } return $confirmation; } /** * Build the data and actions to process when the "Submit" button is pressed on the order-confirmation screen. * This sends the data to the payment gateway for processing. * (These are hidden fields on the checkout confirmation page) * * @return string */ function process_button() { $process_button_string = zen_draw_hidden_field('cc_owner', $_POST['authorizenet_aim_cc_owner']) . zen_draw_hidden_field('cc_expires', $this->cc_expiry_month . substr($this->cc_expiry_year, -2)) . zen_draw_hidden_field('cc_type', $this->cc_card_type) . zen_draw_hidden_field('cc_number', $this->cc_card_number); if (MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV == 'True') { $process_button_string .= zen_draw_hidden_field('cc_cvv', $_POST['authorizenet_aim_cc_cvv']); } $process_button_string .= zen_draw_hidden_field(zen_session_name(), zen_session_id()); return $process_button_string; return false; } /** * Store the CC info to the order and process any results that come back from the payment gateway * */ function before_process() { global $_POST, $response, $db, $order, $messageStack; if (MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_NUMBER == 'True') { $order->info['cc_number'] = $_POST['cc_number']; } $order->info['cc_expires'] = $_POST['cc_expires']; $order->info['cc_type'] = $_POST['cc_type']; $order->info['cc_owner'] = $_POST['cc_owner']; $order->info['cc_cvv'] = $_POST['cc_cvv']; // DATA PREPARATION SECTION unset($submit_data); // Cleans out any previous data stored in the variable // Create a string that contains a listing of products ordered for the description field $description = ''; for ($i=0; $i<sizeof($order->products); $i++) { $description .= $order->products[$i]['name'] . '(qty: ' . $order->products[$i]['qty'] . ') + '; } // Remove the last "\n" from the string $description = substr($description, 0, -2); // Create a variable that holds the order time $order_time = date("F j, Y, g:i a"); // Calculate the next expected order id $last_order_id = $db->Execute("select * from " . TABLE_ORDERS . " order by orders_id desc limit 1"); $new_order_id = $last_order_id->fields['orders_id']; $new_order_id = ($new_order_id + 1); // Populate an array that contains all of the data to be sent to Authorize.net $submit_data = array( 'x_login' => MODULE_PAYMENT_AUTHORIZENET_AIM_LOGIN, // The login name is assigned by authorize.net 'x_tran_key' => MODULE_PAYMENT_AUTHORIZENET_AIM_TXNKEY, // The Transaction Key is generated through the merchant interface 'x_relay_response' => 'FALSE', // AIM uses direct response, not relay response 'x_delim_data' => 'TRUE', // The default delimiter is a comma 'x_version' => '3.1', // 3.1 is required to use CVV codes 'x_type' => MODULE_PAYMENT_AUTHORIZENET_AIM_AUTHORIZATION_TYPE == 'Authorize' ? 'AUTH_ONLY': 'AUTH_CAPTURE', 'x_method' => 'CC', //MODULE_PAYMENT_AUTHORIZENET_AIM_METHOD == 'Credit Card' ? 'CC' : 'ECHECK', 'x_amount' => number_format($order->info['total'], 2), 'x_card_num' => $_POST['cc_number'], 'x_exp_date' => $_POST['cc_expires'], 'x_card_code' => $_POST['cc_cvv'], 'x_email_customer' => MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_CUSTOMER == 'True' ? 'TRUE': 'FALSE', 'x_email_merchant' => MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_MERCHANT == 'True' ? 'TRUE': 'FALSE', 'x_cust_id' => $_SESSION['customer_id'], 'x_invoice_num' => $new_order_id, 'x_first_name' => $order->billing['firstname'], 'x_last_name' => $order->billing['lastname'], 'x_company' => $order->billing['company'], 'x_address' => $order->billing['street_address'], 'x_city' => $order->billing['city'], 'x_state' => $order->billing['state'], 'x_zip' => $order->billing['postcode'], 'x_country' => $order->billing['country']['title'], 'x_phone' => $order->customer['telephone'], 'x_email' => $order->customer['email_address'], 'x_ship_to_first_name' => $order->delivery['firstname'], 'x_ship_to_last_name' => $order->delivery['lastname'], 'x_ship_to_address' => $order->delivery['street_address'], 'x_ship_to_city' => $order->delivery['city'], 'x_ship_to_state' => $order->delivery['state'], 'x_ship_to_zip' => $order->delivery['postcode'], 'x_ship_to_country' => $order->delivery['country']['title'], 'x_description' => $description, // Merchant defined variables go here 'Date' => $order_time, 'IP' => $_SERVER['REMOTE_ADDR'], 'Session' => zen_session_id()); if(MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') { $submit_data['x_test_request'] = 'TRUE'; } // concatenate the submission data and put into $data variable while(list($key, $value) = each($submit_data)) { $data .= $key . '=' . urlencode(ereg_replace(',', '', $value)) . '&'; } // Remove the last "&" from the string $data = substr($data, 0, -1); // SEND DATA BY CURL SECTION // Post order info data to Authorize.net, make sure you have cURL support installed unset($response); // The commented line below is an alternate connection method //exec("/usr/bin/curl -d \"$data\" https://secure.authorize.net/gateway/transact.dll", $response); $url = 'https://secure.authorize.net/gateway/transact.dll'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_VERBOSE, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); //======================== // If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL, // then uncomment the following 3 lines and substitute they proxy server's address for 1.1.1.1 below: // curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true); // curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); // curl_setopt ($ch, CURLOPT_PROXY, '1.1.1.1'); //======================== $authorize = curl_exec($ch); curl_close ($ch); $response = split('\,', $authorize); // DATABASE SECTION // Insert the send and receive response data into the database. // This can be used for testing or for implementation in other applications // This can be turned on and off if the Admin Section if (MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA == 'True'){ // Create a string from all of the response data for insertion into the database while(list($key, $value) = each($response)) { $response_list .= ($key +1) . '=' . urlencode(ereg_replace(',', '', $value)) . '&'; } // Remove the last "&" from the string $response_list = substr($response_list, 0, -1); $response_code = explode(',', $response[0]); $response_text = explode(',', $response[3]); $transaction_id = explode(',', $response[6]); $authorization_type = explode(',', $response[11]); $db_response_code = $response_code[0]; $db_response_text = $response_text[0]; $db_transaction_id = $transaction_id[0]; $db_authorization_type = $authorization_type[0]; $db_session_id = zen_session_id(); // Insert the data into the database $db->Execute("insert into " . TABLE_AUTHORIZENET . " (id, customer_id,order_id, response_code, response_text, authorization_type, transaction_id, sent, received, time, session_id) values ('', '" . $_SESSION['customer_id'] . "', '" . $new_order_id . "', '" . $db_response_code . "', '" . $db_response_text . "', '" . $db_authorization_type . "', '" . $db_transaction_id . "', '" . $data . "', '" . $response_list . "', '" . $order_time . "', '" . $db_session_id . "')"); } // Parse the response code and text for custom error display $response_code = explode(',', $response[0]); $response_text = explode(',', $response[3]); $x_response_code = $response_code[0]; $x_response_text = $response_text[0]; // If the response code is not 1 (approved) then redirect back to the payment page with the appropriate error message if ($x_response_code != '1') { $messageStack->add_session('checkout_payment', $x_response_text . ' - ' . MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_DECLINED_MESSAGE, 'error'); zen_redirect(zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL', true, false)); } } /** * Post-process activities. * * @return boolean */ function after_process() { return false; } /** * Used to display error message details * * @return array */ function get_error() { global $_GET; $error = array('title' => MODULE_PAYMENT_AUTHORIZENET_AIM_TEXT_ERROR, 'error' => stripslashes(urldecode($_GET['error']))); return $error; } /** * Check to see whether module is installed * * @return boolean */ function check() { global $db; if (!isset($this->_check)) { $check_query = $db->Execute("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_AUTHORIZENET_AIM_STATUS'"); $this->_check = $check_query->RecordCount(); } return $this->_check; } /** * Install the payment module and its configuration settings * */ function install() { global $db; $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Authorize.net (AIM) Module', 'MODULE_PAYMENT_AUTHORIZENET_AIM_STATUS', 'True', 'Do you want to accept Authorize.net payments via the AIM Method?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Login Username', 'MODULE_PAYMENT_AUTHORIZENET_AIM_LOGIN', 'testing', 'The login username used for the Authorize.net service', '6', '0', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Transaction Key', 'MODULE_PAYMENT_AUTHORIZENET_AIM_TXNKEY', 'Test', 'Transaction Key used for encrypting TP data', '6', '0', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Transaction Mode', 'MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE', 'Test', 'Transaction mode used for processing orders', '6', '0', 'zen_cfg_select_option(array(\'Test\', \'Production\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Authorization Type', 'MODULE_PAYMENT_AUTHORIZENET_AIM_AUTHORIZATION_TYPE', 'Authorize', 'Do you want submitted credit card transactions to be authorized only, or authorized and captured?', '6', '0', 'zen_cfg_select_option(array(\'Authorize\', \'Authorize/Capture\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Database Storage', 'MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA', 'False', 'Do you want to save the gateway data to the database? (Note: You must add a table first)', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Customer Notifications', 'MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_CUSTOMER', 'False', 'Should Authorize.Net email a receipt to the customer?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Merchant Notifications', 'MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_MERCHANT', 'False', 'Should Authorize.Net email a receipt to the merchant?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Request CVV Number', 'MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV', 'True', 'Do you want to ask the customer for the card\'s CVV number', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Store the Credit Card Number', 'MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_NUMBER', 'False', 'Do you want to store the Credit Card Number. Security Note: The Credit Card Number will be stored unenecrypted.', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort order of display.', 'MODULE_PAYMENT_AUTHORIZENET_AIM_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Payment Zone', 'MODULE_PAYMENT_AUTHORIZENET_AIM_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(', now())"); $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, use_function, date_added) values ('Set Order Status', 'MODULE_PAYMENT_AUTHORIZENET_AIM_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', 'zen_cfg_pull_down_order_statuses(', 'zen_get_order_status_name', now())"); } /** * Remove the module and all its settings * */ function remove() { global $db; $db->Execute("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); } /** * Internal list of configuration keys used for configuration of the module * * @return array */ function keys() { return array('MODULE_PAYMENT_AUTHORIZENET_AIM_STATUS', 'MODULE_PAYMENT_AUTHORIZENET_AIM_LOGIN', 'MODULE_PAYMENT_AUTHORIZENET_AIM_TXNKEY', 'MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE', 'MODULE_PAYMENT_AUTHORIZENET_AIM_AUTHORIZATION_TYPE', 'MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA', 'MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_CUSTOMER', 'MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_MERCHANT', 'MODULE_PAYMENT_AUTHORIZENET_AIM_USE_CVV', 'MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_NUMBER', 'MODULE_PAYMENT_AUTHORIZENET_AIM_SORT_ORDER', 'MODULE_PAYMENT_AUTHORIZENET_AIM_ZONE', 'MODULE_PAYMENT_AUTHORIZENET_AIM_ORDER_STATUS_ID'); //'MODULE_PAYMENT_AUTHORIZENET_AIM_METHOD' } } ?>
yama/zencart1302-ja-yama
includes/modules/payment/authorizenet_aim.php
PHP
gpl-2.0
29,376
<?php namespace PHPCrawler; use PHPCrawler\Utils\PHPCrawlerUtils; /** * Describes a cookie within the PHPCrawl-system. * * @package phpcrawl */ class PHPCrawlerCookieDescriptor { /** * Cookie-name * * @var string */ public $name; /** * Cookie-value * * @var string */ public $value; /** * Expire-string, e.g. "Sat, 08-Aug-2020 23:59:08 GMT" * * @var string */ public $expires = null; /** * Expire-date as unix-timestamp * * @var int */ public $expire_timestamp = null; /** * Cookie-path * * @var string */ public $path = null; /** * Cookie-domain * * @var string */ public $domain = null; /** * The domain the cookie was send from * * @var string */ public $source_domain = null; /** * The URL the cookie was send from * * @var string */ public $source_url = null; /** * The time the cookie was send * * @var float time in secs and microseconds */ public $cookie_send_time = null; /** * Initiates a new PHPCrawlerCookieDescriptor-object. * * @param string $source_url URL the cookie was send from. * @param string $name Cookie-name * @param string $value Cookie-value * @param string $expires Expire-string, e.g. "Sat, 08-Aug-2020 23:59:08 GMT" * @param string $path Cookie-path * @param string $domain Cookie-domain * @internal */ public function __construct($source_url, $name, $value, $expires = null, $path = null, $domain = null) { // For cookie-specs, see e.g. http://curl.haxx.se/rfc/cookie_spec.html $this->name = $name; $this->value = $value; $this->expires = $expires; $this->path = $path; $this->domain = $domain; $source_url_parts = PHPCrawlerUtils::splitURL($source_url); // Source-domain $this->source_domain = $source_url_parts["domain"]; // Source-URL $this->source_url = $source_url; // Send-time $this->cookie_send_time = PHPCrawlerBenchmark::getmicrotime(); // Expire-date to timetsamp if ($this->expires != null) $this->expire_timestamp = @strtotime($this->expires); // If domain doesn't start with "." -> add it (see RFC) if ($this->domain != null && substr($this->domain, 0, 1) != ".") $this->domain = "." . $this->domain; // Comeplete missing values // If domain no set -> domain is the host of the source-url WITHOUT leading "."! (see RFC) if ($this->domain == null) $this->domain = $source_url_parts["host"]; // If path not set if ($this->path == null) $this->path = $source_url_parts["path"]; } /** * Returns a PHPCrawlerCookieDescriptor-object initiated by the given cookie-header-line. * * @param string $header_line The line from an header defining the cookie, e.g. "VISITOR=4c63394c2d82e31552001a58; expires="Sat, 08-Aug-2020 23:59:08 GMT"; Path=/" * @param string $source_url URL the cookie was send from. * @return PHPCrawlerCookieDescriptor The appropriate PHPCrawlerCookieDescriptor-object. * @internal */ public static function getFromHeaderLine($header_line, $source_url) { $parts = explode(";", trim($header_line)); $name = ""; $value = ""; $expires = null; $path = null; $domain = ""; // Name and value preg_match("#([^=]*)=(.*)#", $parts[0], $match); $name = trim($match[1]); $value = trim($match[2]); // Path and Expires for ($x = 1; $x < count($parts); $x++) { $parts[$x] = trim($parts[$x]); if (preg_match("#^expires\s*=(.*)# i", $parts[$x], $match)) $expires = trim($match[1]); if (preg_match("#^path\s*=(.*)# i", $parts[$x], $match)) $path = trim($match[1]); if (preg_match("#^domain\s*=(.*)# i", $parts[$x], $match)) $domain = trim($match[1]); } $expires = str_replace("\"", "", $expires); $path = str_replace("\"", "", $path); $domain = str_replace("\"", "", $domain); return new PHPCrawlerCookieDescriptor($source_url, $name, $value, $expires, $path, $domain); } } ?>
totoleo/myPhpCrawl
libs/PHPCrawlerCookieDescriptor.php
PHP
gpl-2.0
4,388
๏ปฟusing System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("IceChat Plugin")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("IceChat Networks")] [assembly: AssemblyProduct("IceChat Plugin")] [assembly: AssemblyCopyright("Copyright ยฉ Paul Vanderzee")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("a1cbc364-005c-44f2-b26b-419f288a53a2")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
SkyFire/icechat
Plugins/Blank Plugin/Properties/AssemblyInfo.cs
C#
gpl-2.0
1,465
/* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <sys/param.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <errno.h> #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "hexdump.h" #include "xalloc.h" #include "c.h" #include "nls.h" #include "colors.h" static void doskip(const char *, int, struct hexdump *); static u_char *get(struct hexdump *); enum _vflag vflag = FIRST; static off_t address; /* address/offset in stream */ static off_t eaddress; /* end address */ static const char *color_cond(struct hexdump_pr *pr, unsigned char *bp, int bcnt) { register struct list_head *p; register struct hexdump_clr *clr; off_t offt; int match; list_for_each(p, pr->colorlist) { clr = list_entry(p, struct hexdump_clr, colorlist); offt = clr->offt; match = 0; /* no offset or offset outside this print unit */ if (offt < 0) offt = address; if (offt < address || offt + clr->range > address + bcnt) continue; /* match a string */ if (clr->str) { if (pr->flags == F_ADDRESS) { /* TODO */ } else if (!strncmp(clr->str, (char *)bp + offt - address, clr->range)) match = 1; /* match a value */ } else if (clr->val != -1) { int val = 0; /* addresses are not part of the input, so we can't * compare with the contents of bp */ if (pr->flags == F_ADDRESS) { if (clr->val == address) match = 1; } else { memcpy(&val, bp + offt - address, clr->range); if (val == clr->val) match = 1; } /* no conditions, only a color was specified */ } else return clr->fmt; /* return the format string or check for another */ if (match ^ clr->invert) return clr->fmt; } /* no match */ return NULL; } static inline void print(struct hexdump_pr *pr, unsigned char *bp) { const char *color = NULL; if (pr->colorlist && (color = color_cond(pr, bp, pr->bcnt))) color_enable(color); switch(pr->flags) { case F_ADDRESS: printf(pr->fmt, address); break; case F_BPAD: printf(pr->fmt, ""); break; case F_C: conv_c(pr, bp); break; case F_CHAR: printf(pr->fmt, *bp); break; case F_DBL: { double dval; float fval; switch(pr->bcnt) { case 4: memmove(&fval, bp, sizeof(fval)); printf(pr->fmt, fval); break; case 8: memmove(&dval, bp, sizeof(dval)); printf(pr->fmt, dval); break; } break; } case F_INT: { short sval; /* int16_t */ int ival; /* int32_t */ long long Lval; /* int64_t, int64_t */ switch(pr->bcnt) { case 1: printf(pr->fmt, (unsigned long long) *bp); break; case 2: memmove(&sval, bp, sizeof(sval)); printf(pr->fmt, (unsigned long long) sval); break; case 4: memmove(&ival, bp, sizeof(ival)); printf(pr->fmt, (unsigned long long) ival); break; case 8: memmove(&Lval, bp, sizeof(Lval)); printf(pr->fmt, Lval); break; } break; } case F_P: printf(pr->fmt, isprint(*bp) ? *bp : '.'); break; case F_STR: printf(pr->fmt, (char *)bp); break; case F_TEXT: printf("%s", pr->fmt); break; case F_U: conv_u(pr, bp); break; case F_UINT: { unsigned short sval; /* u_int16_t */ unsigned int ival; /* u_int32_t */ unsigned long long Lval;/* u_int64_t, u_int64_t */ switch(pr->bcnt) { case 1: printf(pr->fmt, (unsigned long long) *bp); break; case 2: memmove(&sval, bp, sizeof(sval)); printf(pr->fmt, (unsigned long long) sval); break; case 4: memmove(&ival, bp, sizeof(ival)); printf(pr->fmt, (unsigned long long) ival); break; case 8: memmove(&Lval, bp, sizeof(Lval)); printf(pr->fmt, Lval); break; } break; } } if (color) /* did we colorize something? */ color_disable(); } static void bpad(struct hexdump_pr *pr) { static const char *spec = " -0+#"; char *p1, *p2; /* * remove all conversion flags; '-' is the only one valid * with %s, and it's not useful here. */ pr->flags = F_BPAD; pr->cchar[0] = 's'; pr->cchar[1] = 0; p1 = pr->fmt; while (*p1 != '%') ++p1; p2 = ++p1; while (*p1 && strchr(spec, *p1)) ++p1; while ((*p2++ = *p1++)) ; } void display(struct hexdump *hex) { register struct list_head *fs; register struct hexdump_fs *fss; register struct hexdump_fu *fu; register struct hexdump_pr *pr; register int cnt; register unsigned char *bp; off_t saveaddress; unsigned char savech = 0, *savebp; struct list_head *p, *q, *r; while ((bp = get(hex)) != NULL) { fs = &hex->fshead; savebp = bp; saveaddress = address; list_for_each(p, fs) { fss = list_entry(p, struct hexdump_fs, fslist); list_for_each(q, &fss->fulist) { fu = list_entry(q, struct hexdump_fu, fulist); if (fu->flags&F_IGNORE) break; cnt = fu->reps; while (cnt) { list_for_each(r, &fu->prlist) { pr = list_entry(r, struct hexdump_pr, prlist); if (eaddress && address >= eaddress && !(pr->flags&(F_TEXT|F_BPAD))) bpad(pr); if (cnt == 1 && pr->nospace) { savech = *pr->nospace; *pr->nospace = '\0'; print(pr, bp); *pr->nospace = savech; } else print(pr, bp); address += pr->bcnt; bp += pr->bcnt; } --cnt; } } bp = savebp; address = saveaddress; } } if (endfu) { /* * if eaddress not set, error or file size was multiple of * blocksize, and no partial block ever found. */ if (!eaddress) { if (!address) return; eaddress = address; } list_for_each (p, &endfu->prlist) { const char *color = NULL; pr = list_entry(p, struct hexdump_pr, prlist); if (colors_wanted() && pr->colorlist && (color = color_cond(pr, bp, pr->bcnt))) { color_enable(color); } switch(pr->flags) { case F_ADDRESS: printf(pr->fmt, eaddress); break; case F_TEXT: printf("%s", pr->fmt); break; } if (color) /* did we highlight something? */ color_disable(); } } } static char **_argv; static u_char * get(struct hexdump *hex) { static int ateof = 1; static u_char *curp, *savp; ssize_t n, need, nread; u_char *tmpp; if (!curp) { curp = xcalloc(1, hex->blocksize); savp = xcalloc(1, hex->blocksize); } else { tmpp = curp; curp = savp; savp = tmpp; address += hex->blocksize; } need = hex->blocksize, nread = 0; while (TRUE) { /* * if read the right number of bytes, or at EOF for one file, * and no other files are available, zero-pad the rest of the * block and set the end flag. */ if (!hex->length || (ateof && !next(NULL, hex))) { if (need == hex->blocksize) goto retnul; if (!need && vflag != ALL && !memcmp(curp, savp, nread)) { if (vflag != DUP) printf("*\n"); goto retnul; } if (need > 0) memset((char *)curp + nread, 0, need); eaddress = address + nread; return(curp); } if (fileno(stdin) == -1) { warnx(_("all input file arguments failed")); goto retnul; } n = fread((char *)curp + nread, sizeof(unsigned char), hex->length == -1 ? need : min(hex->length, need), stdin); if (!n) { if (ferror(stdin)) warn("%s", _argv[-1]); ateof = 1; continue; } ateof = 0; if (hex->length != -1) hex->length -= n; if (!(need -= n)) { if (vflag == ALL || vflag == FIRST || memcmp(curp, savp, hex->blocksize) != 0) { if (vflag == DUP || vflag == FIRST) vflag = WAIT; return(curp); } if (vflag == WAIT) printf("*\n"); vflag = DUP; address += hex->blocksize; need = hex->blocksize; nread = 0; } else nread += n; } retnul: free (curp); free (savp); return NULL; } int next(char **argv, struct hexdump *hex) { static int done; int statok; if (argv) { _argv = argv; return(1); } while (TRUE) { if (*_argv) { if (!(freopen(*_argv, "r", stdin))) { warn("%s", *_argv); hex->exitval = EXIT_FAILURE; ++_argv; continue; } statok = done = 1; } else { if (done++) return(0); statok = 0; } if (hex->skip) doskip(statok ? *_argv : "stdin", statok, hex); if (*_argv) ++_argv; if (!hex->skip) return(1); } /* NOTREACHED */ } static void doskip(const char *fname, int statok, struct hexdump *hex) { struct stat sbuf; if (statok) { if (fstat(fileno(stdin), &sbuf)) err(EXIT_FAILURE, "%s", fname); if (S_ISREG(sbuf.st_mode) && hex->skip > sbuf.st_size) { /* If size valid and skip >= size */ hex->skip -= sbuf.st_size; address += sbuf.st_size; return; } } /* sbuf may be undefined here - do not test it */ if (fseek(stdin, hex->skip, SEEK_SET)) err(EXIT_FAILURE, "%s", fname); address += hex->skip; hex->skip = 0; }
yurchor/util-linux
text-utils/hexdump-display.c
C
gpl-2.0
10,466
/* * Copyright (C) 2014-2017 StormCore * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ /* ScriptData SDName: Desolace SD%Complete: 100 SDComment: Quest support: 5561, 5581 SDCategory: Desolace EndScriptData */ /* ContentData npc_aged_dying_ancient_kodo go_demon_portal EndContentData */ #include "ScriptMgr.h" #include "ScriptedCreature.h" #include "ScriptedGossip.h" #include "ScriptedEscortAI.h" #include "Player.h" #include "SpellInfo.h" enum DyingKodo { SAY_SMEED_HOME = 0, QUEST_KODO = 5561, NPC_SMEED = 11596, NPC_AGED_KODO = 4700, NPC_DYING_KODO = 4701, NPC_ANCIENT_KODO = 4702, NPC_TAMED_KODO = 11627, SPELL_KODO_KOMBO_ITEM = 18153, SPELL_KODO_KOMBO_PLAYER_BUFF = 18172, SPELL_KODO_KOMBO_DESPAWN_BUFF = 18377, SPELL_KODO_KOMBO_GOSSIP = 18362 }; class npc_aged_dying_ancient_kodo : public CreatureScript { public: npc_aged_dying_ancient_kodo() : CreatureScript("npc_aged_dying_ancient_kodo") { } struct npc_aged_dying_ancient_kodoAI : public ScriptedAI { npc_aged_dying_ancient_kodoAI(Creature* creature) : ScriptedAI(creature) { } void MoveInLineOfSight(Unit* who) override { if (who->GetEntry() == NPC_SMEED && me->IsWithinDistInMap(who, 10.0f) && !me->HasAura(SPELL_KODO_KOMBO_GOSSIP)) { me->GetMotionMaster()->Clear(); DoCast(me, SPELL_KODO_KOMBO_GOSSIP, true); if (Creature* smeed = who->ToCreature()) smeed->AI()->Talk(SAY_SMEED_HOME); } } void SpellHit(Unit* caster, SpellInfo const* spell) override { if (spell->Id == SPELL_KODO_KOMBO_ITEM) { if (!(caster->HasAura(SPELL_KODO_KOMBO_PLAYER_BUFF) || me->HasAura(SPELL_KODO_KOMBO_DESPAWN_BUFF)) && (me->GetEntry() == NPC_AGED_KODO || me->GetEntry() == NPC_DYING_KODO || me->GetEntry() == NPC_ANCIENT_KODO)) { caster->CastSpell(caster, SPELL_KODO_KOMBO_PLAYER_BUFF, true); DoCast(me, SPELL_KODO_KOMBO_DESPAWN_BUFF, true); me->UpdateEntry(NPC_TAMED_KODO); me->CombatStop(); me->DeleteThreatList(); me->SetSpeedRate(MOVE_RUN, 0.6f); me->GetMotionMaster()->MoveFollow(caster, PET_FOLLOW_DIST, me->GetFollowAngle()); me->setActive(true); } } else if (spell->Id == SPELL_KODO_KOMBO_GOSSIP) { me->SetFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_GOSSIP); me->SetHomePosition(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation()); me->GetMotionMaster()->Clear(); me->GetMotionMaster()->MoveIdle(); me->setActive(false); me->DespawnOrUnsummon(60000); } } }; bool OnGossipHello(Player* player, Creature* creature) override { if (player->HasAura(SPELL_KODO_KOMBO_PLAYER_BUFF) && creature->HasAura(SPELL_KODO_KOMBO_DESPAWN_BUFF)) { player->TalkedToCreature(creature->GetEntry(), ObjectGuid::Empty); player->RemoveAurasDueToSpell(SPELL_KODO_KOMBO_PLAYER_BUFF); } player->SEND_GOSSIP_MENU(player->GetGossipTextId(creature), creature->GetGUID()); return true; } CreatureAI* GetAI(Creature* creature) const override { return new npc_aged_dying_ancient_kodoAI(creature); } }; void AddSC_desolace() { new npc_aged_dying_ancient_kodo(); }
Ragebones/StormCore
src/server/scripts/Kalimdor/zone_desolace.cpp
C++
gpl-2.0
4,387
package cook.data; import org.dreambot.api.methods.map.Area; import org.dreambot.api.methods.map.Tile; /** * Created with IntelliJ IDEA. * User: NotoriousPP * Date: 2/14/14 * Time: 8:51 AM */ public enum Areas { AL_KHARID_BANK(new Area( new Tile(3268, 3174, 0), new Tile(3272, 3174, 0), new Tile(3272, 3161, 0), new Tile(3268, 3161, 0) )), AL_KHARID_RANGE(new Area( new Tile(3270, 3179, 0), new Tile(3275, 3179, 0), new Tile(3275, 3183, 0), new Tile(3270, 3183, 0) )), NARDAH_RANGE(new Area( new Tile(3431,2888,0), new Tile(3431,2883,0), new Tile(3437,2883,0), new Tile(3437,2888,0) )), NARDAH_BANK(new Area( new Tile(3427,2888,0), new Tile(3427,2895,0), new Tile(3430,2895,0), new Tile(3430,2888,0) )), ROUGES_DEN(new Area( new Tile(3039,4965,1), new Tile(3053,4965,1), new Tile(3053,4979,1), new Tile(3039,4979,1) )); Area a; public Area getArea(){ return a; } private Areas(Area a){ this.a = a; } }
notoriouspp/OpenSource-Cooking
src/cook/data/Areas.java
Java
gpl-2.0
1,231
/******************************** * ํ”„๋กœ์ ํŠธ : VisualFxVoEditor * ํŒจํ‚ค์ง€ : com.kyj.fx.voeditor.visual.component.config.view * ์ž‘์„ฑ์ผ : 2018. 3. 22. * ์ž‘์„ฑ์ž : KYJ *******************************/ package com.kyj.fx.commons.fx.controls.color; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; import com.kyj.fx.commons.models.KeyPair; import javafx.beans.property.ObjectProperty; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.paint.Paint; /** * @author KYJ * */ public class ColorPickerComposite extends VBox { private Map<String, ColorPickItemTemplate> valueMap = new HashMap<>(); /** * * @param prop * setup value */ public ColorPickerComposite(String... keys) { this(Arrays.asList(keys)); } /** * @param keys */ public ColorPickerComposite(List<String> keys) { for (String key : keys) { valueMap.put(key, new ColorPickItemTemplate(key)); } getChildren().addAll(valueMap.values()); } /** * @์ž‘์„ฑ์ž : KYJ * @์ž‘์„ฑ์ผ : 2018. 3. 22. * @param key * @return */ public Optional<Paint> getValue(String key) { ColorPickItemTemplate colorPickItemTemplate = valueMap.get(key); if (colorPickItemTemplate != null) { KeyPair<String, Paint> value = colorPickItemTemplate.getValue(); if (value != null) { Paint v = value.getValue(); if (v != null) { return Optional.of(v); } } } return Optional.empty(); } /** * @์ž‘์„ฑ์ž : KYJ * @์ž‘์„ฑ์ผ : 2018. 3. 22. * @param key * @param value */ public void setValue(String key, Paint value) { ColorPickItemTemplate colorPickItemTemplate = valueMap.get(key); if (colorPickItemTemplate != null && value != null) { colorPickItemTemplate.setValue(value); } } /** * @์ž‘์„ฑ์ž : KYJ * @์ž‘์„ฑ์ผ : 2018. 3. 22. * @param key * @return */ public ObjectProperty<Color> valueProperty(String key) { ColorPickItemTemplate colorPickItemTemplate = valueMap.get(key); if (colorPickItemTemplate != null) { return colorPickItemTemplate.valueProperty(); } return null; } }
callakrsos/Gargoyle
gargoyle-commons/src/main/java/com/kyj/fx/commons/fx/controls/color/ColorPickerComposite.java
Java
gpl-2.0
2,178
package mil.af.rl.util; import java.util.Comparator; /** * This class is just a helper for determining the nearest instances to a given * instance. * @author sloscal1 * */ public class DoubleIndexPair<T extends Comparable<T>, T2 extends Comparable<T2>> implements Comparator<DoubleIndexPair<T, T2>>, Comparable<DoubleIndexPair<T, T2>>{ /** The e1 of the considered instance */ private T e1; /** The e2 from the target instance to instance (e1) */ private T2 e2; /** * Do not create empty Pair objects. */ public DoubleIndexPair(){}; /** * This constructor makes a new Pair object to the given * parameters * @param e1 the instance e1 to store * @param e2 the e2 from instance(e1) to r */ public DoubleIndexPair(T index, T2 distance){ this.e1 = index; this.e2 = distance; } public DoubleIndexPair(DoubleIndexPair<T, T2> other){ this.e1 = other.e1; this.e2 = other.e2; } public T getElement1(){ return e1; } public T2 getElement2(){ return e2; } @Override public int hashCode() { return e1.hashCode(); } @SuppressWarnings("unchecked") @Override public boolean equals(Object other){ return e1 == (T)((DoubleIndexPair<T, T2>)other).e1; } /** * Compares 2 Pair objects. If e2 of arg0 is less than * e2 of arg1 then the method will return -1; 0 if equal, and * 1 otherwise. */ public int compare(DoubleIndexPair<T, T2> arg0, DoubleIndexPair<T, T2> arg1) { if(arg0.e2.compareTo(arg1.e2) < 0) return -1; else if(arg0.e2.compareTo(arg1.e2) > 0) return 1; return 0; } public int compareTo(DoubleIndexPair<T, T2> arg0) { if(this.e2.compareTo(arg0.e2) < 0) return -1; else if(this.e2.compareTo(arg0.e2) > 0) return 1; else if(this.e1.compareTo(arg0.e1) < 0) return -1; else if(this.e1.compareTo(arg0.e1) > 0) return 1; return 0; } public String toString(){ return "e1: "+e1+", e2: "+e2; } public void setElement2(T2 newValue) { this.e2 = newValue; } public void setElement1(T newValue) { this.e1 = newValue; } public static class FirstElementComparator <T extends Comparable<T>, T2 extends Comparable<T2>> implements Comparator<DoubleIndexPair<T, T2>>{ @Override public int compare(DoubleIndexPair<T, T2> o1, DoubleIndexPair<T, T2> o2) { return o1.e1.compareTo(o2.e1); } } }
sloscal1/PFS-NEAT
src/mil/af/rl/util/DoubleIndexPair.java
Java
gpl-2.0
2,321
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_11) on Sun Mar 22 14:32:31 EDT 2009 --> <TITLE> All Classes (Rhino) </TITLE> <META NAME="date" CONTENT="2009-03-22"> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameHeadingFont"> <B>All Classes</B></FONT> <BR> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/mozilla/javascript/Callable.html" title="interface in org.mozilla.javascript"><I>Callable</I></A> <BR> <A HREF="org/mozilla/javascript/ClassCache.html" title="class in org.mozilla.javascript">ClassCache</A> <BR> <A HREF="org/mozilla/javascript/optimizer/ClassCompiler.html" title="class in org.mozilla.javascript.optimizer">ClassCompiler</A> <BR> <A HREF="org/mozilla/javascript/ClassShutter.html" title="interface in org.mozilla.javascript"><I>ClassShutter</I></A> <BR> <A HREF="org/mozilla/javascript/CompilerEnvirons.html" title="class in org.mozilla.javascript">CompilerEnvirons</A> <BR> <A HREF="org/mozilla/javascript/Context.html" title="class in org.mozilla.javascript">Context</A> <BR> <A HREF="org/mozilla/javascript/ContextAction.html" title="interface in org.mozilla.javascript"><I>ContextAction</I></A> <BR> <A HREF="org/mozilla/javascript/ContextFactory.html" title="class in org.mozilla.javascript">ContextFactory</A> <BR> <A HREF="org/mozilla/javascript/ContextFactory.Listener.html" title="interface in org.mozilla.javascript"><I>ContextFactory.Listener</I></A> <BR> <A HREF="org/mozilla/javascript/ContinuationPending.html" title="class in org.mozilla.javascript">ContinuationPending</A> <BR> <A HREF="org/mozilla/javascript/debug/DebuggableScript.html" title="interface in org.mozilla.javascript.debug"><I>DebuggableScript</I></A> <BR> <A HREF="org/mozilla/javascript/EcmaError.html" title="class in org.mozilla.javascript">EcmaError</A> <BR> <A HREF="org/mozilla/javascript/ErrorReporter.html" title="interface in org.mozilla.javascript"><I>ErrorReporter</I></A> <BR> <A HREF="org/mozilla/javascript/EvaluatorException.html" title="class in org.mozilla.javascript">EvaluatorException</A> <BR> <A HREF="org/mozilla/javascript/Function.html" title="interface in org.mozilla.javascript"><I>Function</I></A> <BR> <A HREF="org/mozilla/javascript/FunctionObject.html" title="class in org.mozilla.javascript">FunctionObject</A> <BR> <A HREF="org/mozilla/javascript/GeneratedClassLoader.html" title="interface in org.mozilla.javascript"><I>GeneratedClassLoader</I></A> <BR> <A HREF="org/mozilla/javascript/ImporterTopLevel.html" title="class in org.mozilla.javascript">ImporterTopLevel</A> <BR> <A HREF="org/mozilla/javascript/JavaScriptException.html" title="class in org.mozilla.javascript">JavaScriptException</A> <BR> <A HREF="org/mozilla/javascript/RefCallable.html" title="interface in org.mozilla.javascript"><I>RefCallable</I></A> <BR> <A HREF="org/mozilla/javascript/RhinoException.html" title="class in org.mozilla.javascript">RhinoException</A> <BR> <A HREF="org/mozilla/javascript/Script.html" title="interface in org.mozilla.javascript"><I>Script</I></A> <BR> <A HREF="org/mozilla/javascript/Scriptable.html" title="interface in org.mozilla.javascript"><I>Scriptable</I></A> <BR> <A HREF="org/mozilla/javascript/serialize/ScriptableInputStream.html" title="class in org.mozilla.javascript.serialize">ScriptableInputStream</A> <BR> <A HREF="org/mozilla/javascript/ScriptableObject.html" title="class in org.mozilla.javascript">ScriptableObject</A> <BR> <A HREF="org/mozilla/javascript/serialize/ScriptableOutputStream.html" title="class in org.mozilla.javascript.serialize">ScriptableOutputStream</A> <BR> <A HREF="org/mozilla/javascript/SecurityController.html" title="class in org.mozilla.javascript">SecurityController</A> <BR> <A HREF="org/mozilla/javascript/Synchronizer.html" title="class in org.mozilla.javascript">Synchronizer</A> <BR> <A HREF="org/mozilla/javascript/WrapFactory.html" title="class in org.mozilla.javascript">WrapFactory</A> <BR> <A HREF="org/mozilla/javascript/WrappedException.html" title="class in org.mozilla.javascript">WrappedException</A> <BR> <A HREF="org/mozilla/javascript/Wrapper.html" title="interface in org.mozilla.javascript"><I>Wrapper</I></A> <BR> </FONT></TD> </TR> </TABLE> </BODY> </HTML>
adamfisk/littleshoot-client
bin/rhino1_7R2/javadoc/allclasses-noframe.html
HTML
gpl-2.0
4,434